diff --git a/README.TXT b/README.TXT index 9a36d5fe9..4522da97a 100644 --- a/README.TXT +++ b/README.TXT @@ -5,7 +5,7 @@ Tags: listings, classified ads, classified, classifieds, directory plugin, class Requires at least: 6.2.0 Requires PHP: 5.6 Tested up to: 6.4.3 -Stable tag: 4.3.2 +Stable tag: 4.3.3 License: GPLv2 or later Create a classified listings directory, from auto listings to yard sales with AWP Classifieds plugin. @@ -166,12 +166,14 @@ Yes it can. Our Classifieds directory plugin comes with many user-provided trans Yes it is. However, you cannot "network-activate" the plugin (as this will share the database). Activate it on only the subsites on which you need a directory. This can be done under Plugins->Add New as the Administrator user. Do not "network activate" AWPCP as the "super admin". == Changelog == -= 4.3.2 = += 4.3.3 = * New: Updates for better PHP 8 support. * Security: Add more nonce and user role protection for uninstalling and other ajax functions. +* Security: Hardening for escaping output and SQL queries. * Update SelectWoo script version. * Fix: Fallback to native dropdowns if there is a conflict with Select2. * Fix: SEO Framework updatesfor outdated code. +* Code: Update to phpcs 3 standards. = 4.3.1 = * Security update against CSRF attacks in some admin pages. add CSRF tokens "nonce". diff --git a/awpcp.php b/awpcp.php index 07eb6a973..44fddac63 100644 --- a/awpcp.php +++ b/awpcp.php @@ -5,7 +5,7 @@ * Plugin Name: AWP Classifieds Plugin * Plugin URI: https://awpcp.com/ * Description: Run a free or paid classified ads service on your WordPress site. - * Version: 4.3.2 + * Version: 4.3.3 * Author: AWP Classifieds Team * Author URI: https://awpcp.com/ * License: GPLv2 or any later version @@ -56,7 +56,7 @@ global $hasregionsmodule; global $hasextrafieldsmodule; -$awpcp_db_version = '4.3.2'; +$awpcp_db_version = '4.3.3'; $awpcp_imagesurl = AWPCP_URL . '/resources/images'; $hascaticonsmodule = 0; diff --git a/functions.php b/functions.php index 17ad665d5..f564f7690 100644 --- a/functions.php +++ b/functions.php @@ -1280,7 +1280,8 @@ function awpcp_sanitize_value( $sanitize, &$value ) { } /** - * @since x.x + * @since 4.3.3 + * * @param string $value */ function awpcp_get_server_value( $value ) { @@ -1856,7 +1857,7 @@ function awpcp_validate_error($field, $errors) { } /** - * @since x.x + * @since 4.3.3 */ function awpcp_show_form_error( $field, $errors ) { echo wp_kses_post( diff --git a/includes/form-fields/class-form-fields-renderer.php b/includes/form-fields/class-form-fields-renderer.php index d471676e1..f4c2e213f 100644 --- a/includes/form-fields/class-form-fields-renderer.php +++ b/includes/form-fields/class-form-fields-renderer.php @@ -49,7 +49,7 @@ public function get_field( $slug ) { } /** - * @since x.x + * @since 4.3.3 * * @param mixed $form_values The values for this form. * @param array $form_errors An array of form field errors index by field slug. diff --git a/includes/frontend/class-captcha.php b/includes/frontend/class-captcha.php index 494787674..02d115e35 100644 --- a/includes/frontend/class-captcha.php +++ b/includes/frontend/class-captcha.php @@ -48,7 +48,7 @@ public function is_captcha_required() { } /** - * @since x.x + * @since 4.3.3 */ public function show() { $this->provider->show(); diff --git a/includes/frontend/class-default-captcha-provider.php b/includes/frontend/class-default-captcha-provider.php index c4d2be8dc..f313a74cd 100644 --- a/includes/frontend/class-default-captcha-provider.php +++ b/includes/frontend/class-default-captcha-provider.php @@ -21,7 +21,7 @@ public function __construct( $max_number ) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ diff --git a/includes/frontend/class-recaptcha-provider.php b/includes/frontend/class-recaptcha-provider.php index 8c89744fa..9165128ef 100644 --- a/includes/frontend/class-recaptcha-provider.php +++ b/includes/frontend/class-recaptcha-provider.php @@ -38,7 +38,7 @@ public function __construct( $site_key, $secret_key, $delegate ) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ diff --git a/includes/frontend/class-recaptcha-v2.php b/includes/frontend/class-recaptcha-v2.php index c6cc196b0..50b2db2f6 100644 --- a/includes/frontend/class-recaptcha-v2.php +++ b/includes/frontend/class-recaptcha-v2.php @@ -39,7 +39,7 @@ public function enqueue_scripts( $site_key ) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ diff --git a/includes/frontend/interface-recaptcha-delegate.php b/includes/frontend/interface-recaptcha-delegate.php index 07f9c4213..2399fda7f 100644 --- a/includes/frontend/interface-recaptcha-delegate.php +++ b/includes/frontend/interface-recaptcha-delegate.php @@ -14,7 +14,7 @@ interface AWPCP_ReCAPTCHADelegate { public function enqueue_scripts( $site_key ); /** - * @since x.x + * @since 4.3.3 * * @return void */ diff --git a/includes/helpers/class-recaptcha-v3.php b/includes/helpers/class-recaptcha-v3.php index ee93fbdd1..162eb5a3c 100644 --- a/includes/helpers/class-recaptcha-v3.php +++ b/includes/helpers/class-recaptcha-v3.php @@ -37,7 +37,7 @@ public function enqueue_scripts( $site_key ) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ diff --git a/includes/helpers/widgets/class-listing-actions-component.php b/includes/helpers/widgets/class-listing-actions-component.php index 87d4af077..9de17c1f9 100644 --- a/includes/helpers/widgets/class-listing-actions-component.php +++ b/includes/helpers/widgets/class-listing-actions-component.php @@ -21,7 +21,7 @@ class AWPCP_ListingActionsComponent { /** * Show the component. * - * @since x.x + * @since 4.3.3 * * @return void */ diff --git a/includes/helpers/widgets/class-user-field.php b/includes/helpers/widgets/class-user-field.php index 141d788b1..f71a050a6 100644 --- a/includes/helpers/widgets/class-user-field.php +++ b/includes/helpers/widgets/class-user-field.php @@ -29,7 +29,7 @@ protected function find_selected_user( $args ) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ diff --git a/includes/helpers/widgets/multiple-region-selector.php b/includes/helpers/widgets/multiple-region-selector.php index 747b4cd73..ff92f9408 100644 --- a/includes/helpers/widgets/multiple-region-selector.php +++ b/includes/helpers/widgets/multiple-region-selector.php @@ -106,7 +106,7 @@ private function get_region_field_options( $context, $type, $selected, $hierarch } /** - * @since x.x + * @since 4.3.3 * * @param string $context 'search' or 'details' * @param array $translations A region type => field name map. diff --git a/includes/listings/class-listings-content-renderer.php b/includes/listings/class-listings-content-renderer.php index dcb6dd329..570da8939 100644 --- a/includes/listings/class-listings-content-renderer.php +++ b/includes/listings/class-listings-content-renderer.php @@ -142,7 +142,7 @@ private function get_disabled_listing_warning() { } /** - * @since x.x + * @since 4.3.3 * * @param string $content The content of the post. * @param object $post An instance of WP_Post. diff --git a/includes/media/class-listings-media-uploader-component.php b/includes/media/class-listings-media-uploader-component.php index cfb6a8ba3..fa968230f 100644 --- a/includes/media/class-listings-media-uploader-component.php +++ b/includes/media/class-listings-media-uploader-component.php @@ -76,7 +76,7 @@ public function render( $configuration ) { } /** - * @since x.x + * @since 4.3.3 * * @param array $configuration An array of configuration options. * diff --git a/includes/media/class-media-uploader-component.php b/includes/media/class-media-uploader-component.php index 9d52f853e..9d87f1ed2 100644 --- a/includes/media/class-media-uploader-component.php +++ b/includes/media/class-media-uploader-component.php @@ -47,7 +47,7 @@ public function render( $configuration ) { } /** - * @since x.x + * @since 4.3.3 * * @param array $configuration An array of configuration options. * diff --git a/includes/payment-terms-table.php b/includes/payment-terms-table.php index 4e84d1609..538cfbed0 100644 --- a/includes/payment-terms-table.php +++ b/includes/payment-terms-table.php @@ -79,7 +79,7 @@ public function item_group_name($item) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ @@ -106,7 +106,7 @@ public function item_attributes($item) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ diff --git a/includes/payments-api.php b/includes/payments-api.php index 931f56e94..7ccb131da 100644 --- a/includes/payments-api.php +++ b/includes/payments-api.php @@ -701,7 +701,7 @@ public function render_account_balance_for_transaction( $transaction ) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ @@ -729,7 +729,7 @@ public function render_account_balance() { } /** - * @since x.x + * @since 4.3.3 * * @return void */ @@ -775,7 +775,7 @@ public function render_credit_plans_table($transaction=null, $table_only=false) } /** - * @since x.x + * @since 4.3.3 * * @return void */ @@ -796,7 +796,7 @@ public function render_transaction_items($transaction) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ @@ -848,7 +848,7 @@ public function render_checkout_payment_template($output, $message, $transaction } /** - * @since x.x + * @since 4.3.3 * * @return void */ @@ -905,7 +905,7 @@ public function render_checkout_page($transaction, $hidden=array()) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ @@ -974,7 +974,7 @@ public function render_payment_completed_page($transaction, $action='', $hidden= } /** - * @since x.x + * @since 4.3.3 * * @return void */ diff --git a/includes/ui/class-category-selector.php b/includes/ui/class-category-selector.php index d9df4aaea..5ad8392d0 100644 --- a/includes/ui/class-category-selector.php +++ b/includes/ui/class-category-selector.php @@ -52,7 +52,7 @@ public function __construct( $helper, $categories, $template_renderer ) { } /** - * @since x.x + * @since 4.3.3 * * @param array $params An array of parameters for the Category Selector component. * diff --git a/includes/ui/class-classifieds-bar.php b/includes/ui/class-classifieds-bar.php index 696847eea..7706ee8d5 100644 --- a/includes/ui/class-classifieds-bar.php +++ b/includes/ui/class-classifieds-bar.php @@ -29,7 +29,7 @@ public function __construct( $classifieds_search_bar, $classifieds_menu, $settin } /** - * @since x.x + * @since 4.3.3 * * @param array $components * diff --git a/includes/ui/class-form-steps-component.php b/includes/ui/class-form-steps-component.php index a96a37f32..d2cac2cb8 100644 --- a/includes/ui/class-form-steps-component.php +++ b/includes/ui/class-form-steps-component.php @@ -20,7 +20,7 @@ public function __construct( AWPCP_FormSteps $form_steps ) { } /** - * @since x.x + * @since 4.3.3 */ public function show( $selected_step, $params = [] ) { $this->echo = true; diff --git a/includes/ui/class-payment-terms-list.php b/includes/ui/class-payment-terms-list.php index 8f4c7df16..df86cf2e2 100644 --- a/includes/ui/class-payment-terms-list.php +++ b/includes/ui/class-payment-terms-list.php @@ -47,7 +47,7 @@ private function from_view_to_model( $selected_value ) { } /** - * @since x.x + * @since 4.3.3 * * @return void */ diff --git a/includes/views/class-ajax-handler.php b/includes/views/class-ajax-handler.php index b33ee8556..02f10af4a 100644 --- a/includes/views/class-ajax-handler.php +++ b/includes/views/class-ajax-handler.php @@ -20,7 +20,7 @@ public function set_content_type( $content_type ) { /** * @since 3.2.2 - * @deprecated x.x + * @deprecated 4.3.3 */ public function write( $content ) { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped @@ -29,7 +29,7 @@ public function write( $content ) { /** * @since 3.2.2 - * @deprecated x.x + * @deprecated 4.3.3 */ public function close() { die(); diff --git a/languages/another-wordpress-classifieds-plugin-de_DE.mo b/languages/another-wordpress-classifieds-plugin-de_DE.mo index 351ed7c9e..316eb0e52 100644 Binary files a/languages/another-wordpress-classifieds-plugin-de_DE.mo and b/languages/another-wordpress-classifieds-plugin-de_DE.mo differ diff --git a/languages/another-wordpress-classifieds-plugin-de_DE.po b/languages/another-wordpress-classifieds-plugin-de_DE.po index 9c620c3b6..c3d927e79 100644 --- a/languages/another-wordpress-classifieds-plugin-de_DE.po +++ b/languages/another-wordpress-classifieds-plugin-de_DE.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Another WordPress Classifieds Plugin\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/another-wordpress-" "classifieds-plugin\n" -"POT-Creation-Date: 2024-03-20 20:22:37+00:00\n" +"POT-Creation-Date: 2024-06-13 20:37:03+00:00\n" "PO-Revision-Date: 2020-10-15 19:51+0000\n" "Last-Translator: Diego Giraldo \n" "Language-Team: German (Germany) (http://www.transifex.com/wp-translations/" @@ -27,21 +27,21 @@ msgstr "" #: admin/fees/class-fee-details-form.php:39 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:9 #: includes/settings/class-payment-general-settings.php:60 -#: templates/admin/manage-categories-admin-page.tpl.php:31 +#: templates/admin/manage-categories-admin-page.tpl.php:32 msgid "Name" msgstr "Name" #: admin/admin-panel-credit-plans-table.php:80 #: admin/fees/class-fee-details-form.php:45 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:25 -#: templates/admin/manage-categories-admin-page.tpl.php:36 +#: templates/admin/manage-categories-admin-page.tpl.php:37 msgid "Description" msgstr "Beschreibung" #: admin/admin-panel-credit-plans-table.php:81 #: admin/admin-panel-fees-table.php:121 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:14 -#: includes/settings/class-payment-general-settings.php:270 +#: includes/settings/class-payment-general-settings.php:272 msgid "Credits" msgstr "Credits" @@ -50,7 +50,7 @@ msgstr "Credits" #: admin/fees/class-fee-details-form.php:222 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:19 #: frontend/placeholders.php:514 -#: includes/settings/class-display-settings.php:483 +#: includes/settings/class-display-settings.php:482 #: includes/settings/class-payment-general-settings.php:61 msgid "Price" msgstr "Preis" @@ -76,25 +76,29 @@ msgstr "Privat" msgid " " msgstr " " -#: admin/admin-panel-fees-table.php:196 -msgid "Duration: " -msgstr "Dauer: " +#: admin/admin-panel-fees-table.php:197 +#, fuzzy +msgid "Duration: %s" +msgstr "Dauer" -#: admin/admin-panel-fees-table.php:206 -msgid "# of images: " -msgstr "Anzahl Bilder: " +#: admin/admin-panel-fees-table.php:207 +#, fuzzy +msgid "# of images: %s" +msgstr "Anzahl Bilder:" #: admin/admin-panel-fees-table.php:219 admin/admin-panel-fees-table.php:235 msgid "unlimited" msgstr "unbegrenzt" -#: admin/admin-panel-fees-table.php:222 -msgid "Chars in title: " -msgstr "Anzahl Zeichen im Titel: " +#: admin/admin-panel-fees-table.php:223 +#, fuzzy +msgid "Chars in title: %s" +msgstr "Zeichen im Titel:" -#: admin/admin-panel-fees-table.php:238 -msgid "Chars in description: " -msgstr "Anzahl Zeichen in der Beschreibung: " +#: admin/admin-panel-fees-table.php:239 +#, fuzzy +msgid "Chars in description: %s" +msgstr "Zeichen in der Beschreibung" #: admin/admin-panel-fees-table.php:265 admin/admin-panel-fees-table.php:269 #: templates/admin/import/supported-csv-headers.tpl.php:31 @@ -126,7 +130,7 @@ msgstr "Der ausgewählte Benutzer existiert nicht." msgid "Manual Upgrade" msgstr "Manueller Upgrade" -#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:799 +#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:783 #: includes/models/class-custom-post-types.php:97 #: includes/models/class-custom-post-types.php:99 #: includes/settings/class-listings-settings.php:30 @@ -142,20 +146,20 @@ msgid "Dashboard" msgstr "Dashboard" #: admin/admin-panel.php:140 admin/admin-panel.php:141 -#: admin/admin-panel.php:509 +#: admin/admin-panel.php:492 msgid "Settings" msgstr "Einstellungen" #: admin/admin-panel.php:154 -#: templates/admin/main-classifieds-admin-page.tpl.php:86 -#: templates/admin/main-classifieds-admin-page.tpl.php:111 +#: templates/admin/main-classifieds-admin-page.tpl.php:88 +#: templates/admin/main-classifieds-admin-page.tpl.php:116 msgid "Manage Categories" msgstr "Kategorien verwalten" #: admin/admin-panel.php:203 admin/admin-panel.php:204 #: admin/form-fields/class-form-fields-admin-page.php:12 -#: includes/settings/class-display-settings.php:298 -#: includes/settings/class-display-settings.php:438 +#: includes/settings/class-display-settings.php:297 +#: includes/settings/class-display-settings.php:437 msgid "Form Fields" msgstr "Formular Eingabefelder" @@ -188,7 +192,7 @@ msgstr "Importieren & Exportieren" msgid "Debug" msgstr "Debug" -#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:24 +#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:38 msgid "Debug Information" msgstr "Debug Information" @@ -197,12 +201,12 @@ msgid "Uninstall" msgstr "Deinstallieren" #: admin/admin-panel.php:354 admin/admin-panel.php:355 -#: admin/admin-panel.php:826 frontend/templates/page-renew-ad.tpl.php:3 +#: admin/admin-panel.php:810 frontend/templates/page-renew-ad.tpl.php:3 #: includes/admin/class-admin-container-configuration.php:175 msgid "Renew Ad" msgstr "Anzeige erneuern." -#: admin/admin-panel.php:427 +#: admin/admin-panel.php:417 msgid "" "Use the Account Balance column on the table below to manage credit balance " "for users." @@ -210,7 +214,7 @@ msgstr "" "Verwende die Spalte Kontostand in der folgenden Tabelle, um das Guthaben für " "die Benutzer zu verwalten." -#: admin/admin-panel.php:446 +#: admin/admin-panel.php:436 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing." @@ -218,7 +222,7 @@ msgstr "" "AWPCP-Funktionen sind derzeit deaktiviert, da Du für das Plugin ein " "manuelles Upgrade durchführen musst, bevor Du fortfahren kannst." -#: admin/admin-panel.php:447 +#: admin/admin-panel.php:437 msgid "" "The duration for this upgrade operation varies between several minutes and a " "few hours, depending on the size of your database, the current network " @@ -235,7 +239,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the page explaining how #. to downgrade to a previous version of the plugin, %2$s is the closing tag #. for the link. -#: admin/admin-panel.php:450 +#: admin/admin-panel.php:440 msgid "" "If this is not a good time to go through the upgrade process, we recommend " "you to %1$sinstall the previous version again%2$s and plan to upgrade " @@ -247,7 +251,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:456 +#: admin/admin-panel.php:446 msgid "" "To upgrade, please %1$sgo to the Classifieds admin section%2$s or click the " "button below." @@ -257,7 +261,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:466 +#: admin/admin-panel.php:456 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing. Please %1$sgo to the Classifieds " @@ -269,7 +273,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:488 +#: admin/admin-panel.php:471 msgid "" "AWPCP needs you to perform a manual upgrade to update the database schema " "and the information stored there. All plugin features will continue to work " @@ -282,7 +286,7 @@ msgstr "" "Bitte %1$sgehe zur Administrationen Sektion fürs Upgrade%2$s oder klicke auf " "die Schaltfläche unten." -#: admin/admin-panel.php:562 +#: admin/admin-panel.php:545 msgid "" "Page %1$s has the same URL as the %2$s from AWPCP. The WordPress page %1$s " "is going to be unreachable until this changes." @@ -296,7 +300,7 @@ msgstr[1] "" "Die Seiten %1$s haben dieselbe URL wie die %2$s von AWPCP. Die WordPress-" "Seiten %1$s werden nicht erreichbar sein, bis sich dies ändert." -#: admin/admin-panel.php:570 +#: admin/admin-panel.php:553 msgid "" "The %1$s is dynamic; you don't need to create a real WordPress page to show " "the list of categories, the plugin will generate it for you. If the " @@ -324,74 +328,75 @@ msgstr[1] "" "ausgeblendet. Andernfalls stelle bitte sicher, dass Du keine doppelten " "Seitennamen hast." -#: admin/admin-panel.php:765 admin/class-categories-admin-page.php:60 +#: admin/admin-panel.php:749 admin/class-categories-admin-page.php:60 #: admin/class-categories-admin-page.php:64 msgid "Manage Category Icon" msgstr "Kategorie-Icon verwalten" -#: admin/admin-panel.php:770 admin/class-categories-admin-page.php:35 +#: admin/admin-panel.php:754 admin/class-categories-admin-page.php:35 #: admin/class-categories-admin-page.php:39 #: admin/class-categories-admin-page.php:133 msgid "Edit Category" msgstr "Kategorie bearbeiten" -#: admin/admin-panel.php:771 admin/class-categories-admin-page.php:46 +#: admin/admin-panel.php:755 admin/class-categories-admin-page.php:46 #: admin/class-categories-admin-page.php:50 msgid "Delete Category" msgstr "Kategorie löschen" -#: admin/admin-panel.php:776 +#: admin/admin-panel.php:760 msgid "Select {category_name}" msgstr "Wähle {category_name}" -#: admin/admin-panel.php:814 frontend/page-reply-to-ad.php:11 +#: admin/admin-panel.php:798 frontend/page-reply-to-ad.php:11 msgid "Reply to Ad" msgstr "Antworte auf die Anzeigennachricht" -#: admin/admin-panel.php:822 admin/templates/admin-panel-listings.tpl.php:5 +#: admin/admin-panel.php:806 admin/templates/admin-panel-listings.tpl.php:5 msgid "Place Ad" msgstr "Anzeige aufgeben" -#: admin/admin-panel.php:830 frontend/page-browse-ads.php:9 +#: admin/admin-panel.php:814 frontend/page-browse-ads.php:9 msgid "Browse Ads" msgstr "In Anzeigen stöbern." -#: admin/admin-panel.php:834 admin/templates/admin-panel-listings.tpl.php:11 +#: admin/admin-panel.php:818 admin/templates/admin-panel-listings.tpl.php:20 #: frontend/page-search-ads.php:9 msgid "Search Ads" msgstr "Suche in Anzeigen" -#: admin/categories/class-create-category-admin-page.php:38 -#: admin/categories/class-delete-categories-admin-page.php:55 -#: admin/categories/class-delete-category-admin-page.php:68 -#: admin/categories/class-move-categories-admin-page.php:54 -#: admin/categories/class-update-category-admin-page.php:50 +#: admin/categories/class-create-category-admin-page.php:39 +#: admin/categories/class-delete-categories-admin-page.php:57 +#: admin/categories/class-delete-category-admin-page.php:69 +#: admin/categories/class-move-categories-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:51 msgid "invalid nonce" msgstr "" -#: admin/categories/class-create-category-admin-page.php:42 +#: admin/categories/class-create-category-admin-page.php:43 msgid "The new category was successfully added." msgstr "Die neue Kategorie wurde erfolgreich hinzugefügt." -#: admin/categories/class-delete-categories-admin-page.php:61 +#: admin/categories/class-delete-categories-admin-page.php:64 +#, fuzzy msgid "" "The categories couldn't be deleted because there was an error trying to load " -"the categoery that you selecetd to become the new category associated to " -"affected ads. " +"the categoery that you selected to become the new category associated to " +"affected ads. %s" msgstr "" "Die Kategorien konnten nicht gelöscht werden, da beim Laden der von Dir " "ausgewählten Kategorie, die den betroffenen Anzeigen zugeordnet ist, ein " "Fehler aufgetreten ist." -#: admin/categories/class-delete-categories-admin-page.php:71 +#: admin/categories/class-delete-categories-admin-page.php:75 msgid "The selected categories have been deleted." msgstr "Die ausgewählten Kategorien wurden gelöscht." -#: admin/categories/class-delete-categories-admin-page.php:76 +#: admin/categories/class-delete-categories-admin-page.php:80 msgid "There was an error trying to delete the selected categories." msgstr "Es gab einen Fehler beim Löschversuch der ausgewählten Kategorien." -#: admin/categories/class-delete-categories-admin-page.php:80 +#: admin/categories/class-delete-categories-admin-page.php:84 msgid "" " (out of ) categories were deleted. " "However, there was an error trying to delete the other Kategorien." -#: admin/categories/class-delete-category-admin-page.php:41 +#: admin/categories/class-delete-category-admin-page.php:42 msgid "The category you are trying to delete doesn't exist." msgstr "Die Kategorie, die Du löschen möchtest, existiert nicht." -#: admin/categories/class-delete-category-admin-page.php:53 +#: admin/categories/class-delete-category-admin-page.php:54 msgid "There was an error trying to delete the category. " msgstr "Es gab einen Fehler beim Löschen der Kategorie. " -#: admin/categories/class-delete-category-admin-page.php:74 +#: admin/categories/class-delete-category-admin-page.php:75 msgid "" "There was an error trying to load the selected category. " msgstr "" "Es gab einen Fehler beim Laden der ausgewählten Kategorie. " -#: admin/categories/class-delete-category-admin-page.php:85 +#: admin/categories/class-delete-category-admin-page.php:86 msgid "The category was deleted successfully" msgstr "Die Kategorie wurde erfolgreich gelöscht." -#: admin/categories/class-delete-category-admin-page.php:103 +#: admin/categories/class-delete-category-admin-page.php:104 msgid "Are you sure you want to delete \"\" category?" msgstr "Bist Du sicher die Kategorie \"\" zu löschen?" -#: admin/categories/class-delete-category-admin-page.php:116 +#: admin/categories/class-delete-category-admin-page.php:117 msgid "Delete category" msgstr "Kategorie löschen" -#: admin/categories/class-delete-category-admin-page.php:117 +#: admin/categories/class-delete-category-admin-page.php:118 #: admin/fees/class-fee-details-form.php:80 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:31 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:12 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:23 #: admin/templates/admin-panel-fees-delete.tpl.php:12 #: admin/templates/admin-panel-users-balance-form.tpl.php:19 #: admin/templates/delete_form.tpl.php:16 #: frontend/templates/payments-billing-form.tpl.php:123 #: includes/listings/class-listing-action-with-confirmation.php:8 -#: includes/settings/renderers/class-button-settings-renderer.php:41 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 +#: includes/settings/renderers/class-button-settings-renderer.php:44 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:184 #: templates/admin/import-listings-admin-page-import-form.tpl.php:47 msgid "Cancel" msgstr "Abbrechen" -#: admin/categories/class-move-categories-admin-page.php:59 +#: admin/categories/class-move-categories-admin-page.php:60 msgid "" "The categories couldn't be moved because there was an error trying to load " "the target category. " @@ -450,15 +455,15 @@ msgstr "" "Die Kategorie konnte nicht verschoben werden, weil es einen Fehler beim " "Laden der Zielkategorie gab. " -#: admin/categories/class-move-categories-admin-page.php:68 +#: admin/categories/class-move-categories-admin-page.php:69 msgid "The selected categories have been moved." msgstr "Die ausgewählten Kategorien wurden verschoben." -#: admin/categories/class-move-categories-admin-page.php:73 +#: admin/categories/class-move-categories-admin-page.php:74 msgid "There was an error trying to move the selected categories." msgstr "Beim Verschieben der gewählten Kategorien ist ein Fehler aufgetreten." -#: admin/categories/class-move-categories-admin-page.php:77 +#: admin/categories/class-move-categories-admin-page.php:78 msgid "" " (out of ) categories were moved. " "However, there was an error trying to move the other " @@ -468,11 +473,11 @@ msgstr "" "Aber es gab einen Fehler beim Verschieben der anderen " "Kategorien." -#: admin/categories/class-update-category-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:56 msgid "The category you're trying to update doesn't exist." msgstr "Die Kategorie, die Du aktualisieren möchtest, existiert nicht." -#: admin/categories/class-update-category-admin-page.php:66 +#: admin/categories/class-update-category-admin-page.php:67 msgid "The category was successfully updated." msgstr "Die Kategorie wurde erfolgreich aktualisiert." @@ -498,39 +503,40 @@ msgstr "Neue Kategorie erstellen" msgid "Update" msgstr "Aktualisieren" -#: admin/class-debug-admin-page.php:255 +#: admin/class-debug-admin-page.php:256 msgid "WordPress version" msgstr "WordPress Version" -#: admin/class-debug-admin-page.php:259 +#: admin/class-debug-admin-page.php:260 msgid "OS" msgstr "OS" -#: admin/class-debug-admin-page.php:263 +#: admin/class-debug-admin-page.php:264 msgid "Apache Version" msgstr "Apache Version" -#: admin/class-debug-admin-page.php:267 +#: admin/class-debug-admin-page.php:268 +#: admin/templates/admin-panel-debug.tpl.php:177 msgid "PHP Version" msgstr "PHP Version" -#: admin/class-debug-admin-page.php:271 +#: admin/class-debug-admin-page.php:272 msgid "MySQL Version" msgstr "MySQL Version" -#: admin/class-debug-admin-page.php:275 +#: admin/class-debug-admin-page.php:276 msgid "cURL Version" msgstr "cURL Version" -#: admin/class-debug-admin-page.php:279 +#: admin/class-debug-admin-page.php:280 msgid "cURL SSL Version" msgstr "cURL SSL Version" -#: admin/class-debug-admin-page.php:332 admin/class-debug-admin-page.php:338 +#: admin/class-debug-admin-page.php:333 admin/class-debug-admin-page.php:339 msgid "N/A" msgstr "Trifft nicht zu" -#: admin/class-import-listings-admin-page.php:100 +#: admin/class-import-listings-admin-page.php:102 msgid "" "The uploaded file doesn't look like a CSV file. Please upload a valid CSV " "file." @@ -538,13 +544,13 @@ msgstr "" "Die hochgeladene Datei sieht nicht aus wie eine CSV-Datei. Bitte lade eine " "CSV-Datei hoch." -#: admin/class-import-listings-admin-page.php:104 +#: admin/class-import-listings-admin-page.php:106 msgid "There was an error moving the uploaded CSV file to a proper location." msgstr "" "Es gab einen Fehler die hochgeladene CSV-Datei in das richtige Verzeichnis " "zu verschieben." -#: admin/class-import-listings-admin-page.php:121 +#: admin/class-import-listings-admin-page.php:125 msgid "" "The uploaded file doesn't look like a ZIP file. Please upload a valid ZIP " "file." @@ -552,33 +558,33 @@ msgstr "" "Die hochgeladene Datei sieht nicht aus wie eine ZIP-Datei. Bitte lade eine " "ZIP-Datei hoch." -#: admin/class-import-listings-admin-page.php:125 +#: admin/class-import-listings-admin-page.php:129 msgid "There was an error moving the uploaded ZIP file to a proper location." msgstr "" "Es gab einen Fehler die hochgeladene ZIP-Datei in das richtige Verzeichnis " "zu verschieben." -#: admin/class-import-listings-admin-page.php:137 +#: admin/class-import-listings-admin-page.php:141 msgid "Incompatible ZIP Archive" msgstr "ZIP Archiv nicht kompatibel." -#: admin/class-import-listings-admin-page.php:139 +#: admin/class-import-listings-admin-page.php:143 msgid "Empty ZIP Archive" msgstr "ZIP Archiv ist leer." -#: admin/class-import-listings-admin-page.php:165 +#: admin/class-import-listings-admin-page.php:169 msgid "Could not write temporary file %s" msgstr "Thumbnail Bild von [ %s ] konnte nicht erstellt werden" -#: admin/class-import-listings-admin-page.php:174 +#: admin/class-import-listings-admin-page.php:178 msgid "The specified directory is not a valid path." msgstr "Das angegebene Verzeichnis ist kein gültiges Verzeichnis." -#: admin/class-import-listings-admin-page.php:176 +#: admin/class-import-listings-admin-page.php:180 msgid "The specified directory does not exists." msgstr "Der ausgewählte Ordner/Verzeichnis existiert nicht." -#: admin/class-import-listings-admin-page.php:357 +#: admin/class-import-listings-admin-page.php:361 msgid "" "() of rows " "processed. rows imported and Spalten importiert und Spalten abgelehnt." -#: admin/class-settings-admin-page.php:230 +#: admin/class-import-settings-admin-page.php:121 +#, fuzzy +msgid "Your settings have been successfully imported." +msgstr "Deine Einstellungen wurden erfolgreich importiert." + +#: admin/class-settings-admin-page.php:224 msgid "" "We could not obtain a valid access token from Facebook. The API returned the " "following error: %s" @@ -596,24 +607,25 @@ msgstr "" "AWPCP konnte keinen gültigen Zugangscode von Facebook erhalten. API-" "Errocode: %s" -#: admin/class-settings-admin-page.php:235 +#: admin/class-settings-admin-page.php:229 msgid "" "We could not obtain a valid access token from Facebook. Please try again." msgstr "" "AWPCP konnte keinen gültigen Zugangscode von Facebook erhalten. Bitte " "versuche es noch mal." -#: admin/class-settings-admin-page.php:243 +#: admin/class-settings-admin-page.php:237 msgid "Facebook Config Diagnostics" msgstr "Diagnose Facebook-Konfiguration" -#: admin/class-settings-admin-page.php:250 +#: admin/class-settings-admin-page.php:244 msgid "Everything looks OK." msgstr "Alles sieht prima aus!" #: admin/class-table-entry-action-ajax-handler.php:16 +#: admin/class-uninstall-admin-page.php:52 #: admin/pointers/class-drip-autoresponder-ajax-handler.php:23 -#: functions.php:531 +#: functions.php:537 #: includes/frontend/class-create-empty-listing-ajax-handler.php:104 #: includes/frontend/class-execute-listing-action-ajax-handler.php:58 #: includes/frontend/class-save-listing-information-ajax-handler.php:117 @@ -634,7 +646,7 @@ msgstr "Bearbeiten" #: admin/credit-plans/class-credit-plans-admin-page.php:23 #: admin/fees/class-fees-admin-page.php:65 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:13 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:24 #: admin/templates/delete_form.tpl.php:17 msgid "Delete" msgstr "Löschen" @@ -749,7 +761,7 @@ msgstr "" "verknüpft sind. Ändere die Gebühren für die bestehenden Anzeigen, um die " "Gebühr zu löschen." -#: admin/import/class-csv-importer-delegate.php:271 +#: admin/import/class-csv-importer-delegate.php:275 msgid "" "No user could be assigned to this listing. Our attempt to create a new user " "failed with the following error: ." @@ -757,11 +769,11 @@ msgstr "" "Kein Benutzer konnte dieser Anzeige zugeordnet werden. Der Versuch einen " "neuen Benutzer anzulegen schlug aus folgendem Grund fehl: ." -#: admin/import/class-csv-importer-delegate.php:470 +#: admin/import/class-csv-importer-delegate.php:476 msgid "The payment term type must be 'fee' or 'subscription'." msgstr "Die Zahlungsbedingung muss \"Gebühr\" oder \"Abonnement\" sein." -#: admin/import/class-csv-importer-delegate.php:476 +#: admin/import/class-csv-importer-delegate.php:482 msgid "" "There is no payment term with type {payment_term_type} and ID " "{payment_term_id}." @@ -769,7 +781,7 @@ msgstr "" "Es gibt keine Zahlungsbedingung mit dem Typ {payment_term_type} und der ID " "{payment_term_id}." -#: admin/import/class-csv-importer-delegate.php:490 +#: admin/import/class-csv-importer-delegate.php:496 msgid "" "No images directory was configured. Are you sure you uploaded a ZIP file or " "defined a local directory?" @@ -777,11 +789,11 @@ msgstr "" "Kein Bild-Verzeichnis konfiguriert. Bist Du sicher dass Du eine ZIP-Datei " "hochgeladen hast oder ein lokales Verzeichnis definiert hast?" -#: admin/import/class-csv-importer-delegate.php:676 +#: admin/import/class-csv-importer-delegate.php:690 msgid "The value for Extra Field %s's is not allowed. Allowed values are: %%s" msgstr "Der Wert für das Feld %s's ist nicht erlaubt. Erlaubt sind: %%s" -#: admin/import/class-csv-importer-delegate.php:686 +#: admin/import/class-csv-importer-delegate.php:700 msgid "" "The value for Extra Field %s's is not allowed. Allowed value is one of: %%s" msgstr "Der Wert für das Feld %s's ist nicht erlaubt. Erlaubt ist: %%s" @@ -803,10 +815,33 @@ msgstr "" msgid "That Ad failed to delete." msgstr "Die Anzeige wurde gelöscht." +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 +#, fuzzy +msgid "Thank you for signing up!" +msgstr "Vielen Dank für Deine Registrierung!" + +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 +#, fuzzy +msgid "" +"Please check your email and click the link provided to confirm your " +"subscription." +msgstr "Bitte prüfe Deine E-Mails um Dein Abonnement zu bestätigen." + #: admin/pointers/class-drip-autoresponder-ajax-handler.php:149 msgid "An unexpected error ocurred." msgstr "Ein unerwarteter Fehler ist aufgetreten." +#: admin/pointers/class-drip-autoresponder.php:62 +#, fuzzy +msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" +msgstr "Möchtest Du die Geheimnisse einer Super Anzeigenseite kennen lernen?" + +#: admin/pointers/class-drip-autoresponder.php:63 +msgid "" +"Find out how to create a compelling, thriving classifieds site from scratch " +"in this ridiculously actionable (and free) 5-part email course." +msgstr "" + #: admin/pointers/class-drip-autoresponder.php:67 msgid "Email Address" msgstr "E-Mail-Adresse" @@ -815,28 +850,28 @@ msgstr "E-Mail-Adresse" msgid "Add" msgstr "Hinzufügen" -#: admin/templates/admin-panel-credit-plans.tpl.php:10 +#: admin/templates/admin-panel-credit-plans.tpl.php:11 msgid "Credit System Settings" msgstr "Credit Einstellungen" -#: admin/templates/admin-panel-credit-plans.tpl.php:21 +#: admin/templates/admin-panel-credit-plans.tpl.php:25 #: templates/admin/settings-admin-page.tpl.php:50 -#: templates/admin/settings-admin-page.tpl.php:64 +#: templates/admin/settings-admin-page.tpl.php:67 msgid "Save Changes" msgstr "Änderungen speichern" -#: admin/templates/admin-panel-credit-plans.tpl.php:34 +#: admin/templates/admin-panel-credit-plans.tpl.php:38 msgid "Add Credit Plan" msgstr "Neue Gebühr erstellen" -#: admin/templates/admin-panel-debug.tpl.php:8 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:6 +#: admin/templates/admin-panel-debug.tpl.php:11 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:8 msgid "Are you seeing 404 Not Found errors?" msgstr "Gibt es \"404 Not Found\" Fehler?" #. translators: %1$s: Start link HTML, %2$s: end link HTML, %3$s: Start link #. HTML -#: admin/templates/admin-panel-debug.tpl.php:14 +#: admin/templates/admin-panel-debug.tpl.php:21 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -847,54 +882,84 @@ msgid "" "please contact %3$scustomer support%1$s." msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:49 +#: admin/templates/admin-panel-debug.tpl.php:84 msgid "Stored ID" msgstr "Gespeicherte ID" -#: admin/templates/admin-panel-debug.tpl.php:50 +#: admin/templates/admin-panel-debug.tpl.php:85 msgid "Reference" msgstr "Referenz" -#: admin/templates/admin-panel-debug.tpl.php:51 +#: admin/templates/admin-panel-debug.tpl.php:86 #: frontend/templates/widget-categories-form.tpl.php:2 #: frontend/templates/widget-latest-ads-form.tpl.php:2 #: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:5 msgid "Title" msgstr "Titel" -#: admin/templates/admin-panel-debug.tpl.php:60 +#: admin/templates/admin-panel-debug.tpl.php:95 msgid "Page not found" msgstr "Seite nicht gefunden" -#: admin/templates/admin-panel-debug.tpl.php:74 +#: admin/templates/admin-panel-debug.tpl.php:117 msgid "Option Name" msgstr "Option Name" -#: admin/templates/admin-panel-debug.tpl.php:75 +#: admin/templates/admin-panel-debug.tpl.php:118 msgid "Option Value" msgstr "Option Wert" -#: admin/templates/admin-panel-debug.tpl.php:96 +#: admin/templates/admin-panel-debug.tpl.php:147 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:9 msgid "Pattern" msgstr "Muster" -#: admin/templates/admin-panel-debug.tpl.php:97 +#: admin/templates/admin-panel-debug.tpl.php:148 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:10 msgid "Replacement" msgstr "Ersetzung" -#: admin/templates/admin-panel-debug.tpl.php:133 +#: admin/templates/admin-panel-debug.tpl.php:181 +#, fuzzy +msgid "cURL" +msgstr "cURL" + +#: admin/templates/admin-panel-debug.tpl.php:185 +#, fuzzy +msgid "cURL's alternate CA info (cacert.pem)" +msgstr "cURL's alternate CA info (cacert.pem)" + +#: admin/templates/admin-panel-debug.tpl.php:189 +#, fuzzy +msgid "Exists" +msgstr "Existiert" + +#: admin/templates/admin-panel-debug.tpl.php:190 +#, fuzzy +msgid "Missing" +msgstr "Fehlender Wert" + +#: admin/templates/admin-panel-debug.tpl.php:195 +#: includes/settings/class-payment-general-settings.php:134 +msgid "PayPal" +msgstr "PayPal" + +#: admin/templates/admin-panel-debug.tpl.php:198 #, fuzzy msgid "Working" msgstr "Funktionierend" -#: admin/templates/admin-panel-debug.tpl.php:148 -#: templates/admin/debug/debug-admin-page.tpl.php:36 +#: admin/templates/admin-panel-debug.tpl.php:201 +#, fuzzy +msgid "Not Working" +msgstr "Nicht funktionierend" + +#: admin/templates/admin-panel-debug.tpl.php:216 +#: templates/admin/debug/debug-admin-page.tpl.php:42 msgid "Debug & Development Tools" msgstr "Debug & Development Tools " -#: admin/templates/admin-panel-fees-delete-form.tpl.php:6 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:7 #: admin/templates/delete_form.tpl.php:11 msgid "Are you sure you want to delete this item?" msgstr "Bist Du sicher diesen Eintrag zu löschen?" @@ -910,42 +975,43 @@ msgstr "" msgid "Switch" msgstr "Ändern" -#: admin/templates/admin-panel-fees.tpl.php:7 -msgid "Payment Settings page" -msgstr "Seite Zahlungseinstellungen" - -#: admin/templates/admin-panel-fees.tpl.php:9 +#: admin/templates/admin-panel-fees.tpl.php:8 +#, fuzzy msgid "" "Currently your classifieds are in Free mode. Fee plans are not available or " -"used during free mode.

To change this, visit the and enable Charge Listing Fee setting." +"used during free mode.%1$s To change this, visit the %2$s and enable Charge " +"Listing Fee setting." msgstr "" "Deine Plugin ist im Moment im Free-, kostenlosen Modus. Zahlungspläne können " "im kostenlosen Modus nicht verwendet werden.

Um dies zu ändern " "besuche die Seite und aktiviere dort die " "Zahlungspläne." -#: admin/templates/admin-panel-fees.tpl.php:20 +#: admin/templates/admin-panel-fees.tpl.php:11 +msgid "Payment Settings page" +msgstr "Seite Zahlungseinstellungen" + +#: admin/templates/admin-panel-fees.tpl.php:22 msgid "Add Fee Plan" msgstr "Neue Eintragungsgebühr erstellen" -#: admin/templates/admin-panel-fees.tpl.php:24 -msgid "Fee Plan sort order and sort direction Settings" -msgstr "Gebührenplan Sortierreihenfolge und Sortierrichtung Einstellungen" - #: admin/templates/admin-panel-fees.tpl.php:26 +#, fuzzy msgid "" -"If you wish to change the sorting of your fee plans, you can change the ." +"If you wish to change the sorting of your fee plans, you can change the %s." msgstr "" "Wenn Du die Reihenfolge der Zahlungsweisen ändern willst, kannst Du diesem " "Link folgen: ." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:14 +#: admin/templates/admin-panel-fees.tpl.php:30 +msgid "Fee Plan sort order and sort direction Settings" +msgstr "Gebührenplan Sortierreihenfolge und Sortierrichtung Einstellungen" + +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:17 msgid "Facebook Integration" msgstr "Facebook Integration" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:16 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:23 msgid "" "We currently support two methods for posting new ads to Facebook: Facebook " "API and Zapier/IFTTT Webhooks." @@ -953,7 +1019,7 @@ msgstr "" "Wir unterstützen derzeit zwei Methoden, um neue Anzeigen auf Facebook zu " "posten: Facebook API und Zapier / IFTTT Webhooks." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:18 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:25 msgid "" "Support for Facebook API will be removed in the future. Facebook " "significantly reduced access to their APIs across all apps on Apr, 2018. Now " @@ -972,13 +1038,14 @@ msgstr "" "Alternative eingeführt und erwarten, dass Kunden auf diese " "Integrationsmethode umsteigen." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:22 -msgid "You can read more about Facebook changes here: {facebook_post_link}" +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:30 +#, fuzzy +msgid "You can read more about Facebook changes here: %s" msgstr "" "Weitere Informationen zu Facebook-Änderungen findest Du hier: " "{facebook_post_link}" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:29 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:38 msgid "" "If you are currently using the Facebook API integration method and not " "having any issues, you don't have to do anything right now. If you are " @@ -988,19 +1055,19 @@ msgstr "" "Probleme hast, musst Du jetzt nichts tun. Wenn Du Probleme hast, lies bitte " "den Abschnitt Diagnose, um zu versuchen, sie zu beheben." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:40 #: includes/settings/class-general-settings.php:735 msgid "Facebook API" msgstr "Facebook API" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:35 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:46 +#, fuzzy msgid "" "This integration method allows you to post ads to Facebook using a Facebook " -"Application. Please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"Application. Please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" "Mit dieser Integrationsmethode kannst Du mithilfe einer Facebook-Anwendung " "Anzeigen auf Facebook posten. Bitte lese " @@ -1009,8 +1076,8 @@ msgstr "" "{link_to_facebook_integration_documentation} diesen Anweisungen {/ " "link_to_facebook_integration_documentation}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:45 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:79 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 msgid "" "Add the following URL to the list of Valid OAuth Redirect URIs for the " "configuration of the Facebook Application:" @@ -1018,12 +1085,12 @@ msgstr "" "Füge die folgende URL zur Liste von gültigen OAuth Redirect URIs für die " "Facebook Konfiguration ein:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:59 #: includes/settings/class-general-settings.php:736 msgid "Zapier/IFTTT Webhooks" msgstr "Zapier/IFTTT Webhooks" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:51 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:61 msgid "" "Webhooks allow the plugin to send a request to one of the configured webhook " "URLs the first time an ad becomes publicly available on the website. That " @@ -1040,13 +1107,13 @@ msgstr "" "zu verarbeiten und einen Beitrag auf einer von Deiner kontrollierten " "Facebook-Seite zu erstellen." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:67 +#, fuzzy msgid "" -"Follow the instructiones to create the tasks on " -"{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} or " -"{webhook_instructions_for_ifttt}IFTTT{/webhook_instructions_for_ifttt}. Then " -"update the settings at the bottom of this page to enter the webhook URLs " -"associated with those tasks." +"Follow the instructiones to create the tasks on %1$sZapier or IFTTT%2$s. " +"Then update the settings at the bottom of this page to enter the webhook " +"URLs associated with those tasks." msgstr "" "Befolge die Anweisungen, um die Aufgaben auf " "{webhook_instructions_for_zapier} Zapier {/ webhook_instructions_for_zapier} " @@ -1055,21 +1122,21 @@ msgstr "" "Einstellungen unten auf dieser Seite, um die Webhook-URLs für diese Aufgaben " "einzugeben." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:65 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:74 msgid "Facebook Cache" msgstr "Facebook Cache" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:69 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:80 +#, fuzzy msgid "" "If you are using Webhooks to send ads to Facebook, a Facebook Application " "can still be used to ask Facebook to clear the cache it has stored for ads " "pages. This is useful to ensure users always see the latest version when the " "ad is shared on Facebook Pages, Groups and user feeds. If you decide to use " -"this feature, please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"this feature, please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" "Wenn Du Webhooks verwendest, um Anzeigen an Facebook zu senden, kann " "Facebook weiterhin eine Facebook-Anwendung verwenden, um Facebook zu bitten, " @@ -1082,19 +1149,19 @@ msgstr "" "{link_to_facebook_integration_documentation} diesen Anweisungen {/ " "link_to_facebook_integration_documentation}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:83 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:93 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:120 msgid "Diagnostics" msgstr "Diagnose" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:95 msgid "" "If you see the following error after trying to get a valid User Access Token:" msgstr "" "Wenn Du den folgenden Fehler siehst nachdem Du versuchst hast einen gültigen " "Benutzerzugriffstoken zu erhalten:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:99 msgid "" "You have to submit your Facebook Application for Review and ask for those " "permissions or use the Webhooks integration method to send ads to Facebook " @@ -1104,23 +1171,23 @@ msgstr "" "Berechtigungen fragen oder die Webhooks-Integrationsmethode verwenden, um " "mithilfe von Zapier- oder IFTTT-Webhooks Anzeigen an Facebook zu senden." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:91 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:101 msgid "If you see the following error trying to send ads to a Facebook Group:" msgstr "" "Wenn der folgende Fehler angezeigt wird, wenn Du versuchst, Anzeigen an eine " "Facebook-Gruppe zu senden:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:97 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#, fuzzy msgid "" -"Please make sure the Facebook Application " -"{link_to_how_to_add_apps_to_a_group}was added to the group{/" -"link_to_how_to_add_apps_to_a_group}." +"Please make sure the Facebook Application %1$swas added to the group%2$s." msgstr "" "Stelle sicher, dass die Facebook-Anwendung " "{link_to_how_to_add_apps_to_a_group} zur Gruppe {/ " "link_to_how_to_add_apps_to_a_group} hinzugefügt wurde." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:108 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:119 msgid "" "If you are having additional problems with Facebook API, click " "\"Diagnostics\" to check your settings." @@ -1128,15 +1195,15 @@ msgstr "" "Wenn Du weitere Probleme mit der Facebook-API hast, klicke auf \"Diagnose\", " "um Deine Einstellungen zu überprüfen." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:3 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:4 msgid "Restore AWPCP Pages" msgstr "AWPCP Seiten wiederherstellen" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:8 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:10 msgid "The following pages were restored: ." msgstr "Die folgenden Seiten wurden wiederhergestellt: ." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:19 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:21 msgid "" "The pages listed below are missing. The plugin is looking for a page with a " "particular ID but it seems that the page was permanently deleted. Please a " @@ -1146,12 +1213,13 @@ msgstr "" "einer bestimmten ID, aber es scheint, dass die Seite dauerhaft gelöscht " "wurde. Bitte wähle eine neue aus." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:23 -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:71 -msgid "%s (Default name: %s)." +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:28 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:97 +#, fuzzy +msgid "%1$s (Default name: %2$s)." msgstr "%s (Default name: %s)." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:39 msgid "" "The following pages are not published. Did you move them to the Trash by " "accident or saved them as Draft?" @@ -1159,11 +1227,13 @@ msgstr "" "Die folgenden Seiten wurden nicht veröffentlicht. Hast Du sie aus Versehen " "in den Papierkorb verschoben oder als Entwurf gespeichert?" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:41 -msgid "%s — Selected page: %s (%s)" +#. translators: %1$s page label, %2$s link to the page, %3$s the page status. +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:57 +#, fuzzy +msgid "%1$s Selected page: %2$s (%3$s)" msgstr "%s — Ausgewählte Seite: %s (%s)" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:69 msgid "" "The following pages are not currently assigned. Please select an existing " "page or create a new one to use as the following plugin pages:" @@ -1172,16 +1242,17 @@ msgstr "" "vorhandene Seite aus oder erstelle eine neue Seite, um sie als folgende " "Pluginseiten zu verwenden:" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:64 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#, fuzzy msgid "" -" — You can select one of these pages that already include " -"the necessary shortcode: or create a new one." +"%1$s You can select one of these pages that already include the necessary " +"shortcode: %2$s or %3$screate a new one%4$s." msgstr "" "& mdash; Du kannst eine dieser Seiten auswählen, die bereits den " "erforderlichen Shortcode enthält, oder eine neue erstellen. " -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:115 msgid "" "Use the button below to have the plugin attempt to find the necessary pages. " "If you continue to have problems or seeing page related warnings above, you " @@ -1194,11 +1265,11 @@ msgstr "" "vom Plugin löschen und den \"Seiten Wiederherstellen\" Button verwenden " "damit die Seiten wieder neu angelegt werden." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:86 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:116 msgid "Restore Pages" msgstr "Seiten wiederherstellen" -#: admin/templates/admin-panel-uninstall.tpl.php:13 +#: admin/templates/admin-panel-uninstall.tpl.php:10 msgid "" "Thank you for using AWPCP. You have arrived at this page by clicking the " "Uninstall link. If you are certain you wish to uninstall the plugin, please " @@ -1209,7 +1280,7 @@ msgstr "" "dass Du das Plugin deinstallieren möchtest, klicke unten auf die " "Schaltfläche, um fortzufahren." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "" "PLEASE NOTE: When you click the button below, ALL your data related to the " "plugin including your classifieds, images and everything else created by the " @@ -1220,13 +1291,13 @@ msgstr "" "Kleinanzeigen, Bilder und aller anderen vom Plugin erstellten Daten, " "dauerhaft gelöscht." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "We cannot recover the data after you click this." msgstr "" "Die Daten können nach dem Klick auf diesen Button nicht mehr " "wiederhergestellt werden." -#: admin/templates/admin-panel-uninstall.tpl.php:18 +#: admin/templates/admin-panel-uninstall.tpl.php:15 msgid "" "BEFORE YOU CLICK THE BUTTON BELOW — read carefully in case you want to " "extract your data first!" @@ -1234,7 +1305,7 @@ msgstr "" "BEVOR DU DEN BUTTON UNTEN DRÜCKST— lese bitte die Anleitung sorgfältig " "durch bevor Du Deine Daten extrahierst." -#: admin/templates/admin-panel-uninstall.tpl.php:21 +#: admin/templates/admin-panel-uninstall.tpl.php:18 msgid "" "If you plan to use the data created by the plugin please export the data " "from your mysql database before clicking the uninstall link." @@ -1243,46 +1314,50 @@ msgstr "" "exportiere bitte die MySQL-Datenbank, bevor Du auf den Deinstallieren-Link " "klickst" -#: admin/templates/admin-panel-uninstall.tpl.php:22 +#: admin/templates/admin-panel-uninstall.tpl.php:21 +#, fuzzy msgid "" -"If you want to keep your user uploaded images, please download to " -"your local drive for later use or rename the folder to something else so the " +"If you want to keep your user uploaded images, please download %s to your " +"local drive for later use or rename the folder to something else so the " "uninstaller can bypass it." msgstr "" "Wenn Du die hochgeladenen Bilder der Nutzer behalten willst, so downloade " "bitte das Verzeichnis auf Dein lokales Laufwerk bzw. PC oder " "bennene den Ordner um. So wird der Ordner vom Uninstaller nicht gelöscht." -#: admin/templates/admin-panel-uninstall.tpl.php:28 +#: admin/templates/admin-panel-uninstall.tpl.php:29 #, fuzzy msgid "Proceed with Uninstalling AWP Classifieds Plugin" msgstr "Mit der Deinstallation von AWPCP Plugin fortfahren" -#: admin/templates/admin-panel-uninstall.tpl.php:33 +#: admin/templates/admin-panel-uninstall.tpl.php:35 msgid "Almost done... one more step!" msgstr "Fast fertig! Nur noch ein Schritt..." -#: admin/templates/admin-panel-uninstall.tpl.php:36 -msgid "Please click here to complete the uninstallation process" +#: admin/templates/admin-panel-uninstall.tpl.php:39 +#, fuzzy +msgid "Please click here to deactivate plugins." msgstr "Bitte hier klicken um die Deinstallation zu vervollständigen" #: admin/templates/admin-panel-users-balance-form.tpl.php:12 +#: frontend/templates/payments-transaction-items-table.tpl.php:5 +#: frontend/templates/payments-transaction-items-table.tpl.php:17 msgid "Amount" msgstr "Gesamtsumme" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:12 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:14 msgid "Manual Upgrade Required" msgstr "Manueller Upgrade erforderlich" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:17 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:26 msgid "Upgrade" msgstr "Aktualisieren" #: admin/templates/admin-quick-start-guide-notice.tpl.php:2 #, fuzzy msgid "" -"Hello and welcome to AWP Classifieds. This plugin is super " -"easy to use AND highly configurable." +"Hello and welcome to AWP Classifieds. This plugin is super easy to use AND " +"highly configurable." msgstr "" "Hallo und Willkommen zu Another WordPress Classifieds. " "Dieses Plugin ist sehr einfach zu benutzen und vielseitig parametrierbar." @@ -1292,39 +1367,53 @@ msgid "Would you like some help getting started?" msgstr "Benötigst Du Hilfe für den Start?" #: admin/templates/admin-quick-start-guide-notice.tpl.php:12 +#, fuzzy +msgid "I'll figure it out on my own." +msgstr "Ich werde es selbst herausfinden." + +#: admin/templates/admin-quick-start-guide-notice.tpl.php:15 msgid "Yes Please!" msgstr "Ja Bitte!" -#: admin/templates/admin-sidebar.tpl.php:14 +#: admin/templates/admin-quick-start-guide-notice.tpl.php:20 +#, fuzzy +msgid "Help me get my classifieds running quickly." +msgstr "Hilf mir wie ich dieses Anzeigensystem schnell ans Laufen bekomme!" + +#: admin/templates/admin-sidebar.tpl.php:15 msgid "Like this plugin?" msgstr "Gefällt Dir dieses Plugin?" -#: admin/templates/admin-sidebar.tpl.php:20 +#: admin/templates/admin-sidebar.tpl.php:24 msgid "Give a 5 star rating on WordPress.org." msgstr "" -#: admin/templates/admin-sidebar.tpl.php:36 +#: admin/templates/admin-sidebar.tpl.php:42 #, fuzzy msgid "Get more features!" msgstr "Anzeige gekennzeichnet" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:67 msgid "Found a bug?" msgstr "Hast Du einen Fehler gefunden?" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:68 msgid "Need Support?" msgstr "Brauchst Du Hilfe?" -#: admin/templates/admin-sidebar.tpl.php:70 -msgid "Quick Start Guide" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:80 +#, fuzzy +msgid "Browse the %1$sQuick Start Guide%2$s" msgstr "Schnellstartanleitung" -#: admin/templates/admin-sidebar.tpl.php:80 -msgid "Documentation" -msgstr "Dokumentation" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:90 +#, fuzzy +msgid "Read the full %1$sDocumentation%2$s." +msgstr "Lese %s." -#: admin/templates/admin-sidebar.tpl.php:91 +#: admin/templates/admin-sidebar.tpl.php:98 msgid "Get Help" msgstr "Hilfe suchen" @@ -1334,11 +1423,11 @@ msgid "Thank you for using AWP Classifieds Plugin." msgstr "Danke dass Du \"Another Worpress Classifieds Plugin\" benutzt." #: admin/templates/admin-widget-modification-notice.tpl.php:3 +#, fuzzy msgid "" -"AWPCP 3.0 includes several modifications to the Search Ads, " -"Featured Ads and Latest Ads widgets. For " -"example, the Latest Ads widget can now be used in multiple sidebars. Also, " -"there is a new Widget to show Random Ads." +"AWPCP 3.0 includes several modifications to the Search Ads, Featured Ads and " +"Latest Ads widgets. For example, the Latest Ads widget can now be used in " +"multiple sidebars. Also, there is a new Widget to show Random Ads." msgstr "" "AWPCP 3.0 beinhaltet viele Veränderungen zum Anzeigen Suchen, Anzeigen and Letzte Anzeigen " @@ -1477,7 +1566,7 @@ msgstr "" "Bitte lese Upgrade " "von PHP, um mehr über PHP und das Upgrade zu erfahren." -#: awpcp.php:200 +#: awpcp.php:198 #, fuzzy msgid "" "AWP Classifieds Plugin installation is incomplete. Please {support_link}" @@ -1487,23 +1576,23 @@ msgstr "" "kontaktiere den Support {/ support_link}." #. translators: %s is the title of the listing. -#: frontend/ad-functions.php:155 +#: frontend/ad-functions.php:159 #: includes/listings/class-listing-renewed-email-notifications.php:85 msgid "The ad \"%s\" has been successfully renewed." msgstr "Die Anzeige \"%s\" wurde erfolgreich erneuert." -#: frontend/ad-functions.php:189 frontend/page-renew-ad.php:160 +#: frontend/ad-functions.php:193 frontend/page-renew-ad.php:160 msgid "The Ad has been successfully renewed. New expiration date is %s." msgstr "Deine Anzeige wurde erfolgreich erneuert. Das neue Ablaufdatum ist %s." -#: frontend/ad-functions.php:194 frontend/page-renew-ad.php:152 +#: frontend/ad-functions.php:198 frontend/page-renew-ad.php:151 #: templates/admin/listings/quick-view-listing-admin-page.tpl.php:18 #: templates/admin/listings-media-center.tpl.php:6 #: templates/admin/view-listing-admin-page.tpl.php:14 msgid "Return to Listings" msgstr "Zurück zur Suche" -#: frontend/ad-functions.php:212 frontend/page-place-ad.php:151 +#: frontend/ad-functions.php:216 frontend/page-place-ad.php:154 msgid "" "You do not have permission to perform the function you are trying to " "perform. Access to this page has been denied" @@ -1511,29 +1600,29 @@ msgstr "" "Du hast keine Berechtigung zur Ausführung der gewünschten Funktion. Der " "Zugriff auf diese Seite wurde verweigert." -#: frontend/ad-functions.php:227 +#: frontend/ad-functions.php:231 msgid "The Ad has been deleted" msgstr "Die Anzeige wurde gelöscht." -#: frontend/ad-functions.php:230 +#: frontend/ad-functions.php:234 msgid "" "Your Ad details and any photos you have uploaded have been deleted from the " "system" msgstr "" "Deine Anzeige und die dazugehörigen Bilder wurden aus dem System gelöscht." -#: frontend/ad-functions.php:234 +#: frontend/ad-functions.php:238 #: includes/frontend/class-edit-listing-page.php:188 msgid "The specified Ad doesn't exists." msgstr "Die ausgewählte Anzeige existiert nicht." -#: frontend/ad-functions.php:236 +#: frontend/ad-functions.php:240 msgid "There was an error trying to delete the Ad. The Ad was not deleted." msgstr "" "Es gab einen Fehler beim Löschen der Anzeige. Die Anzeige wurde nicht " "gelöscht!" -#: frontend/ad-functions.php:239 +#: frontend/ad-functions.php:243 msgid "Problem encountered. Cannot complete request" msgstr "Interner Fehler. Die Anfrage konnte nicht beendet werden." @@ -1553,7 +1642,7 @@ msgstr "" "Du hast keine Kategorie zum Stöbern angegeben, also siehst Du hier Einträge " "aus allen Kategorien" -#: frontend/page-place-ad.php:74 +#: frontend/page-place-ad.php:75 #: includes/views/class-verify-transaction-exists-step-decorator.php:17 msgid "" "There was an error processing your Payment Request. Please try again or " @@ -1562,19 +1651,20 @@ msgstr "" "Es gab ein Problem mit Deiner Zahlung. Bitte probiere es noch einmal oder " "kontaktiere den Webseiten-Betreiber!" -#: frontend/page-place-ad.php:132 +#: frontend/page-place-ad.php:133 msgid "Please select a category." msgstr "Bitte eine Kategorie wählen." -#: frontend/page-place-ad.php:133 -msgid "Please select the Ad's owner." +#: frontend/page-place-ad.php:134 +#, fuzzy +msgid "Please select the Ad owner." msgstr "Bitte wähle einen Besitzer für diese Anzeige" -#: frontend/page-place-ad.php:134 +#: frontend/page-place-ad.php:135 msgid "Please select a payment term." msgstr "Bitte eine Zahlungsart auswählen" -#: frontend/page-place-ad.php:165 frontend/page-renew-ad.php:87 +#: frontend/page-place-ad.php:168 frontend/page-renew-ad.php:86 msgid "" "You are trying to post an Ad using a transaction created for a different " "purpose. Please go back to the %s page.
If you think " @@ -1586,7 +1676,7 @@ msgstr "" "
Bitte kontaktiere den Webseiten-Betreiber wenn dies ein Fehler ist. " "Teile ihm diese Transaktions-ID %s mit!" -#: frontend/page-place-ad.php:174 +#: frontend/page-place-ad.php:177 #: includes/frontend/class-submit-listing-page.php:291 msgid "" "You can't post an Ad at this time because the payment associated with this " @@ -1595,34 +1685,34 @@ msgstr "" "Du kannst in diesem Moment keine Anzeige aufgeben weil die Zahlung " "fehlgeschlagen ist (Gründe siehe unten)." -#: frontend/page-place-ad.php:256 +#: frontend/page-place-ad.php:259 #: includes/listings/class-payment-information-validator.php:88 msgid "You should select an owner for this Ad." msgstr "Du musst einen Besitzer für diese Anzeige auswählen." -#: frontend/page-place-ad.php:260 frontend/page-renew-ad.php:197 +#: frontend/page-place-ad.php:263 frontend/page-renew-ad.php:199 #: includes/listings/class-payment-information-validator.php:64 #: includes/listings/class-payment-information-validator.php:73 msgid "You should choose one of the available Payment Terms." msgstr "Bitte wähle eine der möglichen Bezahlmöglichkeiten aus" -#: frontend/page-place-ad.php:264 +#: frontend/page-place-ad.php:267 #: includes/listings/class-payment-information-validator.php:75 msgid "" "The Payment Term you selected is not available for non-administrator users." msgstr "Die Bezahlart ist nicht gültig." -#: frontend/page-place-ad.php:280 +#: frontend/page-place-ad.php:283 #: includes/listings/class-payment-information-validator.php:108 msgid "Ad Category field is required" msgstr "Bitte Kategorie auswählen" -#: frontend/page-place-ad.php:285 +#: frontend/page-place-ad.php:288 #: includes/listings/class-payment-information-validator.php:119 msgid "You cannot list your Ad in top level categories." msgstr "Du kannst Deine Anzeige nicht in den Top-Kategorien veröffentlichen." -#: frontend/page-place-ad.php:291 +#: frontend/page-place-ad.php:294 #: includes/frontend/class-submit-listing-page.php:190 msgid "" "Hi, You need to be a registered user to post Ads in this website. Please use " @@ -1632,7 +1722,7 @@ msgstr "" "veröffentlichen. Bitte benutze das Formular unten um Dich einzuloggen oder " "registriere Dich jetzt!" -#: frontend/page-place-ad.php:429 frontend/page-place-ad.php:836 +#: frontend/page-place-ad.php:432 frontend/page-place-ad.php:839 #: frontend/page-renew-ad.php:297 #: includes/frontend/class-order-submit-listing-section.php:119 msgid "" @@ -1643,7 +1733,7 @@ msgstr "" #. translators: %s is an alphanumeric string that identifies a payment #. transaction. #. translators: %s the transaction id -#: frontend/page-place-ad.php:511 frontend/page-renew-ad.php:347 +#: frontend/page-place-ad.php:514 frontend/page-renew-ad.php:347 #: includes/frontend/class-submit-listing-page.php:333 #: includes/views/class-verify-payment-can-be-processed-step-decorator.php:18 msgid "" @@ -1655,7 +1745,7 @@ msgstr "" "Bitte kontaktiere den Webseiten-Betreiber und teile ihm folgende " "Transaktions-ID %s mit!" -#: frontend/page-place-ad.php:834 +#: frontend/page-place-ad.php:837 msgid "" "Your Ad details have been filled out in the form below. Make any changes " "needed and then resubmit the Ad to update it." @@ -1663,11 +1753,11 @@ msgstr "" "Unten siehst Du die Details Deiner Anzeige. Mache Deine Änderungen und " "stelle die geänderte Anzeige erneut ein" -#: frontend/page-place-ad.php:838 +#: frontend/page-place-ad.php:841 msgid "Fill out the form below to post your classified ad." msgstr "Fülle das untenstehende Formular aus, um Deine Anzeige aufzugeben." -#: frontend/page-place-ad.php:842 +#: frontend/page-place-ad.php:845 msgid "" "We found errors in the details you submitted. A detailed error message is " "shown in front or below each invalid field. Please fix the errors and submit " @@ -1677,11 +1767,11 @@ msgstr "" "Fehlermeldung ist vor oder unter jedem Feld angezeigt. Bitte behebe die " "Fehler und übermittele dann Deine Daten erneut!" -#: frontend/page-place-ad.php:861 +#: frontend/page-place-ad.php:864 msgid "Start & End Date" msgstr "Start und Ende der Anzeige" -#: frontend/page-place-ad.php:863 +#: frontend/page-place-ad.php:866 #: includes/admin/import/class-csv-importer-columns.php:185 #: includes/admin/listings/class-listings-table-nav-handler.php:151 #: includes/form-fields/class-listing-form-fields.php:127 @@ -1689,7 +1779,7 @@ msgstr "Start und Ende der Anzeige" msgid "Start Date" msgstr "Anfangsdatum" -#: frontend/page-place-ad.php:865 +#: frontend/page-place-ad.php:868 #: includes/admin/import/class-csv-importer-columns.php:196 #: includes/admin/listings/class-listings-table-nav-handler.php:152 #: includes/form-fields/class-listing-form-fields.php:131 @@ -1697,7 +1787,7 @@ msgstr "Anfangsdatum" msgid "End Date" msgstr "Enddatum" -#: frontend/page-place-ad.php:973 +#: frontend/page-place-ad.php:976 msgid "" "Hi, Payment is required for posting Ads in this website and we couldn't find " "a Payment Transaction assigned to you. You can't post Ads this time. If you " @@ -1708,39 +1798,39 @@ msgstr "" "Zeitpunkt keine Anzeigen posten. Wenn Du denkst dass dies ein Fehler ist, " "dann wende Dich bitte an den Webseiten-Betreiber." -#: frontend/page-place-ad.php:1000 +#: frontend/page-place-ad.php:1003 msgid "" "You did not select a Payment Term. Please select a Payment Term for this Ad." msgstr "Du hast keine Bezahlart für Deine Anzeige ausgewählt. " -#: frontend/page-place-ad.php:1005 +#: frontend/page-place-ad.php:1008 msgid "Please enter a start date for the Ad." msgstr "Du hast kein Startdatum für Deine Anzeige ausgewählt. " -#: frontend/page-place-ad.php:1010 +#: frontend/page-place-ad.php:1013 msgid "Please enter an end date for the Ad." msgstr "Du hast keine Zahlungsart für Deine Anzeige ausgewählt." -#: frontend/page-place-ad.php:1014 +#: frontend/page-place-ad.php:1017 #: includes/form-fields/class-form-fields-validator.php:71 msgid "The start date must occur before the end date." msgstr "Das Startdatum muss vor dem Endatum sein!" -#: frontend/page-place-ad.php:1019 +#: frontend/page-place-ad.php:1022 msgid "You did not enter a title for your Ad" msgstr "Du hast Deiner Anzeige keinen Titel gegeben." -#: frontend/page-place-ad.php:1024 +#: frontend/page-place-ad.php:1027 msgid "" "You did not enter any text for your Ad. Please enter some text for your Ad." msgstr "Du hast keinen Text für Deine Anzeige eingegeben." -#: frontend/page-place-ad.php:1037 +#: frontend/page-place-ad.php:1040 msgid "" "You did not enter your website address. Your website address is required." msgstr "Du hast keine Website-Adresse eingegeben. " -#: frontend/page-place-ad.php:1043 +#: frontend/page-place-ad.php:1046 msgid "" "Your website address is not properly formatted. Please make sure you have " "included the http:// part of your website address" @@ -1748,15 +1838,15 @@ msgstr "" "Die Website-Adresse ist nicht richtig formatiert. Bitte vergewissere Dich, " "dass http:// am Anfang der Adresse steht" -#: frontend/page-place-ad.php:1048 +#: frontend/page-place-ad.php:1051 msgid "You did not enter your name. Your name is required." msgstr "Du hast Deinen Namen nicht eingegeben." -#: frontend/page-place-ad.php:1053 +#: frontend/page-place-ad.php:1056 msgid "You did not enter your email. Your email is required." msgstr "Du hast Deine E-Mail-Adresse nicht eingegeben. " -#: frontend/page-place-ad.php:1058 frontend/page-reply-to-ad.php:160 +#: frontend/page-place-ad.php:1061 frontend/page-reply-to-ad.php:160 msgid "" "The email address you entered was not a valid email address. Please check " "for errors and try again." @@ -1764,7 +1854,7 @@ msgstr "" "Die E-Mail-Adresse ist ungültig. Bitte überprüfe die Adresse und versuche es " "noch einmal." -#: frontend/page-place-ad.php:1060 +#: frontend/page-place-ad.php:1063 msgid "" "The email address you entered is not allowed in this website. Please use an " "email address from one of the following domains: %s." @@ -1772,35 +1862,35 @@ msgstr "" "Die E-Mail-Adresse ist ungültig. Bitte verwende eine E-Mail-Adresse von " "folgenden Domains: %s." -#: frontend/page-place-ad.php:1071 +#: frontend/page-place-ad.php:1074 msgid "You did not enter your phone number. Your phone number is required." msgstr "Du hast Deine Telefonnummer nicht eingegeben." -#: frontend/page-place-ad.php:1089 -#: includes/helpers/widgets/multiple-region-selector.php:124 +#: frontend/page-place-ad.php:1092 +#: includes/helpers/widgets/multiple-region-selector.php:144 msgid "You did not enter your country. Your country is required." msgstr "Du hast Dein Land nicht eingegeben. " -#: frontend/page-place-ad.php:1098 -#: includes/helpers/widgets/multiple-region-selector.php:125 +#: frontend/page-place-ad.php:1101 +#: includes/helpers/widgets/multiple-region-selector.php:145 msgid "You did not enter your state. Your state is required." msgstr "Du hast Dein Bundesland nicht eingegeben." -#: frontend/page-place-ad.php:1107 -#: includes/helpers/widgets/multiple-region-selector.php:127 +#: frontend/page-place-ad.php:1110 +#: includes/helpers/widgets/multiple-region-selector.php:147 msgid "You did not enter your city. Your city is required." msgstr "Du hast Deine Stadt nicht eingegeben." -#: frontend/page-place-ad.php:1116 -#: includes/helpers/widgets/multiple-region-selector.php:126 +#: frontend/page-place-ad.php:1119 +#: includes/helpers/widgets/multiple-region-selector.php:146 msgid "You did not enter your county/village. Your county/village is required." msgstr "Du hast Deinen Adresszusatz nicht eingegeben. " -#: frontend/page-place-ad.php:1123 +#: frontend/page-place-ad.php:1126 msgid "You did not enter the price of your item. The item price is required." msgstr "Du hast keinen Preis eingegeben. " -#: frontend/page-place-ad.php:1129 +#: frontend/page-place-ad.php:1132 msgid "" "You have entered an invalid item price. Make sure your price contains " "numbers only. Please do not include currency symbols." @@ -1808,18 +1898,18 @@ msgstr "" "Du hast einen ungültigen Preis eingegeben. Der Preis darf nur aus Zahlen " "bestehen. Bitte kein Währungssymbol mit eingeben." -#: frontend/page-place-ad.php:1147 +#: frontend/page-place-ad.php:1150 msgid "You did not accept the terms of service" msgstr "Du hast die Datenschutzerklärung nicht anerkannt." -#: frontend/page-place-ad.php:1163 +#: frontend/page-place-ad.php:1166 msgid "" "Your Ad was flagged as spam. Please contact the administrator of this site." msgstr "" "Deine Nachricht wurde als SPAM identifiziert. Bitte kontaktiere den " "Administrator der Website." -#: frontend/page-place-ad.php:1354 +#: frontend/page-place-ad.php:1357 msgid "" "We were unable to find a Payment Transaction assigned to this operation. No " "images can be added at this time." @@ -1827,28 +1917,28 @@ msgstr "" "Wir konnten keine Bezahl-Transaktion zu diesem Vorgang finden. Bilder können " "nicht hinzugefügt werden." -#: frontend/page-place-ad.php:1361 +#: frontend/page-place-ad.php:1364 msgid "The specified Ad doesn't exists. No images can be added at this time." msgstr "Die Anzeige existiert nicht. Das Bild kann nicht hinzugefügt werden." -#: frontend/page-place-ad.php:1440 frontend/page-place-ad.php:1492 +#: frontend/page-place-ad.php:1443 frontend/page-place-ad.php:1495 #: includes/frontend/class-submit-listing-page.php:393 msgid "" "We were unable to find a Payment Transaction assigned to this operation." msgstr "Wir können keine Bezahl-Transaktion für diesen Vorgang finden." -#: frontend/page-place-ad.php:1447 frontend/page-place-ad.php:1499 +#: frontend/page-place-ad.php:1450 frontend/page-place-ad.php:1502 #: frontend/page-renew-ad.php:408 #: includes/frontend/class-submit-listing-page.php:400 msgid "The Ad associated with this transaction doesn't exists." msgstr "Die Anzeige mit dieser Transaktion existiert nicht." -#: frontend/page-renew-ad.php:73 +#: frontend/page-renew-ad.php:72 #, fuzzy msgid "That Ad doesn't need to be renewed." msgstr "Die Anzeige muss nicht erneuert werden." -#: frontend/page-renew-ad.php:78 +#: frontend/page-renew-ad.php:77 msgid "" "There was an error trying to renew your Ad. The URL is not valid. Please " "contact the Administrator of this site for further assistance." @@ -1856,7 +1946,7 @@ msgstr "" "Es gab ein Problem mit dem Erneuern Deiner Anzeige. Bitte probiere es noch " "einmal oder kontaktiere den Webseiten-Betreiber!" -#: frontend/page-renew-ad.php:94 +#: frontend/page-renew-ad.php:93 msgid "" "You can't renew your Ad at this time because the payment associated with " "this transaction failed (see reasons below)." @@ -1864,7 +1954,7 @@ msgstr "" "Du kannst Deine Anzeige nicht erneuern da die Bezahlung die mit dieser " "Transaktion verknüpft ist fehlerhaft ist (Gründe siehe unten)." -#: frontend/page-renew-ad.php:117 +#: frontend/page-renew-ad.php:116 msgid "" "The Ad was posted under a Payment Term that no longer exists or is disabled. " "The Ad can't be renewed." @@ -1872,11 +1962,11 @@ msgstr "" "Die Anzeige wurde mit einer Gebühr eingestellt die es nicht länger gibt oder " "deaktiviert wurde. Die Anzeige kann nicht erneuert werden!" -#: frontend/page-renew-ad.php:154 +#: frontend/page-renew-ad.php:153 msgid "You can see your Ad here" msgstr "Du kannst Deine Anzeige hier sehen:" -#: frontend/page-renew-ad.php:200 +#: frontend/page-renew-ad.php:201 msgid "" "You are trying to renew your Ad using a different Payment Term. That's not " "allowed." @@ -1996,7 +2086,7 @@ msgstr "Verkäufer" msgid "Visit Website" msgstr "Webseite" -#: frontend/placeholders.php:655 includes/functions/listings.php:405 +#: frontend/placeholders.php:655 includes/functions/listings.php:415 msgid "Location" msgstr "Ort" @@ -2068,30 +2158,30 @@ msgstr "" "Ein Problem trat auf, als ein Benutzer versuchte für eine Anzeige zu " "bezahlen. Die Transaktionsdaten siehst Du unten." -#: frontend/templates/email-abort-payment-admin.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:12 msgid "User Name" msgstr "Dein Name" -#: frontend/templates/email-abort-payment-admin.tpl.php:10 +#: frontend/templates/email-abort-payment-admin.tpl.php:13 msgid "User Login" msgstr "Login" -#: frontend/templates/email-abort-payment-admin.tpl.php:11 +#: frontend/templates/email-abort-payment-admin.tpl.php:14 msgid "User Email" msgstr "E-Mail-Format" -#: frontend/templates/email-abort-payment-admin.tpl.php:15 +#: frontend/templates/email-abort-payment-admin.tpl.php:18 #: includes/admin/import/class-csv-importer-columns.php:219 msgid "Payment Term Type" msgstr "Anzeigen-Dauer wählen" -#: frontend/templates/email-abort-payment-admin.tpl.php:16 +#: frontend/templates/email-abort-payment-admin.tpl.php:19 #: includes/admin/import/class-csv-importer-columns.php:207 msgid "Payment Term ID" msgstr "Transaktions-ID der Zahlung" -#: frontend/templates/email-abort-payment-admin.tpl.php:17 -#: frontend/templates/email-abort-payment-user.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:20 +#: frontend/templates/email-abort-payment-user.tpl.php:12 msgid "Payment transaction ID" msgstr "Transaktions-ID der Zahlung" @@ -2101,11 +2191,11 @@ msgid "Additional Details" msgstr "Zusätzliche Details" #: frontend/templates/email-ad-enabled-user.tpl.php:3 -#: frontend/templates/email-send-ad-access-key.tpl.php:1 +#: frontend/templates/email-send-ad-access-key.tpl.php:3 msgid "Hello %s," msgstr "Hallo %s," -#: frontend/templates/email-ad-enabled-user.tpl.php:6 +#: frontend/templates/email-ad-enabled-user.tpl.php:8 msgid "" "Your Ad \"%1$s\" was recently approved by the admin. You should be able to " "see the Ad published here: %2$s." @@ -2172,8 +2262,8 @@ msgstr "" msgid "Ad Information" msgstr "Anzeigen-Infos" -#: frontend/templates/email-ad-updated-user.tpl.php:18 -#: frontend/templates/email-place-ad-success-user.tpl.php:45 +#: frontend/templates/email-ad-updated-user.tpl.php:20 +#: frontend/templates/email-place-ad-success-user.tpl.php:47 msgid "" "If you have questions about your listing contact %s. Thank you for your " "business." @@ -2211,21 +2301,22 @@ msgstr "Gesamtbetrag (credits)" msgid "The next link will take you to a page where you can edit the listing:" msgstr "Hier kannst Du Deine Anzeige editieren:" -#: frontend/templates/email-send-ad-access-key.tpl.php:3 +#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#, fuzzy msgid "" -"Below you will find the access key for your Ad \"%s\" associated to the " +"Below you will find the access key for your Ad \"%s\" associated with the " "email address %s." msgstr "" "Unten findest Du den Zugangscode für Deine Anzeige \"%s\". Diese Anzeige ist " "registriert auf die E-Mail-Adresse (Login): %s." -#: frontend/templates/email-send-ad-access-key.tpl.php:6 +#: frontend/templates/email-send-ad-access-key.tpl.php:10 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:13 #: templates/admin/view-listing-admin-page.tpl.php:11 msgid "Access Key" msgstr "Zugangscode" -#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#: frontend/templates/email-send-ad-access-key.tpl.php:11 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:14 msgid "Edit Link:" msgstr "Bearbeitungslink:" @@ -2262,6 +2353,12 @@ msgstr "Hast Du Dein Passwort vergessen?" msgid "Classifieds Menu" msgstr "Anzeigen" +#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 +#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 +#, fuzzy +msgid "Complete Payment" +msgstr "Zahlung vervollständigen" + #: frontend/templates/page-buy-credits-final-step.tpl.php:7 msgid "" "The credit in your account can be used to pay for posting your Ads. You can " @@ -2278,9 +2375,9 @@ msgstr "Neue Gebühr erstellen" #: frontend/templates/page-buy-credits-select-credit-plan-step.tpl.php:18 #: frontend/templates/page-renew-ad-order-step.tpl.php:27 -#: frontend/templates/page-reply-to-ad.tpl.php:43 +#: frontend/templates/page-reply-to-ad.tpl.php:48 #: frontend/templates/payments-billing-form.tpl.php:124 -#: frontend/templates/payments-checkout-page.tpl.php:28 +#: frontend/templates/payments-checkout-page.tpl.php:27 #: frontend/templates/payments-payment-completed-page.tpl.php:18 msgid "Continue" msgstr "weiter" @@ -2312,27 +2409,27 @@ msgstr "Zugangscode erneut senden" msgid "Enter Ad Details" msgstr "Anzeige bearbeiten" -#: frontend/templates/page-place-ad-details-step.tpl.php:35 +#: frontend/templates/page-place-ad-details-step.tpl.php:36 #: includes/admin/import/class-csv-importer-columns.php:79 #: includes/admin/listings/class-listing-owner-metabox.php:59 msgid "Ad Owner" msgstr "Besitzer der Anzeige" -#: frontend/templates/page-place-ad-details-step.tpl.php:41 -#: frontend/templates/page-place-ad-order-step.tpl.php:60 +#: frontend/templates/page-place-ad-details-step.tpl.php:43 +#: frontend/templates/page-place-ad-order-step.tpl.php:61 msgid "User" msgstr "Benutzer" -#: frontend/templates/page-place-ad-details-step.tpl.php:42 -#: frontend/templates/page-place-ad-order-step.tpl.php:61 +#: frontend/templates/page-place-ad-details-step.tpl.php:44 +#: frontend/templates/page-place-ad-order-step.tpl.php:62 msgid "Select an User owner for this Ad" msgstr "Wähle einen Benutzer für diese Anzeige!" -#: frontend/templates/page-place-ad-details-step.tpl.php:77 +#: frontend/templates/page-place-ad-details-step.tpl.php:81 msgid "Add Details and Contact Information" msgstr "Details und Kontaktinformationen der Anzeige hinzufügen" -#: frontend/templates/page-place-ad-order-step.tpl.php:73 +#: frontend/templates/page-place-ad-order-step.tpl.php:75 msgid "Please select a payment term for your Ad" msgstr "" "Du hast keine Zahlungsart für Deiner Anzeige ausgewählt. Diese Information " @@ -2377,7 +2474,12 @@ msgstr "" msgid "Your Ad has been renewed" msgstr "Deine Anzeige wurde erneuert." -#: frontend/templates/page-renew-ad.tpl.php:15 +#: frontend/templates/page-renew-ad-order-step.tpl.php:6 +#, fuzzy +msgid "Select Payment Term" +msgstr "Bitte eine Zahlungsart auswählen" + +#: frontend/templates/page-renew-ad.tpl.php:13 msgid "" "Please click the payment button below to proceed with Payment for your Ad " "renewal. You will be asked to pay %s." @@ -2385,19 +2487,19 @@ msgstr "" "Bitte klicke den Button um Deine Einstellgebühr zu bezahlen. Deine " "Einstellungsgebühr beträgt %s." -#: frontend/templates/page-reply-to-ad.tpl.php:7 +#: frontend/templates/page-reply-to-ad.tpl.php:10 msgid "You are responding to Ad: %s." msgstr "Du antwortest auf: %s." -#: frontend/templates/page-reply-to-ad.tpl.php:18 +#: frontend/templates/page-reply-to-ad.tpl.php:24 msgid "Your name" msgstr "Dein Name" -#: frontend/templates/page-reply-to-ad.tpl.php:24 +#: frontend/templates/page-reply-to-ad.tpl.php:30 msgid "Your email address" msgstr "Gib Deine E-Mail-Adresse ein" -#: frontend/templates/page-reply-to-ad.tpl.php:30 +#: frontend/templates/page-reply-to-ad.tpl.php:36 msgid "Your message" msgstr "Gib Deine Nachricht unten ein" @@ -2405,19 +2507,19 @@ msgstr "Gib Deine Nachricht unten ein" msgid "Search for ads containing this word or phrase" msgstr "Suche nach Anzeigen, welche dieses Wort oder Phrase enthalten." -#: frontend/templates/page-search-ads.tpl.php:37 +#: frontend/templates/page-search-ads.tpl.php:41 msgid "For ads posted by" msgstr "Nach Anzeigen von" -#: frontend/templates/page-search-ads.tpl.php:39 +#: frontend/templates/page-search-ads.tpl.php:43 msgid "All Users" msgstr "Alle Benutzer" -#: frontend/templates/page-search-ads.tpl.php:48 +#: frontend/templates/page-search-ads.tpl.php:55 msgid "Min price" msgstr "Min. Preis" -#: frontend/templates/page-search-ads.tpl.php:52 +#: frontend/templates/page-search-ads.tpl.php:59 msgid "Max price" msgstr "Max. Preis" @@ -2425,9 +2527,16 @@ msgstr "Max. Preis" msgid "Pay With 2Checkout" msgstr "Mit 2Checkout bezahlen" -#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:791 -#: includes/admin/class-listings-personal-data-provider.php:115 -#: includes/admin/class-listings-personal-data-provider.php:125 +#: frontend/templates/payments-billing-form.tpl.php:1 +#, fuzzy +msgid "" +"Please fill in the billing information in the form below to place your " +"payment." +msgstr "Bitte fülle die Zahlungsinformationen in dem Formular unten aus." + +#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:797 +#: includes/admin/class-listings-personal-data-provider.php:117 +#: includes/admin/class-listings-personal-data-provider.php:127 #: includes/admin/import/class-csv-importer-columns.php:230 msgid "Country" msgstr "Land" @@ -2465,15 +2574,15 @@ msgid "Address Line 2" msgstr "Adresse Zeile 2" #: frontend/templates/payments-billing-form.tpl.php:92 -#: includes/admin/class-listings-personal-data-provider.php:116 -#: includes/admin/class-listings-personal-data-provider.php:126 +#: includes/admin/class-listings-personal-data-provider.php:118 +#: includes/admin/class-listings-personal-data-provider.php:128 #: includes/admin/import/class-csv-importer-columns.php:238 msgid "State" msgstr "Bundesland" -#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:811 -#: includes/admin/class-listings-personal-data-provider.php:117 -#: includes/admin/class-listings-personal-data-provider.php:127 +#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:817 +#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:129 #: includes/admin/import/class-csv-importer-columns.php:260 msgid "City" msgstr "Stadt" @@ -2487,14 +2596,56 @@ msgstr "Postleitzahl" msgid "Email" msgstr "E-Mail" +#: frontend/templates/payments-credit-plans-table.tpl.php:7 +#, fuzzy +msgid "" +"You can additionally purchase a Credit Plan to add credit to your account. " +"If you select to pay using credits, the price of the selected payment term " +"will be deducted from your account balance after you have completed payment." +msgstr "" +"Du kannst zusätzliche Credits für Dein Konto kaufen. Wenn Du mit Credits " +"bezahlst wird der Betrag von Deinem Konto abgebucht nachdem Du die Bezahlung " +"durchgeführt hast." + #: frontend/templates/payments-credit-plans-table.tpl.php:22 msgid "No credit plans available." msgstr "Keine Zahlungsmethode möglich." +#: frontend/templates/payments-credit-plans-table.tpl.php:51 +#, fuzzy +msgid "clear selection" +msgstr "Auswahl löschen" + +#: frontend/templates/payments-payment-completed-page.tpl.php:2 +#, fuzzy +msgid "Transaction Details" +msgstr "Zahlungsdetails" + +#: frontend/templates/payments-payment-page.tpl.php:3 +#, fuzzy +msgid "You are about to pay for the following items." +msgstr "Du zahlst für folgende Auswahl:" + +#: frontend/templates/payments-payment-page.tpl.php:5 +#, fuzzy +msgid "Payment Terms" +msgstr "Datenschutzerklärung" + #: frontend/templates/payments-paypal-payment-button.tpl.php:30 msgid "Make payments with PayPal - it's fast, free and secure!" msgstr "Mit PayPal bezahlen - schnell, kostenlos und sicher!" +#: frontend/templates/payments-transaction-items-table.tpl.php:4 +#: frontend/templates/payments-transaction-items-table.tpl.php:13 +#, fuzzy +msgid "Item" +msgstr "Beschreibung" + +#: frontend/templates/payments-transaction-items-table.tpl.php:34 +#, fuzzy +msgid "Total Amount (credit)" +msgstr "Gesamtsumme" + #: frontend/templates/widget-categories-form.tpl.php:9 msgid "Hide empty categories." msgstr "Leere Kategorieren verstecken." @@ -2567,7 +2718,7 @@ msgstr "Schlüsselwortfeld zeigen?" msgid "Show Posted By field?" msgstr "Erstellt am-Datum zeigen?" -#: frontend/templates/widget-search-form.tpl.php:28 +#: frontend/templates/widget-search-form.tpl.php:32 msgid "Show Category field?" msgstr "Kategoriefeld anzeigen?" @@ -2583,23 +2734,23 @@ msgstr "AWPCP Kategorien" msgid "Ad Categories" msgstr "Anzeigenkategorien" -#: frontend/widget-latest-ads.php:13 +#: frontend/widget-latest-ads.php:17 msgid "AWPCP Latest Ads" msgstr "AWPCP Letzte Anzeigen" -#: frontend/widget-latest-ads.php:14 +#: frontend/widget-latest-ads.php:18 msgid "Displays a list of latest Ads" msgstr "Zeigt eine Liste der neuesten Anzeigen" -#: frontend/widget-latest-ads.php:30 +#: frontend/widget-latest-ads.php:34 msgid "Latest Ads" msgstr "Letzte Anzeigen" -#: frontend/widget-latest-ads.php:72 +#: frontend/widget-latest-ads.php:76 msgid "There are currently no ads to show." msgstr "Im Moment sind keine Anzeigen vorhanden." -#: frontend/widget-latest-ads.php:114 +#: frontend/widget-latest-ads.php:118 msgid "Read more" msgstr "weiterlesen" @@ -2631,67 +2782,67 @@ msgstr "Alle Kontaktnamen" msgid "Select Option" msgstr "Bitte wähle" -#: frontend/widget-search.php:105 +#: frontend/widget-search.php:106 msgid "Search by keyword" msgstr "Nach Schlüsselwort suchen" -#: frontend/widget-search.php:119 +#: frontend/widget-search.php:121 msgid "Search by Category" msgstr "Suchen in der Kategorie" -#: frontend/widget-search.php:137 +#: frontend/widget-search.php:141 msgid "Search" msgstr "Suchen" -#: functions.php:427 +#: functions.php:431 msgid "%s ago" msgstr "vor %s" -#: functions.php:604 +#: functions.php:610 msgid "Ads per page:" msgstr "Anzeigen pro Seite" -#: functions.php:621 +#: functions.php:627 msgid "Page {current_page_number} of {number_of_pages}" msgstr "Seite {current_page_number} von {number_of_pages}" -#: functions.php:732 +#: functions.php:738 msgid "None" msgstr "Kein" -#: functions.php:792 +#: functions.php:798 msgid "separate countries by commas" msgstr "Länder mit Komma trennen" -#: functions.php:801 +#: functions.php:807 msgid "State/Province" msgstr "Bundesland" -#: functions.php:802 +#: functions.php:808 msgid "separate states by commas" msgstr "Bundesländer mit Komma trennen" -#: functions.php:812 +#: functions.php:818 msgid "separate cities by commas" msgstr "Städte mit Komma trennen" -#: functions.php:821 +#: functions.php:827 msgid "County/Village/Other" msgstr "Land/Ort/Andere" -#: functions.php:822 +#: functions.php:828 msgid "separate counties by commas" msgstr "Länder durch Komma trennen" -#: functions.php:1036 +#: functions.php:1050 msgid "-- Choose a Country --" msgstr "-- Wähle ein Land --" -#: functions.php:1507 templates/admin/main-classifieds-admin-page.tpl.php:58 +#: functions.php:1537 templates/admin/main-classifieds-admin-page.tpl.php:58 msgid "Free" msgstr "Kostenlos" -#: functions.php:1852 templates/components/media-center.tpl.php:14 +#: functions.php:1893 templates/components/media-center.tpl.php:14 msgid "" "The images or files with pale red background have been rejected by an " "administrator user. Likewise, files with a pale yellow background are " @@ -2702,7 +2853,7 @@ msgstr "" "abgewiesen. Dateien mit gelb-blassen Hintergrund warten auf Freischaltung. " "Abgewiesene oder auf Freischaltung wartende Dateien werden nicht angezeigt." -#: functions.php:1871 +#: functions.php:1912 msgid "" "This version of AWPCP %1$s module is not compatible with AWPCP version %2$s. " "Please get AWPCP %1$s %3$s or newer!" @@ -2711,55 +2862,55 @@ msgstr "" "aktuellen Version %2$s von AWPCP nicht kompatibel. Bitte lade die Versionen " "%1$s %3$s oder neuer herunter." -#: functions.php:1873 +#: functions.php:1914 msgid "Error" msgstr "Fehler" -#: functions.php:2231 +#: functions.php:2287 msgid "No errors." msgstr "Keine Fehler." -#: functions.php:2232 +#: functions.php:2288 msgid "The file is larger than upload_max_filesize." msgstr "Die Datei ist zu groß." -#: functions.php:2233 +#: functions.php:2289 msgid "The file is larger than form MAX_FILE_SIZE." msgstr "Die Datei ist zu groß." -#: functions.php:2234 +#: functions.php:2290 msgid "The file was only partially uploaded." msgstr "Die Datei wurde nicht vollständig geladen." -#: functions.php:2235 +#: functions.php:2291 msgid "No file was uploaded." msgstr "Es wurde keine Datei hochgeladen." -#: functions.php:2236 +#: functions.php:2292 msgid "Missing temporary directory." msgstr "Das temporäre Verzeichnis fehlt!" -#: functions.php:2237 +#: functions.php:2293 msgid "Can't write file to disk." msgstr "Schreibfehler Festplatte." -#: functions.php:2238 +#: functions.php:2294 msgid "The file upload was stopped by extension." msgstr "Die Datei-Erweiterung ist nicht erlaubt." -#: functions.php:2476 +#: functions.php:2536 msgid "Your Ad \"%s\" has been approved" msgstr "Deine Anzeige \"%s\" wurde angenommen" -#: functions.php:2499 +#: functions.php:2559 msgid "Your Ad \"%s\" has been successfully updated" msgstr "Deine Anzeige \"%s\" wurde erfolgreich aktualisiert." -#: functions.php:2521 +#: functions.php:2581 msgid "Images on Ad \"%s\" are awaiting approval" msgstr "Bilder der Anzeige \"%s\" warten auf Freischaltung" -#: functions.php:2523 +#: functions.php:2583 msgid "" "Images on Ad \"%s\" are awaiting approval. You can approve the images going " "to the Manage Images section for that Ad and clicking the \"Enable\" button " @@ -2769,13 +2920,13 @@ msgstr "" "Anzeige genehmigen, indem Du zur Anzeigenverwaltung gehst und dort auf " "\"Genehmigen\" klickst. Hier geht es weiter: %s" -#: functions.php:2526 +#: functions.php:2586 msgid "The Ad \"%s\" is awaiting approval" msgstr "Die Anzeige %s wartet auf Freischaltung." #. translators: %1$s is the listing title. %2$s is the URL for managing #. listing. -#: functions.php:2529 includes/functions/notifications.php:157 +#: functions.php:2589 includes/functions/notifications.php:156 msgid "" "The Ad \"%1$s\" is awaiting approval. You can approve the Ad going to the " "Classified edit section and clicking the \"Publish\" button. Click here to " @@ -2783,7 +2934,7 @@ msgid "" msgstr "" #. translators: %s is the URL for managing listing images. -#: functions.php:2536 includes/functions/notifications.php:165 +#: functions.php:2596 includes/functions/notifications.php:164 msgid "" "Additionally, You can approve the images going to the Manage Images section " "for that Ad and clicking the \"Enable\" button below each image. Click here " @@ -2792,27 +2943,27 @@ msgstr "" "Zusätzlich kannst Du die Bilder in der Bildverwaltung freigeben. Hier geht " "es weiter: %s" -#: functions.php:3068 +#: functions.php:3123 msgid "Email sent %s." msgstr "Diese E-Mail wurde gesendet am: %s" -#: functions.php:3199 +#: functions.php:3254 msgid "Not Installed" msgstr "Nicht installiert" -#: functions.php:3203 +#: functions.php:3258 msgid "Installed" msgstr "Instaliert" -#: functions.php:3211 +#: functions.php:3266 msgid "SSL Support: Yes." msgstr "SSL Support: Ja." -#: functions.php:3213 +#: functions.php:3268 msgid "SSL Support: No." msgstr "SSL Support: Nein." -#: functions.php:3216 +#: functions.php:3271 msgid "OpenSSL version:" msgstr "OpenSSL version:" @@ -2832,58 +2983,58 @@ msgstr "Anzeigen Felder" msgid "Search for listings matching" msgstr "Suche nach passenden Einträgen" -#: includes/admin/class-listings-personal-data-provider.php:110 +#: includes/admin/class-listings-personal-data-provider.php:112 msgid "Classified ID" msgstr "Anzeigen ID" -#: includes/admin/class-listings-personal-data-provider.php:111 +#: includes/admin/class-listings-personal-data-provider.php:113 msgid "Contact Name" msgstr "Kontaktname" -#: includes/admin/class-listings-personal-data-provider.php:112 +#: includes/admin/class-listings-personal-data-provider.php:114 msgid "Contact Phone Number" msgstr "Kontakt Telefonnummer" -#: includes/admin/class-listings-personal-data-provider.php:113 +#: includes/admin/class-listings-personal-data-provider.php:115 msgid "Contact Phone Number Digits" msgstr "Kontakt Telefonnummer Ziffern" -#: includes/admin/class-listings-personal-data-provider.php:114 +#: includes/admin/class-listings-personal-data-provider.php:116 msgid "Contact Email" msgstr "Kontakt E-Mail" -#: includes/admin/class-listings-personal-data-provider.php:118 -#: includes/admin/class-listings-personal-data-provider.php:128 +#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:130 #: includes/admin/import/class-csv-importer-columns.php:249 msgid "County" msgstr "Bundesland" -#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:121 msgid "Website URL" msgstr "Deine Webseite http(s):// (optional)" -#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:122 #: includes/admin/class-payment-personal-data-provider.php:47 msgid "Payer Email" msgstr "Bezahl- E-Mail-Adresse" -#: includes/admin/class-listings-personal-data-provider.php:121 +#: includes/admin/class-listings-personal-data-provider.php:123 msgid "Author IP" msgstr "Deine IP-Adresse" -#: includes/admin/class-listings-personal-data-provider.php:132 +#: includes/admin/class-listings-personal-data-provider.php:134 msgid "URL" msgstr "URL" -#: includes/admin/class-listings-personal-data-provider.php:146 +#: includes/admin/class-listings-personal-data-provider.php:148 msgid "Classifieds Listings" msgstr "Anzeigen" -#: includes/admin/class-listings-personal-data-provider.php:157 +#: includes/admin/class-listings-personal-data-provider.php:159 msgid "Classifieds Media" msgstr "Anzeigen-Medien" -#: includes/admin/class-listings-personal-data-provider.php:218 +#: includes/admin/class-listings-personal-data-provider.php:220 msgid "" "An unknown error occurred while trying to delete information for classified " "{listing_id}." @@ -2909,7 +3060,7 @@ msgid "Contact Address" msgstr "Kontakt Adresse" #: includes/admin/class-user-personal-data-provider.php:55 -#: includes/settings/class-display-settings.php:476 +#: includes/settings/class-display-settings.php:475 msgid "Contact Phone" msgstr "Kontakt Telefonnummer" @@ -3016,8 +3167,8 @@ msgstr "" "angehängten ZIP-Datei enthalten sind." #: includes/admin/import/class-importer-form-steps.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:17 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:88 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:14 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:80 msgid "Upload Source Files" msgstr "Source-Dateien hochladen" @@ -3026,12 +3177,12 @@ msgid "Configuration" msgstr "Konfiguration" #: includes/admin/import/class-importer-form-steps.php:29 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:173 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:176 msgid "Import" msgstr "Import" #: includes/admin/import/class-importer-form-steps.php:32 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:172 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:175 msgid "Test Import" msgstr "Test Import " @@ -3078,7 +3229,7 @@ msgstr[0] "%d Anzeige wurde bereits freigeschaltet." msgstr[1] "%d Anzeigen wurden bereits freigeschaltet." #: includes/admin/listings/class-listing-owner-metabox.php:62 -#: templates/frontend/order-submit-listing-section.tpl.php:45 +#: templates/frontend/order-submit-listing-section.tpl.php:42 msgid "Please select a user" msgstr "Wähle bitte ein Benutzer" @@ -3571,46 +3722,46 @@ msgstr "XML Sitemap" msgid "ZIP Code Search Module" msgstr "ZIP Code Search Modul" -#: includes/class-awpcp.php:1445 +#: includes/class-awpcp.php:1436 msgid "This field is required." msgstr "Pflichtfeld" -#: includes/class-awpcp.php:1446 +#: includes/class-awpcp.php:1437 #: includes/form-fields/class-form-fields-validator.php:101 #: includes/frontend/class-edit-listing-page.php:273 #: includes/frontend/class-edit-listing-page.php:350 -#: includes/settings/class-payment-general-settings.php:158 +#: includes/settings/class-payment-general-settings.php:157 msgid "Please enter a valid email address." msgstr "Bitte gib Deine E-Mail-Adresse ein!" -#: includes/class-awpcp.php:1447 includes/class-awpcp.php:1448 +#: includes/class-awpcp.php:1438 includes/class-awpcp.php:1439 msgid "Please enter a valid URL." msgstr "Bitte gib eine gültige URL (Webseitenadresse) ein!" -#: includes/class-awpcp.php:1449 +#: includes/class-awpcp.php:1440 msgid "Please enter a valid number." msgstr "Bitte gib eine Zahl ein!" -#: includes/class-awpcp.php:1450 +#: includes/class-awpcp.php:1441 msgid "Please enter a valid amount." msgstr "Bitte gib eine Menge ein!" -#: includes/class-awpcp.php:1451 +#: includes/class-awpcp.php:1442 msgid "" "You have reached the maximum allowed categories for the selected fee plan." msgstr "" "Du hast die maximal zulässigen Kategorien für den ausgewählten Gebührenplan " "erreicht." -#: includes/class-awpcp.php:1470 +#: includes/class-awpcp.php:1461 msgid "There are files currently being uploaded." msgstr "Es werden gerade Dateien hochgeladen." -#: includes/class-awpcp.php:1471 +#: includes/class-awpcp.php:1462 msgid "There are files pending to be uploaded." msgstr "Dateien sind in der Warteschlange zum Upload." -#: includes/class-awpcp.php:1472 +#: includes/class-awpcp.php:1463 msgid "You haven't uploaded any images or files." msgstr "Du hast noch keine Bilder oder Dateien hochgeladen." @@ -3671,7 +3822,7 @@ msgstr "" "anderen Seite verwendet. Kontaktiere den Support für " "weitere Hilfe." -#: includes/class-listings-api.php:106 includes/class-listings-api.php:306 +#: includes/class-listings-api.php:106 includes/class-listings-api.php:310 msgid "" "There was an unexpected error trying to save the listing details. Please try " "again or contact an administrator." @@ -3679,7 +3830,7 @@ msgstr "" "Es gab ein Problem beim Speichern der Anzeigendetails. Bitte probiere es " "noch einmal oder kontaktiere den Webseiten-Betreiber!" -#: includes/class-listings-api.php:197 +#: includes/class-listings-api.php:199 msgid "" "To avoid overwritting existing metadata, use fill_default_listing_metadata() " "instead." @@ -3687,11 +3838,11 @@ msgstr "" "Um zu vermeiden, dass vorhandene Metadaten überschrieben werden, verwende " "stattdessen fill_default_listing_metadata() ." -#: includes/class-listings-api.php:302 +#: includes/class-listings-api.php:306 msgid "There was an error trying to save the listing details:" msgstr "Fehler beim Speichern der Anzeigendetails:" -#: includes/class-listings-api.php:730 +#: includes/class-listings-api.php:734 msgid "" "If you have uploaded images your images will not show up until an admin has " "approved them." @@ -3739,19 +3890,19 @@ msgstr "" "versuche es erneut oder wende Dich mit einer Kopie Deiner Datei an den " "Kundendienst." -#: includes/credit-plan.php:109 includes/payment-term.php:133 +#: includes/credit-plan.php:114 includes/payment-term.php:133 msgid "The name of the plan is required." msgstr "Mussfeld" -#: includes/credit-plan.php:112 includes/payment-term.php:151 +#: includes/credit-plan.php:117 includes/payment-term.php:151 msgid "The number of credits must be greater than zero." msgstr "Die Anzahl der Credits muss größer als 0 sein!" -#: includes/credit-plan.php:115 +#: includes/credit-plan.php:120 msgid "The price must be greater or equal than zero." msgstr "Der Preis muss größer oder gleich 0 sein!" -#: includes/credit-plan.php:153 +#: includes/credit-plan.php:158 msgid "The Credit Plan doesn't exist." msgstr "Die Bezahlungsmethode gibt es nicht." @@ -3841,7 +3992,7 @@ msgstr "" msgid "Please read and accept the Terms of Service." msgstr "Bitte lies und akzeptiere die Datenschutzerklärungen." -#: includes/frontend/class-captcha.php:70 +#: includes/frontend/class-captcha.php:77 msgid "" "An unknown error ocurred trying to validate the answer to the CAPTCHA " "challenge." @@ -3865,14 +4016,14 @@ msgstr "" "Du bist nicht berechtigt, diese Aktion auszuführen. Nur angemeldete Benutzer " "dürfen Kleinanzeigen einreichen." -#: includes/frontend/class-default-captcha-provider.php:59 +#: includes/frontend/class-default-captcha-provider.php:76 msgid "" "You did not solve the math problem. Please solve the math problem to proceed." msgstr "" "Du hast die Rechenaufgabe nicht gelöst. Bitte geben gib das Ergebnis ein um " "fortzufahren." -#: includes/frontend/class-default-captcha-provider.php:64 +#: includes/frontend/class-default-captcha-provider.php:81 msgid "Your solution to the math problem was incorrect. Please try again." msgstr "Das Ergebnis der Rechenaufgabe war falsch. Bitte noch einmal versuchen" @@ -4034,15 +4185,15 @@ msgstr "Die ausgewählte Zahlungsbedingung wurde nicht gefunden." #. translators: %s will become an A HTML tag pointing to reCAPTCHA admin #. console. -#: includes/frontend/class-recaptcha-provider.php:47 +#: includes/frontend/class-recaptcha-provider.php:68 msgid "To use reCAPTCHA you must get an API key from %s." msgstr "Um reCAPTCHA zu benutzen benötigst Du einen API key von %s." -#: includes/frontend/class-recaptcha-provider.php:85 +#: includes/frontend/class-recaptcha-provider.php:106 msgid "Your answers couldn't be verified by the reCAPTCHA server." msgstr "Deine Antwort konnte vom reCAPTCHA Server nicht bestätigt werden." -#: includes/frontend/class-recaptcha-v2.php:51 +#: includes/frontend/class-recaptcha-v2.php:78 msgid "" "There was an error trying to verify the reCAPTCHA answer. " msgstr "" @@ -4057,8 +4208,8 @@ msgid "Login/Registration" msgstr "Login/Registrierung" #: includes/frontend/class-submit-listing-form-steps.php:48 -#: includes/ui/class-category-selector.php:125 -#: templates/components/category-selector.tpl.php:16 +#: includes/ui/class-category-selector.php:147 +#: templates/components/category-selector.tpl.php:15 msgid "Select a Category" msgstr "Kategorie auswählen" @@ -4217,12 +4368,12 @@ msgstr "" msgid "Could not create resized versions of image %s." msgstr "Vorschaubild von [ %s ] konnte nicht erstellt werden." -#: includes/functions/format.php:67 +#: includes/functions/format.php:50 msgid "Classifieds Management System" msgstr "AWPCP Anzeigensystem" #. translators: example: and -#: includes/functions/format.php:84 +#: includes/functions/format.php:67 msgid " and " msgstr " und " @@ -4274,23 +4425,23 @@ msgstr "Bitte gib die Details Deiner Anzeige ein." msgid "Top Level Category" msgstr "Hauptkategorie" -#: includes/functions/listings.php:278 -#: includes/listings/class-listings-content-renderer.php:169 +#: includes/functions/listings.php:288 +#: includes/listings/class-listings-content-renderer.php:182 msgid "Are you sure you want to flag this ad?" msgstr "Bist Du sicher diese Anzeige zu melden?" -#: includes/functions/listings.php:279 -#: includes/listings/class-listings-content-renderer.php:170 +#: includes/functions/listings.php:289 +#: includes/listings/class-listings-content-renderer.php:183 msgid "This Ad has been flagged." msgstr "Diese Anzeige wurde markiert" -#: includes/functions/listings.php:280 -#: includes/listings/class-listings-content-renderer.php:171 +#: includes/functions/listings.php:290 +#: includes/listings/class-listings-content-renderer.php:184 msgid "An error occurred while trying to flag the Ad." msgstr "" "Es ist ein Fehler aufgetreten als Du versucht hast die Anzeige zu melden." -#: includes/functions/listings.php:317 +#: includes/functions/listings.php:327 msgid "" "Sorry, that listing is not available. Please try browsing or searching " "existing listings." @@ -4298,7 +4449,7 @@ msgstr "" "Entschuldigung, diese Anzeige ist nicht vorhanden. Bitte schaue in den " "aktuellen Anzeigen." -#: includes/functions/listings.php:334 +#: includes/functions/listings.php:344 msgid "" "The Ad you are trying to view is pending approval. Once the Administrator " "approves it, it will be active and visible." @@ -4306,12 +4457,12 @@ msgstr "" "Diese Anzeige ist noch nicht freigeschaltet. Sobald der Administrator die " "Anzeige freigeschalten hat wird die Anzeige hier sichtbar." -#: includes/functions/listings.php:340 +#: includes/functions/listings.php:350 #: includes/listings/class-listings-content-renderer.php:106 msgid "Your email address was successfully verified." msgstr "Deine E-Mail-Adresse wurde erfolgreich bestätigt!" -#: includes/functions/listings.php:344 +#: includes/functions/listings.php:354 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the Administrator) and the author can see it." @@ -4320,7 +4471,7 @@ msgstr "" "genehmigt werden muss. Nur Du (der Administrator) und der Besitzer können " "die Anzeige sehen. " -#: includes/functions/listings.php:347 +#: includes/functions/listings.php:357 msgid "" "This Ad is currently disabled until you verify the email address used for " "the contact information. Only you (the author) can see it." @@ -4328,7 +4479,7 @@ msgstr "" "Diese Anzeige ist im Moment deaktiviert da Deine E-Mail-Adresse noch von Dir " "bestätigt werden muss. Nur Du (der Ersteller) kannst diese Anzeige sehen. " -#: includes/functions/listings.php:350 +#: includes/functions/listings.php:360 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the author) can see it." @@ -4346,13 +4497,13 @@ msgid "Listing \"%s\" was updated" msgstr "Anzeige \"%s\" wurde aktualisiert" #. translators: %s is the listing title. -#: includes/functions/notifications.php:147 +#: includes/functions/notifications.php:146 msgid "Images on listing \"%s\" are awaiting approval" msgstr "Bilder der Anzeige \"%s\" warten auf Freischaltung" #. translators: %1$s is the listing title. %2$s is the URL for managing listing #. images. -#: includes/functions/notifications.php:150 +#: includes/functions/notifications.php:149 msgid "" "Images on Ad \"%1$s\" are awaiting approval. You can approve the images " "going to the Manage Images section for that Ad and clicking the \"Enable\" " @@ -4360,11 +4511,11 @@ msgid "" msgstr "" #. translators: %s is the listing title. -#: includes/functions/notifications.php:154 +#: includes/functions/notifications.php:153 msgid "Listing \"%s\" is awaiting approval" msgstr "Die Anzeige \"%s\" wartet auf Freischaltung" -#: includes/functions/notifications.php:202 +#: includes/functions/notifications.php:201 msgid "Listing was flagged" msgstr "Die Anzeige wurde markiert" @@ -4383,7 +4534,8 @@ msgid "Missing License Status parameter" msgstr "Fehlende Lizenzparameter" #: includes/helpers/class-easy-digital-downloads.php:53 -msgid "License Status parameter was set to Failed" +#, fuzzy +msgid "License Status parameter was set to Failed" msgstr "Lizenzparamteter ungültigt gesetzt" #: includes/helpers/class-easy-digital-downloads.php:57 @@ -4489,7 +4641,7 @@ msgstr[1] "" "AWPCP Modul. Bitte besorge Dir eine neuere Version vom " "Customer Support. Bitte teile dem Support auch diese Fehlermeldung mit!" -#: includes/helpers/class-modules-manager.php:217 +#: includes/helpers/class-modules-manager.php:220 msgid "" "The version of AWPCP {modules_names} is not compatible with version " "{awpcp_version}." @@ -4503,11 +4655,11 @@ msgstr[1] "" "Die Versionen von AWPCP {modules_names} sind nicht kompatibel mit Version " "{awpcp_version}." -#: includes/helpers/class-modules-manager.php:219 +#: includes/helpers/class-modules-manager.php:222 msgid "Please get AWPCP {required_modules_versions} or newer!" msgstr "Bitte besorge Dir AWPCP {required_modules_versions} oder neuer!" -#: includes/helpers/class-modules-manager.php:250 +#: includes/helpers/class-modules-manager.php:256 msgid "" "The license for AWPCP is inactive. All features will remain " "disabled until you activate the license. Please go to the License Settings um dort die Lizenzen " "zu aktivieren." -#: includes/helpers/class-modules-manager.php:264 +#: includes/helpers/class-modules-manager.php:276 msgid "" "The AWPCP requires a license to be used. All features will " "remain disabled until a valid license is entered. Please go to the Licenses Settings um dort die " "passenden Lizenzen zu erwerben." -#: includes/helpers/class-modules-manager.php:269 +#: includes/helpers/class-modules-manager.php:284 msgid "" "The license for AWPCP expired. The module will continue to " "work but you will not receive automatic updates when a new version is " @@ -4566,7 +4718,7 @@ msgstr[1] "" "weiterhin funktionieren aber Du wirst keine neueren Versionen mehr erhalten " "wenn ein Update zur Verfügung steht." -#: includes/helpers/class-modules-manager.php:281 +#: includes/helpers/class-modules-manager.php:299 msgid "" "The AWPCP is currently disabled because it requires you to " "perform a manual upgrade before continuing. Please go to the " @@ -4584,11 +4736,11 @@ msgstr[1] "" "durchführen musst, bevor Du fortfahren kannst. Wechsele bitte " "in den Bereich für Kleinanzeigen-Administratoren um zu Aktualisieren." -#: includes/helpers/class-modules-manager.php:294 +#: includes/helpers/class-modules-manager.php:312 msgid "The specified module does not exists!." msgstr "Das Modul existiert nicht!" -#: includes/helpers/class-recaptcha-v3.php:56 +#: includes/helpers/class-recaptcha-v3.php:78 msgid "" "There was an error trying to analyze the current interaction with reCAPTCHA. " "" @@ -4596,7 +4748,7 @@ msgstr "" "Beim Analysieren der aktuellen Interaktion mit reCAPTCHA ist ein Fehler " "aufgetreten. " -#: includes/helpers/class-recaptcha-v3.php:98 +#: includes/helpers/class-recaptcha-v3.php:120 msgid "" "The current interaction was not approved by reCAPTCHA. Please try again." msgstr "" @@ -4663,11 +4815,11 @@ msgstr "" "Es gab ein Problem mit Deiner Zahlung. Bitte probiere es noch einmal oder " "kontaktiere den Webseiten-Betreiber!" -#: includes/helpers/widgets/class-user-field.php:32 +#: includes/helpers/widgets/class-user-field.php:48 msgid "Select an User" msgstr "Benutzer wählen" -#: includes/helpers/widgets/multiple-region-selector.php:123 +#: includes/helpers/widgets/multiple-region-selector.php:143 msgid "" "This particular region is already selected in another field. Please choose " "one or more sub-regions, to make the selection more specific, or change the " @@ -4677,19 +4829,19 @@ msgstr "" "wähle eine oder mehr Unterregionen um die Auswahl spezifischer zu machen. - " "Oder ändere die gewählte Region!" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Search Region" msgstr "Suchregion hinzufügen" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Region" msgstr "Region hinzufügen" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Delete Search Region" msgstr "Suchregion entfernen" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Remove Region" msgstr "Region abwählen" @@ -4768,6 +4920,11 @@ msgstr "Hier kannst Du Deine Anzeige erneuern." msgid "There was an error trying to update the database." msgstr "Es gab einen Fehler bei der Aktualisierung der Datenbank." +#: includes/media/class-attachment-action-ajax-handler.php:53 +#, fuzzy +msgid "You are not allowed to perform this action." +msgstr "Du bist nicht authorisiert, diese Aktion durchzuführen." + #: includes/media/class-attachment-action-ajax-handler.php:57 msgid "The specified file is not associated with Listing with ID %d." msgstr "Die Bild-Datei ist nicht mit der Anzeigen-ID %d verknüpft." @@ -4876,7 +5033,7 @@ msgstr "" "Die Datei war kleiner als die minimal erlaubte Dateigröße von " " Bytes. Die Datei wurde nicht hochgeladen." -#: includes/media/class-listings-media-uploader-component.php:51 +#: includes/media/class-listings-media-uploader-component.php:56 msgid "" "You can upload images of up to each, " " videos of up to each and " @@ -4887,7 +5044,7 @@ msgstr "" " und andere Dateien mit jeweils einer " "maximalen Größe von hochladen." -#: includes/media/class-listings-media-uploader-component.php:52 +#: includes/media/class-listings-media-uploader-component.php:57 msgid "" "You can upload images of up to each and " " other files (no videos) of up to each." @@ -4896,7 +5053,7 @@ msgstr "" "max-file-size> und andere Dateien (keine Videos) mit jeweils " "einer maximalen Größe von hochladen." -#: includes/media/class-listings-media-uploader-component.php:53 +#: includes/media/class-listings-media-uploader-component.php:58 msgid "" "You can upload images of up to each and " " videos of up to each." @@ -4905,7 +5062,7 @@ msgstr "" "max-file-size> und Videos mit jeweils einer maximalen Größe " "von hochladen." -#: includes/media/class-listings-media-uploader-component.php:54 +#: includes/media/class-listings-media-uploader-component.php:59 msgid "" "You can upload videos of up to each and " " other files (no images) of up to each." @@ -4914,14 +5071,14 @@ msgstr "" "max-file-size> und andere Dateien (keine Bilder) mit jeweils " "einer maximalen Größe von hochladen." -#: includes/media/class-listings-media-uploader-component.php:55 +#: includes/media/class-listings-media-uploader-component.php:60 msgid "" "You can upload images of up to each." msgstr "" "Du kannst Bilder mit einer maximalen Größe von hochladen." -#: includes/media/class-listings-media-uploader-component.php:56 +#: includes/media/class-listings-media-uploader-component.php:61 msgid "" "You can upload files (no videos or images) of up to each." @@ -4929,7 +5086,7 @@ msgstr "" "Du kannst Dateien (keine Videos oder Bilder) mit jeweils " "einer maximalen Größe von hochladen." -#: includes/media/class-listings-media-uploader-component.php:57 +#: includes/media/class-listings-media-uploader-component.php:62 msgid "" "You can upload videos of up to each." msgstr "" @@ -5027,15 +5184,15 @@ msgstr "Eine Anzeige." msgid "General" msgstr "Globale Einstellungen" -#: includes/models/payment-transaction.php:225 +#: includes/models/payment-transaction.php:232 msgid "The transaction must be assigned to a WordPress user." msgstr "Die Transaktion muss einem WordPress Benutzer zugewiesen werden." -#: includes/models/payment-transaction.php:238 +#: includes/models/payment-transaction.php:245 msgid "The transaction has no items." msgstr "Die Transaktion hat keine Einträge." -#: includes/models/payment-transaction.php:250 +#: includes/models/payment-transaction.php:257 msgid "" "The amount of credit in your account is not enough to pay for the selected " "items. Please choose one of the available Credit Plans in addition to the " @@ -5046,7 +5203,7 @@ msgstr "" "Deine Auswahl oder lade Dein Konto auf.
Du benötigst %d zusätzlichen " "Credit." -#: includes/models/payment-transaction.php:252 +#: includes/models/payment-transaction.php:259 msgid "" "The selected Credit Plan is not enough to pay for the selected items. Please " "choose a bigger Credit Plan or add credit to your account from your Profile " @@ -5055,11 +5212,11 @@ msgstr "" "Du hast nicht genügend Credits für diesen Vorgang. Bitte kaufe weitere " "Credits.
Du benötigst %d zusätzliche Credits." -#: includes/models/payment-transaction.php:282 +#: includes/models/payment-transaction.php:289 msgid "You must select a payment method." msgstr "Du hast keine Zahlungsmethode eingegeben." -#: includes/models/payment-transaction.php:294 +#: includes/models/payment-transaction.php:301 msgid "The payment status for this transaction hasn't been defined." msgstr "Der Anzeigen-Zahlungsstatus wurde nicht definiert." @@ -5077,7 +5234,7 @@ msgstr "" "ignorieren." #: includes/payment-gateway-2checkout.php:101 -#: includes/payment-gateway-paypal-standard.php:140 +#: includes/payment-gateway-paypal-standard.php:142 msgid "" "The amount you have paid does not match the required amount for this " "transaction. Please contact us to clarify the problem." @@ -5086,7 +5243,7 @@ msgstr "" "wende Dich an den Betreiber der Website, um das Problem zu klären." #: includes/payment-gateway-2checkout.php:109 -#: includes/payment-gateway-paypal-standard.php:148 +#: includes/payment-gateway-paypal-standard.php:150 msgid "" "There was an error processing your transaction. If funds have been deducted " "from your account, they have not been processed to our account. You will " @@ -5097,7 +5254,7 @@ msgstr "" "Dich bitte an PayPal, um das Problem zu klären." #: includes/payment-gateway-2checkout.php:119 -#: includes/payment-gateway-paypal-standard.php:158 +#: includes/payment-gateway-paypal-standard.php:160 msgid "" "It appears this transaction has already been processed. If you do not see " "your ad in the system please contact the site adminstrator for assistance." @@ -5106,7 +5263,7 @@ msgstr "" "nicht im System sichtbar ist, wende Dich bitte an den Betreiber der Website" #. translators: %s link url. -#: includes/payment-gateway-paypal-standard.php:58 +#: includes/payment-gateway-paypal-standard.php:60 msgid "" "We haven't received your payment information from PayPal yet and we are " "unable to verify your transaction. Please reload this page or visit admin section to change the order in which " "the fields mentioned below are shown to users in the Ad Details form." @@ -5900,33 +6057,33 @@ msgstr "" "Gehe zu um die Reihenfolge der Formularfelder zu " "ändern." -#: includes/settings/class-display-settings.php:452 +#: includes/settings/class-display-settings.php:451 msgid "Form Fields Behavior" msgstr "Verhalten von Formularfeldern" -#: includes/settings/class-display-settings.php:461 +#: includes/settings/class-display-settings.php:460 #: templates/admin/import/supported-csv-headers.tpl.php:18 msgid "Field" msgstr "Feld" -#: includes/settings/class-display-settings.php:462 +#: includes/settings/class-display-settings.php:461 msgid "Show field on form" msgstr "Feld im Formular anzeigen" -#: includes/settings/class-display-settings.php:463 +#: includes/settings/class-display-settings.php:462 msgid "Show field on search form" msgstr "Feld im Such-Formular anzeigen" -#: includes/settings/class-display-settings.php:464 +#: includes/settings/class-display-settings.php:463 #: templates/admin/import/supported-csv-headers.tpl.php:19 msgid "Required" msgstr "Pflichtfeld" -#: includes/settings/class-display-settings.php:465 +#: includes/settings/class-display-settings.php:464 msgid "Show value to registered users only" msgstr "Wert nur für registrierte Benutzer anzeigen" -#: includes/settings/class-display-settings.php:469 +#: includes/settings/class-display-settings.php:468 msgid "Website" msgstr "Website" @@ -6012,15 +6169,15 @@ msgstr "" "Adressen NICHT weiter. Daher ist es in der Regel sicherer, wenn Du diese " "Option abwählst!" -#. translators: full-email-address=John Doe , -#. short-email-address=john.doe@example.com -#: includes/settings/class-email-settings.php:84 +#. translators: %1$s=John Doe , %2$s=john.doe@example.com +#: includes/settings/class-email-settings.php:85 +#, fuzzy msgid "" "If checked, whenever the name of the recipient is available, emails will be " -"sent to instead of just . Some " -"email servers, however, have problems handling email address that include " -"the name of the recipient. If emails sent by the plugin are not being " -"delivered properly, try unchecking this settting." +"sent to %1$s instead of just %2$s. Some email servers, however, have " +"problems handling email address that include the name of the recipient. If " +"emails sent by the plugin are not being delivered properly, try unchecking " +"this settting." msgstr "" "Wenn diese Option aktiviert ist, werden E-Mails immer dann an anstatt an gesendet, wenn der Name des " @@ -6029,15 +6186,15 @@ msgstr "" "Wenn vom Plugin gesendete E-Mails nicht ordnungsgemäß zugestellt werden, " "deaktiviere diese Einstellung." -#: includes/settings/class-email-settings.php:91 +#: includes/settings/class-email-settings.php:93 msgid "Include the name of the recipient in the email address" msgstr "Den Namen vom Empfänger in der E-Mail-Adresse einfügen" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "Include Ad access key in email messages" msgstr "Zugangsdaten in E-Mail anzeigen?" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "" "Include Ad access key in email notifications. You may want to uncheck this " "option if you are using the Ad Management panel, but is not necessary." @@ -6045,98 +6202,98 @@ msgstr "" "E-Mail MIT Zugangsdaten. Kann abgewählt werden, wenn das Modul \"Ad " "Management Panel\" verwendet wird." -#: includes/settings/class-email-settings.php:106 +#: includes/settings/class-email-settings.php:108 msgid "Messages" msgstr "Nachrichten" -#: includes/settings/class-email-settings.php:118 +#: includes/settings/class-email-settings.php:120 msgid "Ad Posted Message" msgstr "Anzeige erstellt - E-Mail" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject for Ad posted notification email" msgstr "Betreff-Zeile für E-Mails \"Anzeige erstellt\"" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Your Classified Ad listing has been submitted" msgstr "Deine Anzeige wurde erstellt" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject line for email sent out when someone posts an Ad" msgstr "Betreff-Zeile für E-Mails wenn jemand eine Anzeige erstellt hat." -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Body for Ad posted notification email" msgstr "Text für \"Anzeige erstellt\" Benachrichtigungs-E-Mail" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "" "Thank you for submitting your Classified Ad. The details of your ad are " "shown below." msgstr "" "Vielen Dank für Deine Anzeige. Die Detailinformationen siehst Du unten." -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Message body text for email sent out when someone posts an Ad" msgstr "Nachrichtentext für E-Mails \"Anzeige aufgeben\"" -#: includes/settings/class-email-settings.php:127 +#: includes/settings/class-email-settings.php:129 msgid "Reply to Ad Message" msgstr "Antworte auf die Anzeigennachricht" -#: includes/settings/class-email-settings.php:132 +#: includes/settings/class-email-settings.php:134 msgid "Response notification for listing owners" msgstr "Antwortbenachrichtigung für Anzeigeninhaber" -#: includes/settings/class-email-settings.php:139 +#: includes/settings/class-email-settings.php:141 msgid "" "Subject and body template for email sent out when someone replies to an ad." msgstr "" "Betreff und Textvorlage für E-Mails, die gesendet werden, wenn jemand auf " "eine Anzeige antwortet." -#: includes/settings/class-email-settings.php:141 -#: includes/settings/class-email-settings.php:167 +#: includes/settings/class-email-settings.php:143 +#: includes/settings/class-email-settings.php:169 msgid "The name of the person who replied." msgstr "Der Name der Person, die geantwortet hat." -#: includes/settings/class-email-settings.php:142 -#: includes/settings/class-email-settings.php:168 +#: includes/settings/class-email-settings.php:144 +#: includes/settings/class-email-settings.php:170 msgid "The email adderss of the person who replied." msgstr "Die E-Mail-Adresse der Person, die geantwortet hat." -#: includes/settings/class-email-settings.php:143 -#: includes/settings/class-email-settings.php:169 -#: includes/settings/class-email-settings.php:206 +#: includes/settings/class-email-settings.php:145 +#: includes/settings/class-email-settings.php:171 +#: includes/settings/class-email-settings.php:208 msgid "The title of the ad where the reply was posted." msgstr "Der Titel der Anzeige, in der die Antwort gesendet wurde." -#: includes/settings/class-email-settings.php:144 -#: includes/settings/class-email-settings.php:170 +#: includes/settings/class-email-settings.php:146 +#: includes/settings/class-email-settings.php:172 msgid "The URL for the ad where the reply was posted." msgstr "Die URL für die Anzeige, in der die Antwort gesendet wurde." -#: includes/settings/class-email-settings.php:145 -#: includes/settings/class-email-settings.php:171 +#: includes/settings/class-email-settings.php:147 +#: includes/settings/class-email-settings.php:173 msgid "The content of the reply." msgstr "Der Inhalt der Antwort." -#: includes/settings/class-email-settings.php:146 -#: includes/settings/class-email-settings.php:172 +#: includes/settings/class-email-settings.php:148 +#: includes/settings/class-email-settings.php:174 msgid "The title of this website" msgstr "Der Titel dieser Webseite" -#: includes/settings/class-email-settings.php:147 -#: includes/settings/class-email-settings.php:173 +#: includes/settings/class-email-settings.php:149 +#: includes/settings/class-email-settings.php:175 msgid "The URL of this website's homepage" msgstr "Die URL dieser Webseite" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "Notify admin about contact message" msgstr "" "Administrator E-Mail-Kopie senden wenn jemand auf eine Anzeige antwortet." -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "" "An email will be sent to the administrator every time a visitor sends a " "message to one of the Ad posters through the Reply to Ad page." @@ -6144,11 +6301,11 @@ msgstr "" "Eine E-Mail wird an den Administrator gesendet wenn ein Besucher auf eine " "der Anzeigen antwortet." -#: includes/settings/class-email-settings.php:158 +#: includes/settings/class-email-settings.php:160 msgid "Response notification for administrators" msgstr "Antwortbenachrichtigung für Administratoren" -#: includes/settings/class-email-settings.php:165 +#: includes/settings/class-email-settings.php:167 msgid "" "Subject and body template for email sent out to administrators when someone " "replies to an ad." @@ -6156,29 +6313,29 @@ msgstr "" "Betreff und Textvorlage für E-Mails, die an Administratoren gesendet werden, " "wenn jemand auf eine Anzeige antwortet." -#: includes/settings/class-email-settings.php:183 +#: includes/settings/class-email-settings.php:185 msgid "Resend Access Key Message" msgstr "Zugangscode erneut senden" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "Subject for Request Ad Access Key email" msgstr "Betreff für Zugangscode erneut senden" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "The Classified Ad's ad access key you requested" msgstr "Der Bearbeitungs-Key für Deine Anzeige" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "" "Subject line for email sent out when someone requests their ad access key " "resent" msgstr "Betreff-Zeile für E-Mails \"Zugangscode erneut senden\"" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "Body for Request Ad Access Key email" msgstr "Textfeld Zugangscode erneut senden" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "You asked to have your Classified Ad's access key resent. Below are all the " "Ad access keys in the system that are tied to the email address you provided" @@ -6186,70 +6343,110 @@ msgstr "" "Du hast uns aufgefordert Deinen Bearbeitungs-Key erneut zu senden. Unten " "siehst Du alle Zugangs-Keys welche Deiner E-Mail-Adresse zugeordnet sind." -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "Message body text for email sent out when someone requests their ad access " "key resent" msgstr "Nachrichtentext für E-Mails \"Zugangscode erneut senden\"" -#: includes/settings/class-email-settings.php:192 +#: includes/settings/class-email-settings.php:194 msgid "Verify Email Message" msgstr "Bestätigungs-E-Mail Nachricht" -#: includes/settings/class-email-settings.php:197 +#: includes/settings/class-email-settings.php:199 msgid "Subject and body for verify email message" msgstr "Betreff und Text für die Bestätigung der E-Mail-Nachricht" -#: includes/settings/class-email-settings.php:200 +#: includes/settings/class-email-settings.php:202 msgid "Verify the email address used for Ad {listing_title}" msgstr "" "Überprüfe die für die Anzeige verwendete E-Mail-Adresse {listing_title}" -#: includes/settings/class-email-settings.php:204 +#: includes/settings/class-email-settings.php:203 +#, fuzzy +msgid "" +"Hello {author_name} \n" +"\n" +"You recently posted the Ad {listing_title} to {website_title}. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"{verification_link} \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"{website_title}\n" +"\n" +"{website_url}" +msgstr "" +"Hallo {author_name},\n" +"\n" +"Du hast die Anzeige {listing_title} vor kurzem auf {website_title} erstellt. " +"Vielen Dank! \n" +"\n" +"Um den Vorgang abzuschließen, musst Du Deine E-Mail-Adresse bestätigen. " +"Bitte klicke auf den unten stehenden Link. Du wirst auf die Website " +"weitergeleitet, auf der Du Deine Anzeige sehen kannst.\n" +"\n" +"{Bestätigungslink}\n" +"\n" +"Nachdem Du Deine E-Mail-Adresse bestätigt hast, wird der Administrator über " +"die neue Anzeige informiert. Wenn die Moderation aktiviert ist, bleibt Deine " +"Anzeige deaktiviert, bis der Administrator sie genehmigt.\n" +"\n" +"{Webseitentitel}\n" +"\n" +"{Webadresse}" + +#: includes/settings/class-email-settings.php:206 msgid "" "Subject and body template for email sent out to verify the email address." msgstr "" "Betreff und Textvorlage für die E-Mail, die zur Bestätigung der E-Mail-" "Adresse gesendet wird." -#: includes/settings/class-email-settings.php:207 +#: includes/settings/class-email-settings.php:209 msgid "The name of the owner of the listing." msgstr "Der Name des Anzeigeninhabers." -#: includes/settings/class-email-settings.php:208 +#: includes/settings/class-email-settings.php:210 msgid "Verification link." msgstr "Bestätigungslink." -#: includes/settings/class-email-settings.php:209 +#: includes/settings/class-email-settings.php:211 msgid "The title of this website." msgstr "Der Titel dieser Webseite." -#: includes/settings/class-email-settings.php:210 +#: includes/settings/class-email-settings.php:212 msgid "The URL of this webiste's homepage." msgstr "Die URL dieser Webseite." -#: includes/settings/class-email-settings.php:220 +#: includes/settings/class-email-settings.php:222 msgid "Incomplete Payment Message" msgstr "Zahlung ist nicht abgeschlossen" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "Subject for Incomplete Payment email" msgstr "Betreff für Zahlung ist nicht abgeschlossen" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "There was a problem processing your payment" msgstr "Es gab ein Problem mit der Bezahlung." -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "" "Subject line for email sent out when the payment processing does not complete" msgstr "Betreff-Zeile für E-Mails \"Bezahlung offen\"" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "Body for Incomplete Payment email" msgstr "Textfeld für Zahlung ist nicht abgeschlossen" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "There was a problem encountered during your attempt to submit payment. If " "funds were removed from the account you tried to use to make a payment " @@ -6260,36 +6457,36 @@ msgstr "" "abgebucht wurde, so kontaktiere bitte den Webseiten-Betreiber für weitere " "Hilfe. Wir werden Dir selbstverständlich das Geld zurückzahlen." -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "Message body text for email sent out when the payment processing does not " "complete" msgstr "Nachrichtentext für E-Mails \"Bezahlung offen\"" -#: includes/settings/class-email-settings.php:229 +#: includes/settings/class-email-settings.php:231 msgid "Renew Ad Message" msgstr "Anzeige erneuern - E-Mail" -#: includes/settings/class-email-settings.php:234 +#: includes/settings/class-email-settings.php:236 msgid "Subject for Renew Ad email" msgstr "Betreffzeile für Erneuerungs-Anzeige-E-Mail" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:237 +#: includes/settings/class-email-settings.php:239 msgid "Your ad will expire in %d days." msgstr "Deine Anzeige wird in %d Tagen deaktiviert." -#: includes/settings/class-email-settings.php:238 +#: includes/settings/class-email-settings.php:240 msgid "Subject line for email sent out when an Ad is about to expire." msgstr "Betreff-Zeile für E-Mails \"Anzeige wird ablaufen\"" -#: includes/settings/class-email-settings.php:244 -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:246 +#: includes/settings/class-email-settings.php:270 msgid "Body for Renew Ad email" msgstr "Textfeld für Erneuerungs-Anzeige-E-Mail" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:247 +#: includes/settings/class-email-settings.php:249 msgid "" "This is an automated notification that your Classified Ad will expire in %d " "days." @@ -6300,7 +6497,7 @@ msgstr "" #. translators: %d in this case is used to remind the user they can enter '%d' #. in the textarea where they want the plugin to replace the number of days #. until the ad expires. -#: includes/settings/class-email-settings.php:249 +#: includes/settings/class-email-settings.php:251 msgid "" "Message body text for email sent out when an Ad is about to expire. Use %d " "as placeholder for the number of days before the Ad expires." @@ -6308,115 +6505,115 @@ msgstr "" "Nachrichtentext für E-Mails \"Anzeige wird ablaufen\". Nutze %d als " "Platzhalter für die Anzahl der Tage bevor die Anzeige abgelaufen ist." -#: includes/settings/class-email-settings.php:256 +#: includes/settings/class-email-settings.php:258 msgid "Ad Renewed Message" msgstr "Anzeige erneuert - E-Mail" -#: includes/settings/class-email-settings.php:261 +#: includes/settings/class-email-settings.php:263 msgid "Subject for Ad Renewed email" msgstr "Betreffzeile für Erneuerungs-Anzeige-E-Mail" #. translators: %s is the title of the ad. -#: includes/settings/class-email-settings.php:264 +#: includes/settings/class-email-settings.php:266 msgid "Your ad \"%s\" has been successfully renewed." msgstr "Deine Anzeige \"%s\" wurde erfolgreich erneuert." -#: includes/settings/class-email-settings.php:265 +#: includes/settings/class-email-settings.php:267 msgid "Subject line for email sent out when an Ad is successfully renewed." msgstr "Betreffzeile für E-Mails \"Anzeige erneuert\"." -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "Your ad has been successfully renewed. More information below:" msgstr "Deine Anzeige wurde erfolgreich erneuert. Weitere Informationen:" -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "" "Message body text for email sent out when an Ad is successfully renewed. " msgstr "Nachrichtentext für E-Mails \"Anzeige erneuert\"" -#: includes/settings/class-email-settings.php:274 +#: includes/settings/class-email-settings.php:276 msgid "Ad Expired Message" msgstr "Nachricht für Anzeige abgelaufen" -#: includes/settings/class-email-settings.php:279 +#: includes/settings/class-email-settings.php:281 msgid "Subject for Ad Expired email" msgstr "Betreffzeile für abgelaufene Anzeigen-E-Mail" #. translators: %s is the name of the website. -#: includes/settings/class-email-settings.php:282 +#: includes/settings/class-email-settings.php:284 msgid "Your ad at %s has expired" msgstr "Deine Anzeige auf der Seite %s wurde deaktiviert" -#: includes/settings/class-email-settings.php:283 +#: includes/settings/class-email-settings.php:285 msgid "Subject line for email sent out when an ad has auto-expired" msgstr "Betreff-Zeile für E-Mails \"Anzeige abgelaufen\"" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Body for Ad Expired email" msgstr "Textfeld für Anzeige abgelaufen - E-Mail" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "This is an automated notification that your ad has expired." msgstr "" "Dies ist eine automatische Benachrichtigung dass Deine Anzeige abgelaufen " "ist." -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Message body text for email sent out when an ad has auto-expired" msgstr "E-Mail-Text für Benachrichtigung Anzeige abgelaufen." -#: includes/settings/class-email-settings.php:295 +#: includes/settings/class-email-settings.php:297 #: includes/settings/class-general-settings.php:599 msgid "Advanced" msgstr "Erweitert" -#: includes/settings/class-email-settings.php:305 +#: includes/settings/class-email-settings.php:307 msgid "Advanced Email Configuration" msgstr " Erweiterte E-Mail-Text-Einstellungen" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enable external SMTP server" msgstr "Externen SMTP Server aktivieren" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enabled external SMTP server (if emails not processing normally)." msgstr "" "Aktiviert externen SMTP Server (falls E-Mails nicht ordnungsgemäß bearbeitet " "werden)" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host" msgstr "SMTP host" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host (if emails not processing normally)." msgstr "SMTP Server" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port" msgstr "SMTP port" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port (if emails not processing normally)." msgstr "SMTP Port" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username" msgstr "SMTP username" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username (if emails not processing normally)." msgstr "SMTP Benutzername" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password" msgstr "SMTP password" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password (if emails not processing normally)." msgstr "SMTP Passwort" -#: includes/settings/class-email-settings.php:316 +#: includes/settings/class-email-settings.php:318 msgid "" " is not a valid email address. Please check the value you entered " "to use as the FROM email address for outgoing messages." @@ -6424,7 +6621,7 @@ msgstr "" " ist keine gültige E-Mail Adresse. Bitte prüfe Deine Eingabe für " "die \"von\" E-Mail Adresse." -#: includes/settings/class-email-settings.php:317 +#: includes/settings/class-email-settings.php:319 msgid "" " is not a valid email address. Please check the value you entered " "to use as recipient email address for admin notifications." @@ -7456,15 +7653,18 @@ msgstr "" "die mithilfe der Webhook-URL und des von Dir definierten Ereignisnamens " "erstellt wurde." -#: includes/settings/class-general-settings.php:919 +#. translators: %1$s is the link to Facebook Developer Apps page. %2$s is the +#. closing anchor tag. +#: includes/settings/class-general-settings.php:921 +#, fuzzy msgid "" -"You can find your application information in the Facebook Developer Apps page." +"You can find your application information in the %1$sFacebook Developer " +"Apps%2$s page." msgstr "" "Du kannst Deine Anwendungs-Informationen in der Facebook Developer Apps Seite finden." -#: includes/settings/class-general-settings.php:935 +#: includes/settings/class-general-settings.php:936 msgid "" "AWPCP needs to get an authorization token from Facebook to work correctly. " "You'll be redirected to Facebook to login. AWPCP does not store or obtain " @@ -7474,7 +7674,7 @@ msgstr "" "zu können. Du wirst zu Deinem Facebook-Login umgeleitet. AWPCP speichert " "keine persönlichen Einstellungen oder Informationen von Deinem FB profile!" -#: includes/settings/class-general-settings.php:936 +#: includes/settings/class-general-settings.php:937 msgid "" "Please choose Public as the audience for posts made by the application, even " "if you are just testing the integration. Facebook won't allow us to post " @@ -7484,11 +7684,11 @@ msgstr "" "Integration nur testest. Facebook erlaubt keinen Content zu posten wenn " "etwas anderes angewählt ist. " -#: includes/settings/class-general-settings.php:945 +#: includes/settings/class-general-settings.php:947 msgid "Click here to obtain an access token from Facebook" msgstr "Klicke hier, um ein Zugangstoken von Facebook zu erhalten" -#: includes/settings/class-general-settings.php:947 +#: includes/settings/class-general-settings.php:951 msgid "" "Please provide a value for the App Id and App Secret settings before trying " "to get an access token from Facebook." @@ -7496,7 +7696,7 @@ msgstr "" "Bitte gib einen Wert für die App-ID und die App-Geheimeinstellungen ein, " "bevor Du versuchst, ein Zugriffstoken von Facebook zu erhalten." -#: includes/settings/class-general-settings.php:958 +#: includes/settings/class-general-settings.php:960 msgid "" "Available Facebook Pages and Groups will be displayed after you enter a " "valid User Access Token." @@ -7504,18 +7704,16 @@ msgstr "" "Verfügbare Facebook-Seiten und -Gruppen werden angezeigt, nachdem Du ein " "gültiges Benutzerzugriffstoken eingegeben hast." -#: includes/settings/class-general-settings.php:959 +#. translators: %1$s opening anchor tag, %2$s closing anchor tag, %3$s opening +#. anchor tag, %4$s closing anchor tag, %5$s opening anchor tag, %6$s closing +#. anchor tag, %7$s opening anchor tag, %8$s closing anchor tag +#: includes/settings/class-general-settings.php:964 +#, fuzzy msgid "" -"As of April 4, 2018, all applications need to go through App Review " -"in order to get access to the Page API and Groups API. That means that you may need to submit your app for review (ask for the " -"manage_pages, publish_pages, " -"publish_to_groups permissions), before AWPCP can display the " +"All applications need to go through %1$sApp Review%2$s in order to get " +"access to the %3$sPage API%4$s and %5$sGroups API%6$s. That means that you " +"may need to %7$ssubmit your app for review%8$s (ask for the manage_pages, " +"publish_pages, publish_to_groups permissions), before AWPCP can display the " "list of pages and groups you manage and be able to post classifieds ads to " "those groups and pages." msgstr "" @@ -7532,19 +7730,19 @@ msgstr "" "verwalteten Seiten und Gruppen anzeigen und Kleinanzeigen in diese Gruppen " "und Seiten posten kann." -#: includes/settings/class-general-settings.php:977 +#: includes/settings/class-general-settings.php:989 msgid "None (Do not sent ads to a Facebook Page)" msgstr "Keine (Keine Anzeigen auf einer Facebook-Seite)" -#: includes/settings/class-general-settings.php:984 +#: includes/settings/class-general-settings.php:996 msgid "(Your own profile page)" msgstr "(Deine eigen Profilseite)" -#: includes/settings/class-general-settings.php:1008 +#: includes/settings/class-general-settings.php:1020 msgid "None (Do not sent ads to a Facebook Group)" msgstr "Keine (Keine Anzeigen auf einer Facebook-Gruppe)" -#: includes/settings/class-general-settings.php:1064 +#: includes/settings/class-general-settings.php:1076 msgid "" "Akismet SPAM control cannot be enabled because Akismet plugin is not " "installed or activated." @@ -7552,7 +7750,7 @@ msgstr "" "Du kannst die Akismet SPAM-Kontrolle nicht aktivieren, weil Akismet nicht " "installiert oder aktiviert ist." -#: includes/settings/class-general-settings.php:1068 +#: includes/settings/class-general-settings.php:1080 msgid "" "Akismet SPAM control cannot be enabled because Akismet is not properly " "configured." @@ -7560,7 +7758,7 @@ msgstr "" "Akismet SPAM kann nicht aktiviert werden weil Akismet nicht richtig " "konfiguriert ist." -#: includes/settings/class-general-settings.php:1094 +#: includes/settings/class-general-settings.php:1106 msgid "" "reCAPTCHA can't be used because the public key and private key settings are " "required for reCAPTCHA to work properly." @@ -7568,24 +7766,24 @@ msgstr "" "reCAPTCHA kann nicht benutzt werden weil der Öffentliche und Private " "Schlüssel fehlen." -#: includes/settings/class-general-settings.php:1096 +#: includes/settings/class-general-settings.php:1108 msgid "" "reCAPTCHA can't be used because the public key setting is required for " "reCAPTCHA to work properly." msgstr "" "reCAPTCHA kann nicht benutzt werden weil der Öffentliche Schlüssel fehlt." -#: includes/settings/class-general-settings.php:1098 +#: includes/settings/class-general-settings.php:1110 msgid "" "reCAPTCHA can't be used because the private key setting is required for " "reCAPTCHA to work properly." msgstr "reCAPTCHA kann nicht benutzt werden weil der Private Schlüssel fehlt." -#: includes/settings/class-general-settings.php:1145 +#: includes/settings/class-general-settings.php:1157 msgid "Thousands separator and decimal separator cant be the same." msgstr "Tausender- und Dezimaltrennzeichen dürfen nicht gleich sein!" -#: includes/settings/class-general-settings.php:1159 +#: includes/settings/class-general-settings.php:1171 msgid "" "Credit System was automatically disabled because you disabled Require " "Registration setting." @@ -7603,10 +7801,21 @@ msgid "Licenses" msgstr "Lizenzen" #: includes/settings/class-licenses-settings.php:64 -#: templates/admin/debug/plugin-info-debug-section.tpl.php:18 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:24 msgid "Premium Modules" msgstr "Premium Module" +#: includes/settings/class-licenses-settings.php:82 +#, fuzzy +msgid "" +"The IP address of your server is %s. Please make sure to include that " +"information if you need to contact support about problems trying to activate " +"your licenses." +msgstr "" +"Die IP-Adresse Deines Servers lautet . Stelle sicher, dass Du " +"diese Informationen angibst, wenn Du Dich bei Problemen mit der Aktivierung " +"Deiner Lizenzen an den Support wenden musst." + #: includes/settings/class-listings-moderation-settings.php:22 msgid "" "Email verification was disabled because you enabled Require Registration. " @@ -8014,20 +8223,21 @@ msgstr "Kategorie im Titel zeigen?" msgid "Show category in browser page title when viewing individual Ad" msgstr "Zeige Kategorie im Browser-Titel beim Aufruf einer einzelnen Anzeige" -#: includes/settings/class-listings-settings.php:472 +#: includes/settings/class-listings-settings.php:473 +#, fuzzy msgid "" "Enable this setting to display each listing on its own page, instead of " -"showing the listing's content inside the page." +"showing the listing's content inside the %s page." msgstr "" "Aktiviere diese Einstellung, um jede Anzeige auf einer eigenen Seite " "darzustellen, anstatt den Inhalt der Anzeige innerhalb der Seite zu zeigen." -#: includes/settings/class-listings-settings.php:478 +#: includes/settings/class-listings-settings.php:480 msgid "Display listings on their own page" msgstr "Anzeigen auf ihrer eigenen Seite anzeigen. " -#: includes/settings/class-listings-settings.php:486 +#: includes/settings/class-listings-settings.php:488 msgid "" "Portion of the URL that appears between the website's domain and the " "listing's information. Example: in ." @@ -8035,11 +8245,11 @@ msgstr "" "Teil der URL der zwischen der Webseitendomain und der Anzeigeninformation " "erscheint. Beispiel: in ." -#: includes/settings/class-listings-settings.php:496 +#: includes/settings/class-listings-settings.php:498 msgid "Listings slug" msgstr "Anzeigen slug = sprechende URL" -#: includes/settings/class-listings-settings.php:509 +#: includes/settings/class-listings-settings.php:511 msgid "" "Include the slug of the plugin's main page () in the URL " "that points to the page of an individual listing." @@ -8047,71 +8257,71 @@ msgstr "" "Slug Url der Hauptseite des Plugins () in die Anzeigen-URL " "einfügen." -#: includes/settings/class-listings-settings.php:512 +#: includes/settings/class-listings-settings.php:514 msgid "" "Include the slug of the plugin's main page in the URL that points to the " "page of an individual listing." msgstr "Slug Url der Hauptseite des Plugins in die Anzeigen-URL einfügen." -#: includes/settings/class-listings-settings.php:518 +#: includes/settings/class-listings-settings.php:520 msgid "Include the slug of the plugin's main page in the listing URL" msgstr "Slug Url der Hauptseite des Plugins in die Anzeigen-URL einfügen." -#: includes/settings/class-listings-settings.php:532 +#: includes/settings/class-listings-settings.php:534 msgid "Include the title in the listing URL" msgstr "Den Titel in die URL einfügen." -#: includes/settings/class-listings-settings.php:535 +#: includes/settings/class-listings-settings.php:537 msgid "" "Include the title in the URL that points to the page of an individual " "listing." msgstr "Den Titel in die URL der Anzeige einfügen." -#: includes/settings/class-listings-settings.php:541 +#: includes/settings/class-listings-settings.php:543 msgid "Include the name of the category in the listing URL" msgstr "Kategoriename in URL" -#: includes/settings/class-listings-settings.php:544 +#: includes/settings/class-listings-settings.php:546 msgid "" "Include the name of the category in the URL that points to the page of an " "individual listing." msgstr "Den Kategorie-Namen in die URL der Anzeige einbinden." -#: includes/settings/class-listings-settings.php:550 +#: includes/settings/class-listings-settings.php:552 msgid "Include the name of the country in the listing URL" msgstr "Das Land in die URL einfügen." -#: includes/settings/class-listings-settings.php:553 +#: includes/settings/class-listings-settings.php:555 msgid "" "Include the name of the country in the URL that points to the page of an " "individual listing." msgstr "Den Länder-Namen in die URL der Anzeige einfügen." -#: includes/settings/class-listings-settings.php:559 +#: includes/settings/class-listings-settings.php:561 msgid "Include the name of the state in the listing URL" msgstr "Das Bundesland in die URL einfügen." -#: includes/settings/class-listings-settings.php:562 +#: includes/settings/class-listings-settings.php:564 msgid "" "Include the name of the state in the URL that points to the page of an " "individual listing." msgstr "Den Bundesländer-Namen in die URL der Anzeige einfügen." -#: includes/settings/class-listings-settings.php:568 +#: includes/settings/class-listings-settings.php:570 msgid "Include the name of the city in the listing URL" msgstr "Den Stadtnamen in die URL einfügen." -#: includes/settings/class-listings-settings.php:571 +#: includes/settings/class-listings-settings.php:573 msgid "" "Include the name of the city in the URL that points to the page of an " "individual listing." msgstr "Den Städte-Namen in die URL der Anzeige einfügen." -#: includes/settings/class-listings-settings.php:577 +#: includes/settings/class-listings-settings.php:579 msgid "Include the name of the county in the listing URL" msgstr "Das Land in die URL einfügen." -#: includes/settings/class-listings-settings.php:580 +#: includes/settings/class-listings-settings.php:582 msgid "" "Include the name of the county in the URL that points to the page of an " "individual listing." @@ -8280,7 +8490,7 @@ msgstr "" "Payment-Zahlungen über HTTPS-Verbindung aktivieren. Dein Server muss HTTPS " "bereitstellen, damit dieses Feature funktioniert!" -#: includes/settings/class-payment-general-settings.php:109 +#: includes/settings/class-payment-general-settings.php:108 msgid "" "Force Secure URLs was not enabled because your website couldn't be accessed " "using a secure connection." @@ -8288,23 +8498,19 @@ msgstr "" "Die sicherer URLs wurde nicht verwendet weil Deine Webseite keine sichere " "Verbindung aufbauen konnte!" -#: includes/settings/class-payment-general-settings.php:135 -msgid "PayPal" -msgstr "PayPal" - -#: includes/settings/class-payment-general-settings.php:140 +#: includes/settings/class-payment-general-settings.php:139 msgid "PayPal Settings" msgstr "PayPal Einstellungen" -#: includes/settings/class-payment-general-settings.php:142 +#: includes/settings/class-payment-general-settings.php:141 msgid "Activate PayPal?" msgstr "PayPal aktivieren?" -#: includes/settings/class-payment-general-settings.php:146 +#: includes/settings/class-payment-general-settings.php:145 msgid "PayPal receiver email" msgstr "PayPal Empfänger-E-Mail" -#: includes/settings/class-payment-general-settings.php:149 +#: includes/settings/class-payment-general-settings.php:148 msgid "" "Email address for PayPal payments (if running in pay mode and if PayPal is " "activated)." @@ -8312,84 +8518,83 @@ msgstr "" "E-Mail-Adresse für PayPal Zahlungen (nur wenn im Bezahlmodus und wenn PayPal " "aktiviert ist)." -#: includes/settings/class-payment-general-settings.php:167 +#: includes/settings/class-payment-general-settings.php:166 msgid "PayPal Merchant ID" msgstr "PayPal Merchant ID" #: includes/settings/class-payment-general-settings.php:170 +#, fuzzy msgid "" "Merchant ID associated with the PayPal account that will receive the " -"payments. Go to https://www.paypal.com/myaccount/settings/ to obtain " -"your Merchant ID." +"payments. Go to %s to obtain your Merchant ID." msgstr "" "Händler-ID, die dem PayPal-Konto zugeordnet ist, auf dem die Zahlungen " "eingehen. Rufe https: //www.paypal.com/myaccount/settings/ auf, um " "Deine Händler-ID zu erhalten." -#: includes/settings/class-payment-general-settings.php:178 +#: includes/settings/class-payment-general-settings.php:180 msgid "The PayPal Currency Code must be one of ." msgstr "Die PayPal Währung muss eine von den folgenden sein: ." -#: includes/settings/class-payment-general-settings.php:183 +#: includes/settings/class-payment-general-settings.php:185 msgid "PayPal currency code" msgstr "PayPal Währungscode" -#: includes/settings/class-payment-general-settings.php:186 +#: includes/settings/class-payment-general-settings.php:188 msgid "The currency in which you would like to receive your PayPal payments" msgstr "Währung in der Du Deine PayPal Zahlungen erhalten möchtest." -#: includes/settings/class-payment-general-settings.php:209 +#: includes/settings/class-payment-general-settings.php:211 msgid "2Checkout" msgstr "2Checkout" -#: includes/settings/class-payment-general-settings.php:214 +#: includes/settings/class-payment-general-settings.php:216 msgid "2Checkout Settings" msgstr "2Checkout Einstellungen" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout" msgstr "2Checkout aktivieren" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout?" msgstr "2Checkout aktivieren?" -#: includes/settings/class-payment-general-settings.php:220 +#: includes/settings/class-payment-general-settings.php:222 msgid "2Checkout account" msgstr "2Checkout-Konto" -#: includes/settings/class-payment-general-settings.php:223 +#: includes/settings/class-payment-general-settings.php:225 msgid "Account for 2Checkout payments." msgstr "Benutzerkonto für 2Checkout Bezahlungen." -#: includes/settings/class-payment-general-settings.php:238 +#: includes/settings/class-payment-general-settings.php:240 msgid "2Checkout Currency Code" msgstr "2Checkout Currency Code" -#: includes/settings/class-payment-general-settings.php:249 +#: includes/settings/class-payment-general-settings.php:251 msgid "The currency in which you would like to receive your 2Checkout payments" msgstr "Die Währung in der Du Deine 2Checkout Zahlungen erhalten möchtest." -#: includes/settings/class-payment-general-settings.php:261 -#: includes/settings/class-payment-general-settings.php:266 +#: includes/settings/class-payment-general-settings.php:263 +#: includes/settings/class-payment-general-settings.php:268 msgid "Credit System" msgstr "Credit Einstellungen" -#: includes/settings/class-payment-general-settings.php:269 +#: includes/settings/class-payment-general-settings.php:271 msgid "Currency" msgstr "Währung" -#: includes/settings/class-payment-general-settings.php:271 +#: includes/settings/class-payment-general-settings.php:273 msgid "Currency & Credits" msgstr "Währung & Credits" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "Enable Credit System" msgstr "Credit Systen aktivieren" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "" "The Credit System allows users to purchase credit that can later be used to " "pay for placing Ads." @@ -8397,15 +8602,15 @@ msgstr "" "Das Kredit-System erlaubt es Benutzer Kredits zu kaufen die später verwendet " "werden um Anzeigen zu erstellen." -#: includes/settings/class-payment-general-settings.php:279 +#: includes/settings/class-payment-general-settings.php:281 msgid "Accepted payment type" msgstr "Akzeptierte Zahlungsweise" -#: includes/settings/class-payment-general-settings.php:282 +#: includes/settings/class-payment-general-settings.php:284 msgid "Select the type of payment that can be used to purchase Ads." msgstr "Wähle die Zahlungsweisen für Anzeigen aus." -#: includes/settings/class-payment-general-settings.php:294 +#: includes/settings/class-payment-general-settings.php:296 msgid "" "You cannot configure Credits as the only accepted payment type unless you " "enable the Credit System as well. The setting was set to accept both " @@ -8415,7 +8620,7 @@ msgstr "" "das Credit-System nicht aktiviert ist. Die Einstellungen waren so " "konfiguriert, dass Geld und Credits als Zahlungsmittel akzeptiert werden." -#: includes/settings/class-payment-general-settings.php:311 +#: includes/settings/class-payment-general-settings.php:313 msgid "" "There is a problem with the PayPal Currency Code you have entered. It does " "not match any of the codes in our list of curencies supported by PayPal." @@ -8423,11 +8628,11 @@ msgstr "" "Es gibt ein Problem mit dem von Dir eingegebenen Währungscode. Er passt " "nicht zu einer von PayPal akzeptierten Währungen." -#: includes/settings/class-payment-general-settings.php:312 +#: includes/settings/class-payment-general-settings.php:314 msgid "The available currency codes are" msgstr "Die gültigen Währungen sind" -#: includes/settings/class-payment-general-settings.php:321 +#: includes/settings/class-payment-general-settings.php:323 msgid "" "Require Registration setting was enabled automatically because you activated " "the Credit System." @@ -8435,7 +8640,7 @@ msgstr "" "Die Registrierung als Benutzer ist automatisch eingeschalten worden, weil Du " "das Credit System aktiviert hast." -#: includes/settings/class-payment-general-settings.php:326 +#: includes/settings/class-payment-general-settings.php:328 msgid "" "Charge Listing Fee setting was enabled automatically because you activated " "the Credit System." @@ -8443,7 +8648,7 @@ msgstr "" "Die Anzeigen sind automatisch auf Bezahlung eingeschalten worden, weil Du " "das Credit System aktiviert hast." -#: includes/settings/class-payment-general-settings.php:332 +#: includes/settings/class-payment-general-settings.php:334 msgid "" "Credit System was disabled automatically because you disabled Charge Listing " "Fee." @@ -8451,7 +8656,7 @@ msgstr "" "Das Credit System wurde automatisch deaktivert, weil Du die Bezahlung der " "Anzeigen abgeschaltet hast." -#: includes/settings/renderers/class-button-settings-renderer.php:39 +#: includes/settings/renderers/class-button-settings-renderer.php:40 msgid "" "Resetting to the default layout will cause any custom HTML layout changes " "you've made to be lost. Are you sure?" @@ -8460,7 +8665,7 @@ msgstr "" "vorgenommenen benutzerdefinierten HTML-Layoutänderungen verloren. Bist du " "sicher?" -#: includes/settings/renderers/class-button-settings-renderer.php:42 +#: includes/settings/renderers/class-button-settings-renderer.php:47 msgid "Reset" msgstr "Zurücksetzen" @@ -8468,54 +8673,53 @@ msgstr "Zurücksetzen" msgid "Deactivate" msgstr "Deaktivieren" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -msgid "active" -msgstr "aktiv" - -#: includes/settings/renderers/class-license-settings-renderer.php:43 #: includes/settings/renderers/class-license-settings-renderer.php:46 -#: includes/settings/renderers/class-license-settings-renderer.php:56 -#: includes/settings/renderers/class-license-settings-renderer.php:58 -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "Status: " -msgstr "Status: " - -#: includes/settings/renderers/class-license-settings-renderer.php:45 -#: includes/settings/renderers/class-license-settings-renderer.php:48 +#: includes/settings/renderers/class-license-settings-renderer.php:50 msgid "Activate" msgstr "Aktivieren" -#: includes/settings/renderers/class-license-settings-renderer.php:46 -msgid "inactive" -msgstr "inaktiv" - -#: includes/settings/renderers/class-license-settings-renderer.php:51 +#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag +#: includes/settings/renderers/class-license-settings-renderer.php:55 +#, fuzzy msgid "" -"Click the button above to check the status of your license. Please contact customer support if you think the reported status is wrong." +"Click the button above to check the status of your license. Please " +"%1$scontact customer support%2$s if you think the reported status is wrong." msgstr "" "Drücke den Button um den Status Deiner Lizenz zu prüfen. Bitte kontaktiere " "den Kundendienst wenn Du einen falschen Lizenzstatus hast." -#: includes/settings/renderers/class-license-settings-renderer.php:56 -msgid "expired" -msgstr "abgelaufen" - -#: includes/settings/renderers/class-license-settings-renderer.php:58 +#: includes/settings/renderers/class-license-settings-renderer.php:75 msgid "disabled" msgstr "deaktiviert" -#: includes/settings/renderers/class-license-settings-renderer.php:60 +#: includes/settings/renderers/class-license-settings-renderer.php:76 +msgid "inactive" +msgstr "inaktiv" + +#: includes/settings/renderers/class-license-settings-renderer.php:77 +msgid "active" +msgstr "aktiv" + +#: includes/settings/renderers/class-license-settings-renderer.php:78 +msgid "expired" +msgstr "abgelaufen" + +#: includes/settings/renderers/class-license-settings-renderer.php:79 msgid "unknown" msgstr "unbekannt" +#: includes/settings/renderers/class-license-settings-renderer.php:84 +#, fuzzy +msgid "Status: %s" +msgstr "Status:" + #. translators: screen reader text label for individual settings on a settings #. grid -#: includes/settings/renderers/class-settings-grid-renderer.php:75 +#: includes/settings/renderers/class-settings-grid-renderer.php:80 msgid " setting for field" msgstr " Einstellung für Feld" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:35 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:38 msgid "Create Page" msgstr "Seite erstellen" @@ -8523,21 +8727,21 @@ msgstr "Seite erstellen" msgid "Ad Category" msgstr "Kategorie der Anzeige" -#: includes/ui/class-category-selector.php:122 +#: includes/ui/class-category-selector.php:144 msgid "All Categories" msgstr "Alle Kategorien" -#: includes/ui/class-category-selector.php:171 +#: includes/ui/class-category-selector.php:193 msgid "Select a Sub-category" msgstr "Wählen Sie eine Unterkategorie" -#: includes/ui/class-payment-terms-list.php:86 +#: includes/ui/class-payment-terms-list.php:103 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" msgstr "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" -#: includes/ui/class-payment-terms-list.php:91 +#: includes/ui/class-payment-terms-list.php:108 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" @@ -8545,61 +8749,61 @@ msgstr "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" -#: includes/ui/class-payment-terms-list.php:152 +#: includes/ui/class-payment-terms-list.php:169 msgid " listing allowed." msgid_plural " listings allowed." msgstr[0] " Anzeige erlaubt." msgstr[1] " Anzeigen erlaubt." -#: includes/ui/class-payment-terms-list.php:160 +#: includes/ui/class-payment-terms-list.php:177 msgid "No images allowed." msgstr "Keine Bilder erlaubt." -#: includes/ui/class-payment-terms-list.php:163 +#: includes/ui/class-payment-terms-list.php:180 msgid " image allowed." msgid_plural " images allowed." msgstr[0] " Bild erlaubt." msgstr[1] " Bilder erlaubt." -#: includes/ui/class-payment-terms-list.php:170 +#: includes/ui/class-payment-terms-list.php:187 msgid "Unlimited characters in listing's title." msgstr "Unbegrenzte Zeichenanzahl in Anzeigen-Überschrift. " -#: includes/ui/class-payment-terms-list.php:173 +#: includes/ui/class-payment-terms-list.php:190 msgid "Up to characters in listing's title." msgstr "Bis zu Zeichen in Anzeigen-Überschrift." -#: includes/ui/class-payment-terms-list.php:180 +#: includes/ui/class-payment-terms-list.php:197 msgid "Up to categories allowed." msgstr "Bis zu Kategorien erlaubt." -#: includes/ui/class-payment-terms-list.php:187 +#: includes/ui/class-payment-terms-list.php:204 msgid "Unlimited characters in listing's content." msgstr "Unbegrenzte Zeichenanzahl im Anzeigen-Inhalt" -#: includes/ui/class-payment-terms-list.php:190 +#: includes/ui/class-payment-terms-list.php:207 msgid "Up to characters in listing's content." msgstr "Bis zu Zeichen im Anzeigen-Inhalt." -#: includes/ui/class-payment-terms-list.php:196 +#: includes/ui/class-payment-terms-list.php:213 msgid "Purchase this plan" msgstr "Diesen Plan kaufen" -#: includes/ui/class-payment-terms-list.php:197 +#: includes/ui/class-payment-terms-list.php:214 msgid "Pay for this plan with credits" msgstr "Zahle für diesen Plan mit Credits" -#: includes/ui/class-payment-terms-list.php:200 -#: includes/ui/class-payment-terms-list.php:204 +#: includes/ui/class-payment-terms-list.php:217 +#: includes/ui/class-payment-terms-list.php:221 msgid "Use this plan for free!" msgstr "Nutze diesen Plan kostenlos!" -#: includes/ui/class-payment-terms-list.php:209 -#: includes/ui/class-payment-terms-list.php:214 +#: includes/ui/class-payment-terms-list.php:226 +#: includes/ui/class-payment-terms-list.php:231 msgid "Select" msgstr "Bitte wählen" -#: includes/ui/class-payment-terms-list.php:213 +#: includes/ui/class-payment-terms-list.php:230 msgid "credits" msgstr "Credits" @@ -8743,12 +8947,12 @@ msgstr "" "link>Bezahleinstellungen" #. translators: %s the step name -#: includes/views/class-base-page.php:82 +#: includes/views/class-base-page.php:83 msgid "Unkown step \"%s\". Please contact the administrator about this error." msgstr "" "Unbekannter Schritt \"%s\". Bitte kontaktiere den Betreiber der Website." -#: includes/views/class-base-page.php:135 +#: includes/views/class-base-page.php:136 msgid "" "Your request cannot be processed at this time. Please try again or contact " "the administrator about the incident." @@ -8756,7 +8960,7 @@ msgstr "Fehler. Bitte kontaktiere den Webseiten Administrator!" #. translators: %1$s back link, %2$s transaction id #: includes/views/class-payment-step-decorator.php:41 -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:74 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:76 #, fuzzy msgid "" "You are trying to buy credits using a transaction created for a different " @@ -8788,18 +8992,18 @@ msgstr "" "Herzlichen Glückwunsch! Du hast erfolgreich Credits zu Deinem Konto " "hinzugefügt." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:12 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:14 msgid "Buy Credits" msgstr "Credits kaufen" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:87 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:89 msgid "" "The payment associated with this transaction failed (see reasons below)." msgstr "" "Die Bezahlung die mit dieser Transaktion verknüpft ist scheiterte (Gründe " "siehe unten)." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:118 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:120 msgid "You are not allowed to buy credits." msgstr "Du darfst keine Credits kaufen." @@ -8815,22 +9019,62 @@ msgstr "" msgid "The instance of WP_Scripts is not ready!" msgstr "Die Instanz von WP_Scripts ist nicht bereit!" -#: installer.php:154 +#: installer.php:160 msgid "30 Day Listing" msgstr "30 Tage Anzeige" -#: installer.php:822 +#: installer.php:307 msgid "Response to your AWPCP Demo Ad" msgstr "Antworte auf Deine AWPCP Demo Anzeige." -#: installer.php:823 +#: installer.php:308 msgid "Someone has responded to your AWPCP Demo Ad" msgstr "Jemand hat auf Deine AWPCP Demo Anzeige geantwortet." -#: installer.php:848 +#: installer.php:333 msgid "Verify the email address used for Ad $title" msgstr "Bestätige Deine E-Mail-Adresse für die Anzeige $title" +#: installer.php:334 +#, fuzzy +msgid "" +"Hello $author_name \n" +"\n" +"You recently posted the Ad $title to $website_name. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"$verification_link \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" +msgstr "" +"Hallo $author_name\n" +"\n" +"Du hast kürzlich die Anzeige $title auf der Webseite $website_name " +"gepostet.\n" +"\n" +"Um den Vorgang abzuschließen, musst Du Deine E-Mail-Adresse bestätigen. " +"Bitte klicke auf den unten stehenden Link. Du wirst auf die Website " +"weitergeleitet, auf der Du Deine Anzeige sehen kannst.\n" +"\n" +"$verification_link\n" +"\n" +"Nachdem Du Deine E-Mail bestätigt hast, wird der Administrator über die neue " +"Anzeige informiert. Wenn die Moderation aktiviert ist, bleibt Deine Anzeige " +"deaktiviert, bis der Administrator sie genehmigt.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" + #: templates/admin/debug/environment-debug-section.tpl.php:19 msgid "" "Click the button below to contact and get a report about " @@ -8839,11 +9083,11 @@ msgstr "" "Klicke auf die Schaltfläche unten, um Kontakt aufzunehmen " "und einen Bericht über die SSL/TSL-Funktionen Deines Servers abzurufen." -#: templates/admin/debug/environment-debug-section.tpl.php:30 +#: templates/admin/debug/environment-debug-section.tpl.php:32 msgid "Test your SSL Client" msgstr "Teste Deinen SSL Client" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:16 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:20 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -8855,7 +9099,7 @@ msgstr "" "die Schaltfläche unten, um zur Seite Permalinks-" "Einstellungen zu navigieren." -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:23 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:27 msgid "" "Opening that page in your browser will flush the Rewrite Rules in your site. " "WordPress will then ask all installed and active plugins to register their " @@ -8868,29 +9112,36 @@ msgstr "" "Fehler verschwunden sein. Sollte dies nicht der Fall sein, wende Dich bitte " "an den Kundensupport." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:3 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#, fuzzy +msgid "Plugin Pages" +msgstr "Plugin Seiten" + +#: templates/admin/delete-browse-categories-page-notice.tpl.php:4 +#, fuzzy msgid "" -"The page is no longer necessary. From now on, " -"all listings will be displayed in the page, even " -"when they are filtered by a particular category." +"The %1$s page is no longer necessary. From now on, all listings will be " +"displayed in the %2$s page, even when they are filtered by a particular " +"category." msgstr "" "Die Seite ist nicht mehr notwendig. Ab sofort " "werden alle Anzeigen auf dieser Seite angezeigt: , dies gilt auch wenn ein Filter auf eine Kategorie gesetzt ist." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:9 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:11 +#, fuzzy msgid "" -"The plugin will start redirecting all traffic to the page to make sure no broken links are created." +"The plugin will start redirecting all traffic to the %s page to make sure no " +"broken links are created." msgstr "" "Das Plugin erstellt automatisch einen Redirect zu der Seite damit keine fehlerhaften Links entstehen." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:13 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:15 msgid "Click the button below to delete the page." msgstr "Drücke auf den Button unten um die Seite zu löschen." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:14 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:18 msgid "Delete Page" msgstr "Seite löschen" @@ -8920,10 +9171,11 @@ msgstr "" "Die Kategorie hat Kinderkategorien. Bitte wähle eine Kategorie aus, die als " "neue Elternkategorie der untergeordneten Kategorien festgelegt werden soll." -#: templates/admin/delete-category-admin-page.tpl.php:32 +#. translators: %1$s: Cancel button , %2$s: Submit button label +#: templates/admin/delete-category-admin-page.tpl.php:34 +#, fuzzy msgid "" -"Click to go back to the list of categories or click " -" to proceed." +"Click %1$s to go back to the list of categories or click %2$s to proceed." msgstr "" "Klicke um zur Liste der Kategorien zurückzukommen oder " "klicke um fortzufahren." @@ -8932,7 +9184,12 @@ msgstr "" msgid "Selected Category" msgstr "Ausgewählte Kategorie" -#: templates/admin/export-listings-admin-page.tpl.php:158 +#: templates/admin/export-listings-admin-page.tpl.php:137 +#, fuzzy +msgid "Export Complete" +msgstr "Exportieren abgeschlossen" + +#: templates/admin/export-listings-admin-page.tpl.php:153 #, fuzzy msgid "" "Click \"Cleanup\" once the file has been downloaded in order to remove all " @@ -8942,6 +9199,11 @@ msgstr "" "temporären Daten, die von einem anderen WordPress Anzeigen Plugin während " "des Exports erstellt wurden, werden somit gelöscht." +#: templates/admin/export-listings-admin-page.tpl.php:160 +#, fuzzy +msgid "Export Canceled" +msgstr "Export abgebrochen" + #: templates/admin/form-fields-admin-page.tpl.php:7 msgid "" "The table below shows all the form fields that users may need to fill to " @@ -8953,27 +9215,29 @@ msgstr "" "um eine Anzeige zu erstellen. Die Reihenfolge kann mit DragNDrop verändert " "werden." -#: templates/admin/form-fields-admin-page.tpl.php:11 -msgid "Form" -msgstr "Formular" - +#. translators: %s is a link to the Form Fields settings page. #: templates/admin/form-fields-admin-page.tpl.php:13 +#, fuzzy msgid "" -"Go to the settings section to control which of " -"the standard fields appear and if the user is required to enter a value. If " -"you have the Extra Fields module, the rest of the fields can be configured " -"from the Extra Fields admin section." +"Go to the %s settings section to control which of the standard fields appear " +"and if the user is required to enter a value. If you have the Extra Fields " +"module, the rest of the fields can be configured from the Extra Fields admin " +"section." msgstr "" "Gehe zu um die Mussfelder festzulegen. Wenn Du " "weitere Felder hast kannst Du die zusätzlichen Felder in der Zusatzfeld-" "Admin-Seiten bearbeiten." +#: templates/admin/form-fields-admin-page.tpl.php:14 +msgid "Form" +msgstr "Formular" + #: templates/admin/import/example-csv-file.tpl.php:8 msgid "Import Listings: Example CSV File" msgstr "Import Anzeigen: Beispiel CSV File" #: templates/admin/import/example-csv-file.tpl.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:84 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:76 msgid "See Supported CSV Headers" msgstr "Siehe unterstützte CSV Headers" @@ -8995,7 +9259,7 @@ msgid "Header" msgstr "Header" #: templates/admin/import/supported-csv-headers.tpl.php:39 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:86 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:78 msgid "See Example CSV File" msgstr "Siehe Beispiel CSV Datei" @@ -9107,7 +9371,7 @@ msgstr "" msgid "Default user" msgstr "Standardnutzer" -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:178 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 #: templates/admin/import-listings-admin-page-import-form.tpl.php:44 msgid "" "Press the button below to cancel the current import operation and discard " @@ -9148,36 +9412,37 @@ msgstr "Konfiguration ändern & neustarten" msgid "Pause" msgstr "Pause" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:24 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:21 msgid "CSV file" msgstr "CSV Datei" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:37 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:31 msgid "Images source" msgstr "Bildquelle" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:40 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:34 msgid "Don't import images" msgstr "Importiere keine Bilder" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:42 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:36 msgid "ZIP file" msgstr "ZIP Datei" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:44 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:38 msgid "Local directory" msgstr "Lokales Verzeichnis" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:49 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:43 msgid "Zip file containing images" msgstr "ZIP-Datei mit Bildern" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:62 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:54 msgid "Local directory path" msgstr "Lokaler Verzeichnispfad" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:74 -msgid "The relative path to a directory inside ." +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:64 +#, fuzzy +msgid "The relative path to a directory inside %s." msgstr "Der relative Pfad zu einem Verzeichnis ." #: templates/admin/listings/listing-information-metabox.tpl.php:56 @@ -9266,27 +9531,27 @@ msgid "Payment Options" msgstr "Zahlungsarten" #. translators: %s is the link the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:84 +#: templates/admin/main-classifieds-admin-page.tpl.php:87 msgid "" "Go to the %s section to edit/delete current categories or add new categories." msgstr "" "Benutze %s um Kategorien zu bearbeiten, löschen oder neue Kategorien zu " "erstellen." -#: templates/admin/main-classifieds-admin-page.tpl.php:90 +#: templates/admin/main-classifieds-admin-page.tpl.php:95 msgid "Total number of categories in the system" msgstr "Anzahl aller Kategorien im System" -#: templates/admin/main-classifieds-admin-page.tpl.php:95 +#: templates/admin/main-classifieds-admin-page.tpl.php:100 msgid "Number of Top Level parent categories" msgstr "Anzahl Hauptkategorien" -#: templates/admin/main-classifieds-admin-page.tpl.php:100 +#: templates/admin/main-classifieds-admin-page.tpl.php:105 msgid "Number of sub level children categories" msgstr "Anzahl Unterkategorien" #. translators: %s is the link to the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:109 +#: templates/admin/main-classifieds-admin-page.tpl.php:114 msgid "" "You have not categories defined. Go to the %s section to set up your " "categories." @@ -9294,76 +9559,76 @@ msgstr "" "Du hast noch keine Kategorien angelegt. Benutze %s um neue Kategorien " "einzurichten." -#: templates/admin/manage-categories-admin-page.tpl.php:43 +#: templates/admin/manage-categories-admin-page.tpl.php:44 msgid "Parent Category" msgstr "Überberzeichnis" -#: templates/admin/manage-categories-admin-page.tpl.php:52 +#: templates/admin/manage-categories-admin-page.tpl.php:53 msgid "Category list order" msgstr "Kategorie Reihenfolge" -#: templates/admin/manage-categories-admin-page.tpl.php:75 +#: templates/admin/manage-categories-admin-page.tpl.php:76 msgid "Icon Meanings:" msgstr "Icon Bedeutung:" -#: templates/admin/manage-categories-admin-page.tpl.php:85 +#: templates/admin/manage-categories-admin-page.tpl.php:89 msgid "Move categories or ads under:" msgstr "Verschiebe Kategorien oder Anzeigen unter:" -#: templates/admin/manage-categories-admin-page.tpl.php:92 +#: templates/admin/manage-categories-admin-page.tpl.php:96 msgid "Delete categories should do this with existing ads:" msgstr "Kategorien löschen mit vorhandenen Anzeigen :" -#: templates/admin/manage-categories-admin-page.tpl.php:93 +#: templates/admin/manage-categories-admin-page.tpl.php:97 msgid "Move ads to new category" msgstr "Anzeigen zu neuer Kategorie verschieben" -#: templates/admin/manage-categories-admin-page.tpl.php:94 +#: templates/admin/manage-categories-admin-page.tpl.php:98 msgid "Delete ads too" msgstr "Anzeigen auch löschen" -#: templates/admin/manage-categories-admin-page.tpl.php:101 +#: templates/admin/manage-categories-admin-page.tpl.php:108 msgid "Move Selected Categories" msgstr "Ausgewählte Kategorien verschieben" -#: templates/admin/manage-categories-admin-page.tpl.php:102 +#: templates/admin/manage-categories-admin-page.tpl.php:109 msgid "Delete Selected Categories" msgstr "Ausgewählte Kategorien löschen" -#: templates/admin/manage-categories-admin-page.tpl.php:119 +#: templates/admin/manage-categories-admin-page.tpl.php:126 msgid "Select all categories" msgstr "Alle Kategorien auswählen" -#: templates/admin/manage-categories-admin-page.tpl.php:122 -#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:129 +#: templates/admin/manage-categories-admin-page.tpl.php:145 msgid "Category ID" msgstr "Kategorie-ID" -#: templates/admin/manage-categories-admin-page.tpl.php:124 -#: templates/admin/manage-categories-admin-page.tpl.php:136 +#: templates/admin/manage-categories-admin-page.tpl.php:131 +#: templates/admin/manage-categories-admin-page.tpl.php:146 msgid "Category Name (Total Ads)" msgstr "Name der Kategorie (Anzahl der Anzeigen)" -#: templates/admin/manage-categories-admin-page.tpl.php:126 -#: templates/admin/manage-categories-admin-page.tpl.php:137 +#: templates/admin/manage-categories-admin-page.tpl.php:133 +#: templates/admin/manage-categories-admin-page.tpl.php:147 msgid "Parent" msgstr "Übergeordnete" -#: templates/admin/manage-categories-admin-page.tpl.php:127 -#: templates/admin/manage-categories-admin-page.tpl.php:138 +#: templates/admin/manage-categories-admin-page.tpl.php:134 +#: templates/admin/manage-categories-admin-page.tpl.php:148 msgid "Order" msgstr "Reihenfolge" -#: templates/admin/manage-categories-admin-page.tpl.php:128 -#: templates/admin/manage-categories-admin-page.tpl.php:139 +#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:149 msgid "Action" msgstr "Aktion" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:2 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 msgid "What's your PayPal Merchant ID?" msgstr "Wie lautet Deine PayPal Merchant ID?" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:3 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:10 #, fuzzy msgid "" "In order to verify payments made through PayPal, AWP Classifieds Plugin " @@ -9372,11 +9637,11 @@ msgstr "" "Damit Zahlungen über PayPal durchgeführt werden können benötigt AWPCP Deine " "PayPal Merchant ID." -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:13 +#, fuzzy msgid "" -"Go to to obtain the Merchant ID and then go to the Payment Settings page to enter the " -"value." +"Go to %1$s to obtain the Merchant ID and then go to the %2$sPayment " +"Settings%3$s page to enter the value." msgstr "" "Gehe zu um die Merchant ID zu erhalten. Danach gehst Du zu " "den Zahlungseinstellungen um " @@ -9580,7 +9845,8 @@ msgstr "Erstellt am" msgid "Expires on" msgstr "Verfällt am" -#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:9 +#. translators: %s: URL to renew the ad +#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:12 msgid "You can renew your Ad visiting this link: %s" msgstr "Verlängere Deine Anzeige durch einen Klick auf diesem Link: %s" @@ -9589,12 +9855,45 @@ msgstr "Verlängere Deine Anzeige durch einen Klick auf diesem Link: %s" msgid "Hello" msgstr "Hallo" -#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:2 +#: templates/email/listing-media-upload-notification.plain.tpl.php:2 +#, fuzzy +msgid "Hello," +msgstr "Hallo, " + +#: templates/email/listing-media-upload-notification.plain.tpl.php:9 +#, fuzzy +msgid "The following media files were recently uploaded to listing \"%s\":" +msgstr "" +"Die folgenden Dateien wurden zu der Anzeige \"\": " +"hochgeladen: " + +#: templates/email/listing-media-upload-notification.plain.tpl.php:23 +#, fuzzy msgid "" -"The ad \"\" was modified. A copy of the details sent to the " -"customer can be found below. You can follow this link " -"to go to the Manage Ad Listing section to approve/reject/spam and see the " -"full version of the Ad." +"The following media files were recently uploaded to listing \"%s\" and are " +"awaiting approval:" +msgstr "" +"Die folgenden Dateien wurden zu der Anzeige \"\": hochgeladen " +"und warten auf eine Bestätigung: " + +#: templates/email/listing-media-upload-notification.plain.tpl.php:36 +#, fuzzy +msgid "Click here to manage media uploaded to the listing: %s." +msgstr "" +"Hier drücken um die Dateien zur Anzeige zu bearbeiten: ." + +#: templates/email/listing-media-upload-notification.plain.tpl.php:44 +#, fuzzy +msgid "Click here to view the listing: %s." +msgstr "Hier klicken um die Anzeige zu sehen: ." + +#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:3 +#, fuzzy +msgid "" +"The ad \"%s\" was modified. A copy of the details sent to the customer can " +"be found below. You can follow this link %s to go to the Manage Ad Listing " +"section to approve/reject/spam and see the full version of the Ad." msgstr "" "Die Anzeige \"\" wurde bearbeitet. Die Kopie der Details, " "die an den Benutzer verschickt wurden, steht unten. Du kannst diesem Link " @@ -9609,14 +9908,153 @@ msgstr "" "Du hast markierte Anzeigen zu kontrollieren . Bitte prüfe die " "Anzeigen hier ." -#: templates/frontend/listings.tpl.php:24 +#: templates/frontend/listings.tpl.php:37 msgid "There were no listings found." msgstr "Es wurden keine Anzeigen gefunden." +#: templates/frontend/order-submit-listing-section.tpl.php:41 +#, fuzzy +msgid "Who is the owner of this ad?" +msgstr "Wer ist der Ersteller dieser Anzeige?" + +#: templates/frontend/order-submit-listing-section.tpl.php:86 +#, fuzzy +msgid "Your ad will be posted on the following categories: %s." +msgstr "Deine Anzeige wird in den folgenden Kategorien gepostet: {categories}." + #: templates/privacy-policy.tpl.php:10 msgid "Suggested text:" msgstr "Vorgeschlagener Text:" +#: templates/privacy-policy.tpl.php:11 +#, fuzzy +msgid "" +"When you submit a classified listing, the content of the listing and its " +"metadata are retained indefinitely. All users can see, edit or delete the " +"personal information included on their listings at any time. Website " +"administrators can also see and edit that information." +msgstr "" +"Wenn Du eine Anzeige sendest, wird der Inhalt des Eintrags und seine " +"Metadaten unabhängig voneinander gespeichert. Alle Nutzer können die in " +"Deinen Angeboten enthaltenen persönlichen Informationen jederzeit einsehen, " +"bearbeiten oder löschen. Website-Administratoren können diese Informationen " +"ebenfalls anzeigen und bearbeiten." + +#: templates/privacy-policy.tpl.php:14 +#, fuzzy +msgid "" +"Website visitors can see the contact name, website URL, phone number, " +"address and other information included in your submission to describe the " +"classified listing." +msgstr "" +"Website-Besucher können den Kontaktnamen, die URL der Website, die " +"Telefonnummer, die Adresse und andere Informationen sehen, die in Deiner " +"Anzeige enthalten sind." + +#: templates/privacy-policy.tpl.php:18 +#, fuzzy +msgid "" +"Contact name, email address, website URL and content of submitted classified " +"listings may be checked through Akismet's spam detection service. The " +"Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"Kontaktname, E-Mail-Adresse, Website-URL und Inhalt der eingereichten " +"Anzeigen können durch Akismets Spam-Erkennungsdienst überprüft werden. Die " +"Akismet-Service-Datenschutzerklärung ist verfügbar hier ." + +#: templates/privacy-policy.tpl.php:24 +#, fuzzy +msgid "Payment Information" +msgstr "Zahlunginformationen" + +#: templates/privacy-policy.tpl.php:28 +#, fuzzy +msgid "" +"If you pay to post a classified listing entering your credit card and " +"billing information directly on %s, the credit card information won't be " +"stored but it will be shared through a secure connection with the following " +"payment gateways to process the payment:" +msgstr "" +"Wenn Du zahlst, um eine Anzeige einzugeben und Deine Kreditkarten- und " +"Rechnungsinformationen direkt auf {home_url} " +"eingibst, werden die Kreditkarteninformationen nicht gespeichert. Sie werden " +"jedoch über eine sichere Verbindung mit den folgenden Zahlungsgateways " +"weitergeleitet, um die Zahlung zu verarbeiten: " + +#: templates/privacy-policy.tpl.php:36 +#, fuzzy +msgid "PayPal - %1$s" +msgstr "PayPal" + +#: templates/privacy-policy.tpl.php:42 +#, fuzzy +msgid "Authorize.Net - %s" +msgstr "Authorize.Net" + +#: templates/privacy-policy.tpl.php:48 +#, fuzzy +msgid "Stripe - %s" +msgstr "Stripe" + +#: templates/privacy-policy.tpl.php:54 +#, fuzzy +msgid "Regions" +msgstr "Regionen" + +#: templates/privacy-policy.tpl.php:56 +#, fuzzy +msgid "" +"If you choose to see listings published on a specific region, a cookie will " +"be stored on your browser for the remainder of the session to remember the " +"selected region." +msgstr "" +"Wenn Du siehst, dass in einer bestimmten Region veröffentlichte Einträge " +"angezeigt werden, wird ein Cookie für den Rest der Sitzung in Deinem Browser " +"gespeichert, um sich an die ausgewählte Region zu erinnern." + +#: templates/privacy-policy.tpl.php:58 +#, fuzzy +msgid "Comments and Ratings" +msgstr "Kommentare und Bewertungen" + +#: templates/privacy-policy.tpl.php:60 +#, fuzzy +msgid "" +"When visitors leave comments and reviews for classified listings we collect " +"the data shown in the comments form, and also the visitor’s IP address to " +"help spam detection." +msgstr "" +"Wenn Besucher Kommentare und Rezensionen für Anzeigen hinterlassen, erfassen " +"wir die Daten, die im Kommentarformular angezeigt werden, sowie die IP-" +"Adresse des Besuchers, um die Erkennung von Spam zu verbessern." + +#: templates/privacy-policy.tpl.php:64 +#, fuzzy +msgid "" +"Visitor comments may be checked through Akismet's spam detection service. " +"The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"Besucherkommentare können über den Spam-Erkennungsdienst von Akismet " +"überprüft werden. Die Datenschutzrichtlinie des Akismet-Dienstes findest Du " +"hier." + +#: templates/privacy-policy.tpl.php:70 +msgid "Restricted Categories" +msgstr "Limitierte Kategorien" + +#: templates/privacy-policy.tpl.php:72 +#, fuzzy +msgid "" +"When you agree to see listings or publish a listing on a restricted " +"category, a cookie will be stored in your browser to remember your decision. " +"The cookie will be stored on your browser for the remainder of that session." +msgstr "" +"Wenn Du zustimmst, Einträge zu sehen oder einen Eintrag in einer " +"eingeschränkten Kategorie zu veröffentlichen, wird ein Cookie in Deinem " +"Browser gespeichert, um sich an Deine Entscheidung zu erinnern. Der Cookie " +"wird für den Rest der Sitzung in Deinem Browser gespeichert." + #. Author URI of the plugin/theme msgid "https://awpcp.com/" msgstr "" @@ -9645,29 +10083,29 @@ msgctxt "awpcp admin menu" msgid "Classifieds" msgstr "Anzeigen" -#: admin/admin-panel.php:810 includes/settings/class-listings-settings.php:469 +#: admin/admin-panel.php:794 includes/settings/class-listings-settings.php:469 msgctxt "page name" msgid "Show Ad" msgstr "Anzeige zeigen" -#: admin/admin-panel.php:818 +#: admin/admin-panel.php:802 msgctxt "page name" msgid "Edit Ad" msgstr "Anzeige bearbeiten" -#: admin/class-csv-exporter.php:82 +#: admin/class-csv-exporter.php:83 msgctxt "admin csv-export" msgid "Could not create a temporary directory for handling this CSV export." msgstr "" "Es konnte kein temporäres Verzeichnis für diesen CSV-Export erstellt werden." -#: admin/class-csv-exporter.php:85 +#: admin/class-csv-exporter.php:86 msgctxt "admin csv-export" msgid "Could not create awpcp-csv-exports directory." msgstr "awpcp-csv-exports-Verzeichnis konnte nicht erstellt werden." #. translators: %s the error. -#: admin/class-csv-exporter.php:91 +#: admin/class-csv-exporter.php:95 msgctxt "admin csv-export" msgid "Error while creating a temporary directory for CSV export: %s" msgstr "" @@ -9678,76 +10116,73 @@ msgctxt "admin csv-export" msgid "Could not decode export state information." msgstr "Exportstatusinformationen konnten nicht dekodiert werden." -#: admin/class-debug-admin-page.php:136 +#: admin/class-debug-admin-page.php:137 msgctxt "debug page" msgid "Plugin Info" msgstr "Plugin Information" -#: admin/class-debug-admin-page.php:137 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:33 +#: admin/class-debug-admin-page.php:138 msgctxt "debug page" msgid "Plugin Pages" msgstr "Plugin Seiten" -#: admin/class-debug-admin-page.php:138 +#: admin/class-debug-admin-page.php:139 msgctxt "debug page" msgid "Plugin Settings" msgstr "Plugin Einstellungen" -#: admin/class-debug-admin-page.php:139 +#: admin/class-debug-admin-page.php:140 msgctxt "debug page" msgid "Environment" msgstr "Umgebung" -#: admin/class-debug-admin-page.php:140 -#: admin/templates/admin-panel-debug.tpl.php:32 +#: admin/class-debug-admin-page.php:141 +#: admin/templates/admin-panel-debug.tpl.php:59 msgctxt "debug page" msgid "Rewrite Rules" msgstr "Rewrite Rules" -#: admin/class-debug-admin-page.php:177 +#: admin/class-debug-admin-page.php:178 msgctxt "debug page" msgid "Plugin Version" msgstr "Plugin Version" -#: admin/class-debug-admin-page.php:283 -#: admin/templates/admin-panel-debug.tpl.php:126 +#: admin/class-debug-admin-page.php:284 msgctxt "debug page" msgid "cURL's alternate CA info (cacert.pem)" msgstr "cURL's alternate CA info (cacert.pem)" -#: admin/class-debug-admin-page.php:287 -#: admin/templates/admin-panel-debug.tpl.php:130 +#: admin/class-debug-admin-page.php:288 msgctxt "debug page" msgid "PayPal Connection" msgstr "PayPal Verbindung" -#: admin/class-debug-admin-page.php:359 +#: admin/class-debug-admin-page.php:360 msgctxt "debug page" msgid "Working" msgstr "Funktionierend" -#: admin/class-debug-admin-page.php:362 -#: admin/templates/admin-panel-debug.tpl.php:136 +#: admin/class-debug-admin-page.php:363 msgctxt "debug page" msgid "Not Working" msgstr "Nicht funktionierend" -#: admin/templates/admin-panel-debug.tpl.php:22 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:31 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:34 msgctxt "debug page" msgid "Flush Rewrite Rules" msgstr "Rewrite Rules löschen - flush" -#: admin/templates/admin-panel-debug.tpl.php:26 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s Linked +#. URL in anchor link +#: admin/templates/admin-panel-debug.tpl.php:48 +#, fuzzy msgctxt "debug page" msgid "" -"This information can help AWPCP Developers to debug possible problems. If " -"you are submitting a bug report please Download the " -"Debug Information and attach it to your bug report or take a " -"minute to copy the information below to http://fpaste.org and provide the resulting URL in " -"your report." +"This information can help the AWP Team to debug possible problems. If you " +"are submitting a bug report please %1$sDownload the Debug Information%2$s " +"and attach it to your bug report or take a minute to copy the information " +"below to %3$s and provide the resulting URL in your report." msgstr "" "Diese Information kann AWPCP Entwickler helfen das Problem zu debuggen. Wenn " "Du einen Fehler meldest dann schicke bitte diese Daten: http://fpaste.org und teilen uns Deine " "URL mit! Vielen Dank!" -#: admin/templates/admin-panel-debug.tpl.php:29 +#: admin/templates/admin-panel-debug.tpl.php:56 msgctxt "debug page" msgid "AWPCP Pages" msgstr "AWPCP Seiten" -#: admin/templates/admin-panel-debug.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:57 msgctxt "debug page" msgid "PHP Info" msgstr "PHP Info" -#: admin/templates/admin-panel-debug.tpl.php:31 +#: admin/templates/admin-panel-debug.tpl.php:58 msgctxt "debug page" msgid "AWPCP Settings" msgstr "AWPCP Einstellungen" -#: admin/templates/admin-panel-debug.tpl.php:118 -msgctxt "debug page" -msgid "PHP Version" -msgstr "PHP Version" - -#: admin/templates/admin-panel-debug.tpl.php:122 -msgctxt "debug page" -msgid "cURL" -msgstr "cURL" - #. translators: %s is the URL to download the debug information #: templates/admin/debug/debug-admin-page.tpl.php:17 msgctxt "debug page" @@ -9793,22 +10218,22 @@ msgstr "" "href=\"%s\">Debug-Informationen herunter und fügen sie Deinem " "Fehlerbericht bei." -#: templates/admin/debug/plugin-info-debug-section.tpl.php:29 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:38 msgctxt "debug page" msgid "There are no premium modules activated right now." msgstr "Momentan sind keine Premium-Module aktiviert." -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:38 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:49 msgctxt "debug page" msgid "Reference" msgstr "Referenz" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:39 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:50 msgctxt "debug page" msgid "Page Title" msgstr "Seitenüberschrift" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:51 msgctxt "debug page" msgid "Stored ID" msgstr "Gespeicherte ID" @@ -9823,41 +10248,39 @@ msgctxt "debug page" msgid "Setting Value" msgstr "Einstellung Wert" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Exists" msgstr "Existiert" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Missing" msgstr "Fehlender Wert" -#: admin/class-import-listings-admin-page.php:358 +#: admin/class-import-listings-admin-page.php:362 msgctxt "" "description for messages used to show feedback for the Import Listings " "operation" msgid " in line " msgstr " in Zeile " -#: admin/class-import-listings-admin-page.php:369 +#: admin/class-import-listings-admin-page.php:373 msgctxt "text for page subtitle and submit button" msgid "Test Import" msgstr "Test Import " -#: admin/class-import-listings-admin-page.php:371 +#: admin/class-import-listings-admin-page.php:375 msgctxt "text for page subtitle and submit button" msgid "Import" msgstr "Daten importieren" -#: admin/class-import-settings-admin-page.php:104 +#: admin/class-import-settings-admin-page.php:102 msgctxt "import settings" msgid "Are you sure you want to do this?" msgstr "Bist du sicher, dass du das tun möchtest?" -#: admin/class-import-settings-admin-page.php:116 +#: admin/class-import-settings-admin-page.php:115 msgctxt "import settings" msgid "" "There was a problem trying to read the settings file; it appears the file " @@ -9866,91 +10289,6 @@ msgstr "" "Es gab ein Problem beim Lesen der Einstellungs-Datei; es scheint, als wurde " "die Datei nicht korrekt hochgeladen. Bitte versuche es erneut." -#: admin/class-import-settings-admin-page.php:122 -msgctxt "another-wordpress-classifieds-plugin" -msgid "Your settings have been successfully imported." -msgstr "Deine Einstellungen wurden erfolgreich importiert." - -#: includes/settings/class-email-settings.php:201 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello {author_name} \n" -"\n" -"You recently posted the Ad {listing_title} to {website_title}. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"{verification_link} \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" -msgstr "" -"Hallo {author_name},\n" -"\n" -"Du hast die Anzeige {listing_title} vor kurzem auf {website_title} erstellt. " -"Vielen Dank! \n" -"\n" -"Um den Vorgang abzuschließen, musst Du Deine E-Mail-Adresse bestätigen. " -"Bitte klicke auf den unten stehenden Link. Du wirst auf die Website " -"weitergeleitet, auf der Du Deine Anzeige sehen kannst.\n" -"\n" -"{Bestätigungslink}\n" -"\n" -"Nachdem Du Deine E-Mail-Adresse bestätigt hast, wird der Administrator über " -"die neue Anzeige informiert. Wenn die Moderation aktiviert ist, bleibt Deine " -"Anzeige deaktiviert, bis der Administrator sie genehmigt.\n" -"\n" -"{Webseitentitel}\n" -"\n" -"{Webadresse}" - -#: installer.php:849 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello $author_name \n" -"\n" -"You recently posted the Ad $title to $website_name. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"$verification_link \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" -msgstr "" -"Hallo $author_name\n" -"\n" -"Du hast kürzlich die Anzeige $title auf der Webseite $website_name " -"gepostet.\n" -"\n" -"Um den Vorgang abzuschließen, musst Du Deine E-Mail-Adresse bestätigen. " -"Bitte klicke auf den unten stehenden Link. Du wirst auf die Website " -"weitergeleitet, auf der Du Deine Anzeige sehen kannst.\n" -"\n" -"$verification_link\n" -"\n" -"Nachdem Du Deine E-Mail bestätigt hast, wird der Administrator über die neue " -"Anzeige informiert. Wenn die Moderation aktiviert ist, bleibt Deine Anzeige " -"deaktiviert, bis der Administrator sie genehmigt.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" - #: admin/credit-plans/class-delete-credit-plan-action-handler.php:30 #: admin/credit-plans/class-edit-credit-plan-action-handler.php:27 msgctxt "credit plans ajax" @@ -9972,19 +10310,19 @@ msgctxt "form field slug" msgid "Slug" msgstr "Kurzbezeichnung" -#: admin/import/class-csv-importer-delegate.php:98 +#: admin/import/class-csv-importer-delegate.php:101 msgctxt "csv importer" msgid "Required value for column \"\" is missing." msgstr "Erforderlicher Wert für Rubrik \"\" fehlt." -#: admin/import/class-csv-importer-delegate.php:181 +#: admin/import/class-csv-importer-delegate.php:184 msgctxt "csv importer" msgid "A new user '%s' with email address '%s' and password '%s' was created." msgstr "" "Ein neuer Benutzer '%s' mit der E-Mail-Adresse '%s' und dem Passwort '%s' " "wurde erstellt." -#: admin/import/class-csv-importer-delegate.php:252 +#: admin/import/class-csv-importer-delegate.php:256 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9997,7 +10335,7 @@ msgstr "" "Adresse fehlen oder leer sind. Bitte setze einen Benutzernamen oder eine " "Kontakt Email-Adresse ein oder wähle einen vorgegebenen Benutzer aus." -#: admin/import/class-csv-importer-delegate.php:255 +#: admin/import/class-csv-importer-delegate.php:258 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10009,7 +10347,7 @@ msgstr "" "ist. Bitte setze einen Benutzernamen ein oder wähle einen vorgegebenen " "Benutzer aus." -#: admin/import/class-csv-importer-delegate.php:258 +#: admin/import/class-csv-importer-delegate.php:260 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10021,19 +10359,19 @@ msgstr "" "leer ist. Bitte setze eine Email-Adresse ein oder wähle einen vorgegebenen " "Benutzer aus." -#: admin/import/class-csv-importer-delegate.php:312 +#: admin/import/class-csv-importer-delegate.php:316 msgctxt "csv importer" msgid "No category with name \"\" was found." msgstr "" "Eine Kategorie mit dem Namen \"\" konnte nicht gefunden " "werden." -#: admin/import/class-csv-importer-delegate.php:328 +#: admin/import/class-csv-importer-delegate.php:332 msgctxt "csv importer" msgid "There was an error trying to create category \"\"." msgstr "Es gab einen Fehler beim Erstellen der Kategorie \"\"." -#: admin/import/class-csv-importer-delegate.php:337 +#: admin/import/class-csv-importer-delegate.php:342 msgctxt "csv importer" msgid "" "A category with name \"\" was created, but there was an error " @@ -10042,48 +10380,48 @@ msgstr "" "Eine Kategorie namens \"\" wurde erstellt, aber es gab ein " "Problem ihre Informationen aus der Datenbank abzurufen." -#: admin/import/class-csv-importer-delegate.php:349 +#: admin/import/class-csv-importer-delegate.php:355 msgctxt "csv importer" msgid "Item price must be a number." msgstr "Artikelpreis muss eine Nummer sein." -#: admin/import/class-csv-importer-delegate.php:363 +#: admin/import/class-csv-importer-delegate.php:369 msgctxt "csv importer" msgid "The start date is missing and no default value was defined." msgstr "Das Startdatum fehlt und es wurde kein Standard-Wert festgelegt. " -#: admin/import/class-csv-importer-delegate.php:364 +#: admin/import/class-csv-importer-delegate.php:370 msgctxt "csv importer" msgid "The start date is invalid and no default value was defined." msgstr "Das Startdatum ist ungültig und es wurde kein Standardwert festgelegt." -#: admin/import/class-csv-importer-delegate.php:365 +#: admin/import/class-csv-importer-delegate.php:371 msgctxt "csv importer" msgid "Invalid default start date." msgstr "Ungültiges Startdatum." -#: admin/import/class-csv-importer-delegate.php:430 -#: admin/import/class-csv-importer-delegate.php:431 +#: admin/import/class-csv-importer-delegate.php:436 +#: admin/import/class-csv-importer-delegate.php:437 msgctxt "csv importer" msgid "The end date is missing and no default value was defined." msgstr "Das Enddatum fehlt und es wurde keine Standardeinstellung festgelegt." -#: admin/import/class-csv-importer-delegate.php:432 +#: admin/import/class-csv-importer-delegate.php:438 msgctxt "csv importer" msgid "Invalid default end date." msgstr "Ungültiges Enddatum." -#: admin/import/class-csv-importer-delegate.php:499 +#: admin/import/class-csv-importer-delegate.php:505 msgctxt "csv importer" msgid "Image file with name not found." msgstr "Bilddatei mit Namen nicht gefunden." -#: admin/import/class-csv-importer-delegate.php:566 +#: admin/import/class-csv-importer-delegate.php:576 msgctxt "csv importer" msgid "There was an error trying to store imported data into the database." msgstr "Fehler beim Speichern importierter Daten in die Datenbank." -#: admin/import/class-csv-importer-delegate.php:587 +#: admin/import/class-csv-importer-delegate.php:599 msgctxt "csv importer" msgid "" "There was an error trying to import one of the images: {image-validation-" @@ -10105,18 +10443,6 @@ msgctxt "drip-autoresponder" msgid "The email address entered is not valid." msgstr "Die E-Mail-Adresse die Du eingegeben hast ist leider ungültig." -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 -msgctxt "drip-autoresponder" -msgid "Thank you for signing up!" -msgstr "Vielen Dank für Deine Registrierung!" - -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 -msgctxt "drip-autoresponder" -msgid "" -"Please check your email and click the link provided to confirm your " -"subscription." -msgstr "Bitte prüfe Deine E-Mails um Dein Abonnement zu bestätigen." - #: admin/pointers/class-drip-autoresponder.php:22 msgctxt "drip-autoresponder" msgid "Yes, I'd like my course, please" @@ -10127,18 +10453,6 @@ msgctxt "drip-autoresponder" msgid "No, thanks" msgstr "Nein Danke" -#: admin/pointers/class-drip-autoresponder.php:62 -msgctxt "drip-autoresponder" -msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" -msgstr "Möchtest Du die Geheimnisse einer Super Anzeigenseite kennen lernen?" - -#: admin/pointers/class-drip-autoresponder.php:63 -msgctxt "drip-autoresponder" -msgid "" -"Find out how to create a compelling, thriving classifieds site from scratch " -"in this ridiculously actionable (and free) 5-part email course." -msgstr "" - #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:6 msgctxt "credit plans form" msgid "Edit Credit Plan Details" @@ -10154,28 +10468,6 @@ msgctxt "Quick Start Guide" msgid "No Thanks" msgstr "Nein Danke" -#: admin/templates/admin-quick-start-guide-notice.tpl.php:9 -msgctxt "Quick Start Guide" -msgid "I'll figure it out on my own." -msgstr "Ich werde es selbst herausfinden." - -#: admin/templates/admin-quick-start-guide-notice.tpl.php:17 -msgctxt "Quick Start Guide" -msgid "Help me get my classifieds running quickly." -msgstr "Hilf mir wie ich dieses Anzeigensystem schnell ans Laufen bekomme!" - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:75 -msgctxt "Browse the Quick Start Guide" -msgid "Browse the %s." -msgstr "Suche in der %s." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:85 -msgctxt "Read the full Documentation" -msgid "Read the full %s." -msgstr "Lese %s." - #: admin/templates/admin-widget-modification-notice.tpl.php:7 msgctxt "widget modification notice" msgid "Close this, I'll check my Widget configuration." @@ -10235,17 +10527,17 @@ msgctxt "404 HTTP status description" msgid "Listing not found" msgstr "Anzeige nicht gefunden" -#: frontend/page-place-ad.php:1417 +#: frontend/page-place-ad.php:1420 msgctxt "upload listing images form" msgid "Preview Ad" msgstr "Anzeigen-Vorschau" -#: frontend/page-place-ad.php:1419 +#: frontend/page-place-ad.php:1422 msgctxt "upload listing images form" msgid "Place Ad" msgstr "Anzeige aufgeben" -#: frontend/page-place-ad.php:1421 +#: frontend/page-place-ad.php:1424 msgctxt "upload listing images form" msgid "Checkout" msgstr "Buchung abschließen" @@ -10326,7 +10618,7 @@ msgctxt "listing row action" msgid "Unflag" msgstr "Abwählen" -#: frontend/templates/email-send-ad-access-key.tpl.php:9 +#: frontend/templates/email-send-ad-access-key.tpl.php:13 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:18 #: templates/email/listing-edit-link-with-access-token.tpl.php:9 msgctxt "edit link email" @@ -10385,11 +10677,6 @@ msgctxt "loading region options" msgid "loading..." msgstr "...laden..." -#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 -msgctxt "add credit checkout step" -msgid "Complete Payment" -msgstr "Zahlung vervollständigen" - #: frontend/templates/page-edit-ad-email-key-step.tpl.php:34 msgctxt "enter email and access key form" msgid "Continue" @@ -10400,33 +10687,28 @@ msgctxt "send ad access key form" msgid "Continue" msgstr "weiter" -#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 -msgctxt "place ad checkout step" -msgid "Complete Payment" -msgstr "Zahlung vervollständigen" - -#: frontend/templates/page-place-ad-details-step.tpl.php:59 +#: frontend/templates/page-place-ad-details-step.tpl.php:63 msgctxt "ad details form" msgid "Start Date" msgstr "Startdatum" -#: frontend/templates/page-place-ad-details-step.tpl.php:69 +#: frontend/templates/page-place-ad-details-step.tpl.php:73 msgctxt "ad details form" msgid "End Date" msgstr "Enddatum" -#: frontend/templates/page-place-ad-details-step.tpl.php:98 +#: frontend/templates/page-place-ad-details-step.tpl.php:104 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:9 msgctxt "ad details form" msgid "Read our Terms of Service" msgstr "Bitte beachte unsere Datenschutzerklärung!" -#: frontend/templates/page-place-ad-details-step.tpl.php:100 +#: frontend/templates/page-place-ad-details-step.tpl.php:106 msgctxt "ad details form" msgid "Terms of service:" msgstr "Datenschutzerklärung:" -#: frontend/templates/page-place-ad-details-step.tpl.php:105 +#: frontend/templates/page-place-ad-details-step.tpl.php:111 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:17 msgctxt "ad details form" msgid "I agree to the terms of service" @@ -10493,12 +10775,12 @@ msgctxt "ad details form" msgid "Terms of Service" msgstr "Datenschutzerklärung" -#: frontend/templates/page-place-ad-details-step.tpl.php:120 +#: frontend/templates/page-place-ad-details-step.tpl.php:126 msgctxt "listing details form" msgid "Preview Ad" msgstr "Anzeigen-Vorschau" -#: frontend/templates/page-place-ad-details-step.tpl.php:122 +#: frontend/templates/page-place-ad-details-step.tpl.php:128 msgctxt "listing details form" msgid "Continue" msgstr "weiter" @@ -10528,7 +10810,7 @@ msgctxt "place ad order step" msgid "Please select the owner for this Ad" msgstr "Bitte wähle einen Besitzer für diese Anzeige" -#: frontend/templates/page-place-ad-order-step.tpl.php:82 +#: frontend/templates/page-place-ad-order-step.tpl.php:84 msgctxt "listing order form" msgid "Continue" msgstr "weiter" @@ -10540,24 +10822,12 @@ msgid "Thumbnails of already uploaded images are shown below." msgstr "" "Vorschaubilder von bereits hochgeladenen Bildern werden unten angezeigt." -#: frontend/templates/page-renew-ad-order-step.tpl.php:6 -msgctxt "renew ad order step" -msgid "Select Payment Term" -msgstr "Bitte eine Zahlungsart auswählen" - -#: frontend/templates/page-search-ads.tpl.php:88 +#: frontend/templates/page-search-ads.tpl.php:95 msgctxt "ad search form" msgid "Find Ads" msgstr "Anzeigen finden" -#: frontend/templates/payments-billing-form.tpl.php:1 -msgctxt "awpcp billing form" -msgid "" -"Please fill in the billing information in the form below to place your " -"payment." -msgstr "Bitte fülle die Zahlungsinformationen in dem Formular unten aus." - -#: frontend/templates/payments-checkout-page.tpl.php:13 +#: frontend/templates/payments-checkout-page.tpl.php:12 msgctxt "checkout step" msgid "" "You are about to pay for the following items. Please review the order and " @@ -10566,107 +10836,47 @@ msgstr "" "Du zahlst jetzt Deine Anzeige. Bitte überprüfe nochmals Deine Bestellung und " "ausgewählte Zahlungsweise!" -#: frontend/templates/payments-checkout-page.tpl.php:17 +#: frontend/templates/payments-checkout-page.tpl.php:16 msgctxt "checkout step" msgid "Payment Terms" msgstr "Datenschutzerklärung" -#: frontend/templates/payments-checkout-page.tpl.php:23 +#: frontend/templates/payments-checkout-page.tpl.php:22 msgctxt "checkout step" msgid "Payment Method" msgstr " Zahlungseinstellungen" #: frontend/templates/payments-checkout-payment-page.tpl.php:8 -#: frontend/templates/payments-payment-page.tpl.php:3 msgctxt "checkout-payment page" msgid "You are about to pay for the following items." msgstr "Du zahlst für folgende Auswahl:" #: frontend/templates/payments-checkout-payment-page.tpl.php:10 -#: frontend/templates/payments-payment-page.tpl.php:5 msgctxt "checkout-payment page" msgid "Payment Terms" msgstr "Datenschutzerklärung" -#: includes/payments-api.php:802 +#: includes/payments-api.php:889 msgctxt "checkout-payment page" msgid "Please use the button below to complete your payment." msgstr "Bitte drücke den Button unten, um Deine Zahlung abzuschließen." -#: frontend/templates/payments-credit-plans-table.tpl.php:7 -msgctxt "credit plans table" -msgid "" -"You can additionally purchase a Credit Plan to add credit to your account. " -"If you select to pay using credits, the price of the selected payment term " -"will be deducted from your account balance after you have completed payment." -msgstr "" -"Du kannst zusätzliche Credits für Dein Konto kaufen. Wenn Du mit Credits " -"bezahlst wird der Betrag von Deinem Konto abgebucht nachdem Du die Bezahlung " -"durchgeführt hast." - -#: frontend/templates/payments-credit-plans-table.tpl.php:51 -msgctxt "credit plans table" -msgid "clear selection" -msgstr "Auswahl löschen" - -#: includes/payments-api.php:722 -msgctxt "credit plans table" -msgid "Plan" -msgstr "Gebühr ändern" - -#: includes/payments-api.php:723 -msgctxt "credit plans table" -msgid "Description" -msgstr "Beschreibung" - -#: includes/payments-api.php:724 -msgctxt "credit plans table" -msgid "Credits" -msgstr "Credits" - -#: includes/payments-api.php:725 -msgctxt "credit plans table" -msgid "Price" -msgstr "Preis" - -#: frontend/templates/payments-payment-completed-page.tpl.php:2 -msgctxt "payment completed page" -msgid "Transaction Details" -msgstr "Zahlungsdetails" - #: frontend/templates/payments-paypal-payment-button.tpl.php:27 msgctxt "paypal-checkout-form" msgid "Return to %s" msgstr "Zurück zu %s" -#: frontend/templates/payments-transaction-items-table.tpl.php:4 -#: frontend/templates/payments-transaction-items-table.tpl.php:13 -msgctxt "transaction items" -msgid "Item" -msgstr "Beschreibung" - -#: frontend/templates/payments-transaction-items-table.tpl.php:5 -#: frontend/templates/payments-transaction-items-table.tpl.php:17 -msgctxt "transaction items" -msgid "Amount" -msgstr "Summe" - -#: frontend/templates/payments-transaction-items-table.tpl.php:34 -msgctxt "transaction items" -msgid "Total Amount (credit)" -msgstr "Gesamtsumme" - #: frontend/templates/payments-transaction-items-table.tpl.php:40 msgctxt "transaction items" msgid "Total Amount" msgstr "Gesamtsumme" -#: functions.php:743 +#: functions.php:749 msgctxt "comma separated list of things" msgid "%s and %d more." msgstr "%s und %d mehr." -#: functions.php:1200 +#: functions.php:1222 msgctxt "default blog title" msgid "Classifieds Website" msgstr "Websitenname" @@ -10898,27 +11108,27 @@ msgctxt "listing status" msgid "Active" msgstr "Aktiv" -#: includes/admin/listings/class-listings-table-columns-handler.php:211 +#: includes/admin/listings/class-listings-table-columns-handler.php:212 msgctxt "listing status" msgid "Pending Approval" msgstr "Genehmigung noch ausstehend" -#: includes/admin/listings/class-listings-table-columns-handler.php:215 +#: includes/admin/listings/class-listings-table-columns-handler.php:217 msgctxt "listing status" msgid "Expired" msgstr "abgelaufen" -#: includes/admin/listings/class-listings-table-columns-handler.php:219 +#: includes/admin/listings/class-listings-table-columns-handler.php:222 msgctxt "listing status" msgid "Disabled" msgstr "Deaktiviert" -#: includes/admin/listings/class-listings-table-columns-handler.php:223 +#: includes/admin/listings/class-listings-table-columns-handler.php:227 msgctxt "listing status" msgid "Pending Payment" msgstr "Ausstehende Zahlung" -#: includes/admin/listings/class-listings-table-columns-handler.php:227 +#: includes/admin/listings/class-listings-table-columns-handler.php:232 msgctxt "listing status" msgid "Pending Verification" msgstr "Ausstehende Bestätigung" @@ -10933,17 +11143,17 @@ msgctxt "listings row action" msgid "Quick View" msgstr "Schnellansicht" -#: includes/class-awpcp.php:1458 +#: includes/class-awpcp.php:1449 msgctxt "[UI Datepicker] Display text for previous month link" msgid "<Prev" msgstr "<Prev" -#: includes/class-awpcp.php:1459 +#: includes/class-awpcp.php:1450 msgctxt "[UI Datepicker] Display text for next month link" msgid "Next>" msgstr "Next>" -#: includes/class-awpcp.php:1465 +#: includes/class-awpcp.php:1456 msgctxt "[UI Datepicker] The first day of the week, Sun = 0, Mon = 1, ..." msgid "0" msgstr "0" @@ -10996,7 +11206,7 @@ msgid "Regions" msgstr "Regionen" #. translators: the numbers that need to be added up for the math challenge. -#: includes/frontend/class-default-captcha-provider.php:34 +#: includes/frontend/class-default-captcha-provider.php:45 msgctxt "CAPTCHA" msgid "Enter the value of the following sum: %1$d + %2$d" msgstr "Gebe das Ergebnis der folgenden Summe ein:%1$d +%2$d" @@ -11026,12 +11236,7 @@ msgctxt "order submit listing section" msgid "Please select a category for your ad" msgstr " Bitte eine Kategorie wählen" -#: templates/frontend/order-submit-listing-section.tpl.php:44 -msgctxt "order submit listing section" -msgid "Who is the owner of this ad?" -msgstr "Wer ist der Ersteller dieser Anzeige?" - -#: templates/frontend/order-submit-listing-section.tpl.php:59 +#: templates/frontend/order-submit-listing-section.tpl.php:57 msgctxt "order submit listing section" msgid "" "Please select the duration and features that will be available for this ad" @@ -11039,68 +11244,63 @@ msgstr "" "Bitte wähle Dauer und Eigenschaften, die für die Anzeige verfügbar sein " "werden." -#: templates/frontend/order-submit-listing-section.tpl.php:81 +#: templates/frontend/order-submit-listing-section.tpl.php:77 msgctxt "order submit listing section" msgid "Continue" msgstr "weiter" -#: templates/frontend/order-submit-listing-section.tpl.php:87 -msgctxt "order submit listing section" -msgid "Your ad will be posted on the following categories: {categories}." -msgstr "Deine Anzeige wird in den folgenden Kategorien gepostet: {categories}." - -#: templates/frontend/order-submit-listing-section.tpl.php:95 +#: templates/frontend/order-submit-listing-section.tpl.php:98 msgctxt "order submit listing section" msgid "Credit Plan:" msgstr "Zahlungsarten" -#: templates/frontend/order-submit-listing-section.tpl.php:96 +#: templates/frontend/order-submit-listing-section.tpl.php:99 msgctxt "order submit listing section" msgid "Owner:" msgstr "Besitzer" -#: templates/frontend/order-submit-listing-section.tpl.php:99 +#: templates/frontend/order-submit-listing-section.tpl.php:102 msgctxt "order submit listing section" msgid "Loading ad fields" msgstr "Lade Anzeigenfelder" -#: templates/frontend/order-submit-listing-section.tpl.php:100 +#: templates/frontend/order-submit-listing-section.tpl.php:103 msgctxt "order submit listing section" msgid "Change selection" msgstr "Auswahl ändern" -#: includes/frontend/class-recaptcha-v2.php:66 +#: includes/frontend/class-recaptcha-v2.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing" msgstr "Der Secret Parameter fehlt." -#: includes/frontend/class-recaptcha-v2.php:69 -#: includes/helpers/class-recaptcha-v3.php:74 +#: includes/frontend/class-recaptcha-v2.php:96 +#: includes/helpers/class-recaptcha-v3.php:96 msgctxt "recaptcha-error" msgid "The secret parameter is invalid or malformed." msgstr "Der Secret Parameter ist falsch oder nicht richtig." -#: includes/frontend/class-recaptcha-v2.php:72 +#: includes/frontend/class-recaptcha-v2.php:99 msgctxt "recaptcha-error" msgid "The response parameter is missing." msgstr "Der Response Paramter fehlt." -#: includes/frontend/class-recaptcha-v2.php:76 +#: includes/frontend/class-recaptcha-v2.php:103 msgctxt "recaptcha-error" msgid "The response parameter is invalid or malformed." msgstr "Der Response Parameter ist falsch oder nicht richtig." -#: includes/helpers/class-recaptcha-v3.php:71 +#: includes/helpers/class-recaptcha-v3.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing." msgstr "Der geheime Parameter fehlt." -#: includes/helpers/class-recaptcha-v3.php:77 +#: includes/helpers/class-recaptcha-v3.php:99 msgctxt "recaptcha-error" msgid "reCAPTCHA score was not included." msgstr "Die reCAPTCHA-Punktzahl war nicht enthalten." -#: includes/helpers/class-recaptcha-v3.php:81 +#: includes/helpers/class-recaptcha-v3.php:103 msgctxt "recaptcha-error" msgid "reCAPTCHA couldn't analyze the current interaction." msgstr "reCAPTCHA konnte die aktuelle Interaktion nicht analysieren." @@ -11237,7 +11437,7 @@ msgid "remaining" msgstr "übrig" #. translators: %s is the type of region. -#: includes/helpers/widgets/multiple-region-selector.php:122 +#: includes/helpers/widgets/multiple-region-selector.php:142 msgctxt "Select in Multiple Region Selector" msgid "Select %s" msgstr "Wählen %s" @@ -11259,7 +11459,7 @@ msgid "Add New" msgstr "Neu hinzufügen" #: includes/models/class-custom-post-types.php:157 -#: includes/settings/class-listings-settings.php:595 +#: includes/settings/class-listings-settings.php:597 msgctxt "listing post type slug" msgid "classifieds" msgstr "Anzeigen" @@ -11279,7 +11479,7 @@ msgctxt "payment gateways" msgid "2Checkout" msgstr "Zum Checkout" -#: includes/payment-gateway-paypal-standard.php:24 +#: includes/payment-gateway-paypal-standard.php:26 msgctxt "payment gateways" msgid "PayPal" msgstr "PayPal" @@ -11317,57 +11517,77 @@ msgid_plural "Years" msgstr[0] "Jahr" msgstr[1] "Jahre" -#: includes/payment-terms-table.php:33 +#: includes/payment-terms-table.php:38 msgctxt "place ad payment terms column headers" msgid "Payment Term" msgstr "Zahlungsbedingungen" -#: includes/payment-terms-table.php:34 +#: includes/payment-terms-table.php:39 msgctxt "place ad payment terms column headers" msgid "Ads Allowed" msgstr "Anzeigen erlaubt" -#: includes/payment-terms-table.php:35 +#: includes/payment-terms-table.php:40 msgctxt "place ad payment terms column headers" msgid "Images Allowed" msgstr "Bilder erlaubt" -#: includes/payment-terms-table.php:36 +#: includes/payment-terms-table.php:41 msgctxt "place ad payment terms column headers" msgid "Characters in Title" msgstr "Zeichen im Titel" -#: includes/payment-terms-table.php:37 +#: includes/payment-terms-table.php:42 msgctxt "place ad payment terms column headers" msgid "Chars in Description" msgstr "Zeichen in der Beschreibung" -#: includes/payment-terms-table.php:38 +#: includes/payment-terms-table.php:43 msgctxt "place ad payment terms column headers" msgid "Duration" msgstr "Dauer" -#: includes/payment-terms-table.php:44 +#: includes/payment-terms-table.php:49 msgctxt "place ad payment terms column headers" msgid "Price (currency)" msgstr "Preis (Geld)" -#: includes/payment-terms-table.php:49 +#: includes/payment-terms-table.php:54 msgctxt "place ad payment terms column headers" msgid "Price (credits)" msgstr "Preis (Credits)" -#: includes/payment-terms-table.php:106 includes/payment-terms-table.php:111 +#: includes/payment-terms-table.php:139 includes/payment-terms-table.php:145 msgctxt "payment term duration" msgid "No Limit" msgstr "Keine Begrenzung" -#: includes/settings/class-email-settings.php:135 +#: includes/payments-api.php:757 +msgctxt "credit plans table" +msgid "Plan" +msgstr "Gebühr ändern" + +#: includes/payments-api.php:758 +msgctxt "credit plans table" +msgid "Description" +msgstr "Beschreibung" + +#: includes/payments-api.php:759 +msgctxt "credit plans table" +msgid "Credits" +msgstr "Credits" + +#: includes/payments-api.php:760 +msgctxt "credit plans table" +msgid "Price" +msgstr "Preis" + +#: includes/settings/class-email-settings.php:137 msgctxt "reply to ad email" msgid "Response to your classified ad: {listing_title}" msgstr "Antwort auf Deine Anzeige: {listing_title}" -#: includes/settings/class-email-settings.php:136 +#: includes/settings/class-email-settings.php:138 msgctxt "reply to ad email" msgid "" "Someone has responded to your classified ad.\n" @@ -11400,13 +11620,13 @@ msgstr "" "{website_title}\n" "{website_url}" -#: includes/settings/class-email-settings.php:161 +#: includes/settings/class-email-settings.php:163 msgctxt "reply to ad email" msgid "Notification about a response regarding ad: {listing_title}" msgstr "" "Benachrichtigung über eine Antwort bezüglich der Anzeige: {listing_title}" -#: includes/settings/class-email-settings.php:162 +#: includes/settings/class-email-settings.php:164 msgctxt "reply to ad email" msgid "" "Someone has responded to one of the classified ads on your website.\n" @@ -11439,12 +11659,12 @@ msgstr "" "{website_title}\n" "{website_url}" -#: installer.php:833 +#: installer.php:318 msgctxt "reply to ad email" msgid "{__previous_subject__} regarding: {listing_title}" msgstr "{__previous_subject__} AW: {listing_title}" -#: installer.php:834 +#: installer.php:319 msgctxt "reply to ad email" msgid "" "{__previous_body__}\n" @@ -11542,17 +11762,6 @@ msgstr "" "Abwählen, wenn Du den Preis ohne Nachkommastelle anzeigen möchtest. Der Wert " "wird dann gerundet." -#: includes/settings/class-licenses-settings.php:81 -msgctxt "settings" -msgid "" -"The IP address of your server is . Please make sure to include " -"that information if you need to contact support about problems trying to " -"activate your licenses." -msgstr "" -"Die IP-Adresse Deines Servers lautet . Stelle sicher, dass Du " -"diese Informationen angibst, wenn Du Dich bei Problemen mit der Aktivierung " -"Deiner Lizenzen an den Support wenden musst." - #: includes/settings/class-payment-general-settings.php:100 msgctxt "settings" msgid "Pay before entering Ad details" @@ -11594,7 +11803,7 @@ msgstr "" "Diese Einstellungen beeinflussen die Titelbar vom Webbrowser. Du kannst hier " "Elemente hinzufügen oder entfernen." -#: includes/settings/class-listings-settings.php:599 +#: includes/settings/class-listings-settings.php:601 msgctxt "listing url settings section" msgid "" "These settings affect the URL path shown for listings. You can include or " @@ -11603,9 +11812,11 @@ msgstr "" "Diese Einstellungen wirken sich auf den URL-Pfad aus, der für Listings " "angezeigt wird. Du kannst Elemente für SEO-Zwecke einbeziehen oder entfernen." -#: includes/settings/class-listings-settings.php:605 +#. translators: %s: example URL +#: includes/settings/class-listings-settings.php:610 +#, fuzzy msgctxt "listing url settings section" -msgid "Example path: ." +msgid "Example path: %s." msgstr "Beispiel-Pfad: ." #: includes/settings/renderers/class-wordpress-page-settings-renderer.php:27 @@ -11613,10 +11824,12 @@ msgctxt "page settings" msgid "— Select —" msgstr "— Auswählen —" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:40 +#. translators: %1$s is a dropdown with existing pages, %2$s is a link to +#. create a new page +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:34 msgctxt "page settings" -msgid "Select existing page {dropdown} -or- {create_page_button}" -msgstr "Wähle bestehende Seite aus {dropdown} -oder- {create_page_button}" +msgid "Select existing page %1$s -or- %2$s" +msgstr "" #. translators: %1$s the success message, %2$s the error message #: includes/views/admin/listings/class-listing-action-admin-page.php:22 @@ -11636,60 +11849,62 @@ msgstr "" "ausreichend Speicherplatz und Datenspeicher für PHP vorhanden ist. Siehe " "Fehlerprotokall für mehr Details. " -#: templates/admin/export-listings-admin-page.tpl.php:25 +#. translators: %1$s: memory_limit link, %2$s: max_execution_time link +#: templates/admin/export-listings-admin-page.tpl.php:27 +#, fuzzy msgctxt "listings-csv-export" msgid "" "Please note that the export process is a resource intensive task. If your " "export does not succeed try disabling other plugins first and/or increasing " -"the values of the 'memory_limit' and 'max_execution_time' directives in your " -"server's php.ini configuration file." +"the values of the %1$s and %2$s directives in your server php.ini " +"configuration file." msgstr "" "Bitte beachte, dass der Exportvorgang eine ressourcenintensive Aufgabe ist. " "Wenn der Export nicht erfolgreich ist, deaktiviere zuerst andere Plugins " "und / oder erhöhe die Werte 'memory_limit' und 'max_execution_time' in der " "Konfigurationsdatei php.ini Deines Servers." -#: templates/admin/export-listings-admin-page.tpl.php:44 +#: templates/admin/export-listings-admin-page.tpl.php:39 msgctxt "listings-csv-export" msgid "Export Configuration" msgstr "Konfiguration exportieren" -#: templates/admin/export-listings-admin-page.tpl.php:47 +#: templates/admin/export-listings-admin-page.tpl.php:42 msgctxt "listings-csv-export" msgid "Export settings" msgstr "Exporteinstellungen" -#: templates/admin/export-listings-admin-page.tpl.php:51 +#: templates/admin/export-listings-admin-page.tpl.php:46 msgctxt "listings-csv-export" msgid "Which listings to export?" msgstr "Welche Anzeigen sollen exportiert werden?" -#: templates/admin/export-listings-admin-page.tpl.php:55 +#: templates/admin/export-listings-admin-page.tpl.php:50 msgctxt "listings-csv-export" msgid "All" msgstr "Alle" -#: templates/admin/export-listings-admin-page.tpl.php:56 +#: templates/admin/export-listings-admin-page.tpl.php:51 msgctxt "listings-csv-export" msgid "Active Only" msgstr "Nur aktive" -#: templates/admin/export-listings-admin-page.tpl.php:57 +#: templates/admin/export-listings-admin-page.tpl.php:52 msgctxt "listings-csv-export" msgid "Active + Pending Renewal" msgstr "Aktive + Ausstehende Erneuerung" -#: templates/admin/export-listings-admin-page.tpl.php:63 +#: templates/admin/export-listings-admin-page.tpl.php:58 msgctxt "listings-csv-export" msgid "Export images?" msgstr "Bilder exportieren?" -#: templates/admin/export-listings-admin-page.tpl.php:68 +#: templates/admin/export-listings-admin-page.tpl.php:63 msgctxt "listings-csv-export" msgid "Export images" msgstr "Bilder exportieren" -#: templates/admin/export-listings-admin-page.tpl.php:71 +#: templates/admin/export-listings-admin-page.tpl.php:66 msgctxt "listings-csv-export" msgid "" "When checked, instead of just a CSV file a ZIP file will be generated with " @@ -11698,17 +11913,17 @@ msgstr "" "Wenn diese Option aktiviert ist, wird anstelle einer CSV-Datei eine ZIP-" "Datei mit einer CSV-Datei und den Anzeigen-Bilder erstellt." -#: templates/admin/export-listings-admin-page.tpl.php:77 +#: templates/admin/export-listings-admin-page.tpl.php:72 msgctxt "listings-csv-export" msgid "Additional metadata to export:" msgstr "Zusätzliche Metadaten zum Exportieren:" -#: templates/admin/export-listings-admin-page.tpl.php:82 +#: templates/admin/export-listings-admin-page.tpl.php:77 msgctxt "listings-csv-export" msgid "Include unique IDs for each listing (sequence_id column)." msgstr "Füge für jede Anzeige eindeutige IDs ein (sequence_id-Spalte)." -#: templates/admin/export-listings-admin-page.tpl.php:85 +#: templates/admin/export-listings-admin-page.tpl.php:80 msgctxt "listings-csv-export" msgid "" "If you plan to re-import the listings into AWPCP and don't want new ones " @@ -11717,69 +11932,64 @@ msgstr "" "Wenn Du die Anzeigen erneut in AWPCP importieren möchtest und keine neuen " "Anzeigen erstellen möchtest, wähle diese Option!" -#: templates/admin/export-listings-admin-page.tpl.php:90 +#: templates/admin/export-listings-admin-page.tpl.php:85 msgctxt "listings-csv-export" msgid "Author information (username)" msgstr "Informationen zum Ersteller (Benutzername)" -#: templates/admin/export-listings-admin-page.tpl.php:96 +#: templates/admin/export-listings-admin-page.tpl.php:91 msgctxt "listings-csv-export" msgid "CSV File Settings" msgstr "CSV File Einstellungen" -#: templates/admin/export-listings-admin-page.tpl.php:100 +#: templates/admin/export-listings-admin-page.tpl.php:95 msgctxt "listings-csv-export" msgid "Image Separator" msgstr "Bild Trennzeichen" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "Category Separator" msgstr "Kategorie Separator" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "required" msgstr "Pflichtfeld" -#: templates/admin/export-listings-admin-page.tpl.php:118 +#: templates/admin/export-listings-admin-page.tpl.php:113 msgctxt "listings-csv-export" msgid "Export Listings" msgstr "Anzeigen exportieren" -#: templates/admin/export-listings-admin-page.tpl.php:124 +#: templates/admin/export-listings-admin-page.tpl.php:119 msgctxt "listings-csv-export" msgid "Export in Progress..." msgstr "Export in Bearbeitung..." -#: templates/admin/export-listings-admin-page.tpl.php:125 +#: templates/admin/export-listings-admin-page.tpl.php:120 msgctxt "listings-csv-export" msgid "" "Your export file is being prepared. Please do not leave this page until the " "export finishes." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:128 +#: templates/admin/export-listings-admin-page.tpl.php:123 msgctxt "listings-csv-export" msgid "No. of listings:" msgstr "Anzahl der Anzeigen:" -#: templates/admin/export-listings-admin-page.tpl.php:130 +#: templates/admin/export-listings-admin-page.tpl.php:125 msgctxt "listings-csv-export" msgid "Approximate export file size:" msgstr "Ungefähre Größe der Export-Datei:" -#: templates/admin/export-listings-admin-page.tpl.php:137 +#: templates/admin/export-listings-admin-page.tpl.php:132 msgctxt "listings-csv-export" msgid "Cancel Export" msgstr "Exportieren abbrechen" -#: templates/admin/export-listings-admin-page.tpl.php:142 -msgctxt "listings-csv-export" -msgid "Export Complete" -msgstr "Exportieren abgeschlossen" - -#: templates/admin/export-listings-admin-page.tpl.php:143 +#: templates/admin/export-listings-admin-page.tpl.php:138 msgctxt "listings-csv-export" msgid "" "Your export file has been successfully created and it is now ready for " @@ -11788,32 +11998,27 @@ msgstr "" "Deine Export-Datei wurde erfolgreich erstellt und ist zum Download bereit. " #. translators: %1$s filename %2$s filesize. -#: templates/admin/export-listings-admin-page.tpl.php:149 +#: templates/admin/export-listings-admin-page.tpl.php:144 msgctxt "listings-csv-export" msgid "Download %1$s (%2$s)" msgstr "Download %1$s (%2$s)" -#: templates/admin/export-listings-admin-page.tpl.php:160 +#: templates/admin/export-listings-admin-page.tpl.php:155 msgctxt "listings-csv-export" msgid "Cleanup" msgstr "Bereinigung" -#: templates/admin/export-listings-admin-page.tpl.php:165 -msgctxt "listings-csv-export" -msgid "Export Canceled" -msgstr "Export abgebrochen" - -#: templates/admin/export-listings-admin-page.tpl.php:166 +#: templates/admin/export-listings-admin-page.tpl.php:161 msgctxt "listings-csv-export" msgid "The export has been canceled." msgstr "Der Export wurde abgebrochen." -#: templates/admin/export-listings-admin-page.tpl.php:167 +#: templates/admin/export-listings-admin-page.tpl.php:162 msgctxt "listings-csv-export" msgid "← Return to CSV Export" msgstr "← Zurück zum CSV Export" -#: templates/admin/export-listings-admin-page.tpl.php:101 +#: templates/admin/export-listings-admin-page.tpl.php:96 msgctxt "admin forms" msgid "required" msgstr "Pflichtfeld" @@ -11865,43 +12070,6 @@ msgctxt "The 'or' after 'Drop files here to upload' in Media Uploader" msgid "or" msgstr "oder" -#: templates/email/listing-media-upload-notification.plain.tpl.php:1 -msgctxt "listing media uploaded notification" -msgid "Hello," -msgstr "Hallo, " - -#: templates/email/listing-media-upload-notification.plain.tpl.php:5 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\":" -msgstr "" -"Die folgenden Dateien wurden zu der Anzeige \"\": " -"hochgeladen: " - -#: templates/email/listing-media-upload-notification.plain.tpl.php:16 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\" and are awaiting approval:" -msgstr "" -"Die folgenden Dateien wurden zu der Anzeige \"\": hochgeladen " -"und warten auf eine Bestätigung: " - -#: templates/email/listing-media-upload-notification.plain.tpl.php:26 -msgctxt "listing media uploaded notification" -msgid "" -"Click here to manage media uploaded to the listing: ." -msgstr "" -"Hier drücken um die Dateien zur Anzeige zu bearbeiten: ." - -#: templates/email/listing-media-upload-notification.plain.tpl.php:31 -msgctxt "listing media uploaded notification" -msgid "Click here to view the listing: ." -msgstr "Hier klicken um die Anzeige zu sehen: ." - #: templates/frontend/actions-submit-listing-section.tpl.php:7 msgctxt "actions submit listing section" msgid "Actions" @@ -11937,149 +12105,75 @@ msgctxt "upload media submit listing section" msgid "Loading..." msgstr "Laden…" -#: templates/privacy-policy.tpl.php:10 -msgctxt "privacy policy" -msgid "" -"When you submit a classified listing, the content of the listing and its " -"metadata are retained indefinitely. All users can see, edit or delete the " -"personal information included on their listings at any time. Website " -"administrators can also see and edit that information." -msgstr "" -"Wenn Du eine Anzeige sendest, wird der Inhalt des Eintrags und seine " -"Metadaten unabhängig voneinander gespeichert. Alle Nutzer können die in " -"Deinen Angeboten enthaltenen persönlichen Informationen jederzeit einsehen, " -"bearbeiten oder löschen. Website-Administratoren können diese Informationen " -"ebenfalls anzeigen und bearbeiten." +#~ msgid "Duration: " +#~ msgstr "Dauer: " -#: templates/privacy-policy.tpl.php:12 -msgctxt "privacy policy" -msgid "" -"Website visitors can see the contact name, website URL, phone number, " -"address and other information included in your submission to describe the " -"classified listing." -msgstr "" -"Website-Besucher können den Kontaktnamen, die URL der Website, die " -"Telefonnummer, die Adresse und andere Informationen sehen, die in Deiner " -"Anzeige enthalten sind." +#~ msgid "# of images: " +#~ msgstr "Anzahl Bilder: " -#: templates/privacy-policy.tpl.php:14 -msgctxt "privacy policy" -msgid "" -"Contact name, email address, website URL and content of submitted classified " -"listings may be checked through Akismet's spam detection service. The " -"Akismet service privacy policy is available here." -msgstr "" -"Kontaktname, E-Mail-Adresse, Website-URL und Inhalt der eingereichten " -"Anzeigen können durch Akismets Spam-Erkennungsdienst überprüft werden. Die " -"Akismet-Service-Datenschutzerklärung ist verfügbar hier ." +#~ msgid "Chars in title: " +#~ msgstr "Anzahl Zeichen im Titel: " -#: templates/privacy-policy.tpl.php:16 -msgctxt "privacy policy" -msgid "Payment Information" -msgstr "Zahlunginformationen" +#~ msgid "Chars in description: " +#~ msgstr "Anzahl Zeichen in der Beschreibung: " -#: templates/privacy-policy.tpl.php:18 -msgctxt "privacy policy" -msgid "" -"If you pay to post a classified listing entering your credit card and " -"billing information directly on {home_url}, the " -"credit card information won't be stored but it will be shared through a " -"secure connection with the following payment gateways to process the payment:" -msgstr "" -"Wenn Du zahlst, um eine Anzeige einzugeben und Deine Kreditkarten- und " -"Rechnungsinformationen direkt auf {home_url} " -"eingibst, werden die Kreditkarteninformationen nicht gespeichert. Sie werden " -"jedoch über eine sichere Verbindung mit den folgenden Zahlungsgateways " -"weitergeleitet, um die Zahlung zu verarbeiten: " +#~ msgid "Documentation" +#~ msgstr "Dokumentation" -#: templates/privacy-policy.tpl.php:21 -msgctxt "privacy policy" -msgid "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -msgstr "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgid "Status: " +#~ msgstr "Status: " -#: templates/privacy-policy.tpl.php:22 -msgctxt "privacy policy" -msgid "" -"Authorize.Net — https://www.authorize.net/company/privacy/" -msgstr "" -"Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgctxt "debug page" +#~ msgid "PHP Version" +#~ msgstr "PHP Version" -#: templates/privacy-policy.tpl.php:23 -msgctxt "privacy policy" -msgid "" -"Stripe — https://stripe.com/" -"us/privacy/" -msgstr "" -"Stripe — https://stripe.com/" -"us/privacy/" +#~ msgctxt "Browse the Quick Start Guide" +#~ msgid "Browse the %s." +#~ msgstr "Suche in der %s." -#: templates/privacy-policy.tpl.php:26 -msgctxt "privacy policy" -msgid "Regions" -msgstr "Regionen" +#~ msgctxt "place ad checkout step" +#~ msgid "Complete Payment" +#~ msgstr "Zahlung vervollständigen" -#: templates/privacy-policy.tpl.php:28 -msgctxt "privacy policy" -msgid "" -"If you choose to see listings published on a specific region, a cookie will " -"be stored on your browser for the remainder of the session to remember the " -"selected region." -msgstr "" -"Wenn Du siehst, dass in einer bestimmten Region veröffentlichte Einträge " -"angezeigt werden, wird ein Cookie für den Rest der Sitzung in Deinem Browser " -"gespeichert, um sich an die ausgewählte Region zu erinnern." +#~ msgctxt "transaction items" +#~ msgid "Amount" +#~ msgstr "Summe" -#: templates/privacy-policy.tpl.php:30 -msgctxt "privacy policy" -msgid "Comments and Ratings" -msgstr "Kommentare und Bewertungen" +#~ msgctxt "page settings" +#~ msgid "Select existing page {dropdown} -or- {create_page_button}" +#~ msgstr "Wähle bestehende Seite aus {dropdown} -oder- {create_page_button}" -#: templates/privacy-policy.tpl.php:32 -msgctxt "privacy policy" -msgid "" -"When visitors leave comments and reviews for classified listings we collect " -"the data shown in the comments form, and also the visitor’s IP address to " -"help spam detection." -msgstr "" -"Wenn Besucher Kommentare und Rezensionen für Anzeigen hinterlassen, erfassen " -"wir die Daten, die im Kommentarformular angezeigt werden, sowie die IP-" -"Adresse des Besuchers, um die Erkennung von Spam zu verbessern." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgstr "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -#: templates/privacy-policy.tpl.php:34 -msgctxt "privacy policy" -msgid "" -"Visitor comments may be checked through Akismet's spam detection service. " -"The Akismet service privacy policy is available here." -msgstr "" -"Besucherkommentare können über den Spam-Erkennungsdienst von Akismet " -"überprüft werden. Die Datenschutzrichtlinie des Akismet-Dienstes findest Du " -"hier." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgstr "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" -#: templates/privacy-policy.tpl.php:36 -msgctxt "privacy policy" -msgid "Restricted Categories" -msgstr "Limitierte Kategorien" +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Stripe — https://stripe." +#~ "com/us/privacy/" +#~ msgstr "" +#~ "Stripe — https://stripe." +#~ "com/us/privacy/" -#: templates/privacy-policy.tpl.php:38 -msgctxt "privacy policy" -msgid "" -"When you agree to see listings or publish a listing on a restricted " -"category, a cookie will be stored in your browser to remember your decision. " -"The cookie will be stored on your browser for the remainder of that session." -msgstr "" -"Wenn Du zustimmst, Einträge zu sehen oder einen Eintrag in einer " -"eingeschränkten Kategorie zu veröffentlichen, wird ein Cookie in Deinem " -"Browser gespeichert, um sich an Deine Entscheidung zu erinnern. Der Cookie " -"wird für den Rest der Sitzung in Deinem Browser gespeichert." +#~ msgctxt "privacy policy" +#~ msgid "Regions" +#~ msgstr "Regionen" + +#~ msgctxt "privacy policy" +#~ msgid "Restricted Categories" +#~ msgstr "Limitierte Kategorien" #~ msgid "AWPCP" #~ msgstr "AWPCP Support Website" @@ -12161,9 +12255,6 @@ msgstr "" #~ msgid "PayFast" #~ msgstr "Schnelle Bezahlung" -#~ msgid "Restricted Categories" -#~ msgstr "Limitierte Kategorien" - #~ msgid "The number of regions allowed must be equal or greater than zero." #~ msgstr "Die Anzahl der erlaubten Regionen muss größer oder kleiner 0 sein!" diff --git a/languages/another-wordpress-classifieds-plugin-es_ES.mo b/languages/another-wordpress-classifieds-plugin-es_ES.mo index bc2de22d4..0ec269bf7 100644 Binary files a/languages/another-wordpress-classifieds-plugin-es_ES.mo and b/languages/another-wordpress-classifieds-plugin-es_ES.mo differ diff --git a/languages/another-wordpress-classifieds-plugin-es_ES.po b/languages/another-wordpress-classifieds-plugin-es_ES.po index da8285d5a..e3f659264 100644 --- a/languages/another-wordpress-classifieds-plugin-es_ES.po +++ b/languages/another-wordpress-classifieds-plugin-es_ES.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: Another WordPress Classifieds Plugin\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/another-wordpress-" "classifieds-plugin\n" -"POT-Creation-Date: 2024-03-20 20:22:37+00:00\n" +"POT-Creation-Date: 2024-06-13 20:37:03+00:00\n" "PO-Revision-Date: 2020-10-15 19:55+0000\n" "Last-Translator: Diego Giraldo \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/wp-translations/" @@ -28,21 +28,21 @@ msgstr "" #: admin/fees/class-fee-details-form.php:39 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:9 #: includes/settings/class-payment-general-settings.php:60 -#: templates/admin/manage-categories-admin-page.tpl.php:31 +#: templates/admin/manage-categories-admin-page.tpl.php:32 msgid "Name" msgstr "Nombre" #: admin/admin-panel-credit-plans-table.php:80 #: admin/fees/class-fee-details-form.php:45 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:25 -#: templates/admin/manage-categories-admin-page.tpl.php:36 +#: templates/admin/manage-categories-admin-page.tpl.php:37 msgid "Description" msgstr "Descripción" #: admin/admin-panel-credit-plans-table.php:81 #: admin/admin-panel-fees-table.php:121 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:14 -#: includes/settings/class-payment-general-settings.php:270 +#: includes/settings/class-payment-general-settings.php:272 msgid "Credits" msgstr "Créditos" @@ -51,7 +51,7 @@ msgstr "Créditos" #: admin/fees/class-fee-details-form.php:222 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:19 #: frontend/placeholders.php:514 -#: includes/settings/class-display-settings.php:483 +#: includes/settings/class-display-settings.php:482 #: includes/settings/class-payment-general-settings.php:61 msgid "Price" msgstr "Precio" @@ -77,25 +77,29 @@ msgstr "Privado" msgid " " msgstr " " -#: admin/admin-panel-fees-table.php:196 -msgid "Duration: " -msgstr "Duración: " +#: admin/admin-panel-fees-table.php:197 +#, fuzzy +msgid "Duration: %s" +msgstr "Duración" -#: admin/admin-panel-fees-table.php:206 -msgid "# of images: " -msgstr "Número de imágenes: " +#: admin/admin-panel-fees-table.php:207 +#, fuzzy +msgid "# of images: %s" +msgstr "Número de imágenes:" #: admin/admin-panel-fees-table.php:219 admin/admin-panel-fees-table.php:235 msgid "unlimited" msgstr "ilimitado" -#: admin/admin-panel-fees-table.php:222 -msgid "Chars in title: " -msgstr "Caracteres en el título: " +#: admin/admin-panel-fees-table.php:223 +#, fuzzy +msgid "Chars in title: %s" +msgstr "Caracteres en el título:" -#: admin/admin-panel-fees-table.php:238 -msgid "Chars in description: " -msgstr "Caracteres en la descripción: " +#: admin/admin-panel-fees-table.php:239 +#, fuzzy +msgid "Chars in description: %s" +msgstr "Caracteres en la descripción" #: admin/admin-panel-fees-table.php:265 admin/admin-panel-fees-table.php:269 #: templates/admin/import/supported-csv-headers.tpl.php:31 @@ -127,7 +131,7 @@ msgstr "El usuario especificado no existe." msgid "Manual Upgrade" msgstr "Actualización manual" -#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:799 +#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:783 #: includes/models/class-custom-post-types.php:97 #: includes/models/class-custom-post-types.php:99 #: includes/settings/class-listings-settings.php:30 @@ -143,20 +147,20 @@ msgid "Dashboard" msgstr "Tablero" #: admin/admin-panel.php:140 admin/admin-panel.php:141 -#: admin/admin-panel.php:509 +#: admin/admin-panel.php:492 msgid "Settings" msgstr "Configuración" #: admin/admin-panel.php:154 -#: templates/admin/main-classifieds-admin-page.tpl.php:86 -#: templates/admin/main-classifieds-admin-page.tpl.php:111 +#: templates/admin/main-classifieds-admin-page.tpl.php:88 +#: templates/admin/main-classifieds-admin-page.tpl.php:116 msgid "Manage Categories" msgstr "Administrar Categorías" #: admin/admin-panel.php:203 admin/admin-panel.php:204 #: admin/form-fields/class-form-fields-admin-page.php:12 -#: includes/settings/class-display-settings.php:298 -#: includes/settings/class-display-settings.php:438 +#: includes/settings/class-display-settings.php:297 +#: includes/settings/class-display-settings.php:437 msgid "Form Fields" msgstr "Campos del Formulario" @@ -189,7 +193,7 @@ msgstr "Importar y exportar" msgid "Debug" msgstr "Debug" -#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:24 +#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:38 msgid "Debug Information" msgstr "Información de Depuración" @@ -198,12 +202,12 @@ msgid "Uninstall" msgstr "Desinstalar" #: admin/admin-panel.php:354 admin/admin-panel.php:355 -#: admin/admin-panel.php:826 frontend/templates/page-renew-ad.tpl.php:3 +#: admin/admin-panel.php:810 frontend/templates/page-renew-ad.tpl.php:3 #: includes/admin/class-admin-container-configuration.php:175 msgid "Renew Ad" msgstr "Renovar anuncio" -#: admin/admin-panel.php:427 +#: admin/admin-panel.php:417 msgid "" "Use the Account Balance column on the table below to manage credit balance " "for users." @@ -211,7 +215,7 @@ msgstr "" "Use la columna Saldo en la tabla que está abajo para administrar el saldo de " "créditos de los usuarios." -#: admin/admin-panel.php:446 +#: admin/admin-panel.php:436 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing." @@ -219,7 +223,7 @@ msgstr "" "Las funciones de AWPCP están actualmente desactivadas porque es necesario " "que se realice una actualización manual antes de continuar." -#: admin/admin-panel.php:447 +#: admin/admin-panel.php:437 msgid "" "The duration for this upgrade operation varies between several minutes and a " "few hours, depending on the size of your database, the current network " @@ -236,7 +240,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the page explaining how #. to downgrade to a previous version of the plugin, %2$s is the closing tag #. for the link. -#: admin/admin-panel.php:450 +#: admin/admin-panel.php:440 msgid "" "If this is not a good time to go through the upgrade process, we recommend " "you to %1$sinstall the previous version again%2$s and plan to upgrade " @@ -249,7 +253,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:456 +#: admin/admin-panel.php:446 msgid "" "To upgrade, please %1$sgo to the Classifieds admin section%2$s or click the " "button below." @@ -259,7 +263,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:466 +#: admin/admin-panel.php:456 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing. Please %1$sgo to the Classifieds " @@ -272,7 +276,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:488 +#: admin/admin-panel.php:471 msgid "" "AWPCP needs you to perform a manual upgrade to update the database schema " "and the information stored there. All plugin features will continue to work " @@ -285,7 +289,7 @@ msgstr "" "actualización son ejecutadas. Por favor %1$s navega a la sección de gestión " "de clasificados para actualizar%2$s o has clic en el botón que está abajo." -#: admin/admin-panel.php:562 +#: admin/admin-panel.php:545 msgid "" "Page %1$s has the same URL as the %2$s from AWPCP. The WordPress page %1$s " "is going to be unreachable until this changes." @@ -301,7 +305,7 @@ msgstr[1] "" "AWPCP. No podrás acceder a las páginas de WordPress hasta que le asignes una " "URL diferente a cada página." -#: admin/admin-panel.php:570 +#: admin/admin-panel.php:553 msgid "" "The %1$s is dynamic; you don't need to create a real WordPress page to show " "the list of categories, the plugin will generate it for you. If the " @@ -327,75 +331,76 @@ msgstr[1] "" "de AWPCP, puedes borrarlas y este error desaparecerá. En caso contrario, por " "favor modifica las páginas para que no tengan nombres duplicados." -#: admin/admin-panel.php:765 admin/class-categories-admin-page.php:60 +#: admin/admin-panel.php:749 admin/class-categories-admin-page.php:60 #: admin/class-categories-admin-page.php:64 msgid "Manage Category Icon" msgstr "Configurar los íconos de la categoría" -#: admin/admin-panel.php:770 admin/class-categories-admin-page.php:35 +#: admin/admin-panel.php:754 admin/class-categories-admin-page.php:35 #: admin/class-categories-admin-page.php:39 #: admin/class-categories-admin-page.php:133 msgid "Edit Category" msgstr "Editar Categoría" -#: admin/admin-panel.php:771 admin/class-categories-admin-page.php:46 +#: admin/admin-panel.php:755 admin/class-categories-admin-page.php:46 #: admin/class-categories-admin-page.php:50 msgid "Delete Category" msgstr "Eliminar Categoría" -#: admin/admin-panel.php:776 +#: admin/admin-panel.php:760 msgid "Select {category_name}" msgstr "Selecciona {category_name}" -#: admin/admin-panel.php:814 frontend/page-reply-to-ad.php:11 +#: admin/admin-panel.php:798 frontend/page-reply-to-ad.php:11 msgid "Reply to Ad" msgstr "Responder al anuncio" -#: admin/admin-panel.php:822 admin/templates/admin-panel-listings.tpl.php:5 +#: admin/admin-panel.php:806 admin/templates/admin-panel-listings.tpl.php:5 msgid "Place Ad" msgstr "Publicar Anuncio" -#: admin/admin-panel.php:830 frontend/page-browse-ads.php:9 +#: admin/admin-panel.php:814 frontend/page-browse-ads.php:9 msgid "Browse Ads" msgstr "Explorar anuncios" -#: admin/admin-panel.php:834 admin/templates/admin-panel-listings.tpl.php:11 +#: admin/admin-panel.php:818 admin/templates/admin-panel-listings.tpl.php:20 #: frontend/page-search-ads.php:9 msgid "Search Ads" msgstr "Buscar anuncios" -#: admin/categories/class-create-category-admin-page.php:38 -#: admin/categories/class-delete-categories-admin-page.php:55 -#: admin/categories/class-delete-category-admin-page.php:68 -#: admin/categories/class-move-categories-admin-page.php:54 -#: admin/categories/class-update-category-admin-page.php:50 +#: admin/categories/class-create-category-admin-page.php:39 +#: admin/categories/class-delete-categories-admin-page.php:57 +#: admin/categories/class-delete-category-admin-page.php:69 +#: admin/categories/class-move-categories-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:51 msgid "invalid nonce" msgstr "" -#: admin/categories/class-create-category-admin-page.php:42 +#: admin/categories/class-create-category-admin-page.php:43 msgid "The new category was successfully added." msgstr "La nueva Categoría fue agregada con éxito." -#: admin/categories/class-delete-categories-admin-page.php:61 +#: admin/categories/class-delete-categories-admin-page.php:64 +#, fuzzy msgid "" "The categories couldn't be deleted because there was an error trying to load " -"the categoery that you selecetd to become the new category associated to " -"affected ads. " +"the categoery that you selected to become the new category associated to " +"affected ads. %s" msgstr "" "Las categorías no fueron eliminadas porque ocurrió un error mientras " "cargábamos la categoría que seleccionaste para convertirse en la nueva " "categoría asociada a los anuncios afectados. " -#: admin/categories/class-delete-categories-admin-page.php:71 +#: admin/categories/class-delete-categories-admin-page.php:75 msgid "The selected categories have been deleted." msgstr "Las categorías seleccionadas fueron borradas." -#: admin/categories/class-delete-categories-admin-page.php:76 +#: admin/categories/class-delete-categories-admin-page.php:80 msgid "There was an error trying to delete the selected categories." msgstr "" "Ocurrió un error mientras intentábamos borrar la categoría seleccionada." -#: admin/categories/class-delete-categories-admin-page.php:80 +#: admin/categories/class-delete-categories-admin-page.php:84 msgid "" " (out of ) categories were deleted. " "However, there was an error trying to delete the other categorías." -#: admin/categories/class-delete-category-admin-page.php:41 +#: admin/categories/class-delete-category-admin-page.php:42 msgid "The category you are trying to delete doesn't exist." msgstr "La categoría que estás intentando borrar no existe." -#: admin/categories/class-delete-category-admin-page.php:53 +#: admin/categories/class-delete-category-admin-page.php:54 msgid "There was an error trying to delete the category. " msgstr "Ocurrió un error eliminando la categoría. " -#: admin/categories/class-delete-category-admin-page.php:74 +#: admin/categories/class-delete-category-admin-page.php:75 msgid "" "There was an error trying to load the selected category. " msgstr "Ocurrió un error cargando la categoría seleccionada. " -#: admin/categories/class-delete-category-admin-page.php:85 +#: admin/categories/class-delete-category-admin-page.php:86 msgid "The category was deleted successfully" msgstr "La categoría fue borrada satisfactoriamente" -#: admin/categories/class-delete-category-admin-page.php:103 +#: admin/categories/class-delete-category-admin-page.php:104 msgid "Are you sure you want to delete \"\" category?" msgstr "¿Estás seguro que quieres borrar la categoría \"\"?" -#: admin/categories/class-delete-category-admin-page.php:116 +#: admin/categories/class-delete-category-admin-page.php:117 msgid "Delete category" msgstr "Borrar categoría" -#: admin/categories/class-delete-category-admin-page.php:117 +#: admin/categories/class-delete-category-admin-page.php:118 #: admin/fees/class-fee-details-form.php:80 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:31 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:12 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:23 #: admin/templates/admin-panel-fees-delete.tpl.php:12 #: admin/templates/admin-panel-users-balance-form.tpl.php:19 #: admin/templates/delete_form.tpl.php:16 #: frontend/templates/payments-billing-form.tpl.php:123 #: includes/listings/class-listing-action-with-confirmation.php:8 -#: includes/settings/renderers/class-button-settings-renderer.php:41 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 +#: includes/settings/renderers/class-button-settings-renderer.php:44 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:184 #: templates/admin/import-listings-admin-page-import-form.tpl.php:47 msgid "Cancel" msgstr "Cancelar" -#: admin/categories/class-move-categories-admin-page.php:59 +#: admin/categories/class-move-categories-admin-page.php:60 msgid "" "The categories couldn't be moved because there was an error trying to load " "the target category. " @@ -453,15 +458,15 @@ msgstr "" "Las categorías no fueron movidas porque ocurrió un error intentando cargar " "la categoría objetivo. " -#: admin/categories/class-move-categories-admin-page.php:68 +#: admin/categories/class-move-categories-admin-page.php:69 msgid "The selected categories have been moved." msgstr "Las categorías seleccionadas fueron movidas." -#: admin/categories/class-move-categories-admin-page.php:73 +#: admin/categories/class-move-categories-admin-page.php:74 msgid "There was an error trying to move the selected categories." msgstr "Ocurrió un error intentando mover las categorías seleccionadas." -#: admin/categories/class-move-categories-admin-page.php:77 +#: admin/categories/class-move-categories-admin-page.php:78 msgid "" " (out of ) categories were moved. " "However, there was an error trying to move the other " @@ -471,11 +476,11 @@ msgstr "" "embargo, ocurrió un error intentando mover las otras " "categorías." -#: admin/categories/class-update-category-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:56 msgid "The category you're trying to update doesn't exist." msgstr "La categoría que estás intentando actualizar no existe." -#: admin/categories/class-update-category-admin-page.php:66 +#: admin/categories/class-update-category-admin-page.php:67 msgid "The category was successfully updated." msgstr "La categoría fue actualizada satisfactoriamente." @@ -501,39 +506,40 @@ msgstr "Agregar nueva Categoría" msgid "Update" msgstr "Actualizar" -#: admin/class-debug-admin-page.php:255 +#: admin/class-debug-admin-page.php:256 msgid "WordPress version" msgstr "Versión de WordPress" -#: admin/class-debug-admin-page.php:259 +#: admin/class-debug-admin-page.php:260 msgid "OS" msgstr "Sistema operativo" -#: admin/class-debug-admin-page.php:263 +#: admin/class-debug-admin-page.php:264 msgid "Apache Version" msgstr "Versión de Apache" -#: admin/class-debug-admin-page.php:267 +#: admin/class-debug-admin-page.php:268 +#: admin/templates/admin-panel-debug.tpl.php:177 msgid "PHP Version" msgstr "Versión PHP" -#: admin/class-debug-admin-page.php:271 +#: admin/class-debug-admin-page.php:272 msgid "MySQL Version" msgstr "Versión MySQL" -#: admin/class-debug-admin-page.php:275 +#: admin/class-debug-admin-page.php:276 msgid "cURL Version" msgstr "Versión de cURL" -#: admin/class-debug-admin-page.php:279 +#: admin/class-debug-admin-page.php:280 msgid "cURL SSL Version" msgstr "Versión de la librería SSL para cURL" -#: admin/class-debug-admin-page.php:332 admin/class-debug-admin-page.php:338 +#: admin/class-debug-admin-page.php:333 admin/class-debug-admin-page.php:339 msgid "N/A" msgstr "N/A" -#: admin/class-import-listings-admin-page.php:100 +#: admin/class-import-listings-admin-page.php:102 msgid "" "The uploaded file doesn't look like a CSV file. Please upload a valid CSV " "file." @@ -541,12 +547,12 @@ msgstr "" "El archivo cargado no parece un archivo CSV. Por favor, cargue un archivo " "CSV válido." -#: admin/class-import-listings-admin-page.php:104 +#: admin/class-import-listings-admin-page.php:106 msgid "There was an error moving the uploaded CSV file to a proper location." msgstr "" "Ocurrió un error moviendo el archivo CSV a una ubicación más apropiada." -#: admin/class-import-listings-admin-page.php:121 +#: admin/class-import-listings-admin-page.php:125 msgid "" "The uploaded file doesn't look like a ZIP file. Please upload a valid ZIP " "file." @@ -554,31 +560,31 @@ msgstr "" "El archivo cargado no parece un archivo ZIP. Por favor, cargue un archivo " "ZIP válido." -#: admin/class-import-listings-admin-page.php:125 +#: admin/class-import-listings-admin-page.php:129 msgid "There was an error moving the uploaded ZIP file to a proper location." msgstr "Ocurrió un error moviendo el archivo ZIP a una ubicación apropiada." -#: admin/class-import-listings-admin-page.php:137 +#: admin/class-import-listings-admin-page.php:141 msgid "Incompatible ZIP Archive" msgstr "Archivo ZIP incompatible" -#: admin/class-import-listings-admin-page.php:139 +#: admin/class-import-listings-admin-page.php:143 msgid "Empty ZIP Archive" msgstr "Archivo ZIP vacío" -#: admin/class-import-listings-admin-page.php:165 +#: admin/class-import-listings-admin-page.php:169 msgid "Could not write temporary file %s" msgstr "No se pudo crear el archivo temporal de %s" -#: admin/class-import-listings-admin-page.php:174 +#: admin/class-import-listings-admin-page.php:178 msgid "The specified directory is not a valid path." msgstr "El directorio especificado no corresponde con una ruta valida." -#: admin/class-import-listings-admin-page.php:176 +#: admin/class-import-listings-admin-page.php:180 msgid "The specified directory does not exists." msgstr "El directorio especificado no existe." -#: admin/class-import-listings-admin-page.php:357 +#: admin/class-import-listings-admin-page.php:361 msgid "" "() of rows " "processed. rows imported and filas importadas y filas rechazadas." -#: admin/class-settings-admin-page.php:230 +#: admin/class-import-settings-admin-page.php:121 +#, fuzzy +msgid "Your settings have been successfully imported." +msgstr "Las opciones fueron importadas satisfactoriamente." + +#: admin/class-settings-admin-page.php:224 msgid "" "We could not obtain a valid access token from Facebook. The API returned the " "following error: %s" @@ -596,24 +607,25 @@ msgstr "" "No pudimos obtener un token de acceso válido para Facebook. La API respondió " "con el siguiente error: %s" -#: admin/class-settings-admin-page.php:235 +#: admin/class-settings-admin-page.php:229 msgid "" "We could not obtain a valid access token from Facebook. Please try again." msgstr "" "No pudimos obtener un token de acceso válido para Facebook. Por favor, " "intente de nuevo." -#: admin/class-settings-admin-page.php:243 +#: admin/class-settings-admin-page.php:237 msgid "Facebook Config Diagnostics" msgstr "Diagnóstico de la Configuración de Facebook" -#: admin/class-settings-admin-page.php:250 +#: admin/class-settings-admin-page.php:244 msgid "Everything looks OK." msgstr "Todo parece estar bien." #: admin/class-table-entry-action-ajax-handler.php:16 +#: admin/class-uninstall-admin-page.php:52 #: admin/pointers/class-drip-autoresponder-ajax-handler.php:23 -#: functions.php:531 +#: functions.php:537 #: includes/frontend/class-create-empty-listing-ajax-handler.php:104 #: includes/frontend/class-execute-listing-action-ajax-handler.php:58 #: includes/frontend/class-save-listing-information-ajax-handler.php:117 @@ -634,7 +646,7 @@ msgstr "Editar" #: admin/credit-plans/class-credit-plans-admin-page.php:23 #: admin/fees/class-fees-admin-page.php:65 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:13 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:24 #: admin/templates/delete_form.tpl.php:17 msgid "Delete" msgstr "Eliminar" @@ -747,7 +759,7 @@ msgstr "" "pagos e intente borrar este plan de nuevo. AWPCP le ayudará a mover los " "anuncios existentes al nuevo plan." -#: admin/import/class-csv-importer-delegate.php:271 +#: admin/import/class-csv-importer-delegate.php:275 msgid "" "No user could be assigned to this listing. Our attempt to create a new user " "failed with the following error: ." @@ -755,11 +767,11 @@ msgstr "" "No se pudo asignar un usuario a este anuncio. Al intentar crear un nuevo " "usuario, encontramos el siguiente error: ." -#: admin/import/class-csv-importer-delegate.php:470 +#: admin/import/class-csv-importer-delegate.php:476 msgid "The payment term type must be 'fee' or 'subscription'." msgstr "El tipo de plan de pago debe ser 'fee' o 'subscription'." -#: admin/import/class-csv-importer-delegate.php:476 +#: admin/import/class-csv-importer-delegate.php:482 msgid "" "There is no payment term with type {payment_term_type} and ID " "{payment_term_id}." @@ -767,7 +779,7 @@ msgstr "" "No encontramos un plan de pago con tipo {payment_term_type} y ID " "{payment_term_id}." -#: admin/import/class-csv-importer-delegate.php:490 +#: admin/import/class-csv-importer-delegate.php:496 msgid "" "No images directory was configured. Are you sure you uploaded a ZIP file or " "defined a local directory?" @@ -775,13 +787,13 @@ msgstr "" "No configuró un directorio para imágenes. ¿Está seguro que cargo un archivo " "ZIP o definió la ruta para un directorio local?" -#: admin/import/class-csv-importer-delegate.php:676 +#: admin/import/class-csv-importer-delegate.php:690 msgid "The value for Extra Field %s's is not allowed. Allowed values are: %%s" msgstr "" "El valor del Campo Extra %s no está permitido. Los valores permitidos son: %" "%s" -#: admin/import/class-csv-importer-delegate.php:686 +#: admin/import/class-csv-importer-delegate.php:700 msgid "" "The value for Extra Field %s's is not allowed. Allowed value is one of: %%s" msgstr "" @@ -805,10 +817,41 @@ msgstr "" msgid "That Ad failed to delete." msgstr "El anuncio ha sido eliminado." +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 +#, fuzzy +msgid "Thank you for signing up!" +msgstr "Gracias por registrarse!" + +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 +#, fuzzy +msgid "" +"Please check your email and click the link provided to confirm your " +"subscription." +msgstr "" +"Por favor, revise su correo y haga click en el enlace enviado para confirmar " +"su subscripción." + #: admin/pointers/class-drip-autoresponder-ajax-handler.php:149 msgid "An unexpected error ocurred." msgstr "Ocurrió un error inesperado." +#: admin/pointers/class-drip-autoresponder.php:62 +#, fuzzy +msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" +msgstr "" +"¿Le gustaría conocer los secretos de construir un impresionante sitio de " +"anuncios clasificados?" + +#: admin/pointers/class-drip-autoresponder.php:63 +#, fuzzy +msgid "" +"Find out how to create a compelling, thriving classifieds site from scratch " +"in this ridiculously actionable (and free) 5-part email course." +msgstr "" +"Descubra cómo crear un sitio de clasificados atractivo y próspero desde cero " +"en este curso por correo electrónico de 5 partes fácilmente procesable (y " +"gratuito)." + #: admin/pointers/class-drip-autoresponder.php:67 msgid "Email Address" msgstr "Direcciones de Correo" @@ -817,28 +860,28 @@ msgstr "Direcciones de Correo" msgid "Add" msgstr "Agregar" -#: admin/templates/admin-panel-credit-plans.tpl.php:10 +#: admin/templates/admin-panel-credit-plans.tpl.php:11 msgid "Credit System Settings" msgstr "Opciones del Sistema de Créditos" -#: admin/templates/admin-panel-credit-plans.tpl.php:21 +#: admin/templates/admin-panel-credit-plans.tpl.php:25 #: templates/admin/settings-admin-page.tpl.php:50 -#: templates/admin/settings-admin-page.tpl.php:64 +#: templates/admin/settings-admin-page.tpl.php:67 msgid "Save Changes" msgstr "Guardar cambios" -#: admin/templates/admin-panel-credit-plans.tpl.php:34 +#: admin/templates/admin-panel-credit-plans.tpl.php:38 msgid "Add Credit Plan" msgstr "Agregar Plan de Crédito" -#: admin/templates/admin-panel-debug.tpl.php:8 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:6 +#: admin/templates/admin-panel-debug.tpl.php:11 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:8 msgid "Are you seeing 404 Not Found errors?" msgstr "¿Su sitio está mostrando errores 404 Not Found?" #. translators: %1$s: Start link HTML, %2$s: end link HTML, %3$s: Start link #. HTML -#: admin/templates/admin-panel-debug.tpl.php:14 +#: admin/templates/admin-panel-debug.tpl.php:21 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -857,54 +900,84 @@ msgstr "" "que esos errores 404 Not Found deberían desaparecer. Si no ocurre, por favor " "contacte %3$sservicio al cliente%1$s." -#: admin/templates/admin-panel-debug.tpl.php:49 +#: admin/templates/admin-panel-debug.tpl.php:84 msgid "Stored ID" msgstr "ID guardado" -#: admin/templates/admin-panel-debug.tpl.php:50 +#: admin/templates/admin-panel-debug.tpl.php:85 msgid "Reference" msgstr "Referencia" -#: admin/templates/admin-panel-debug.tpl.php:51 +#: admin/templates/admin-panel-debug.tpl.php:86 #: frontend/templates/widget-categories-form.tpl.php:2 #: frontend/templates/widget-latest-ads-form.tpl.php:2 #: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:5 msgid "Title" msgstr "Título" -#: admin/templates/admin-panel-debug.tpl.php:60 +#: admin/templates/admin-panel-debug.tpl.php:95 msgid "Page not found" msgstr "Página no encontrada" -#: admin/templates/admin-panel-debug.tpl.php:74 +#: admin/templates/admin-panel-debug.tpl.php:117 msgid "Option Name" msgstr "Nombre de opción" -#: admin/templates/admin-panel-debug.tpl.php:75 +#: admin/templates/admin-panel-debug.tpl.php:118 msgid "Option Value" msgstr "Valor de opción" -#: admin/templates/admin-panel-debug.tpl.php:96 +#: admin/templates/admin-panel-debug.tpl.php:147 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:9 msgid "Pattern" msgstr "Patrón" -#: admin/templates/admin-panel-debug.tpl.php:97 +#: admin/templates/admin-panel-debug.tpl.php:148 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:10 msgid "Replacement" msgstr "Reemplazo" -#: admin/templates/admin-panel-debug.tpl.php:133 +#: admin/templates/admin-panel-debug.tpl.php:181 +#, fuzzy +msgid "cURL" +msgstr "cURL" + +#: admin/templates/admin-panel-debug.tpl.php:185 +#, fuzzy +msgid "cURL's alternate CA info (cacert.pem)" +msgstr "Certificados de Autoridad alternativos para cURL (cacert.pem)" + +#: admin/templates/admin-panel-debug.tpl.php:189 +#, fuzzy +msgid "Exists" +msgstr "Existe" + +#: admin/templates/admin-panel-debug.tpl.php:190 +#, fuzzy +msgid "Missing" +msgstr "No se encontró" + +#: admin/templates/admin-panel-debug.tpl.php:195 +#: includes/settings/class-payment-general-settings.php:134 +msgid "PayPal" +msgstr "PayPal" + +#: admin/templates/admin-panel-debug.tpl.php:198 #, fuzzy msgid "Working" msgstr "Trabajando" -#: admin/templates/admin-panel-debug.tpl.php:148 -#: templates/admin/debug/debug-admin-page.tpl.php:36 +#: admin/templates/admin-panel-debug.tpl.php:201 +#, fuzzy +msgid "Not Working" +msgstr "No funciona" + +#: admin/templates/admin-panel-debug.tpl.php:216 +#: templates/admin/debug/debug-admin-page.tpl.php:42 msgid "Debug & Development Tools" msgstr "Herramientas para desarrollo y depuración" -#: admin/templates/admin-panel-fees-delete-form.tpl.php:6 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:7 #: admin/templates/delete_form.tpl.php:11 msgid "Are you sure you want to delete this item?" msgstr "¿Está seguro que quiere eliminar este comentario?" @@ -921,42 +994,43 @@ msgstr "" msgid "Switch" msgstr "Cambiar" -#: admin/templates/admin-panel-fees.tpl.php:7 -msgid "Payment Settings page" -msgstr "página de opciones de pago" - -#: admin/templates/admin-panel-fees.tpl.php:9 +#: admin/templates/admin-panel-fees.tpl.php:8 +#, fuzzy msgid "" "Currently your classifieds are in Free mode. Fee plans are not available or " -"used during free mode.

To change this, visit the and enable Charge Listing Fee setting." +"used during free mode.%1$s To change this, visit the %2$s and enable Charge " +"Listing Fee setting." msgstr "" "En este momento los clasificados están en modo gratuido. Los planes de pago " "no están disponibles ni son usados en este modo.

Para cambiar el " "modo, visite y habilite la opción \"Cobrar por " "los anuncios?\"." -#: admin/templates/admin-panel-fees.tpl.php:20 +#: admin/templates/admin-panel-fees.tpl.php:11 +msgid "Payment Settings page" +msgstr "página de opciones de pago" + +#: admin/templates/admin-panel-fees.tpl.php:22 msgid "Add Fee Plan" msgstr "Agregar Plan de Pago" -#: admin/templates/admin-panel-fees.tpl.php:24 -msgid "Fee Plan sort order and sort direction Settings" -msgstr "opciones de orden y criterio de ordenamiento para los planes de pago" - #: admin/templates/admin-panel-fees.tpl.php:26 +#, fuzzy msgid "" -"If you wish to change the sorting of your fee plans, you can change the ." +"If you wish to change the sorting of your fee plans, you can change the %s." msgstr "" "Si desea cambiar el orden de los planes de pago, puede cambiar las ." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:14 +#: admin/templates/admin-panel-fees.tpl.php:30 +msgid "Fee Plan sort order and sort direction Settings" +msgstr "opciones de orden y criterio de ordenamiento para los planes de pago" + +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:17 msgid "Facebook Integration" msgstr "Integración con Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:16 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:23 msgid "" "We currently support two methods for posting new ads to Facebook: Facebook " "API and Zapier/IFTTT Webhooks." @@ -964,7 +1038,7 @@ msgstr "" "En este momento soportamos dos métodos para publicar nuevos anuncios en " "Facebook: La API de Facebook y Webhooks de Zapier/IFTTT." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:18 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:25 msgid "" "Support for Facebook API will be removed in the future. Facebook " "significantly reduced access to their APIs across all apps on Apr, 2018. Now " @@ -983,13 +1057,14 @@ msgstr "" "soporte para Webhooks de Zapier/IFTTT como alternativa y esperamos que todos " "nuestros usuarios empiecen a usar ese método gradualmente." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:22 -msgid "You can read more about Facebook changes here: {facebook_post_link}" +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:30 +#, fuzzy +msgid "You can read more about Facebook changes here: %s" msgstr "" "Puede leer más sobre los cambios que Facebook realizó aquí: " "{facebook_post_link}" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:29 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:38 msgid "" "If you are currently using the Facebook API integration method and not " "having any issues, you don't have to do anything right now. If you are " @@ -1000,19 +1075,19 @@ msgstr "" "embargo, si ha tenido algún problema, por favor lea la sección de " "Diagnósticos que está más bajo para intentar resolverlos." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:40 #: includes/settings/class-general-settings.php:735 msgid "Facebook API" msgstr "API de Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:35 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:46 +#, fuzzy msgid "" "This integration method allows you to post ads to Facebook using a Facebook " -"Application. Please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"Application. Please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" "Este método de integración le permite publicar anuncios en Facebook usando " "una Aplicación de Facebook. Por favor lea " @@ -1021,8 +1096,8 @@ msgstr "" "{link_to_facebook_integration_documentation}estas instrucciones{/" "link_to_facebook_integration_documentation}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:45 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:79 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 msgid "" "Add the following URL to the list of Valid OAuth Redirect URIs for the " "configuration of the Facebook Application:" @@ -1030,12 +1105,12 @@ msgstr "" "Agregar la siguiente URL a la lista Valid OAuth Redirect URIs en la " "configuración de la aplicación de Facebook:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:59 #: includes/settings/class-general-settings.php:736 msgid "Zapier/IFTTT Webhooks" msgstr "Webhooks de Zapier/IFTTT" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:51 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:61 msgid "" "Webhooks allow the plugin to send a request to one of the configured webhook " "URLs the first time an ad becomes publicly available on the website. That " @@ -1052,13 +1127,13 @@ msgstr "" "información enviada (URL, título y descripción) para crear una publicación " "en una página de Facebook que controle." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:67 +#, fuzzy msgid "" -"Follow the instructiones to create the tasks on " -"{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} or " -"{webhook_instructions_for_ifttt}IFTTT{/webhook_instructions_for_ifttt}. Then " -"update the settings at the bottom of this page to enter the webhook URLs " -"associated with those tasks." +"Follow the instructiones to create the tasks on %1$sZapier or IFTTT%2$s. " +"Then update the settings at the bottom of this page to enter the webhook " +"URLs associated with those tasks." msgstr "" "Siga las instrucciones para creare tareas en " "{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} o " @@ -1066,21 +1141,21 @@ msgstr "" "Luego actualice las opciones al final de esta página para ingresar las URLs " "asociadas con esas tareas." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:65 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:74 msgid "Facebook Cache" msgstr "Caché de Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:69 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:80 +#, fuzzy msgid "" "If you are using Webhooks to send ads to Facebook, a Facebook Application " "can still be used to ask Facebook to clear the cache it has stored for ads " "pages. This is useful to ensure users always see the latest version when the " "ad is shared on Facebook Pages, Groups and user feeds. If you decide to use " -"this feature, please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"this feature, please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" "Aún si está usando Webhooks para publicar anuncios en Facebook, una " "Aplicación de Facebook puede ser usada para eliminar la información que " @@ -1093,19 +1168,19 @@ msgstr "" "{link_to_facebook_integration_documentation}estas instrucciones{/" "link_to_facebook_integration_documentation}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:83 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:93 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:120 msgid "Diagnostics" msgstr "Diagnósticos" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:95 msgid "" "If you see the following error after trying to get a valid User Access Token:" msgstr "" "Si ve el siguiente error después de intentar obtener un Token de Acceso " "válido:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:99 msgid "" "You have to submit your Facebook Application for Review and ask for those " "permissions or use the Webhooks integration method to send ads to Facebook " @@ -1116,23 +1191,23 @@ msgstr "" "integración con Webhooks para publicar anuncios en Facebook a través de " "Zapier or IFTTT." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:91 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:101 msgid "If you see the following error trying to send ads to a Facebook Group:" msgstr "" "Si ve el siguiente error intentando publicar anuncios en un grupo de " "Facebook:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:97 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#, fuzzy msgid "" -"Please make sure the Facebook Application " -"{link_to_how_to_add_apps_to_a_group}was added to the group{/" -"link_to_how_to_add_apps_to_a_group}." +"Please make sure the Facebook Application %1$swas added to the group%2$s." msgstr "" "Por favor compruebe que la Aplicación de Facebook " "{link_to_how_to_add_apps_to_a_group}fue agregada al grupo{/" "link_to_how_to_add_apps_to_a_group}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:108 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:119 msgid "" "If you are having additional problems with Facebook API, click " "\"Diagnostics\" to check your settings." @@ -1140,15 +1215,15 @@ msgstr "" "Si tiene problem adicionales con la API de Facebook, haga click en " "\"Diagnósticos\" para verificar su configuración." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:3 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:4 msgid "Restore AWPCP Pages" msgstr "Restaurar páginas AWPCP" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:8 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:10 msgid "The following pages were restored: ." msgstr "Las siguientes páginas fueron restauradas: ." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:19 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:21 msgid "" "The pages listed below are missing. The plugin is looking for a page with a " "particular ID but it seems that the page was permanently deleted. Please a " @@ -1158,12 +1233,13 @@ msgstr "" "una página con un ID particular pero parece que esa página fue borrada " "permanentemente. Por favor elija una nueva." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:23 -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:71 -msgid "%s (Default name: %s)." +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:28 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:97 +#, fuzzy +msgid "%1$s (Default name: %2$s)." msgstr "%s (nombre por defecto: %s)." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:39 msgid "" "The following pages are not published. Did you move them to the Trash by " "accident or saved them as Draft?" @@ -1171,11 +1247,13 @@ msgstr "" "Las siguientes páginas no están publicadas. ¿Acaso moviste esas páginas a la " "papelera por accidente? ¿o las guardaste como borrador?" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:41 -msgid "%s — Selected page: %s (%s)" +#. translators: %1$s page label, %2$s link to the page, %3$s the page status. +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:57 +#, fuzzy +msgid "%1$s Selected page: %2$s (%3$s)" msgstr "%s — página elegida: %s (%s)" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:69 msgid "" "The following pages are not currently assigned. Please select an existing " "page or create a new one to use as the following plugin pages:" @@ -1184,15 +1262,16 @@ msgstr "" "existente o crea una nueva para usarla como una de las siguientes páginas " "del plugin:" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:64 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#, fuzzy msgid "" -" — You can select one of these pages that already include " -"the necessary shortcode: or create a new one." +"%1$s You can select one of these pages that already include the necessary " +"shortcode: %2$s or %3$screate a new one%4$s." msgstr "" " — Puedes elegir una de estas páginas que ya incluyen el " "shortcode necesario: o crear una página nueva." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:115 msgid "" "Use the button below to have the plugin attempt to find the necessary pages. " "If you continue to have problems or seeing page related warnings above, you " @@ -1205,11 +1284,11 @@ msgstr "" "afectadas y usar el botón Restaurar Páginas para hacer que el plugin las " "cree de nuevo." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:86 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:116 msgid "Restore Pages" msgstr "Restaurar Páginas" -#: admin/templates/admin-panel-uninstall.tpl.php:13 +#: admin/templates/admin-panel-uninstall.tpl.php:10 msgid "" "Thank you for using AWPCP. You have arrived at this page by clicking the " "Uninstall link. If you are certain you wish to uninstall the plugin, please " @@ -1219,7 +1298,7 @@ msgstr "" "para desinstalar. Si estás seguro que quieres desinstalar el plugin, por " "favor haz clic en el botón que aparece al fondo para continuar." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "" "PLEASE NOTE: When you click the button below, ALL your data related to the " "plugin including your classifieds, images and everything else created by the " @@ -1229,13 +1308,13 @@ msgstr "" "TODA su información relacionada con los anuncios, las imágenes y todo lo " "demás creado por el plugin será eliminado permanentemente." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "We cannot recover the data after you click this." msgstr "" "No podremos recuperar su información después de que usted presione este " "botón." -#: admin/templates/admin-panel-uninstall.tpl.php:18 +#: admin/templates/admin-panel-uninstall.tpl.php:15 msgid "" "BEFORE YOU CLICK THE BUTTON BELOW — read carefully in case you want to " "extract your data first!" @@ -1243,7 +1322,7 @@ msgstr "" "¡ANTES DE PRESIONAR EL BUTTON — lea con cuidado en caso de que desde " "extrare su información primero!" -#: admin/templates/admin-panel-uninstall.tpl.php:21 +#: admin/templates/admin-panel-uninstall.tpl.php:18 msgid "" "If you plan to use the data created by the plugin please export the data " "from your mysql database before clicking the uninstall link." @@ -1252,46 +1331,50 @@ msgstr "" "información desde su base de datos MySQL antes de hacer click en el botón de " "desinstalación." -#: admin/templates/admin-panel-uninstall.tpl.php:22 +#: admin/templates/admin-panel-uninstall.tpl.php:21 +#, fuzzy msgid "" -"If you want to keep your user uploaded images, please download to " -"your local drive for later use or rename the folder to something else so the " +"If you want to keep your user uploaded images, please download %s to your " +"local drive for later use or rename the folder to something else so the " "uninstaller can bypass it." msgstr "" "Si quiere conservar las imágenes subidas por los usuarios, por favor " "descargue el contenido de a su disco local o cambie el nombre del " "directorio para que el instalador puedo ignorarlo." -#: admin/templates/admin-panel-uninstall.tpl.php:28 +#: admin/templates/admin-panel-uninstall.tpl.php:29 #, fuzzy msgid "Proceed with Uninstalling AWP Classifieds Plugin" msgstr "Continuar desinstalando Another WordPress Classifieds Plugin" -#: admin/templates/admin-panel-uninstall.tpl.php:33 +#: admin/templates/admin-panel-uninstall.tpl.php:35 msgid "Almost done... one more step!" msgstr "Casi listo… ¡solo un paso más!" -#: admin/templates/admin-panel-uninstall.tpl.php:36 -msgid "Please click here to complete the uninstallation process" +#: admin/templates/admin-panel-uninstall.tpl.php:39 +#, fuzzy +msgid "Please click here to deactivate plugins." msgstr "Por favor, haga click aquí para completar el proceso de desinstalación" #: admin/templates/admin-panel-users-balance-form.tpl.php:12 +#: frontend/templates/payments-transaction-items-table.tpl.php:5 +#: frontend/templates/payments-transaction-items-table.tpl.php:17 msgid "Amount" msgstr "Cantidad" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:12 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:14 msgid "Manual Upgrade Required" msgstr "Es necesario realizar una actualización manual" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:17 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:26 msgid "Upgrade" msgstr "Actualizar" #: admin/templates/admin-quick-start-guide-notice.tpl.php:2 #, fuzzy msgid "" -"Hello and welcome to AWP Classifieds. This plugin is super " -"easy to use AND highly configurable." +"Hello and welcome to AWP Classifieds. This plugin is super easy to use AND " +"highly configurable." msgstr "" "Hola y bienvenidos a AWPCP. Este plugin es super fácil de " "usar y altamente configurable." @@ -1301,39 +1384,53 @@ msgid "Would you like some help getting started?" msgstr "¿Le gustaría un poco de ayuda para empezar?" #: admin/templates/admin-quick-start-guide-notice.tpl.php:12 +#, fuzzy +msgid "I'll figure it out on my own." +msgstr "Voy a averiguar por mi cuenta." + +#: admin/templates/admin-quick-start-guide-notice.tpl.php:15 msgid "Yes Please!" msgstr "¡Sí, por favor!" -#: admin/templates/admin-sidebar.tpl.php:14 +#: admin/templates/admin-quick-start-guide-notice.tpl.php:20 +#, fuzzy +msgid "Help me get my classifieds running quickly." +msgstr "Ayúdame a poner los anuncios en funcionamiento rápidamente." + +#: admin/templates/admin-sidebar.tpl.php:15 msgid "Like this plugin?" msgstr "¿Te gusta este plugin?" -#: admin/templates/admin-sidebar.tpl.php:20 +#: admin/templates/admin-sidebar.tpl.php:24 msgid "Give a 5 star rating on WordPress.org." msgstr "Dar en calificación de 5 estrellas en WordPress.org." -#: admin/templates/admin-sidebar.tpl.php:36 +#: admin/templates/admin-sidebar.tpl.php:42 #, fuzzy msgid "Get more features!" msgstr "Un anuncio marcado como destacado." -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:67 msgid "Found a bug?" msgstr "Encontró un bug?" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:68 msgid "Need Support?" msgstr "Necesita soporte?" -#: admin/templates/admin-sidebar.tpl.php:70 -msgid "Quick Start Guide" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:80 +#, fuzzy +msgid "Browse the %1$sQuick Start Guide%2$s" msgstr "Guía de inicio rápido" -#: admin/templates/admin-sidebar.tpl.php:80 -msgid "Documentation" -msgstr "Documentación" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:90 +#, fuzzy +msgid "Read the full %1$sDocumentation%2$s." +msgstr "Lea la %s completa." -#: admin/templates/admin-sidebar.tpl.php:91 +#: admin/templates/admin-sidebar.tpl.php:98 msgid "Get Help" msgstr "Ayuda" @@ -1343,11 +1440,11 @@ msgid "Thank you for using AWP Classifieds Plugin." msgstr "Gracias por usar Another WordPress Classifieds Plugin." #: admin/templates/admin-widget-modification-notice.tpl.php:3 +#, fuzzy msgid "" -"AWPCP 3.0 includes several modifications to the Search Ads, " -"Featured Ads and Latest Ads widgets. For " -"example, the Latest Ads widget can now be used in multiple sidebars. Also, " -"there is a new Widget to show Random Ads." +"AWPCP 3.0 includes several modifications to the Search Ads, Featured Ads and " +"Latest Ads widgets. For example, the Latest Ads widget can now be used in " +"multiple sidebars. Also, there is a new Widget to show Random Ads." msgstr "" "AWPCP 3.0 incluye varias modificaciones para los widgets Buscar " "Anuncios, Anuncios Destacados y Anuncios " @@ -1491,7 +1588,7 @@ msgstr "" "Por favor lee actualizando PHP para entender más acerca de PHP y como actualizar." -#: awpcp.php:200 +#: awpcp.php:198 #, fuzzy msgid "" "AWP Classifieds Plugin installation is incomplete. Please {support_link}" @@ -1501,23 +1598,23 @@ msgstr "" "favor {support_link}contact al equipo de soporte{/support_link}." #. translators: %s is the title of the listing. -#: frontend/ad-functions.php:155 +#: frontend/ad-functions.php:159 #: includes/listings/class-listing-renewed-email-notifications.php:85 msgid "The ad \"%s\" has been successfully renewed." msgstr "El anuncio \"%s\" fue renovado satisfactoriamente." -#: frontend/ad-functions.php:189 frontend/page-renew-ad.php:160 +#: frontend/ad-functions.php:193 frontend/page-renew-ad.php:160 msgid "The Ad has been successfully renewed. New expiration date is %s." msgstr "Su anuncio fue renovado. La nueva fecha de caducidad es %s." -#: frontend/ad-functions.php:194 frontend/page-renew-ad.php:152 +#: frontend/ad-functions.php:198 frontend/page-renew-ad.php:151 #: templates/admin/listings/quick-view-listing-admin-page.tpl.php:18 #: templates/admin/listings-media-center.tpl.php:6 #: templates/admin/view-listing-admin-page.tpl.php:14 msgid "Return to Listings" msgstr "Configuración de Registro" -#: frontend/ad-functions.php:212 frontend/page-place-ad.php:151 +#: frontend/ad-functions.php:216 frontend/page-place-ad.php:154 msgid "" "You do not have permission to perform the function you are trying to " "perform. Access to this page has been denied" @@ -1525,11 +1622,11 @@ msgstr "" "No tiene los permisos necesarios para llevar a cabo esta acción. El acceso a " "esta página ha sido denegado" -#: frontend/ad-functions.php:227 +#: frontend/ad-functions.php:231 msgid "The Ad has been deleted" msgstr "El anuncio ha sido eliminado." -#: frontend/ad-functions.php:230 +#: frontend/ad-functions.php:234 msgid "" "Your Ad details and any photos you have uploaded have been deleted from the " "system" @@ -1537,18 +1634,18 @@ msgstr "" "Los detalles de su anuncio y las imágenes que cargó serán eliminadas del " "sistema" -#: frontend/ad-functions.php:234 +#: frontend/ad-functions.php:238 #: includes/frontend/class-edit-listing-page.php:188 msgid "The specified Ad doesn't exists." msgstr "El anuncio especificado no existe." -#: frontend/ad-functions.php:236 +#: frontend/ad-functions.php:240 msgid "There was an error trying to delete the Ad. The Ad was not deleted." msgstr "" "Ocurrió un error tratando de eliminar su anuncio. El anuncio no fue " "eliminado." -#: frontend/ad-functions.php:239 +#: frontend/ad-functions.php:243 msgid "Problem encountered. Cannot complete request" msgstr "Problema encontrado. No se pudo completar el proceso" @@ -1568,7 +1665,7 @@ msgstr "" "Está viendo anuncios de todas las categorías porque no se seleccionó una " "categoría específica." -#: frontend/page-place-ad.php:74 +#: frontend/page-place-ad.php:75 #: includes/views/class-verify-transaction-exists-step-decorator.php:17 msgid "" "There was an error processing your Payment Request. Please try again or " @@ -1577,19 +1674,20 @@ msgstr "" "Se ha producido un error al procesar su solicitud de pago. Inténtelo de " "nuevo o póngase en contacto con y Administrador." -#: frontend/page-place-ad.php:132 +#: frontend/page-place-ad.php:133 msgid "Please select a category." msgstr "Por favor, seleccione una Categoría." -#: frontend/page-place-ad.php:133 -msgid "Please select the Ad's owner." +#: frontend/page-place-ad.php:134 +#, fuzzy +msgid "Please select the Ad owner." msgstr "Por favor, seleccione el propietario del anuncio." -#: frontend/page-place-ad.php:134 +#: frontend/page-place-ad.php:135 msgid "Please select a payment term." msgstr "Por favor, selección un Plan de P\bago." -#: frontend/page-place-ad.php:165 frontend/page-renew-ad.php:87 +#: frontend/page-place-ad.php:168 frontend/page-renew-ad.php:86 msgid "" "You are trying to post an Ad using a transaction created for a different " "purpose. Please go back to the %s page.
If you think " @@ -1601,7 +1699,7 @@ msgstr "" "
Si cree que esto es un error, por favor contacte el administrador, " "enviándole el siguiente ID de transacción: %s" -#: frontend/page-place-ad.php:174 +#: frontend/page-place-ad.php:177 #: includes/frontend/class-submit-listing-page.php:291 msgid "" "You can't post an Ad at this time because the payment associated with this " @@ -1610,18 +1708,18 @@ msgstr "" "Usted no puede publicar un anuncio en este momento porque el pago asociado " "con esta transacción falló (vea las razones abajo)." -#: frontend/page-place-ad.php:256 +#: frontend/page-place-ad.php:259 #: includes/listings/class-payment-information-validator.php:88 msgid "You should select an owner for this Ad." msgstr "Debe seleccionar un autor para este anuncio." -#: frontend/page-place-ad.php:260 frontend/page-renew-ad.php:197 +#: frontend/page-place-ad.php:263 frontend/page-renew-ad.php:199 #: includes/listings/class-payment-information-validator.php:64 #: includes/listings/class-payment-information-validator.php:73 msgid "You should choose one of the available Payment Terms." msgstr "Debe seleccionar uno de los términos de pago disponibles." -#: frontend/page-place-ad.php:264 +#: frontend/page-place-ad.php:267 #: includes/listings/class-payment-information-validator.php:75 msgid "" "The Payment Term you selected is not available for non-administrator users." @@ -1629,17 +1727,17 @@ msgstr "" "El término de pago que seleccionó solo está disponible para usuarios " "administradores." -#: frontend/page-place-ad.php:280 +#: frontend/page-place-ad.php:283 #: includes/listings/class-payment-information-validator.php:108 msgid "Ad Category field is required" msgstr "Una categoría para el anuncio es requerida" -#: frontend/page-place-ad.php:285 +#: frontend/page-place-ad.php:288 #: includes/listings/class-payment-information-validator.php:119 msgid "You cannot list your Ad in top level categories." msgstr "No puedes listar tu anuncio en una categoría de primer nivel." -#: frontend/page-place-ad.php:291 +#: frontend/page-place-ad.php:294 #: includes/frontend/class-submit-listing-page.php:190 msgid "" "Hi, You need to be a registered user to post Ads in this website. Please use " @@ -1649,7 +1747,7 @@ msgstr "" "sitio web. Por favor, utilice el siguiente formulario para iniciar sesión o " "registrarse." -#: frontend/page-place-ad.php:429 frontend/page-place-ad.php:836 +#: frontend/page-place-ad.php:432 frontend/page-place-ad.php:839 #: frontend/page-renew-ad.php:297 #: includes/frontend/class-order-submit-listing-section.php:119 msgid "" @@ -1661,7 +1759,7 @@ msgstr "" #. translators: %s is an alphanumeric string that identifies a payment #. transaction. #. translators: %s the transaction id -#: frontend/page-place-ad.php:511 frontend/page-renew-ad.php:347 +#: frontend/page-place-ad.php:514 frontend/page-renew-ad.php:347 #: includes/frontend/class-submit-listing-page.php:333 #: includes/views/class-verify-payment-can-be-processed-step-decorator.php:18 msgid "" @@ -1673,7 +1771,7 @@ msgstr "" "administrador del sitio e incluya el siguiente número de transacción en el " "mensaje: %s" -#: frontend/page-place-ad.php:834 +#: frontend/page-place-ad.php:837 msgid "" "Your Ad details have been filled out in the form below. Make any changes " "needed and then resubmit the Ad to update it." @@ -1682,11 +1780,11 @@ msgstr "" "debajo. Haga los cambios que considere necesario y luego reenvie el anuncio " "para actualizarlo." -#: frontend/page-place-ad.php:838 +#: frontend/page-place-ad.php:841 msgid "Fill out the form below to post your classified ad." msgstr "Llena el formulario que está abajo para publicar tu anuncio." -#: frontend/page-place-ad.php:842 +#: frontend/page-place-ad.php:845 msgid "" "We found errors in the details you submitted. A detailed error message is " "shown in front or below each invalid field. Please fix the errors and submit " @@ -1696,11 +1794,11 @@ msgstr "" "error detallado aparece al frente o debajo de cada campo inválido. Por " "favor, corrija los errores y envíe el formulario de nuevo." -#: frontend/page-place-ad.php:861 +#: frontend/page-place-ad.php:864 msgid "Start & End Date" msgstr "Fecha de inicio y fecha de finalización" -#: frontend/page-place-ad.php:863 +#: frontend/page-place-ad.php:866 #: includes/admin/import/class-csv-importer-columns.php:185 #: includes/admin/listings/class-listings-table-nav-handler.php:151 #: includes/form-fields/class-listing-form-fields.php:127 @@ -1708,7 +1806,7 @@ msgstr "Fecha de inicio y fecha de finalización" msgid "Start Date" msgstr "Fecha de inicio" -#: frontend/page-place-ad.php:865 +#: frontend/page-place-ad.php:868 #: includes/admin/import/class-csv-importer-columns.php:196 #: includes/admin/listings/class-listings-table-nav-handler.php:152 #: includes/form-fields/class-listing-form-fields.php:131 @@ -1716,7 +1814,7 @@ msgstr "Fecha de inicio" msgid "End Date" msgstr "Fecha de finalización" -#: frontend/page-place-ad.php:973 +#: frontend/page-place-ad.php:976 msgid "" "Hi, Payment is required for posting Ads in this website and we couldn't find " "a Payment Transaction assigned to you. You can't post Ads this time. If you " @@ -1727,45 +1825,45 @@ msgstr "" "no puede publicar anuncios en esta ocasión. Si cree que esto es un error, " "por favor, póngase en contacto con el administrador del sitio web." -#: frontend/page-place-ad.php:1000 +#: frontend/page-place-ad.php:1003 msgid "" "You did not select a Payment Term. Please select a Payment Term for this Ad." msgstr "" "No has seleccionado un plan de pago. Por favor, selecciona una para tu " "anuncio." -#: frontend/page-place-ad.php:1005 +#: frontend/page-place-ad.php:1008 msgid "Please enter a start date for the Ad." msgstr "Por favor, ingrese una fecha de inicio para el anuncio." -#: frontend/page-place-ad.php:1010 +#: frontend/page-place-ad.php:1013 msgid "Please enter an end date for the Ad." msgstr "Por favor, ingrese una fecha de finalización para el anuncio." -#: frontend/page-place-ad.php:1014 +#: frontend/page-place-ad.php:1017 #: includes/form-fields/class-form-fields-validator.php:71 msgid "The start date must occur before the end date." msgstr "La fecha de inicio debe ser anterior de la fecha de finalización." -#: frontend/page-place-ad.php:1019 +#: frontend/page-place-ad.php:1022 msgid "You did not enter a title for your Ad" msgstr "No ingresó un título para su anuncio" -#: frontend/page-place-ad.php:1024 +#: frontend/page-place-ad.php:1027 msgid "" "You did not enter any text for your Ad. Please enter some text for your Ad." msgstr "" "No ingresó una descripción para su anuncio. Por favor, ingrese los detalles " "de su anuncio." -#: frontend/page-place-ad.php:1037 +#: frontend/page-place-ad.php:1040 msgid "" "You did not enter your website address. Your website address is required." msgstr "" "No ingresó la dirección de tu sitio web. Es necesario que ingrese un valor " "para ese campo antes de continuar." -#: frontend/page-place-ad.php:1043 +#: frontend/page-place-ad.php:1046 msgid "" "Your website address is not properly formatted. Please make sure you have " "included the http:// part of your website address" @@ -1773,17 +1871,17 @@ msgstr "" "La dirección del sitio web no tiene un formato adecuado. Por favor, " "asegúrese de que la dirección empieza con http:// o https://" -#: frontend/page-place-ad.php:1048 +#: frontend/page-place-ad.php:1051 msgid "You did not enter your name. Your name is required." msgstr "No ingresó su nombre. El nombre es requerido." -#: frontend/page-place-ad.php:1053 +#: frontend/page-place-ad.php:1056 msgid "You did not enter your email. Your email is required." msgstr "" "No ingresó su dirección de correo electrónico. La dirección de correo es " "necesaria." -#: frontend/page-place-ad.php:1058 frontend/page-reply-to-ad.php:160 +#: frontend/page-place-ad.php:1061 frontend/page-reply-to-ad.php:160 msgid "" "The email address you entered was not a valid email address. Please check " "for errors and try again." @@ -1791,7 +1889,7 @@ msgstr "" "La dirección de correo electrónico que ingresó no es una dirección válida. " "Por favor, revise los errores e intente de nuevo." -#: frontend/page-place-ad.php:1060 +#: frontend/page-place-ad.php:1063 msgid "" "The email address you entered is not allowed in this website. Please use an " "email address from one of the following domains: %s." @@ -1800,37 +1898,37 @@ msgstr "" "sitio web. Por favor, use una dirección de correo electrónico de uno de los " "siguientes dominios: %s." -#: frontend/page-place-ad.php:1071 +#: frontend/page-place-ad.php:1074 msgid "You did not enter your phone number. Your phone number is required." msgstr "No ingreso un número de teléfono. El número de teléfono es necesario." -#: frontend/page-place-ad.php:1089 -#: includes/helpers/widgets/multiple-region-selector.php:124 +#: frontend/page-place-ad.php:1092 +#: includes/helpers/widgets/multiple-region-selector.php:144 msgid "You did not enter your country. Your country is required." msgstr "No ingreso un país. Es necesario ingresar un país." -#: frontend/page-place-ad.php:1098 -#: includes/helpers/widgets/multiple-region-selector.php:125 +#: frontend/page-place-ad.php:1101 +#: includes/helpers/widgets/multiple-region-selector.php:145 msgid "You did not enter your state. Your state is required." msgstr "No ingresó un estado. Es necesario ingresar un estado." -#: frontend/page-place-ad.php:1107 -#: includes/helpers/widgets/multiple-region-selector.php:127 +#: frontend/page-place-ad.php:1110 +#: includes/helpers/widgets/multiple-region-selector.php:147 msgid "You did not enter your city. Your city is required." msgstr "No ingresó una ciudad. Es necesario ingresar una ciudad." -#: frontend/page-place-ad.php:1116 -#: includes/helpers/widgets/multiple-region-selector.php:126 +#: frontend/page-place-ad.php:1119 +#: includes/helpers/widgets/multiple-region-selector.php:146 msgid "You did not enter your county/village. Your county/village is required." msgstr "" "No ingresó un condado o pueblo. Es necesario ingresar un condado o pueblo." -#: frontend/page-place-ad.php:1123 +#: frontend/page-place-ad.php:1126 msgid "You did not enter the price of your item. The item price is required." msgstr "" "No ingresaste el precio de tu item. El precio es requerido por el sistema." -#: frontend/page-place-ad.php:1129 +#: frontend/page-place-ad.php:1132 msgid "" "You have entered an invalid item price. Make sure your price contains " "numbers only. Please do not include currency symbols." @@ -1838,18 +1936,18 @@ msgstr "" "Ingresaste un precio no válido. Asegurate de que sólo contenga números. NO " "incluyas el símbolo de la moneda." -#: frontend/page-place-ad.php:1147 +#: frontend/page-place-ad.php:1150 msgid "You did not accept the terms of service" msgstr "No ha aceptado los términos del servicio." -#: frontend/page-place-ad.php:1163 +#: frontend/page-place-ad.php:1166 msgid "" "Your Ad was flagged as spam. Please contact the administrator of this site." msgstr "" "Su anuncio ha sido marcado como SPAM. Por favor, contacte al administrador " "del sitio." -#: frontend/page-place-ad.php:1354 +#: frontend/page-place-ad.php:1357 msgid "" "We were unable to find a Payment Transaction assigned to this operation. No " "images can be added at this time." @@ -1857,30 +1955,30 @@ msgstr "" "No pudimos encontrar una transacción de pago asignada a esta operación. No " "se puede agregar imagenes esta vez." -#: frontend/page-place-ad.php:1361 +#: frontend/page-place-ad.php:1364 msgid "The specified Ad doesn't exists. No images can be added at this time." msgstr "" "El anuncio especificado no existe. No se puede agregar imágenes en este " "momento." -#: frontend/page-place-ad.php:1440 frontend/page-place-ad.php:1492 +#: frontend/page-place-ad.php:1443 frontend/page-place-ad.php:1495 #: includes/frontend/class-submit-listing-page.php:393 msgid "" "We were unable to find a Payment Transaction assigned to this operation." msgstr "No encontramos una transacción de pago asignada a esta operación." -#: frontend/page-place-ad.php:1447 frontend/page-place-ad.php:1499 +#: frontend/page-place-ad.php:1450 frontend/page-place-ad.php:1502 #: frontend/page-renew-ad.php:408 #: includes/frontend/class-submit-listing-page.php:400 msgid "The Ad associated with this transaction doesn't exists." msgstr "El anuncio asociado con esta transacción no existe." -#: frontend/page-renew-ad.php:73 +#: frontend/page-renew-ad.php:72 #, fuzzy msgid "That Ad doesn't need to be renewed." msgstr "El Anuncio especificado no necesita ser renovado." -#: frontend/page-renew-ad.php:78 +#: frontend/page-renew-ad.php:77 msgid "" "There was an error trying to renew your Ad. The URL is not valid. Please " "contact the Administrator of this site for further assistance." @@ -1888,7 +1986,7 @@ msgstr "" "Ocurrió un error tratando de renovar su anuncio. La URL no es válida. Por " "favor, contacte el administrador de este sitio para obtener más ayuda." -#: frontend/page-renew-ad.php:94 +#: frontend/page-renew-ad.php:93 msgid "" "You can't renew your Ad at this time because the payment associated with " "this transaction failed (see reasons below)." @@ -1896,7 +1994,7 @@ msgstr "" "No puede renovar el anuncio en este momento porque el pago asociado con esta " "transacción falló (vea las razones debajo)." -#: frontend/page-renew-ad.php:117 +#: frontend/page-renew-ad.php:116 msgid "" "The Ad was posted under a Payment Term that no longer exists or is disabled. " "The Ad can't be renewed." @@ -1904,11 +2002,11 @@ msgstr "" "El anuncio fue publicado bajo un término de pago que ya no existe o está " "deshabilitado. El anuncio no puede ser renovado." -#: frontend/page-renew-ad.php:154 +#: frontend/page-renew-ad.php:153 msgid "You can see your Ad here" msgstr "Usted puede ver los anuncios aquí" -#: frontend/page-renew-ad.php:200 +#: frontend/page-renew-ad.php:201 msgid "" "You are trying to renew your Ad using a different Payment Term. That's not " "allowed." @@ -2028,7 +2126,7 @@ msgstr "Vendedor" msgid "Visit Website" msgstr "Visitar el Sitio Web" -#: frontend/placeholders.php:655 includes/functions/listings.php:405 +#: frontend/placeholders.php:655 includes/functions/listings.php:415 msgid "Location" msgstr "Ubicación" @@ -2100,30 +2198,30 @@ msgstr "" "Ha ocurrido un problema cuando un usuario intentó enviar un pago. Los " "detalles de la transacción se muestran abajo." -#: frontend/templates/email-abort-payment-admin.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:12 msgid "User Name" msgstr "Nombre de usuario" -#: frontend/templates/email-abort-payment-admin.tpl.php:10 +#: frontend/templates/email-abort-payment-admin.tpl.php:13 msgid "User Login" msgstr "Login de usuario" -#: frontend/templates/email-abort-payment-admin.tpl.php:11 +#: frontend/templates/email-abort-payment-admin.tpl.php:14 msgid "User Email" msgstr "Email de usuario" -#: frontend/templates/email-abort-payment-admin.tpl.php:15 +#: frontend/templates/email-abort-payment-admin.tpl.php:18 #: includes/admin/import/class-csv-importer-columns.php:219 msgid "Payment Term Type" msgstr "Tipo de Término de Pago" -#: frontend/templates/email-abort-payment-admin.tpl.php:16 +#: frontend/templates/email-abort-payment-admin.tpl.php:19 #: includes/admin/import/class-csv-importer-columns.php:207 msgid "Payment Term ID" msgstr "ID del Término de Pago" -#: frontend/templates/email-abort-payment-admin.tpl.php:17 -#: frontend/templates/email-abort-payment-user.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:20 +#: frontend/templates/email-abort-payment-user.tpl.php:12 msgid "Payment transaction ID" msgstr "ID de la transacción del pago" @@ -2133,11 +2231,11 @@ msgid "Additional Details" msgstr "Detalles Adicionales" #: frontend/templates/email-ad-enabled-user.tpl.php:3 -#: frontend/templates/email-send-ad-access-key.tpl.php:1 +#: frontend/templates/email-send-ad-access-key.tpl.php:3 msgid "Hello %s," msgstr "Hola %s," -#: frontend/templates/email-ad-enabled-user.tpl.php:6 +#: frontend/templates/email-ad-enabled-user.tpl.php:8 msgid "" "Your Ad \"%1$s\" was recently approved by the admin. You should be able to " "see the Ad published here: %2$s." @@ -2207,8 +2305,8 @@ msgstr "" msgid "Ad Information" msgstr "Información del Anuncio" -#: frontend/templates/email-ad-updated-user.tpl.php:18 -#: frontend/templates/email-place-ad-success-user.tpl.php:45 +#: frontend/templates/email-ad-updated-user.tpl.php:20 +#: frontend/templates/email-place-ad-success-user.tpl.php:47 msgid "" "If you have questions about your listing contact %s. Thank you for your " "business." @@ -2250,21 +2348,22 @@ msgstr "" "Use el siguiente enlace para acceder a una página donde podrá editar el " "anuncio." -#: frontend/templates/email-send-ad-access-key.tpl.php:3 +#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#, fuzzy msgid "" -"Below you will find the access key for your Ad \"%s\" associated to the " +"Below you will find the access key for your Ad \"%s\" associated with the " "email address %s." msgstr "" "Debajo encontrará la clave de acceso para su anuncio \"%s\" asociado a la " "dirección de correco electrónico %s." -#: frontend/templates/email-send-ad-access-key.tpl.php:6 +#: frontend/templates/email-send-ad-access-key.tpl.php:10 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:13 #: templates/admin/view-listing-admin-page.tpl.php:11 msgid "Access Key" msgstr "Clave de acceso" -#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#: frontend/templates/email-send-ad-access-key.tpl.php:11 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:14 msgid "Edit Link:" msgstr "Enlace para editar:" @@ -2303,6 +2402,12 @@ msgstr "¿Perdió su contraseña?" msgid "Classifieds Menu" msgstr "Menú Clasificados" +#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 +#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 +#, fuzzy +msgid "Complete Payment" +msgstr "Completar Pago" + #: frontend/templates/page-buy-credits-final-step.tpl.php:7 msgid "" "The credit in your account can be used to pay for posting your Ads. You can " @@ -2319,9 +2424,9 @@ msgstr "Selecciona un plan de crédito" #: frontend/templates/page-buy-credits-select-credit-plan-step.tpl.php:18 #: frontend/templates/page-renew-ad-order-step.tpl.php:27 -#: frontend/templates/page-reply-to-ad.tpl.php:43 +#: frontend/templates/page-reply-to-ad.tpl.php:48 #: frontend/templates/payments-billing-form.tpl.php:124 -#: frontend/templates/payments-checkout-page.tpl.php:28 +#: frontend/templates/payments-checkout-page.tpl.php:27 #: frontend/templates/payments-payment-completed-page.tpl.php:18 msgid "Continue" msgstr "Continuar" @@ -2351,27 +2456,27 @@ msgstr "Reenviar clave de acceso" msgid "Enter Ad Details" msgstr "Ingrese los detalles de su Anuncio" -#: frontend/templates/page-place-ad-details-step.tpl.php:35 +#: frontend/templates/page-place-ad-details-step.tpl.php:36 #: includes/admin/import/class-csv-importer-columns.php:79 #: includes/admin/listings/class-listing-owner-metabox.php:59 msgid "Ad Owner" msgstr "Propietario" -#: frontend/templates/page-place-ad-details-step.tpl.php:41 -#: frontend/templates/page-place-ad-order-step.tpl.php:60 +#: frontend/templates/page-place-ad-details-step.tpl.php:43 +#: frontend/templates/page-place-ad-order-step.tpl.php:61 msgid "User" msgstr "Usuario" -#: frontend/templates/page-place-ad-details-step.tpl.php:42 -#: frontend/templates/page-place-ad-order-step.tpl.php:61 +#: frontend/templates/page-place-ad-details-step.tpl.php:44 +#: frontend/templates/page-place-ad-order-step.tpl.php:62 msgid "Select an User owner for this Ad" msgstr "Seleccione un autor para este anuncio" -#: frontend/templates/page-place-ad-details-step.tpl.php:77 +#: frontend/templates/page-place-ad-details-step.tpl.php:81 msgid "Add Details and Contact Information" msgstr "Detalles e Información de Contacto para el Anuncio" -#: frontend/templates/page-place-ad-order-step.tpl.php:73 +#: frontend/templates/page-place-ad-order-step.tpl.php:75 msgid "Please select a payment term for your Ad" msgstr "Seleccione un término de pago para su anuncio" @@ -2415,7 +2520,12 @@ msgstr "" msgid "Your Ad has been renewed" msgstr "Su anuncio ha sido renovado" -#: frontend/templates/page-renew-ad.tpl.php:15 +#: frontend/templates/page-renew-ad-order-step.tpl.php:6 +#, fuzzy +msgid "Select Payment Term" +msgstr "Seleccione un término de pago" + +#: frontend/templates/page-renew-ad.tpl.php:13 msgid "" "Please click the payment button below to proceed with Payment for your Ad " "renewal. You will be asked to pay %s." @@ -2423,19 +2533,19 @@ msgstr "" "Por favor, haz click en el botón que aparece para enviar el pago de %s por " "la Renovación de su anuncio." -#: frontend/templates/page-reply-to-ad.tpl.php:7 +#: frontend/templates/page-reply-to-ad.tpl.php:10 msgid "You are responding to Ad: %s." msgstr "Usted está respondiendo al anuncio: %s." -#: frontend/templates/page-reply-to-ad.tpl.php:18 +#: frontend/templates/page-reply-to-ad.tpl.php:24 msgid "Your name" msgstr "Su nombre" -#: frontend/templates/page-reply-to-ad.tpl.php:24 +#: frontend/templates/page-reply-to-ad.tpl.php:30 msgid "Your email address" msgstr "Su dirección de correo electrónico" -#: frontend/templates/page-reply-to-ad.tpl.php:30 +#: frontend/templates/page-reply-to-ad.tpl.php:36 msgid "Your message" msgstr "Su mensaje" @@ -2443,19 +2553,19 @@ msgstr "Su mensaje" msgid "Search for ads containing this word or phrase" msgstr "Buscar anuncios que contienen esta palabra o frase" -#: frontend/templates/page-search-ads.tpl.php:37 +#: frontend/templates/page-search-ads.tpl.php:41 msgid "For ads posted by" msgstr "Publicados por" -#: frontend/templates/page-search-ads.tpl.php:39 +#: frontend/templates/page-search-ads.tpl.php:43 msgid "All Users" msgstr "Todos los usuarios" -#: frontend/templates/page-search-ads.tpl.php:48 +#: frontend/templates/page-search-ads.tpl.php:55 msgid "Min price" msgstr "Precio mínimo" -#: frontend/templates/page-search-ads.tpl.php:52 +#: frontend/templates/page-search-ads.tpl.php:59 msgid "Max price" msgstr "Precio máximo" @@ -2463,9 +2573,18 @@ msgstr "Precio máximo" msgid "Pay With 2Checkout" msgstr "Pagar con 2Checkout" -#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:791 -#: includes/admin/class-listings-personal-data-provider.php:115 -#: includes/admin/class-listings-personal-data-provider.php:125 +#: frontend/templates/payments-billing-form.tpl.php:1 +#, fuzzy +msgid "" +"Please fill in the billing information in the form below to place your " +"payment." +msgstr "" +"Por favor, ingrese la información de pago en el formulario que está a " +"continuación para realziar su pago." + +#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:797 +#: includes/admin/class-listings-personal-data-provider.php:117 +#: includes/admin/class-listings-personal-data-provider.php:127 #: includes/admin/import/class-csv-importer-columns.php:230 msgid "Country" msgstr "País" @@ -2503,15 +2622,15 @@ msgid "Address Line 2" msgstr "Dirección Línea 2" #: frontend/templates/payments-billing-form.tpl.php:92 -#: includes/admin/class-listings-personal-data-provider.php:116 -#: includes/admin/class-listings-personal-data-provider.php:126 +#: includes/admin/class-listings-personal-data-provider.php:118 +#: includes/admin/class-listings-personal-data-provider.php:128 #: includes/admin/import/class-csv-importer-columns.php:238 msgid "State" msgstr "Estado" -#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:811 -#: includes/admin/class-listings-personal-data-provider.php:117 -#: includes/admin/class-listings-personal-data-provider.php:127 +#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:817 +#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:129 #: includes/admin/import/class-csv-importer-columns.php:260 msgid "City" msgstr "Ciudad" @@ -2525,14 +2644,56 @@ msgstr "Código Postal" msgid "Email" msgstr "Email" +#: frontend/templates/payments-credit-plans-table.tpl.php:7 +#, fuzzy +msgid "" +"You can additionally purchase a Credit Plan to add credit to your account. " +"If you select to pay using credits, the price of the selected payment term " +"will be deducted from your account balance after you have completed payment." +msgstr "" +"Adicionalmente usted puede comprar un plan de crédito para agregar crédito a " +"su cuenta. Si selecciona pagar con créditos, el precio del termino de pago " +"seleccionado sera deducido del saldo de su cuenta cuando completa el pago." + #: frontend/templates/payments-credit-plans-table.tpl.php:22 msgid "No credit plans available." msgstr "No hay planes de crédito disponibles." +#: frontend/templates/payments-credit-plans-table.tpl.php:51 +#, fuzzy +msgid "clear selection" +msgstr "borrar selección" + +#: frontend/templates/payments-payment-completed-page.tpl.php:2 +#, fuzzy +msgid "Transaction Details" +msgstr "Detalles de la Transacción" + +#: frontend/templates/payments-payment-page.tpl.php:3 +#, fuzzy +msgid "You are about to pay for the following items." +msgstr "Usted está a punto de pagar por los siguientes artículos." + +#: frontend/templates/payments-payment-page.tpl.php:5 +#, fuzzy +msgid "Payment Terms" +msgstr "Términos de pago" + #: frontend/templates/payments-paypal-payment-button.tpl.php:30 msgid "Make payments with PayPal - it's fast, free and secure!" msgstr "Realizá tu pago con PayPal - ¡Es rápido, gratis y seguro!" +#: frontend/templates/payments-transaction-items-table.tpl.php:4 +#: frontend/templates/payments-transaction-items-table.tpl.php:13 +#, fuzzy +msgid "Item" +msgstr "Artículo" + +#: frontend/templates/payments-transaction-items-table.tpl.php:34 +#, fuzzy +msgid "Total Amount (credit)" +msgstr "Cantidad Total (crédito)" + #: frontend/templates/widget-categories-form.tpl.php:9 msgid "Hide empty categories." msgstr "Esconder Categorías vacías" @@ -2606,7 +2767,7 @@ msgstr "¿Mostrar campo Palabra Clave?" msgid "Show Posted By field?" msgstr "¿Mostrar campo Publicado por?" -#: frontend/templates/widget-search-form.tpl.php:28 +#: frontend/templates/widget-search-form.tpl.php:32 msgid "Show Category field?" msgstr "¿Mostrar campo de Categoría?" @@ -2622,23 +2783,23 @@ msgstr "Categorías AWPCP" msgid "Ad Categories" msgstr "Categorías de Anuncios" -#: frontend/widget-latest-ads.php:13 +#: frontend/widget-latest-ads.php:17 msgid "AWPCP Latest Ads" msgstr "AWPCP Últimos Anuncios" -#: frontend/widget-latest-ads.php:14 +#: frontend/widget-latest-ads.php:18 msgid "Displays a list of latest Ads" msgstr "Muestra una lista de los anuncios más recientes." -#: frontend/widget-latest-ads.php:30 +#: frontend/widget-latest-ads.php:34 msgid "Latest Ads" msgstr "Últimos Anuncios" -#: frontend/widget-latest-ads.php:72 +#: frontend/widget-latest-ads.php:76 msgid "There are currently no ads to show." msgstr "Actualmente no hay ningún anuncio para mostrar." -#: frontend/widget-latest-ads.php:114 +#: frontend/widget-latest-ads.php:118 msgid "Read more" msgstr "Leer más" @@ -2670,67 +2831,67 @@ msgstr "Todos los nombres de contacto" msgid "Select Option" msgstr "Seleccionar" -#: frontend/widget-search.php:105 +#: frontend/widget-search.php:106 msgid "Search by keyword" msgstr "Buscar por palabra clave" -#: frontend/widget-search.php:119 +#: frontend/widget-search.php:121 msgid "Search by Category" msgstr "Buscar por Categoría" -#: frontend/widget-search.php:137 +#: frontend/widget-search.php:141 msgid "Search" msgstr "Buscar" -#: functions.php:427 +#: functions.php:431 msgid "%s ago" msgstr "Hace %s" -#: functions.php:604 +#: functions.php:610 msgid "Ads per page:" msgstr "Anuncios por página:" -#: functions.php:621 +#: functions.php:627 msgid "Page {current_page_number} of {number_of_pages}" msgstr "Página {current_page_number} de {number_of_pages}" -#: functions.php:732 +#: functions.php:738 msgid "None" msgstr "Ninguna" -#: functions.php:792 +#: functions.php:798 msgid "separate countries by commas" msgstr "Separar países por comas" -#: functions.php:801 +#: functions.php:807 msgid "State/Province" msgstr "Estado/Provincia" -#: functions.php:802 +#: functions.php:808 msgid "separate states by commas" msgstr "Separar estados/provincias por comas" -#: functions.php:812 +#: functions.php:818 msgid "separate cities by commas" msgstr "Separar ciudades por comas" -#: functions.php:821 +#: functions.php:827 msgid "County/Village/Other" msgstr "Distrito/Otro" -#: functions.php:822 +#: functions.php:828 msgid "separate counties by commas" msgstr "Separar Distritos por comas" -#: functions.php:1036 +#: functions.php:1050 msgid "-- Choose a Country --" msgstr "Elija un país" -#: functions.php:1507 templates/admin/main-classifieds-admin-page.tpl.php:58 +#: functions.php:1537 templates/admin/main-classifieds-admin-page.tpl.php:58 msgid "Free" msgstr "Gratis" -#: functions.php:1852 templates/components/media-center.tpl.php:14 +#: functions.php:1893 templates/components/media-center.tpl.php:14 msgid "" "The images or files with pale red background have been rejected by an " "administrator user. Likewise, files with a pale yellow background are " @@ -2742,7 +2903,7 @@ msgstr "" "pálido están esperando ser aprobados. Los archivos que están esperando ser " "aprobados o los archivos rechazados, no pueden mostrarse en el sitio." -#: functions.php:1871 +#: functions.php:1912 msgid "" "This version of AWPCP %1$s module is not compatible with AWPCP version %2$s. " "Please get AWPCP %1$s %3$s or newer!" @@ -2750,55 +2911,55 @@ msgstr "" "La versión del módulo %1$s no es compatible con la versión %2$s de AWPCP. " "Por favor, descargue AWPCP %1$s %3$s o posterior." -#: functions.php:1873 +#: functions.php:1914 msgid "Error" msgstr "Error" -#: functions.php:2231 +#: functions.php:2287 msgid "No errors." msgstr "Sin errores." -#: functions.php:2232 +#: functions.php:2288 msgid "The file is larger than upload_max_filesize." msgstr "El tamaño del archivo es mayor que upload_max_filesize." -#: functions.php:2233 +#: functions.php:2289 msgid "The file is larger than form MAX_FILE_SIZE." msgstr "El tamaño del archivo es mayor que MAX_FILE_SIZE." -#: functions.php:2234 +#: functions.php:2290 msgid "The file was only partially uploaded." msgstr "El archivo fue cargado parcialmente." -#: functions.php:2235 +#: functions.php:2291 msgid "No file was uploaded." msgstr "Ningún archivo fue cargado." -#: functions.php:2236 +#: functions.php:2292 msgid "Missing temporary directory." msgstr "El directorio temporal no existe." -#: functions.php:2237 +#: functions.php:2293 msgid "Can't write file to disk." msgstr "No se puede escribir el archivo en disco." -#: functions.php:2238 +#: functions.php:2294 msgid "The file upload was stopped by extension." msgstr "La carga del archivo fue detenida por una extensión." -#: functions.php:2476 +#: functions.php:2536 msgid "Your Ad \"%s\" has been approved" msgstr "Su anuncio \"%s\" ha sido aprobado" -#: functions.php:2499 +#: functions.php:2559 msgid "Your Ad \"%s\" has been successfully updated" msgstr "Su anuncio \"%s\" ha sido actualizado exitosamente" -#: functions.php:2521 +#: functions.php:2581 msgid "Images on Ad \"%s\" are awaiting approval" msgstr "Las imágenes en el anuncio \"%s\" están esperando aprobación" -#: functions.php:2523 +#: functions.php:2583 msgid "" "Images on Ad \"%s\" are awaiting approval. You can approve the images going " "to the Manage Images section for that Ad and clicking the \"Enable\" button " @@ -2809,13 +2970,13 @@ msgstr "" "anuncio y haciendo click en el botón \"Aprobar\" debajo de cada imagen. Haga " "click aquí para continuar: %s." -#: functions.php:2526 +#: functions.php:2586 msgid "The Ad \"%s\" is awaiting approval" msgstr "El anuncio \"%s\" está esperando aprobación" #. translators: %1$s is the listing title. %2$s is the URL for managing #. listing. -#: functions.php:2529 includes/functions/notifications.php:157 +#: functions.php:2589 includes/functions/notifications.php:156 msgid "" "The Ad \"%1$s\" is awaiting approval. You can approve the Ad going to the " "Classified edit section and clicking the \"Publish\" button. Click here to " @@ -2826,7 +2987,7 @@ msgstr "" "\"Publicar\". Haga click aquí para continuar: %2$s." #. translators: %s is the URL for managing listing images. -#: functions.php:2536 includes/functions/notifications.php:165 +#: functions.php:2596 includes/functions/notifications.php:164 msgid "" "Additionally, You can approve the images going to the Manage Images section " "for that Ad and clicking the \"Enable\" button below each image. Click here " @@ -2836,27 +2997,27 @@ msgstr "" "Administrar Imágenes para ese anuncio y haciendo click en el botón " "\"Aprobar\" debajo de cada imagen. Haga click aquí para continuar: %s." -#: functions.php:3068 +#: functions.php:3123 msgid "Email sent %s." msgstr "Correo electrónico enviado %s." -#: functions.php:3199 +#: functions.php:3254 msgid "Not Installed" msgstr "No instalado" -#: functions.php:3203 +#: functions.php:3258 msgid "Installed" msgstr "Instalado" -#: functions.php:3211 +#: functions.php:3266 msgid "SSL Support: Yes." msgstr "Soporta SSL: Sí." -#: functions.php:3213 +#: functions.php:3268 msgid "SSL Support: No." msgstr "Soporta SSL: No." -#: functions.php:3216 +#: functions.php:3271 msgid "OpenSSL version:" msgstr "Versión de OpenSSL:" @@ -2876,58 +3037,58 @@ msgstr "Campos del anuncio" msgid "Search for listings matching" msgstr "Buscar anuncios por" -#: includes/admin/class-listings-personal-data-provider.php:110 +#: includes/admin/class-listings-personal-data-provider.php:112 msgid "Classified ID" msgstr "ID del anuncio" -#: includes/admin/class-listings-personal-data-provider.php:111 +#: includes/admin/class-listings-personal-data-provider.php:113 msgid "Contact Name" msgstr "Nombre de contacto" -#: includes/admin/class-listings-personal-data-provider.php:112 +#: includes/admin/class-listings-personal-data-provider.php:114 msgid "Contact Phone Number" msgstr "Níumero telefónico de contacto" -#: includes/admin/class-listings-personal-data-provider.php:113 +#: includes/admin/class-listings-personal-data-provider.php:115 msgid "Contact Phone Number Digits" msgstr "Digitos del número telefónico de contacto" -#: includes/admin/class-listings-personal-data-provider.php:114 +#: includes/admin/class-listings-personal-data-provider.php:116 msgid "Contact Email" msgstr "Email de Contacto" -#: includes/admin/class-listings-personal-data-provider.php:118 -#: includes/admin/class-listings-personal-data-provider.php:128 +#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:130 #: includes/admin/import/class-csv-importer-columns.php:249 msgid "County" msgstr "Condado" -#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:121 msgid "Website URL" msgstr "URL del sitio web" -#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:122 #: includes/admin/class-payment-personal-data-provider.php:47 msgid "Payer Email" msgstr "Email del pagador" -#: includes/admin/class-listings-personal-data-provider.php:121 +#: includes/admin/class-listings-personal-data-provider.php:123 msgid "Author IP" msgstr "Dirección IP del autor" -#: includes/admin/class-listings-personal-data-provider.php:132 +#: includes/admin/class-listings-personal-data-provider.php:134 msgid "URL" msgstr "URL" -#: includes/admin/class-listings-personal-data-provider.php:146 +#: includes/admin/class-listings-personal-data-provider.php:148 msgid "Classifieds Listings" msgstr "Anuncios clasificados" -#: includes/admin/class-listings-personal-data-provider.php:157 +#: includes/admin/class-listings-personal-data-provider.php:159 msgid "Classifieds Media" msgstr "Multimedia en anuncios clasificados" -#: includes/admin/class-listings-personal-data-provider.php:218 +#: includes/admin/class-listings-personal-data-provider.php:220 msgid "" "An unknown error occurred while trying to delete information for classified " "{listing_id}." @@ -2952,7 +3113,7 @@ msgid "Contact Address" msgstr "Dirección de contacto" #: includes/admin/class-user-personal-data-provider.php:55 -#: includes/settings/class-display-settings.php:476 +#: includes/settings/class-display-settings.php:475 msgid "Contact Phone" msgstr "Teléfono de contacto" @@ -3058,8 +3219,8 @@ msgstr "" "adjunto. Los nombres de archivo deben estar separados por punto y coma." #: includes/admin/import/class-importer-form-steps.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:17 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:88 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:14 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:80 msgid "Upload Source Files" msgstr "Subir archivos fuente" @@ -3068,12 +3229,12 @@ msgid "Configuration" msgstr "Configuración" #: includes/admin/import/class-importer-form-steps.php:29 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:173 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:176 msgid "Import" msgstr "Importar" #: includes/admin/import/class-importer-form-steps.php:32 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:172 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:175 msgid "Test Import" msgstr "Probar importación" @@ -3120,7 +3281,7 @@ msgstr[0] "%d anuncio ya estaba activado." msgstr[1] "%d anuncios ya estaban activados." #: includes/admin/listings/class-listing-owner-metabox.php:62 -#: templates/frontend/order-submit-listing-section.tpl.php:45 +#: templates/frontend/order-submit-listing-section.tpl.php:42 msgid "Please select a user" msgstr "Por favor elige un usuario" @@ -3603,45 +3764,45 @@ msgstr "XML Sitemap" msgid "ZIP Code Search Module" msgstr "Módulo de búsqueda por código postal" -#: includes/class-awpcp.php:1445 +#: includes/class-awpcp.php:1436 msgid "This field is required." msgstr "Este campo es obligatorio." -#: includes/class-awpcp.php:1446 +#: includes/class-awpcp.php:1437 #: includes/form-fields/class-form-fields-validator.php:101 #: includes/frontend/class-edit-listing-page.php:273 #: includes/frontend/class-edit-listing-page.php:350 -#: includes/settings/class-payment-general-settings.php:158 +#: includes/settings/class-payment-general-settings.php:157 msgid "Please enter a valid email address." msgstr "Por favor, ingrese una dirección de correo electrónico válida." -#: includes/class-awpcp.php:1447 includes/class-awpcp.php:1448 +#: includes/class-awpcp.php:1438 includes/class-awpcp.php:1439 msgid "Please enter a valid URL." msgstr "Por favor, ingrese una URL válida." -#: includes/class-awpcp.php:1449 +#: includes/class-awpcp.php:1440 msgid "Please enter a valid number." msgstr "Por favor, ingrese un número válido." -#: includes/class-awpcp.php:1450 +#: includes/class-awpcp.php:1441 msgid "Please enter a valid amount." msgstr "Por favor, ingrese una cantidad válida." -#: includes/class-awpcp.php:1451 +#: includes/class-awpcp.php:1442 msgid "" "You have reached the maximum allowed categories for the selected fee plan." msgstr "" "Ha alcanzado las categorías máximas permitidas por el plan seleccionado." -#: includes/class-awpcp.php:1470 +#: includes/class-awpcp.php:1461 msgid "There are files currently being uploaded." msgstr "El sistema aún está cargando algunos archivos." -#: includes/class-awpcp.php:1471 +#: includes/class-awpcp.php:1462 msgid "There are files pending to be uploaded." msgstr "Algunos archivos están esperando para ser cargados." -#: includes/class-awpcp.php:1472 +#: includes/class-awpcp.php:1463 msgid "You haven't uploaded any images or files." msgstr "Aún no ha subido imágenes o archivos." @@ -3701,7 +3862,7 @@ msgstr "" "Su licencia para es válida, pero ya está activa en otro sitio. " "Contacte el servicio al cliente para asistencia adicional." -#: includes/class-listings-api.php:106 includes/class-listings-api.php:306 +#: includes/class-listings-api.php:106 includes/class-listings-api.php:310 msgid "" "There was an unexpected error trying to save the listing details. Please try " "again or contact an administrator." @@ -3709,7 +3870,7 @@ msgstr "" "Ocurrió un error guardando los detalles del anuncio. Por favor intente de " "nuevo o contacte un administrador." -#: includes/class-listings-api.php:197 +#: includes/class-listings-api.php:199 msgid "" "To avoid overwritting existing metadata, use fill_default_listing_metadata() " "instead." @@ -3717,11 +3878,11 @@ msgstr "" "Usa fill_default_listing_metadata() en vez de esta función, para evitar " "sobre escribir los metadatos existentes." -#: includes/class-listings-api.php:302 +#: includes/class-listings-api.php:306 msgid "There was an error trying to save the listing details:" msgstr "Ocurrió un error guardando los detalles del anuncio:" -#: includes/class-listings-api.php:730 +#: includes/class-listings-api.php:734 msgid "" "If you have uploaded images your images will not show up until an admin has " "approved them." @@ -3770,19 +3931,19 @@ msgstr "" "formato JSON? Por favor intenta de nuevo o contacta al servicio de soporte " "al cliente y envía una copia del archivo." -#: includes/credit-plan.php:109 includes/payment-term.php:133 +#: includes/credit-plan.php:114 includes/payment-term.php:133 msgid "The name of the plan is required." msgstr "El nombre del plan es necesario." -#: includes/credit-plan.php:112 includes/payment-term.php:151 +#: includes/credit-plan.php:117 includes/payment-term.php:151 msgid "The number of credits must be greater than zero." msgstr "El número de créditos debe ser mayor que cero." -#: includes/credit-plan.php:115 +#: includes/credit-plan.php:120 msgid "The price must be greater or equal than zero." msgstr "El precio debe ser mayor o igual a cero." -#: includes/credit-plan.php:153 +#: includes/credit-plan.php:158 msgid "The Credit Plan doesn't exist." msgstr "El Plan de Crédito no existe." @@ -3873,7 +4034,7 @@ msgstr "" msgid "Please read and accept the Terms of Service." msgstr "Por favor lee y acepta los términos del servicio." -#: includes/frontend/class-captcha.php:70 +#: includes/frontend/class-captcha.php:77 msgid "" "An unknown error ocurred trying to validate the answer to the CAPTCHA " "challenge." @@ -3895,14 +4056,14 @@ msgstr "" "No estás autorizado para realizar esta acción. Solo los usuarios conectados " "tienen permitido publicar anuncios clasificados." -#: includes/frontend/class-default-captcha-provider.php:59 +#: includes/frontend/class-default-captcha-provider.php:76 msgid "" "You did not solve the math problem. Please solve the math problem to proceed." msgstr "" "No ingresó el resultado de la operación matemática. Por favor, hágalo para " "poder continuar." -#: includes/frontend/class-default-captcha-provider.php:64 +#: includes/frontend/class-default-captcha-provider.php:81 msgid "Your solution to the math problem was incorrect. Please try again." msgstr "" "La solución a la operación mátemática fue incorrecta. Por favor, intentalo " @@ -4070,15 +4231,15 @@ msgstr "No encontramos el plan de pago elegido." #. translators: %s will become an A HTML tag pointing to reCAPTCHA admin #. console. -#: includes/frontend/class-recaptcha-provider.php:47 +#: includes/frontend/class-recaptcha-provider.php:68 msgid "To use reCAPTCHA you must get an API key from %s." msgstr "Para usar reCAPTCHA usted debe obtener una clave para la API en %s." -#: includes/frontend/class-recaptcha-provider.php:85 +#: includes/frontend/class-recaptcha-provider.php:106 msgid "Your answers couldn't be verified by the reCAPTCHA server." msgstr "Su respuesta no pudo ser verificada por el servidor de reCAPTCHA." -#: includes/frontend/class-recaptcha-v2.php:51 +#: includes/frontend/class-recaptcha-v2.php:78 msgid "" "There was an error trying to verify the reCAPTCHA answer. " msgstr "" @@ -4096,8 +4257,8 @@ msgid "Login/Registration" msgstr "Iniciar Sesión/Registrarse" #: includes/frontend/class-submit-listing-form-steps.php:48 -#: includes/ui/class-category-selector.php:125 -#: templates/components/category-selector.tpl.php:16 +#: includes/ui/class-category-selector.php:147 +#: templates/components/category-selector.tpl.php:15 msgid "Select a Category" msgstr "Seleccione una Categoría" @@ -4260,12 +4421,12 @@ msgstr "El archivo %s no se pudo mover al directorio de destino." msgid "Could not create resized versions of image %s." msgstr "No se pudo crear una versión redimensionada de %s." -#: includes/functions/format.php:67 +#: includes/functions/format.php:50 msgid "Classifieds Management System" msgstr "Sistema de Administración de Clasificados" #. translators: example: and -#: includes/functions/format.php:84 +#: includes/functions/format.php:67 msgid " and " msgstr " y " @@ -4319,22 +4480,22 @@ msgstr "Por favor ingresa los detalles de tu anuncio." msgid "Top Level Category" msgstr "Categoría de Nivel Superior" -#: includes/functions/listings.php:278 -#: includes/listings/class-listings-content-renderer.php:169 +#: includes/functions/listings.php:288 +#: includes/listings/class-listings-content-renderer.php:182 msgid "Are you sure you want to flag this ad?" msgstr "¿Seguro que desea marcar este anuncio?" -#: includes/functions/listings.php:279 -#: includes/listings/class-listings-content-renderer.php:170 +#: includes/functions/listings.php:289 +#: includes/listings/class-listings-content-renderer.php:183 msgid "This Ad has been flagged." msgstr "Este anuncio ha sido reportado." -#: includes/functions/listings.php:280 -#: includes/listings/class-listings-content-renderer.php:171 +#: includes/functions/listings.php:290 +#: includes/listings/class-listings-content-renderer.php:184 msgid "An error occurred while trying to flag the Ad." msgstr "Se produjo un error al intentar reportar el anuncio." -#: includes/functions/listings.php:317 +#: includes/functions/listings.php:327 msgid "" "Sorry, that listing is not available. Please try browsing or searching " "existing listings." @@ -4342,7 +4503,7 @@ msgstr "" "Lo sentimos, este anuncio no está disponible. Por favor intente explorar o " "buscar los anuncios existentes." -#: includes/functions/listings.php:334 +#: includes/functions/listings.php:344 msgid "" "The Ad you are trying to view is pending approval. Once the Administrator " "approves it, it will be active and visible." @@ -4350,12 +4511,12 @@ msgstr "" "El anuncio que está tratando de ver está pendiente de ser aprobado. Cuando " "el administrador lo aprueve, quedará activo y visible." -#: includes/functions/listings.php:340 +#: includes/functions/listings.php:350 #: includes/listings/class-listings-content-renderer.php:106 msgid "Your email address was successfully verified." msgstr "Su dirección de correo electrónico fue verificado con éxito." -#: includes/functions/listings.php:344 +#: includes/functions/listings.php:354 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the Administrator) and the author can see it." @@ -4363,7 +4524,7 @@ msgstr "" "Este anuncio está actualmente deshabilitado hasta que el Adminstrador lo " "apruebe. Unicamente usted (el administrador) y el autor pueden verlo." -#: includes/functions/listings.php:347 +#: includes/functions/listings.php:357 msgid "" "This Ad is currently disabled until you verify the email address used for " "the contact information. Only you (the author) can see it." @@ -4372,7 +4533,7 @@ msgstr "" "dirección de correo electrónico que utilizó como información de contacto. " "Solo el autor (usted) puede ver el anuncio." -#: includes/functions/listings.php:350 +#: includes/functions/listings.php:360 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the author) can see it." @@ -4390,13 +4551,13 @@ msgid "Listing \"%s\" was updated" msgstr "El anuncio \"%s\" fue actualizado" #. translators: %s is the listing title. -#: includes/functions/notifications.php:147 +#: includes/functions/notifications.php:146 msgid "Images on listing \"%s\" are awaiting approval" msgstr "Las imágenes en el anuncio \"%s\" están esperando aprobación" #. translators: %1$s is the listing title. %2$s is the URL for managing listing #. images. -#: includes/functions/notifications.php:150 +#: includes/functions/notifications.php:149 msgid "" "Images on Ad \"%1$s\" are awaiting approval. You can approve the images " "going to the Manage Images section for that Ad and clicking the \"Enable\" " @@ -4408,11 +4569,11 @@ msgstr "" "continuar: %2$s." #. translators: %s is the listing title. -#: includes/functions/notifications.php:154 +#: includes/functions/notifications.php:153 msgid "Listing \"%s\" is awaiting approval" msgstr "El anuncio \"%s\" está esperando aprobación" -#: includes/functions/notifications.php:202 +#: includes/functions/notifications.php:201 msgid "Listing was flagged" msgstr "El anuncio fue reportado" @@ -4432,7 +4593,8 @@ msgid "Missing License Status parameter" msgstr "El parámetro License Status no está presente" #: includes/helpers/class-easy-digital-downloads.php:53 -msgid "License Status parameter was set to Failed" +#, fuzzy +msgid "License Status parameter was set to Failed" msgstr "El parámetro License Status tiene le valor Falló" #: includes/helpers/class-easy-digital-downloads.php:57 @@ -4542,7 +4704,7 @@ msgstr[1] "" "Por favor contacte al Servicio al Cliente y pida una actualización. Incluya " "una referencia a este error en su mensaje." -#: includes/helpers/class-modules-manager.php:217 +#: includes/helpers/class-modules-manager.php:220 msgid "" "The version of AWPCP {modules_names} is not compatible with version " "{awpcp_version}." @@ -4556,12 +4718,12 @@ msgstr[1] "" "Las versiones de {modules_names} no son compatibles con la versión " "{awpcp_version} de AWPCP." -#: includes/helpers/class-modules-manager.php:219 +#: includes/helpers/class-modules-manager.php:222 msgid "Please get AWPCP {required_modules_versions} or newer!" msgstr "" "Por favor instala AWPCP {required_modules_versions} o una versión más nueva!" -#: includes/helpers/class-modules-manager.php:250 +#: includes/helpers/class-modules-manager.php:256 msgid "" "The license for AWPCP is inactive. All features will remain " "disabled until you activate the license. Please go to the Opciones de " "Licencia para activarlas." -#: includes/helpers/class-modules-manager.php:264 +#: includes/helpers/class-modules-manager.php:276 msgid "" "The AWPCP requires a license to be used. All features will " "remain disabled until a valid license is entered. Please go to the Opciones de Licencias para ingresar o actualizar " "sus licencias." -#: includes/helpers/class-modules-manager.php:269 +#: includes/helpers/class-modules-manager.php:284 msgid "" "The license for AWPCP expired. The module will continue to " "work but you will not receive automatic updates when a new version is " @@ -4621,7 +4783,7 @@ msgstr[1] "" "funcionando, pero no recibirá actualizaciones automáticas cuando una nueva " "versión esté disponible." -#: includes/helpers/class-modules-manager.php:281 +#: includes/helpers/class-modules-manager.php:299 msgid "" "The AWPCP is currently disabled because it requires you to " "perform a manual upgrade before continuing. Please go to the " @@ -4640,11 +4802,11 @@ msgstr[1] "" "favor navega hasta la sección gestionar anuncios para " "actualizar." -#: includes/helpers/class-modules-manager.php:294 +#: includes/helpers/class-modules-manager.php:312 msgid "The specified module does not exists!." msgstr "¡El módulo especificado no existe!" -#: includes/helpers/class-recaptcha-v3.php:56 +#: includes/helpers/class-recaptcha-v3.php:78 msgid "" "There was an error trying to analyze the current interaction with reCAPTCHA. " "" @@ -4652,7 +4814,7 @@ msgstr "" "Ocurrió un erro analizando la interacción actual con reCAPTCHA. " -#: includes/helpers/class-recaptcha-v3.php:98 +#: includes/helpers/class-recaptcha-v3.php:120 msgid "" "The current interaction was not approved by reCAPTCHA. Please try again." msgstr "" @@ -4721,11 +4883,11 @@ msgstr "" "Se ha producido un error al procesar su solicitud de pago. Inténtelo de " "nuevo o póngase en contacto con y Administrador." -#: includes/helpers/widgets/class-user-field.php:32 +#: includes/helpers/widgets/class-user-field.php:48 msgid "Select an User" msgstr "Seleccione un usuario" -#: includes/helpers/widgets/multiple-region-selector.php:123 +#: includes/helpers/widgets/multiple-region-selector.php:143 msgid "" "This particular region is already selected in another field. Please choose " "one or more sub-regions, to make the selection more specific, or change the " @@ -4735,19 +4897,19 @@ msgstr "" "seleccione uno o más sub-regiones, para hacer la selección más específica, o " "cambie la región seleccionada." -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Search Region" msgstr "Agregar región de búsqueda" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Region" msgstr "Agregar región" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Delete Search Region" msgstr "Eliminar región de búsqueda" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Remove Region" msgstr "Remover región" @@ -4827,7 +4989,12 @@ msgstr "Puede usar este botón para renovar su anuncio." msgid "There was an error trying to update the database." msgstr "Ocurrió un error tratando actualizar la base de datos." -#: includes/media/class-attachment-action-ajax-handler.php:57 +#: includes/media/class-attachment-action-ajax-handler.php:53 +#, fuzzy +msgid "You are not allowed to perform this action." +msgstr "Usted no está autorizado para realizar estas acción." + +#: includes/media/class-attachment-action-ajax-handler.php:57 msgid "The specified file is not associated with Listing with ID %d." msgstr "" "El archivo especificado no está asociado con el anuncio cuyo ID es : %d." @@ -4930,7 +5097,7 @@ msgstr "" "El archivo es más pequeño que el tamaño mínimo permitido ( bytes). El archivo no fue almacenado." -#: includes/media/class-listings-media-uploader-component.php:51 +#: includes/media/class-listings-media-uploader-component.php:56 msgid "" "You can upload images of up to each, " " videos of up to each and " @@ -4941,7 +5108,7 @@ msgstr "" " otros archivos (no imágenes) de hasta " "cada uno." -#: includes/media/class-listings-media-uploader-component.php:52 +#: includes/media/class-listings-media-uploader-component.php:57 msgid "" "You can upload images of up to each and " " other files (no videos) of up to each." @@ -4950,7 +5117,7 @@ msgstr "" "cada una y otros archivos (no imágenes) de hasta cada uno." -#: includes/media/class-listings-media-uploader-component.php:53 +#: includes/media/class-listings-media-uploader-component.php:58 msgid "" "You can upload images of up to each and " " videos of up to each." @@ -4958,7 +5125,7 @@ msgstr "" "Usted puede subir imágenes de hasta " "cada una y videos de hasta cada uno." -#: includes/media/class-listings-media-uploader-component.php:54 +#: includes/media/class-listings-media-uploader-component.php:59 msgid "" "You can upload videos of up to each and " " other files (no images) of up to each." @@ -4967,14 +5134,14 @@ msgstr "" "uno y otros archivos (no imágenes) de hasta cada uno." -#: includes/media/class-listings-media-uploader-component.php:55 +#: includes/media/class-listings-media-uploader-component.php:60 msgid "" "You can upload images of up to each." msgstr "" "Usted puede subir imágenes de hasta " "cada una." -#: includes/media/class-listings-media-uploader-component.php:56 +#: includes/media/class-listings-media-uploader-component.php:61 msgid "" "You can upload files (no videos or images) of up to each." @@ -4982,7 +5149,7 @@ msgstr "" "Usted puede subir otros archivos (no videos o imágenes) de " "hasta cada uno." -#: includes/media/class-listings-media-uploader-component.php:57 +#: includes/media/class-listings-media-uploader-component.php:62 msgid "" "You can upload videos of up to each." msgstr "" @@ -5083,15 +5250,15 @@ msgstr "Un anuncio clasificado." msgid "General" msgstr "General" -#: includes/models/payment-transaction.php:225 +#: includes/models/payment-transaction.php:232 msgid "The transaction must be assigned to a WordPress user." msgstr "La transacción debe estar asignada a un usuario WordPress." -#: includes/models/payment-transaction.php:238 +#: includes/models/payment-transaction.php:245 msgid "The transaction has no items." msgstr "La transacción no tiene artículos." -#: includes/models/payment-transaction.php:250 +#: includes/models/payment-transaction.php:257 msgid "" "The amount of credit in your account is not enough to pay for the selected " "items. Please choose one of the available Credit Plans in addition to the " @@ -5103,7 +5270,7 @@ msgstr "" "disponibles o agregue crédito a su cuenta desde su página de perfil.
Usted necesita %d en crédito extra." -#: includes/models/payment-transaction.php:252 +#: includes/models/payment-transaction.php:259 msgid "" "The selected Credit Plan is not enough to pay for the selected items. Please " "choose a bigger Credit Plan or add credit to your account from your Profile " @@ -5114,11 +5281,11 @@ msgstr "" "crédito a su cuenta desde su página de perfil.
Usted necesita %d en " "crédito extra." -#: includes/models/payment-transaction.php:282 +#: includes/models/payment-transaction.php:289 msgid "You must select a payment method." msgstr "Usted debe seleccionar un método de pago." -#: includes/models/payment-transaction.php:294 +#: includes/models/payment-transaction.php:301 msgid "The payment status for this transaction hasn't been defined." msgstr "El estado de pago para esta transaccion no ha sido definido." @@ -5136,7 +5303,7 @@ msgstr "" "este mensaje, significa que se está mostrando por error y puede descartarlo." #: includes/payment-gateway-2checkout.php:101 -#: includes/payment-gateway-paypal-standard.php:140 +#: includes/payment-gateway-paypal-standard.php:142 msgid "" "The amount you have paid does not match the required amount for this " "transaction. Please contact us to clarify the problem." @@ -5145,7 +5312,7 @@ msgstr "" "transacción. Por favor, contáctatenos para aclarar el problema." #: includes/payment-gateway-2checkout.php:109 -#: includes/payment-gateway-paypal-standard.php:148 +#: includes/payment-gateway-paypal-standard.php:150 msgid "" "There was an error processing your transaction. If funds have been deducted " "from your account, they have not been processed to our account. You will " @@ -5156,7 +5323,7 @@ msgstr "" "favor contacte al personal de PayPal para solucionar este problema." #: includes/payment-gateway-2checkout.php:119 -#: includes/payment-gateway-paypal-standard.php:158 +#: includes/payment-gateway-paypal-standard.php:160 msgid "" "It appears this transaction has already been processed. If you do not see " "your ad in the system please contact the site adminstrator for assistance." @@ -5166,7 +5333,7 @@ msgstr "" "Administrador para recibir asistencia." #. translators: %s link url. -#: includes/payment-gateway-paypal-standard.php:58 +#: includes/payment-gateway-paypal-standard.php:60 msgid "" "We haven't received your payment information from PayPal yet and we are " "unable to verify your transaction. Please reload this page or visit %2$s en 30 segundos para continuar publicando tu anuncio." #. translators: %s status %d variables count. -#: includes/payment-gateway-paypal-standard.php:62 +#: includes/payment-gateway-paypal-standard.php:64 msgid "" "PayPal returned the following status from your payment: %1$s. %2$d payment " "variables were posted." @@ -5185,7 +5352,7 @@ msgstr "" "PayPal respondió con el siguiente estado para tu pago: %1$s. %2$d variables " "de pago fueron publicadas." -#: includes/payment-gateway-paypal-standard.php:64 +#: includes/payment-gateway-paypal-standard.php:66 msgid "" "If this status is not COMPLETED or VERIFIED, then you may need to wait a bit " "before your payment is approved, or contact PayPal directly as to the reason " @@ -5196,12 +5363,12 @@ msgstr "" "contacto con PayPal directamente para conocer los motivos del retraso del " "pago." -#: includes/payment-gateway-paypal-standard.php:67 +#: includes/payment-gateway-paypal-standard.php:69 msgid "" "If you have any further questions, please contact this site administrator." msgstr "Si tiene más preguntas, por favor contacte con el Administrador." -#: includes/payment-gateway-paypal-standard.php:183 +#: includes/payment-gateway-paypal-standard.php:185 msgid "" "We couldn't determine the payment status for your transaction. Please " "contact customer service if you are viewing this message after having made a " @@ -5214,7 +5381,7 @@ msgstr "" "Administrador. Si por el contrario, no trató de hacer un pago y esta viendo " "este mensaje, significa que se está mostrando por error y puede descartarlo." -#: includes/payment-gateway-paypal-standard.php:289 +#: includes/payment-gateway-paypal-standard.php:291 msgid "The payment transaction was canceled by the user." msgstr "La transacción de pago fue cancelada por el usuario." @@ -5270,11 +5437,11 @@ msgstr "El correo electrónico es obligatorio." msgid "Free Listing" msgstr "Anuncio Gratuito" -#: includes/payment-term-fee.php:129 +#: includes/payment-term-fee.php:145 msgid "The Fee doesn't exist." msgstr "El plan de pagos no existe." -#: includes/payment-term-fee.php:149 +#: includes/payment-term-fee.php:165 msgid "" "The Fee can't be deleted because there are active Ads in the system that are " "associated with the Fee ID." @@ -5282,7 +5449,7 @@ msgstr "" "El plan de pago no puede ser eliminado porque hay anuncios actualmente " "activos asociados al ID de dicho Plan." -#: includes/payment-term-fee.php:255 +#: includes/payment-term-fee.php:269 msgid "The recipient Fee doesn't exists." msgstr "El plan de pago especificado no existe." @@ -5314,30 +5481,38 @@ msgstr "" msgid "The price must be equal or greater than zero." msgstr "El precio debe ser mayor o igual a cero." -#: includes/payment-terms-table.php:156 includes/payments-api.php:441 +#: includes/payment-terms-table.php:200 includes/payments-api.php:446 msgid "The selected payment type can't be used in this kind of transaction." msgstr "" "El tipo de pago seleccionado no puede ser usado en este tipo de transacción." -#: includes/payment-terms-table.php:161 includes/payments-api.php:446 +#: includes/payment-terms-table.php:205 includes/payments-api.php:451 msgid "The selected payment term can't be used in this kind of transaction." msgstr "" "El término de pago seleccionado no puede ser usado en este tipo de " "transacción." -#: includes/payments-api.php:184 +#: includes/payments-api.php:189 msgid "" "{credit-plan-name} ({credit-plan-credits} credits for {credit-plan-price})" msgstr "" "{credit-plan-name} ({credit-plan-credits} créditos para {credit-plan-price})" -#: includes/payments-api.php:489 +#: includes/payments-api.php:497 msgid "" "The specified payment transaction doesn't exists. We can't process your " "payment." msgstr "La transacción especificada no existe. No podemos procesar su pago." -#: includes/payments-api.php:490 includes/payments-api.php:502 +#: includes/payments-api.php:502 +msgid "" +"The payment method associated with this transaction is not available at this " +"time. We can't process your payment." +msgstr "" +"El método de pago asociado a esta transacción no está disponible en este " +"momento. No podemos procesar su pago." + +#: includes/payments-api.php:507 msgid "" "Please contact customer service if you are viewing this message after having " "made a payment. If you have not tried to make a payment and you are viewing " @@ -5349,35 +5524,27 @@ msgstr "" "pago, significa que el mensaje se ha mostrado por error y puede ignorarlo." #. translators: %s link HTML -#: includes/payments-api.php:493 includes/payments-api.php:505 +#: includes/payments-api.php:511 #, fuzzy msgid "Return to %shome page" msgstr "Regresar a %s" -#: includes/payments-api.php:501 -msgid "" -"The payment method associated with this transaction is not available at this " -"time. We can't process your payment." -msgstr "" -"El método de pago asociado a esta transacción no está disponible en este " -"momento. No podemos procesar su pago." - -#: includes/payments-api.php:687 +#: includes/payments-api.php:695 msgid "" "You currently have %1$s credits in your account. The balance after this " "transaction is completed successfully will be %2$s." msgstr "" #. translators: %s credit balance -#: includes/payments-api.php:702 +#: includes/payments-api.php:721 msgid "You currently have %s credits in your account." msgstr "Usted tiene actualmente %s créditos en su cuenta." -#: includes/payments-api.php:818 includes/payments-api.php:869 +#: includes/payments-api.php:923 includes/payments-api.php:987 msgid "Payment Completed" msgstr "Pago completado" -#: includes/payments-api.php:821 +#: includes/payments-api.php:926 msgid "" "Your Payment has been processed successfully. Please press the button below " "to continue with the process." @@ -5385,7 +5552,7 @@ msgstr "" "Su pago se ha procesado con éxito. Por favor, presione el botón de abajo " "para continuar con el proceso." -#: includes/payments-api.php:823 +#: includes/payments-api.php:928 msgid "" "Your Payment has been processed successfully. However is still pending " "approvation from the payment gateway. Please press the button below to " @@ -5395,11 +5562,11 @@ msgstr "" "pendiente de aprobación por parte de la pasarela de pagos. Por favor, " "presione el botón que aparece debajo para continuar con el proceso." -#: includes/payments-api.php:828 +#: includes/payments-api.php:933 msgid "Payment Not Required" msgstr "No requiere pago" -#: includes/payments-api.php:829 +#: includes/payments-api.php:934 msgid "" "No Payment is required for this transaction. Please press the button below " "to continue with the process." @@ -5407,11 +5574,11 @@ msgstr "" "Esta transacción no requiere pago. Por favor, presione el botón que aparece " "abajo para continuar con el proceso." -#: includes/payments-api.php:834 includes/payments-api.php:875 +#: includes/payments-api.php:939 includes/payments-api.php:993 msgid "Payment Failed" msgstr "Error en el pago" -#: includes/payments-api.php:835 +#: includes/payments-api.php:940 msgid "" "Your Payment has been processed successfully. However, the payment gateway " "didn't return a payment status that allows us to continue with the process. " @@ -5422,21 +5589,21 @@ msgstr "" "compra. Por favor, póngase en contacto con el Administrador del sitio para " "resolver este problema." -#: includes/payments-api.php:838 includes/payments-api.php:871 +#: includes/payments-api.php:943 includes/payments-api.php:989 msgid "Payment Canceled" msgstr "Pago cancelado" -#: includes/payments-api.php:839 +#: includes/payments-api.php:944 msgid "The Payment transaction was canceled. You can't post an Ad this time." msgstr "" "La transacción de pago fue cancelada. Usted no puede publicar un anuncio en " "este momento." -#: includes/payments-api.php:842 +#: includes/payments-api.php:947 msgid "Waiting on Confirmation" msgstr "Esperando confirmación" -#: includes/payments-api.php:843 +#: includes/payments-api.php:948 msgid "" "The payment gateway is taking a bit longer than expected to confirm your " "payment. Please wait a few seconds while we verify the transaction. The page " @@ -5446,11 +5613,11 @@ msgstr "" "Por favor, espere unos segundos mientras verificamos la transacción. La " "página se cargara de nuevo automáticamente." -#: includes/payments-api.php:846 +#: includes/payments-api.php:950 msgid "Payment Error" msgstr "Error de pago" -#: includes/payments-api.php:847 +#: includes/payments-api.php:951 msgid "" "There was an error processing your payment. The payment status couldn't be " "found. Please contact the website admin to solve this issue." @@ -5459,7 +5626,7 @@ msgstr "" "pudo encontrar. Por favor, póngase en contacto con el Administrador del " "sitio Web para resolver este problema." -#: includes/payments-api.php:873 +#: includes/payments-api.php:991 msgid "Payment Not Verified" msgstr "Pago no verificado" @@ -5744,16 +5911,16 @@ msgstr "Convertir las URLs en enlaces clickables" msgid "Add no follow to links in Ads" msgstr "Agregar nofollow a los enlaces en los anuncios" -#: includes/settings/class-display-settings.php:220 -#: includes/settings/class-display-settings.php:225 +#: includes/settings/class-display-settings.php:219 +#: includes/settings/class-display-settings.php:224 msgid "Classifieds Bar" msgstr "Barra de Clasificados" -#: includes/settings/class-display-settings.php:230 +#: includes/settings/class-display-settings.php:229 msgid "Show Classifieds Bar" msgstr "Mostrar la Barra de Clasificados" -#: includes/settings/class-display-settings.php:233 +#: includes/settings/class-display-settings.php:232 msgid "" "The Classifieds Bar is a section shown at the top of the plugin pages, " "displaying a Search Bar and multiple menu items. Each element of the bar can " @@ -5764,35 +5931,35 @@ msgstr "" "items de menu. Cada elemento de la barra puede ser activado o desactivado " "con las opciones que aparecen abajo." -#: includes/settings/class-display-settings.php:238 +#: includes/settings/class-display-settings.php:237 msgid "Show Search Bar" msgstr "Mostrar barra de búsqueda" -#: includes/settings/class-display-settings.php:249 +#: includes/settings/class-display-settings.php:248 msgid "Show Place Ad menu item" msgstr "Mostrar el item de menú Publicar Anuncio" -#: includes/settings/class-display-settings.php:260 +#: includes/settings/class-display-settings.php:259 msgid "Show Edit Ad menu item" msgstr "Mostrar el item de menú Editar Anuncio" -#: includes/settings/class-display-settings.php:271 +#: includes/settings/class-display-settings.php:270 msgid "Show Browse Ads menu item" msgstr "Mostrar el item de menú Explorar Anuncios" -#: includes/settings/class-display-settings.php:282 +#: includes/settings/class-display-settings.php:281 msgid "Show Search Ads menu item" msgstr "Mostrar el item de menú Buscar Anuncios" -#: includes/settings/class-display-settings.php:308 +#: includes/settings/class-display-settings.php:307 msgid "Form Steps" msgstr "Lista de Pasos del Formulario" -#: includes/settings/class-display-settings.php:317 +#: includes/settings/class-display-settings.php:316 msgid "Show Form Steps" msgstr "Mostrar Lista de Pasos del Formulario" -#: includes/settings/class-display-settings.php:320 +#: includes/settings/class-display-settings.php:319 msgid "" "If checked, when a user is creating a new listing, a list of steps will be " "shown at the top of the forms." @@ -5800,23 +5967,23 @@ msgstr "" "Si está chequeada, una lista de pasos será mostrada sobre el formulario que " "el usuario debe llenar cuando esté creando un anuncio." -#: includes/settings/class-display-settings.php:328 +#: includes/settings/class-display-settings.php:327 msgid "User Field" msgstr "Campo de Usuario" -#: includes/settings/class-display-settings.php:330 +#: includes/settings/class-display-settings.php:329 msgid "Dropdown" msgstr "Desplegable" -#: includes/settings/class-display-settings.php:330 +#: includes/settings/class-display-settings.php:329 msgid "Autocomplete" msgstr "Autocompletado" -#: includes/settings/class-display-settings.php:332 +#: includes/settings/class-display-settings.php:331 msgid "HTML Widget for User field" msgstr "Widget HTML usado para el campo de usuario" -#: includes/settings/class-display-settings.php:332 +#: includes/settings/class-display-settings.php:331 msgid "" "The user field can be represented with an HTML dropdown or a text field with " "autocomplete capabilities. Using the dropdown is faster if you have a small " @@ -5830,17 +5997,17 @@ msgstr "" "muchos usuarios registrados, el desplegable puede tardarse mucho en " "mostrarse; en ese caso usar la versión con autocompletado es una mejor idea." -#: includes/settings/class-display-settings.php:333 +#: includes/settings/class-display-settings.php:332 msgid "Show User Field on Search" msgstr "Mostrar campo de usuario en el formulario de búsqueda" -#: includes/settings/class-display-settings.php:333 +#: includes/settings/class-display-settings.php:332 msgid "Show as \"Posted By\" in search form?" msgstr "" "¿Quiere mostrar el campo de usuario en el formulario de búsqueda con la " "etiqueta \"Publicado Por\"?" -#: includes/settings/class-display-settings.php:338 +#: includes/settings/class-display-settings.php:337 msgid "" "Overwrite information in contact fields when a different listing owner is " "selected" @@ -5848,7 +6015,7 @@ msgstr "" "Sobrescribir la información en los campos de contacto cuando seleccione un " "usuario propietario diferente para el anuncio" -#: includes/settings/class-display-settings.php:341 +#: includes/settings/class-display-settings.php:340 msgid "" "If this setting is enabled, when an administrator is editing a listing and " "he changes the selected value in the User/Owner field, the information in " @@ -5864,11 +6031,11 @@ msgstr "" "esos campos) usando la información del nuevo usuario seleccionado. Las " "modificaciones serán almacenadas cuando presione el botón Continuar." -#: includes/settings/class-display-settings.php:347 +#: includes/settings/class-display-settings.php:346 msgid "User's name format" msgstr "Formato para el Nombre del Usuario" -#: includes/settings/class-display-settings.php:350 +#: includes/settings/class-display-settings.php:349 msgid "" "The selected format will be used to show a user's name in dropdown fields, " "text fields and templates." @@ -5876,17 +6043,17 @@ msgstr "" "El formato seleccionado será usado para mostrar el nombre de los usuarios en " "los desplegables, campos de texto y plantillas." -#: includes/settings/class-display-settings.php:365 +#: includes/settings/class-display-settings.php:364 msgid "Contact Fields" msgstr "Información de Contacto" -#: includes/settings/class-display-settings.php:370 +#: includes/settings/class-display-settings.php:369 msgid "Allow logged in users to overwrite Contact Name and Contact Email" msgstr "" "Permitirle a los usuarios registrados sobrescribir el nombre y dirección de " "correo electrónico de contacto" -#: includes/settings/class-display-settings.php:373 +#: includes/settings/class-display-settings.php:372 msgid "" "Normally registered users who are not administrators are not allowed to " "change the email address or contact name. The fields are rendered as read-" @@ -5900,31 +6067,31 @@ msgstr "" "la información del perfíl de cada usuario. Si esta opción está habilitada, " "los usuarios registrados podrán sobrescribir los valores en esos campos." -#: includes/settings/class-display-settings.php:380 +#: includes/settings/class-display-settings.php:379 msgid "Show Phone field" msgstr "Mostrar el campo Teléfono" -#: includes/settings/class-display-settings.php:380 +#: includes/settings/class-display-settings.php:379 msgid "Show phone field?" msgstr "¿Mostrar el campo Teléfono?" -#: includes/settings/class-display-settings.php:382 +#: includes/settings/class-display-settings.php:381 msgid "Require Phone" msgstr "Requerir Teléfono" -#: includes/settings/class-display-settings.php:382 +#: includes/settings/class-display-settings.php:381 msgid "Require phone on Place Ad and Edit Ad forms?" msgstr "" "¿Quiere marcar el campo Teléfono como requerido en los formularios para " "editar y publicar anuncios?" -#: includes/settings/class-display-settings.php:387 +#: includes/settings/class-display-settings.php:386 msgid "Show Phone Field only to registered users" msgstr "Mostrar el campo Teléfono solo a usuarios registrados" -#: includes/settings/class-display-settings.php:390 -#: includes/settings/class-display-settings.php:405 -#: includes/settings/class-display-settings.php:430 +#: includes/settings/class-display-settings.php:389 +#: includes/settings/class-display-settings.php:404 +#: includes/settings/class-display-settings.php:429 msgid "" "This setting restricts viewing of this field so that only registered users " "that are logged in can see it." @@ -5932,59 +6099,59 @@ msgstr "" "Esta opción restringe la visibilidad de este campo para que solo usuarios " "registrados que han iniciado sesión puedan verlo." -#: includes/settings/class-display-settings.php:395 +#: includes/settings/class-display-settings.php:394 msgid "Show Website field" msgstr "Mostrar el campo Sitio Web" -#: includes/settings/class-display-settings.php:395 +#: includes/settings/class-display-settings.php:394 msgid "Show website field?" msgstr "¿Mostrar el campo Sitio Web?" -#: includes/settings/class-display-settings.php:397 +#: includes/settings/class-display-settings.php:396 msgid "Require Website" msgstr "Requerir el campo Sitio Web" -#: includes/settings/class-display-settings.php:397 +#: includes/settings/class-display-settings.php:396 msgid "Require website on Place Ad and Edit Ad forms?" msgstr "" "¿Quiere marcar el campo sitio web como requerido en los formularios para " "editar y publicar anuncios?" -#: includes/settings/class-display-settings.php:402 +#: includes/settings/class-display-settings.php:401 msgid "Show Website Field only to registered users" msgstr "Mostrar el campo Sitio Web solo a usuarios registrados" -#: includes/settings/class-display-settings.php:410 +#: includes/settings/class-display-settings.php:409 msgid "Show Price field" msgstr "Mostrar el campo Precio" -#: includes/settings/class-display-settings.php:410 +#: includes/settings/class-display-settings.php:409 msgid "Show price field?" msgstr "¿Mostrar el campo Precio?" -#: includes/settings/class-display-settings.php:415 +#: includes/settings/class-display-settings.php:414 msgid "Show price field on search form" msgstr "Mostrar el campo precio en el formulario de búsqueda" -#: includes/settings/class-display-settings.php:422 +#: includes/settings/class-display-settings.php:421 msgid "Require Price" msgstr "Requerir el campo Precio" -#: includes/settings/class-display-settings.php:422 +#: includes/settings/class-display-settings.php:421 msgid "Require price on Place Ad and Edit Ad forms?" msgstr "" "¿Quiere marcar el campo precio como requerido en los formularios para editar " "y publicar anuncios?" -#: includes/settings/class-display-settings.php:427 +#: includes/settings/class-display-settings.php:426 msgid "Show Price Field only to registered users" msgstr "Mostrar el campo Precio solo a usuarios registrados" -#: includes/settings/class-display-settings.php:433 +#: includes/settings/class-display-settings.php:432 msgid "Hide Price field if empty or zero" msgstr "Ocultar el campo precio si el valor es cero o está vacío" -#: includes/settings/class-display-settings.php:433 +#: includes/settings/class-display-settings.php:432 msgid "" "If checked all price placeholders will be replaced with an empty string when " "the price of the Ad is zero or was not set." @@ -5993,7 +6160,7 @@ msgstr "" "anuncio serán reemplazados con una cadena vacía cuando el precio del anuncio " "sea cero o no haya sido definido." -#: includes/settings/class-display-settings.php:440 +#: includes/settings/class-display-settings.php:439 msgid "" "Go to the admin section to change the order in which " "the fields mentioned below are shown to users in the Ad Details form." @@ -6002,33 +6169,33 @@ msgstr "" "cambiar el orden en que aparecen los campos mencionados debajo en el " "formulario para ingresar los detalles del anuncio." -#: includes/settings/class-display-settings.php:452 +#: includes/settings/class-display-settings.php:451 msgid "Form Fields Behavior" msgstr "Comportamiento de los campos de formulario" -#: includes/settings/class-display-settings.php:461 +#: includes/settings/class-display-settings.php:460 #: templates/admin/import/supported-csv-headers.tpl.php:18 msgid "Field" msgstr "Campo" -#: includes/settings/class-display-settings.php:462 +#: includes/settings/class-display-settings.php:461 msgid "Show field on form" msgstr "Mostrar campo en el formulario" -#: includes/settings/class-display-settings.php:463 +#: includes/settings/class-display-settings.php:462 msgid "Show field on search form" msgstr "Mostrar campo en el formulario de búsqueda" -#: includes/settings/class-display-settings.php:464 +#: includes/settings/class-display-settings.php:463 #: templates/admin/import/supported-csv-headers.tpl.php:19 msgid "Required" msgstr "Requerido" -#: includes/settings/class-display-settings.php:465 +#: includes/settings/class-display-settings.php:464 msgid "Show value to registered users only" msgstr "Solo mostrar el valor a usuarios registrados" -#: includes/settings/class-display-settings.php:469 +#: includes/settings/class-display-settings.php:468 msgid "Website" msgstr "Sitio Web" @@ -6132,15 +6299,15 @@ msgstr "" "asegurarse que la dirección de correo del administrador de WordPress está " "asociada a su cuenta de hospedaje." -#. translators: full-email-address=John Doe , -#. short-email-address=john.doe@example.com -#: includes/settings/class-email-settings.php:84 +#. translators: %1$s=John Doe , %2$s=john.doe@example.com +#: includes/settings/class-email-settings.php:85 +#, fuzzy msgid "" "If checked, whenever the name of the recipient is available, emails will be " -"sent to instead of just . Some " -"email servers, however, have problems handling email address that include " -"the name of the recipient. If emails sent by the plugin are not being " -"delivered properly, try unchecking this settting." +"sent to %1$s instead of just %2$s. Some email servers, however, have " +"problems handling email address that include the name of the recipient. If " +"emails sent by the plugin are not being delivered properly, try unchecking " +"this settting." msgstr "" "Cuando esta opción está marcada y el nombre del destinatario está " "disponible, los mensajes de correo serán enviados a en " @@ -6150,15 +6317,15 @@ msgstr "" "enviados por el plugin no están siendo recibidos, intenta desmarcando esta " "opción." -#: includes/settings/class-email-settings.php:91 +#: includes/settings/class-email-settings.php:93 msgid "Include the name of the recipient in the email address" msgstr "Incluir el nombre del destinatario en la dirección de correo" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "Include Ad access key in email messages" msgstr "Incluir la clave de acceso en los mensajes de correo" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "" "Include Ad access key in email notifications. You may want to uncheck this " "option if you are using the Ad Management panel, but is not necessary." @@ -6167,32 +6334,32 @@ msgstr "" "Usted puede querer deseleccionar esta opción si está usando el panel de " "administración de anuncios, pero no es necesario." -#: includes/settings/class-email-settings.php:106 +#: includes/settings/class-email-settings.php:108 msgid "Messages" msgstr "Mensajes" -#: includes/settings/class-email-settings.php:118 +#: includes/settings/class-email-settings.php:120 msgid "Ad Posted Message" msgstr "Mensaje del Anuncio publicado" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject for Ad posted notification email" msgstr "Asunto para el mensaje de notificación por Anuncio Publicado" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Your Classified Ad listing has been submitted" msgstr "Su anuncio clasificado ha sido enviado" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject line for email sent out when someone posts an Ad" msgstr "" "Asunto para el mensaje de correo enviado cuando alguien publica un anuncio" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Body for Ad posted notification email" msgstr "Contenido para el mensaje de notificación por Anuncio Publicado" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "" "Thank you for submitting your Classified Ad. The details of your ad are " "shown below." @@ -6200,66 +6367,66 @@ msgstr "" "Gracias por enviar su anuncio clasificado. Los detalles de su anuncio " "aparecen debajo." -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Message body text for email sent out when someone posts an Ad" msgstr "Cuerpo para el mensaje enviado cuando alguien publica un anuncio" -#: includes/settings/class-email-settings.php:127 +#: includes/settings/class-email-settings.php:129 msgid "Reply to Ad Message" msgstr "Responder al Anuncio" -#: includes/settings/class-email-settings.php:132 +#: includes/settings/class-email-settings.php:134 msgid "Response notification for listing owners" msgstr "Notificación de respuesta para propietarios de anuncios" -#: includes/settings/class-email-settings.php:139 +#: includes/settings/class-email-settings.php:141 msgid "" "Subject and body template for email sent out when someone replies to an ad." msgstr "" "Plantilla para el asunto y el cuerpo del mensaje de correo electrónico " "enviado cuando alguien responde a un anuncio." -#: includes/settings/class-email-settings.php:141 -#: includes/settings/class-email-settings.php:167 +#: includes/settings/class-email-settings.php:143 +#: includes/settings/class-email-settings.php:169 msgid "The name of the person who replied." msgstr "El nombre de la personas que respondió." -#: includes/settings/class-email-settings.php:142 -#: includes/settings/class-email-settings.php:168 +#: includes/settings/class-email-settings.php:144 +#: includes/settings/class-email-settings.php:170 msgid "The email adderss of the person who replied." msgstr "La dirección de correo electrónico de la persona que respondió." -#: includes/settings/class-email-settings.php:143 -#: includes/settings/class-email-settings.php:169 -#: includes/settings/class-email-settings.php:206 +#: includes/settings/class-email-settings.php:145 +#: includes/settings/class-email-settings.php:171 +#: includes/settings/class-email-settings.php:208 msgid "The title of the ad where the reply was posted." msgstr "El title del anuncio donde se publicó la respuesta." -#: includes/settings/class-email-settings.php:144 -#: includes/settings/class-email-settings.php:170 +#: includes/settings/class-email-settings.php:146 +#: includes/settings/class-email-settings.php:172 msgid "The URL for the ad where the reply was posted." msgstr "La URL del anuncio donde se publicó la respuesta." -#: includes/settings/class-email-settings.php:145 -#: includes/settings/class-email-settings.php:171 +#: includes/settings/class-email-settings.php:147 +#: includes/settings/class-email-settings.php:173 msgid "The content of the reply." msgstr "El contenido de la respuesta." -#: includes/settings/class-email-settings.php:146 -#: includes/settings/class-email-settings.php:172 +#: includes/settings/class-email-settings.php:148 +#: includes/settings/class-email-settings.php:174 msgid "The title of this website" msgstr "El título de este sitio web" -#: includes/settings/class-email-settings.php:147 -#: includes/settings/class-email-settings.php:173 +#: includes/settings/class-email-settings.php:149 +#: includes/settings/class-email-settings.php:175 msgid "The URL of this website's homepage" msgstr "La URL del la página principal de este sitio web" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "Notify admin about contact message" msgstr "Notificar al Administrador acerca de el mensaje de contacto" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "" "An email will be sent to the administrator every time a visitor sends a " "message to one of the Ad posters through the Reply to Ad page." @@ -6268,11 +6435,11 @@ msgstr "" "visitante envíe un mensaje a uno de los anunciantes a través de la página " "Responder al anuncio." -#: includes/settings/class-email-settings.php:158 +#: includes/settings/class-email-settings.php:160 msgid "Response notification for administrators" msgstr "Notificación de respuesta para administradores" -#: includes/settings/class-email-settings.php:165 +#: includes/settings/class-email-settings.php:167 msgid "" "Subject and body template for email sent out to administrators when someone " "replies to an ad." @@ -6281,19 +6448,19 @@ msgstr "" "enviado a los administradores cuando alguien publica una respuesta a un " "anuncio." -#: includes/settings/class-email-settings.php:183 +#: includes/settings/class-email-settings.php:185 msgid "Resend Access Key Message" msgstr "Reenviar clave de acceso" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "Subject for Request Ad Access Key email" msgstr "Asunto para el mensaje Solicitar Clave de Acceso" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "The Classified Ad's ad access key you requested" msgstr "La clave de acceso del anuncio clasificado que usted pidió" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "" "Subject line for email sent out when someone requests their ad access key " "resent" @@ -6301,11 +6468,11 @@ msgstr "" "Asunto para el mensaje de correo enviado cuando alguien solicita el reenvío " "de sus claves de acceso" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "Body for Request Ad Access Key email" msgstr "Contenido para el mensaje Solicitar Clave de Acceso" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "You asked to have your Classified Ad's access key resent. Below are all the " "Ad access keys in the system that are tied to the email address you provided" @@ -6314,7 +6481,7 @@ msgstr "" "clasificado. Debajo aparecen todas las claves de acceso que están en el " "sistema, asociadas a la dirección de correo que usted suministró" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "Message body text for email sent out when someone requests their ad access " "key resent" @@ -6322,66 +6489,107 @@ msgstr "" "Contenido para el mensaje de correo enviado cuando alguien solicita el " "reenvío de sus claves de acceso" -#: includes/settings/class-email-settings.php:192 +#: includes/settings/class-email-settings.php:194 msgid "Verify Email Message" msgstr "Mensaje de Verificación" -#: includes/settings/class-email-settings.php:197 +#: includes/settings/class-email-settings.php:199 msgid "Subject and body for verify email message" msgstr "Asunto y cuerpo para el mensaje de correo electrónico de verificación" -#: includes/settings/class-email-settings.php:200 +#: includes/settings/class-email-settings.php:202 msgid "Verify the email address used for Ad {listing_title}" msgstr "" "Verifica la dirección de correo electrónico usada para el anuncio " "{listing_title}" -#: includes/settings/class-email-settings.php:204 +#: includes/settings/class-email-settings.php:203 +#, fuzzy +msgid "" +"Hello {author_name} \n" +"\n" +"You recently posted the Ad {listing_title} to {website_title}. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"{verification_link} \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"{website_title}\n" +"\n" +"{website_url}" +msgstr "" +"Hola {author_name} \n" +"\n" +"Hace poco publicaste el anuncio {listing_title} en {website_title}. \n" +"\n" +"Es necesario que verifiques tu dirección de correo electrónico para " +"completar el proceso de publicación. Por favor haz clic en el enlace que " +"está más abajo para realizar el proceso de verificación. Al terminar serás " +"dirigido al sitio donde podrás ver tu anuncio. \n" +"\n" +"{verification_link} \n" +"\n" +"Una vez verifiques tu dirección de correo electrónico, el administrador será " +"notificado sobre tu anuncio. Si el administrador debe aprobar los anuncios " +"nuevos, tu anuncio permanecerá inactivo hasta que el administrador lo " +"apruebe.\n" +"\n" +"{website_title}\n" +"\n" +"{website_url}" + +#: includes/settings/class-email-settings.php:206 msgid "" "Subject and body template for email sent out to verify the email address." msgstr "" "Plantilla para el asunto y cuerpo del mensaje de correo electrónico enviado " "para verificar la dirección de correo electrónico" -#: includes/settings/class-email-settings.php:207 +#: includes/settings/class-email-settings.php:209 msgid "The name of the owner of the listing." msgstr "El nombre del propietario del anuncio." -#: includes/settings/class-email-settings.php:208 +#: includes/settings/class-email-settings.php:210 msgid "Verification link." msgstr "Enlace de verificación." -#: includes/settings/class-email-settings.php:209 +#: includes/settings/class-email-settings.php:211 msgid "The title of this website." msgstr "El título de este sitio web." -#: includes/settings/class-email-settings.php:210 +#: includes/settings/class-email-settings.php:212 msgid "The URL of this webiste's homepage." msgstr "La URL de la página principal de este sitio web." -#: includes/settings/class-email-settings.php:220 +#: includes/settings/class-email-settings.php:222 msgid "Incomplete Payment Message" msgstr "Mensaje de pago incompleto" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "Subject for Incomplete Payment email" msgstr "Asunto para el mensaje Pago Incompleto" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "There was a problem processing your payment" msgstr "Ocurrió un error al procesar su pago" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "" "Subject line for email sent out when the payment processing does not complete" msgstr "" "Asunto para el mensaje enviado cuando el proceso de un pago no se completa" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "Body for Incomplete Payment email" msgstr "Contenido para el mensaje Pago Incompleto" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "There was a problem encountered during your attempt to submit payment. If " "funds were removed from the account you tried to use to make a payment " @@ -6393,38 +6601,38 @@ msgstr "" "contacte al Administrador del sitio o al Servicio al Cliente en el sitio de " "pagos." -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "Message body text for email sent out when the payment processing does not " "complete" msgstr "" "Contenido para el mensaje enviado cuando el proceso de un pago no se completa" -#: includes/settings/class-email-settings.php:229 +#: includes/settings/class-email-settings.php:231 msgid "Renew Ad Message" msgstr "Mensaje de Renovación de Anuncio" -#: includes/settings/class-email-settings.php:234 +#: includes/settings/class-email-settings.php:236 msgid "Subject for Renew Ad email" msgstr "Asunto para el mensaje Renovar Anuncio" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:237 +#: includes/settings/class-email-settings.php:239 msgid "Your ad will expire in %d days." msgstr "Tu anuncio caducará en %d días." -#: includes/settings/class-email-settings.php:238 +#: includes/settings/class-email-settings.php:240 msgid "Subject line for email sent out when an Ad is about to expire." msgstr "" "Asunto para el mensaje enviado cuando un anuncio está a punto de expirar." -#: includes/settings/class-email-settings.php:244 -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:246 +#: includes/settings/class-email-settings.php:270 msgid "Body for Renew Ad email" msgstr "Contenido para el mensaje Renovar Anuncio" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:247 +#: includes/settings/class-email-settings.php:249 msgid "" "This is an automated notification that your Classified Ad will expire in %d " "days." @@ -6435,7 +6643,7 @@ msgstr "" #. translators: %d in this case is used to remind the user they can enter '%d' #. in the textarea where they want the plugin to replace the number of days #. until the ad expires. -#: includes/settings/class-email-settings.php:249 +#: includes/settings/class-email-settings.php:251 msgid "" "Message body text for email sent out when an Ad is about to expire. Use %d " "as placeholder for the number of days before the Ad expires." @@ -6444,118 +6652,118 @@ msgstr "" "expirar. Use %d como un marcador para mostrar el número de días antes de que " "un anuncio expire." -#: includes/settings/class-email-settings.php:256 +#: includes/settings/class-email-settings.php:258 msgid "Ad Renewed Message" msgstr "Mensaje de Renovación de Anuncio" -#: includes/settings/class-email-settings.php:261 +#: includes/settings/class-email-settings.php:263 msgid "Subject for Ad Renewed email" msgstr "Asunto para el mensaje Anuncio Renovado" #. translators: %s is the title of the ad. -#: includes/settings/class-email-settings.php:264 +#: includes/settings/class-email-settings.php:266 msgid "Your ad \"%s\" has been successfully renewed." msgstr "Tu anuncio \"%s\" fue renovado satisfactoriamente." -#: includes/settings/class-email-settings.php:265 +#: includes/settings/class-email-settings.php:267 msgid "Subject line for email sent out when an Ad is successfully renewed." msgstr "" "Asunto para el mensaje enviado cuando un anuncio es renovado exitosamente." -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "Your ad has been successfully renewed. More information below:" msgstr "" "Tu anuncio fue renovado satisfactoriamente. Más información a continuación:" -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "" "Message body text for email sent out when an Ad is successfully renewed. " msgstr "" "Asunto para el mensaje enviado cuando un anuncio es renovado exitosamente." -#: includes/settings/class-email-settings.php:274 +#: includes/settings/class-email-settings.php:276 msgid "Ad Expired Message" msgstr "Mensaje de Anuncio expirado" -#: includes/settings/class-email-settings.php:279 +#: includes/settings/class-email-settings.php:281 msgid "Subject for Ad Expired email" msgstr "Asunto para el mensaje Anuncio Expiró" #. translators: %s is the name of the website. -#: includes/settings/class-email-settings.php:282 +#: includes/settings/class-email-settings.php:284 msgid "Your ad at %s has expired" msgstr "Tu anuncio en %s ha caducado" -#: includes/settings/class-email-settings.php:283 +#: includes/settings/class-email-settings.php:285 msgid "Subject line for email sent out when an ad has auto-expired" msgstr "Asunto para el mensaje enviado cuando un anuncio expira" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Body for Ad Expired email" msgstr "Contenido para el mensaje Anuncio Expiró" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "This is an automated notification that your ad has expired." msgstr "" "Esta es una notificación automática para informarle que su anuncio ha " "caducado." -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Message body text for email sent out when an ad has auto-expired" msgstr "Contenido para el mensaje enviado cuando un anuncio expira" -#: includes/settings/class-email-settings.php:295 +#: includes/settings/class-email-settings.php:297 #: includes/settings/class-general-settings.php:599 msgid "Advanced" msgstr "Avanzado" -#: includes/settings/class-email-settings.php:305 +#: includes/settings/class-email-settings.php:307 msgid "Advanced Email Configuration" msgstr "Configuración de correo electrónico avanzada" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enable external SMTP server" msgstr "Usar un servidor SMTP externo" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enabled external SMTP server (if emails not processing normally)." msgstr "" "Usar un servidor SMTP externo (si los mensajes no se están procesando " "normalmente)." -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host" msgstr "SMTP host" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host (if emails not processing normally)." msgstr "Dirección del servidor SMTP." -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port" msgstr "Puerto SMTP" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port (if emails not processing normally)." msgstr "Puerto del servidor SMTP." -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username" msgstr "Usuario SMTP" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username (if emails not processing normally)." msgstr "Nombre de usuario para el servidor SMTP." -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password" msgstr "Contraseña SMTP" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password (if emails not processing normally)." msgstr "Contraseña del servidor SMTP." -#: includes/settings/class-email-settings.php:316 +#: includes/settings/class-email-settings.php:318 msgid "" " is not a valid email address. Please check the value you entered " "to use as the FROM email address for outgoing messages." @@ -6564,7 +6772,7 @@ msgstr "" "verifique el valor que ingresó para usar como la dirección de correo " "electrónico en el campo DE de los mensajes salientes." -#: includes/settings/class-email-settings.php:317 +#: includes/settings/class-email-settings.php:319 msgid "" " is not a valid email address. Please check the value you entered " "to use as recipient email address for admin notifications." @@ -7637,15 +7845,18 @@ msgstr "" "combinando la URL asignada para utilizar el servicio Webhooks y el nombre " "del evento que usted configure." -#: includes/settings/class-general-settings.php:919 +#. translators: %1$s is the link to Facebook Developer Apps page. %2$s is the +#. closing anchor tag. +#: includes/settings/class-general-settings.php:921 +#, fuzzy msgid "" -"You can find your application information in the Facebook Developer Apps page." +"You can find your application information in the %1$sFacebook Developer " +"Apps%2$s page." msgstr "" "Puede encontrar la información de su aplicación en la página Facebook " "Developer Apps." -#: includes/settings/class-general-settings.php:935 +#: includes/settings/class-general-settings.php:936 msgid "" "AWPCP needs to get an authorization token from Facebook to work correctly. " "You'll be redirected to Facebook to login. AWPCP does not store or obtain " @@ -7655,7 +7866,7 @@ msgstr "" "correctamente. Usted será re-dirigido a Facebook para iniciar sesión. AWPCP " "no almacena u obtiene información personal de su perfil." -#: includes/settings/class-general-settings.php:936 +#: includes/settings/class-general-settings.php:937 msgid "" "Please choose Public as the audience for posts made by the application, even " "if you are just testing the integration. Facebook won't allow us to post " @@ -7666,11 +7877,11 @@ msgstr "" "permite a AWPCP publicar contenido en algunos casos si usted elige una " "audiencia diferente." -#: includes/settings/class-general-settings.php:945 +#: includes/settings/class-general-settings.php:947 msgid "Click here to obtain an access token from Facebook" msgstr "Haga click aquí para obtener un token de acceso de Facebook" -#: includes/settings/class-general-settings.php:947 +#: includes/settings/class-general-settings.php:951 msgid "" "Please provide a value for the App Id and App Secret settings before trying " "to get an access token from Facebook." @@ -7678,7 +7889,7 @@ msgstr "" "Por favor ingrese un valor para las opciones ID de la aplicación y Secreto " "de la aplicación antes de intentar obtener un token de acceso de Facebook." -#: includes/settings/class-general-settings.php:958 +#: includes/settings/class-general-settings.php:960 msgid "" "Available Facebook Pages and Groups will be displayed after you enter a " "valid User Access Token." @@ -7686,18 +7897,16 @@ msgstr "" "Las páginas y grupos de Facebook disponibles aparecerán una vez ingresa u " "obtenga un token de acceso de usuario válido." -#: includes/settings/class-general-settings.php:959 +#. translators: %1$s opening anchor tag, %2$s closing anchor tag, %3$s opening +#. anchor tag, %4$s closing anchor tag, %5$s opening anchor tag, %6$s closing +#. anchor tag, %7$s opening anchor tag, %8$s closing anchor tag +#: includes/settings/class-general-settings.php:964 +#, fuzzy msgid "" -"As of April 4, 2018, all applications need to go through App Review " -"in order to get access to the Page API and Groups API. That means that you may need to submit your app for review (ask for the " -"manage_pages, publish_pages, " -"publish_to_groups permissions), before AWPCP can display the " +"All applications need to go through %1$sApp Review%2$s in order to get " +"access to the %3$sPage API%4$s and %5$sGroups API%6$s. That means that you " +"may need to %7$ssubmit your app for review%8$s (ask for the manage_pages, " +"publish_pages, publish_to_groups permissions), before AWPCP can display the " "list of pages and groups you manage and be able to post classifieds ads to " "those groups and pages." msgstr "" @@ -7715,19 +7924,19 @@ msgstr "" "lista de páginas y grupos que usted controla y publicar anuncios a esos " "grupos y páginas." -#: includes/settings/class-general-settings.php:977 +#: includes/settings/class-general-settings.php:989 msgid "None (Do not sent ads to a Facebook Page)" msgstr "Ninguna (No publicar anuncios en una página de Facebook)" -#: includes/settings/class-general-settings.php:984 +#: includes/settings/class-general-settings.php:996 msgid "(Your own profile page)" msgstr "(Su propio perfil)" -#: includes/settings/class-general-settings.php:1008 +#: includes/settings/class-general-settings.php:1020 msgid "None (Do not sent ads to a Facebook Group)" msgstr "Ninguno (No publicar anuncios en un grupo de Facebook)" -#: includes/settings/class-general-settings.php:1064 +#: includes/settings/class-general-settings.php:1076 msgid "" "Akismet SPAM control cannot be enabled because Akismet plugin is not " "installed or activated." @@ -7735,7 +7944,7 @@ msgstr "" "No se puede activar el control de SPAM Askimet porque el plugin Askimet no " "está instalado o activado." -#: includes/settings/class-general-settings.php:1068 +#: includes/settings/class-general-settings.php:1080 msgid "" "Akismet SPAM control cannot be enabled because Akismet is not properly " "configured." @@ -7743,7 +7952,7 @@ msgstr "" "No se puede activar el control de SPAM Askimet porque el plugin Askimet no " "ha sido configurado adecuadamente." -#: includes/settings/class-general-settings.php:1094 +#: includes/settings/class-general-settings.php:1106 msgid "" "reCAPTCHA can't be used because the public key and private key settings are " "required for reCAPTCHA to work properly." @@ -7751,7 +7960,7 @@ msgstr "" "reCAPTCHA no puede user usado porque se requiere un valor en la opción clave " "pública y clave privada para que reCAPTCHA funcione adecuadamente." -#: includes/settings/class-general-settings.php:1096 +#: includes/settings/class-general-settings.php:1108 msgid "" "reCAPTCHA can't be used because the public key setting is required for " "reCAPTCHA to work properly." @@ -7759,7 +7968,7 @@ msgstr "" "reCAPTCHA no puede user usado porque se require un valor en la opción clave " "pública para que reCAPTCHA funcione adecuadamente." -#: includes/settings/class-general-settings.php:1098 +#: includes/settings/class-general-settings.php:1110 msgid "" "reCAPTCHA can't be used because the private key setting is required for " "reCAPTCHA to work properly." @@ -7767,11 +7976,11 @@ msgstr "" "reCAPTCHA no puede user usado porque se requiere un valor en la opción clave " "privada para que reCAPTCHA funcione adecuadamente." -#: includes/settings/class-general-settings.php:1145 +#: includes/settings/class-general-settings.php:1157 msgid "Thousands separator and decimal separator cant be the same." msgstr "El separador de miles y el separador decimal no pueden ser lo mismo." -#: includes/settings/class-general-settings.php:1159 +#: includes/settings/class-general-settings.php:1171 msgid "" "Credit System was automatically disabled because you disabled Require " "Registration setting." @@ -7789,10 +7998,21 @@ msgid "Licenses" msgstr "Licencias" #: includes/settings/class-licenses-settings.php:64 -#: templates/admin/debug/plugin-info-debug-section.tpl.php:18 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:24 msgid "Premium Modules" msgstr "Módulos Premium" +#: includes/settings/class-licenses-settings.php:82 +#, fuzzy +msgid "" +"The IP address of your server is %s. Please make sure to include that " +"information if you need to contact support about problems trying to activate " +"your licenses." +msgstr "" +"La dirección IP de tu servidor es . Por favor asegúrate de " +"incluir esa información cuando te comuniques con el equipo de soporte para " +"reportar problemas intentando activar tus licencias." + #: includes/settings/class-listings-moderation-settings.php:22 msgid "" "Email verification was disabled because you enabled Require Registration. " @@ -8229,19 +8449,20 @@ msgstr "" "Mostrar la categoría en la barra de título del navegador cuando se está " "viendo un anuncio" -#: includes/settings/class-listings-settings.php:472 +#: includes/settings/class-listings-settings.php:473 +#, fuzzy msgid "" "Enable this setting to display each listing on its own page, instead of " -"showing the listing's content inside the page." +"showing the listing's content inside the %s page." msgstr "" "Activa esta opción para mostrar cada anuncio en su propia página, en vez de " "mostrar el contenido del anuncio dentro de la página ." -#: includes/settings/class-listings-settings.php:478 +#: includes/settings/class-listings-settings.php:480 msgid "Display listings on their own page" msgstr "Mostrar los anuncios en su propia página" -#: includes/settings/class-listings-settings.php:486 +#: includes/settings/class-listings-settings.php:488 msgid "" "Portion of the URL that appears between the website's domain and the " "listing's information. Example: in ." @@ -8249,11 +8470,11 @@ msgstr "" "Porción de la URL que aparece entre el dominio del sitio web y la " "información del anuncio. Por ejemplo: in ." -#: includes/settings/class-listings-settings.php:496 +#: includes/settings/class-listings-settings.php:498 msgid "Listings slug" msgstr "Slug para los anuncios" -#: includes/settings/class-listings-settings.php:509 +#: includes/settings/class-listings-settings.php:511 msgid "" "Include the slug of the plugin's main page () in the URL " "that points to the page of an individual listing." @@ -8261,7 +8482,7 @@ msgstr "" "Incluir el slug de la página principal () en la URL que " "apunta a la página individual de un anuncio." -#: includes/settings/class-listings-settings.php:512 +#: includes/settings/class-listings-settings.php:514 msgid "" "Include the slug of the plugin's main page in the URL that points to the " "page of an individual listing." @@ -8269,25 +8490,25 @@ msgstr "" "Incluir el slug de la página principal en la URL que apunta a la página " "individual de un anuncio." -#: includes/settings/class-listings-settings.php:518 +#: includes/settings/class-listings-settings.php:520 msgid "Include the slug of the plugin's main page in the listing URL" msgstr "Incluir el slug de la página principal en la URL del anuncio" -#: includes/settings/class-listings-settings.php:532 +#: includes/settings/class-listings-settings.php:534 msgid "Include the title in the listing URL" msgstr "Incluir el título en el enlace del anuncio" -#: includes/settings/class-listings-settings.php:535 +#: includes/settings/class-listings-settings.php:537 msgid "" "Include the title in the URL that points to the page of an individual " "listing." msgstr "Incluir el título en el enlace que apunta a la página de un anuncio." -#: includes/settings/class-listings-settings.php:541 +#: includes/settings/class-listings-settings.php:543 msgid "Include the name of the category in the listing URL" msgstr "Incluir el nombre de la categoría en el enlace del anuncio" -#: includes/settings/class-listings-settings.php:544 +#: includes/settings/class-listings-settings.php:546 msgid "" "Include the name of the category in the URL that points to the page of an " "individual listing." @@ -8295,22 +8516,22 @@ msgstr "" "Incluir el nombre de la categoría en el enlace que apunta a la página de un " "anuncio." -#: includes/settings/class-listings-settings.php:550 +#: includes/settings/class-listings-settings.php:552 msgid "Include the name of the country in the listing URL" msgstr "Incluir el nombre del país en el enlace del anuncio" -#: includes/settings/class-listings-settings.php:553 +#: includes/settings/class-listings-settings.php:555 msgid "" "Include the name of the country in the URL that points to the page of an " "individual listing." msgstr "" "Incluir el nombre del país en el enlace que apunta a la página de un anuncio." -#: includes/settings/class-listings-settings.php:559 +#: includes/settings/class-listings-settings.php:561 msgid "Include the name of the state in the listing URL" msgstr "Incluir el nombre del estado en el enlace del anuncio" -#: includes/settings/class-listings-settings.php:562 +#: includes/settings/class-listings-settings.php:564 msgid "" "Include the name of the state in the URL that points to the page of an " "individual listing." @@ -8318,11 +8539,11 @@ msgstr "" "Incluir el nombre del estado en el enlace que apunta a la página de un " "anuncio." -#: includes/settings/class-listings-settings.php:568 +#: includes/settings/class-listings-settings.php:570 msgid "Include the name of the city in the listing URL" msgstr "Incluir el nombre de la ciudad en el enlace del anuncio" -#: includes/settings/class-listings-settings.php:571 +#: includes/settings/class-listings-settings.php:573 msgid "" "Include the name of the city in the URL that points to the page of an " "individual listing." @@ -8330,11 +8551,11 @@ msgstr "" "Incluir el nombre de la ciudad en el enlace que apunta a la página de un " "anuncio." -#: includes/settings/class-listings-settings.php:577 +#: includes/settings/class-listings-settings.php:579 msgid "Include the name of the county in the listing URL" msgstr "Incluir el nombre de la villa o condado en el enlace del anuncio" -#: includes/settings/class-listings-settings.php:580 +#: includes/settings/class-listings-settings.php:582 msgid "" "Include the name of the county in the URL that points to the page of an " "individual listing." @@ -8512,7 +8733,7 @@ msgstr "" "accesadas a través de URLs seguras (HTTPS). No habilite esta característica " "si su servidor no soporta HTTPS." -#: includes/settings/class-payment-general-settings.php:109 +#: includes/settings/class-payment-general-settings.php:108 msgid "" "Force Secure URLs was not enabled because your website couldn't be accessed " "using a secure connection." @@ -8520,23 +8741,19 @@ msgstr "" "Forzar URLs seguras no fue activada porque su sitio web no puede ser " "accedido usando una conexión segura." -#: includes/settings/class-payment-general-settings.php:135 -msgid "PayPal" -msgstr "PayPal" - -#: includes/settings/class-payment-general-settings.php:140 +#: includes/settings/class-payment-general-settings.php:139 msgid "PayPal Settings" msgstr "Configuración de PayPal" -#: includes/settings/class-payment-general-settings.php:142 +#: includes/settings/class-payment-general-settings.php:141 msgid "Activate PayPal?" msgstr "¿Activar PayPal?" -#: includes/settings/class-payment-general-settings.php:146 +#: includes/settings/class-payment-general-settings.php:145 msgid "PayPal receiver email" msgstr "Correo electrónico asociado a la cuenta PayPal del vendedor" -#: includes/settings/class-payment-general-settings.php:149 +#: includes/settings/class-payment-general-settings.php:148 msgid "" "Email address for PayPal payments (if running in pay mode and if PayPal is " "activated)." @@ -8544,84 +8761,83 @@ msgstr "" "Correo electrónico para los pagos con PayPal (si el modo pago y PayPal están " "activados)." -#: includes/settings/class-payment-general-settings.php:167 +#: includes/settings/class-payment-general-settings.php:166 msgid "PayPal Merchant ID" msgstr "Identificación de Comerciante en PayPal (Merchant ID)" #: includes/settings/class-payment-general-settings.php:170 +#, fuzzy msgid "" "Merchant ID associated with the PayPal account that will receive the " -"payments. Go to https://www.paypal.com/myaccount/settings/ to obtain " -"your Merchant ID." +"payments. Go to %s to obtain your Merchant ID." msgstr "" "El ID de comerciante asociado con la cuenta PayPal que recibirá los pagos. " "Visita https://www.paypal.com/myaccount/settings/ para " "obtener tu ID de comerciante." -#: includes/settings/class-payment-general-settings.php:178 +#: includes/settings/class-payment-general-settings.php:180 msgid "The PayPal Currency Code must be one of ." msgstr "El código de moneda para PayPal debe ser uno estos: ." -#: includes/settings/class-payment-general-settings.php:183 +#: includes/settings/class-payment-general-settings.php:185 msgid "PayPal currency code" msgstr "Código de moneda para PayPal" -#: includes/settings/class-payment-general-settings.php:186 +#: includes/settings/class-payment-general-settings.php:188 msgid "The currency in which you would like to receive your PayPal payments" msgstr "La moneda en la cual quisiera recibir sus pagos a través de PayPal" -#: includes/settings/class-payment-general-settings.php:209 +#: includes/settings/class-payment-general-settings.php:211 msgid "2Checkout" msgstr "2Checkout" -#: includes/settings/class-payment-general-settings.php:214 +#: includes/settings/class-payment-general-settings.php:216 msgid "2Checkout Settings" msgstr "Configuración 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout" msgstr "Activar 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout?" msgstr "¿Activar 2Checkout?" -#: includes/settings/class-payment-general-settings.php:220 +#: includes/settings/class-payment-general-settings.php:222 msgid "2Checkout account" msgstr "Cuenta 2Checkout" -#: includes/settings/class-payment-general-settings.php:223 +#: includes/settings/class-payment-general-settings.php:225 msgid "Account for 2Checkout payments." msgstr "Cuenta para los pagos con 2Checkout." -#: includes/settings/class-payment-general-settings.php:238 +#: includes/settings/class-payment-general-settings.php:240 msgid "2Checkout Currency Code" msgstr "Código de moneda para 2Checkout" -#: includes/settings/class-payment-general-settings.php:249 +#: includes/settings/class-payment-general-settings.php:251 msgid "The currency in which you would like to receive your 2Checkout payments" msgstr "La moneda en la cual quisiera recibir sus pagos a través de 2Checkout" -#: includes/settings/class-payment-general-settings.php:261 -#: includes/settings/class-payment-general-settings.php:266 +#: includes/settings/class-payment-general-settings.php:263 +#: includes/settings/class-payment-general-settings.php:268 msgid "Credit System" msgstr "Sistema de Créditos" -#: includes/settings/class-payment-general-settings.php:269 +#: includes/settings/class-payment-general-settings.php:271 msgid "Currency" msgstr "Moneda" -#: includes/settings/class-payment-general-settings.php:271 +#: includes/settings/class-payment-general-settings.php:273 msgid "Currency & Credits" msgstr "Moneda y Crédito" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "Enable Credit System" msgstr "Habilitar el Sistema de Crédito" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "" "The Credit System allows users to purchase credit that can later be used to " "pay for placing Ads." @@ -8629,15 +8845,15 @@ msgstr "" "El Sistema de Crédito permite a los usuarios comprar crédito que pueden usar " "más tarde para pagar por publicar anuncios." -#: includes/settings/class-payment-general-settings.php:279 +#: includes/settings/class-payment-general-settings.php:281 msgid "Accepted payment type" msgstr "Tipo de pago aceptado" -#: includes/settings/class-payment-general-settings.php:282 +#: includes/settings/class-payment-general-settings.php:284 msgid "Select the type of payment that can be used to purchase Ads." msgstr "Seleccione el tipo de pago que puede ser usado para publicar anuncios." -#: includes/settings/class-payment-general-settings.php:294 +#: includes/settings/class-payment-general-settings.php:296 msgid "" "You cannot configure Credits as the only accepted payment type unless you " "enable the Credit System as well. The setting was set to accept both " @@ -8647,7 +8863,7 @@ msgstr "" "que también habilite el Sistema de Créditos. La opción fue configurada para " "aceptar Moneda y Créditos." -#: includes/settings/class-payment-general-settings.php:311 +#: includes/settings/class-payment-general-settings.php:313 msgid "" "There is a problem with the PayPal Currency Code you have entered. It does " "not match any of the codes in our list of curencies supported by PayPal." @@ -8656,11 +8872,11 @@ msgstr "" "PayPal. No coincide con ninguno de los códigos en la lista de las monedas " "soportadas." -#: includes/settings/class-payment-general-settings.php:312 +#: includes/settings/class-payment-general-settings.php:314 msgid "The available currency codes are" msgstr "Los códigos de moneda que están disponibles son" -#: includes/settings/class-payment-general-settings.php:321 +#: includes/settings/class-payment-general-settings.php:323 msgid "" "Require Registration setting was enabled automatically because you activated " "the Credit System." @@ -8668,7 +8884,7 @@ msgstr "" "La opción para requerir el registro de usuarios fue habilitado " "automáticamente porque usted activó el Sistema de Crédito." -#: includes/settings/class-payment-general-settings.php:326 +#: includes/settings/class-payment-general-settings.php:328 msgid "" "Charge Listing Fee setting was enabled automatically because you activated " "the Credit System." @@ -8676,7 +8892,7 @@ msgstr "" "La opción para cobrar por los anuncios fue habilitada automáticamente porque " "usted activó el Sistema de Crédito." -#: includes/settings/class-payment-general-settings.php:332 +#: includes/settings/class-payment-general-settings.php:334 msgid "" "Credit System was disabled automatically because you disabled Charge Listing " "Fee." @@ -8684,7 +8900,7 @@ msgstr "" "El Sistema de Crédito fue desactivado automáticamente porque usted desactivó " "la opción para cobrar por los anuncios." -#: includes/settings/renderers/class-button-settings-renderer.php:39 +#: includes/settings/renderers/class-button-settings-renderer.php:40 msgid "" "Resetting to the default layout will cause any custom HTML layout changes " "you've made to be lost. Are you sure?" @@ -8692,7 +8908,7 @@ msgstr "" "Restablecer los valores por defecto borrará todos los cambios que hayas " "hecho a la plantilla. ¿Estás seguro?" -#: includes/settings/renderers/class-button-settings-renderer.php:42 +#: includes/settings/renderers/class-button-settings-renderer.php:47 msgid "Reset" msgstr "Restablecer" @@ -8700,55 +8916,54 @@ msgstr "Restablecer" msgid "Deactivate" msgstr "Desactivar" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -msgid "active" -msgstr "activa" - -#: includes/settings/renderers/class-license-settings-renderer.php:43 #: includes/settings/renderers/class-license-settings-renderer.php:46 -#: includes/settings/renderers/class-license-settings-renderer.php:56 -#: includes/settings/renderers/class-license-settings-renderer.php:58 -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "Status: " -msgstr "Estado: " - -#: includes/settings/renderers/class-license-settings-renderer.php:45 -#: includes/settings/renderers/class-license-settings-renderer.php:48 +#: includes/settings/renderers/class-license-settings-renderer.php:50 msgid "Activate" msgstr "Activar" -#: includes/settings/renderers/class-license-settings-renderer.php:46 -msgid "inactive" -msgstr "inactiva" - -#: includes/settings/renderers/class-license-settings-renderer.php:51 +#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag +#: includes/settings/renderers/class-license-settings-renderer.php:55 +#, fuzzy msgid "" -"Click the button above to check the status of your license. Please contact customer support if you think the reported status is wrong." +"Click the button above to check the status of your license. Please " +"%1$scontact customer support%2$s if you think the reported status is wrong." msgstr "" "Presione el botón que está arriba para verificar el estado de su licencia. " "Por favor contacte Servicio al Cliente si piensa que el " "estado reportado es incorrecto." -#: includes/settings/renderers/class-license-settings-renderer.php:56 -msgid "expired" -msgstr "expiró" - -#: includes/settings/renderers/class-license-settings-renderer.php:58 +#: includes/settings/renderers/class-license-settings-renderer.php:75 msgid "disabled" msgstr "desahibilitado" -#: includes/settings/renderers/class-license-settings-renderer.php:60 +#: includes/settings/renderers/class-license-settings-renderer.php:76 +msgid "inactive" +msgstr "inactiva" + +#: includes/settings/renderers/class-license-settings-renderer.php:77 +msgid "active" +msgstr "activa" + +#: includes/settings/renderers/class-license-settings-renderer.php:78 +msgid "expired" +msgstr "expiró" + +#: includes/settings/renderers/class-license-settings-renderer.php:79 msgid "unknown" msgstr "desconocido" +#: includes/settings/renderers/class-license-settings-renderer.php:84 +#, fuzzy +msgid "Status: %s" +msgstr "Estado:" + #. translators: screen reader text label for individual settings on a settings #. grid -#: includes/settings/renderers/class-settings-grid-renderer.php:75 +#: includes/settings/renderers/class-settings-grid-renderer.php:80 msgid " setting for field" msgstr " opción para el campo " -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:35 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:38 msgid "Create Page" msgstr "Crear página" @@ -8756,21 +8971,21 @@ msgstr "Crear página" msgid "Ad Category" msgstr "Categoría del anuncio" -#: includes/ui/class-category-selector.php:122 +#: includes/ui/class-category-selector.php:144 msgid "All Categories" msgstr "Todas las Categorías" -#: includes/ui/class-category-selector.php:171 +#: includes/ui/class-category-selector.php:193 msgid "Select a Sub-category" msgstr "Seleccione una Sub-Categoría" -#: includes/ui/class-payment-terms-list.php:86 +#: includes/ui/class-payment-terms-list.php:103 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" msgstr "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" -#: includes/ui/class-payment-terms-list.php:91 +#: includes/ui/class-payment-terms-list.php:108 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" @@ -8778,62 +8993,62 @@ msgstr "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "créditos)" -#: includes/ui/class-payment-terms-list.php:152 +#: includes/ui/class-payment-terms-list.php:169 msgid " listing allowed." msgid_plural " listings allowed." msgstr[0] " anuncio permitido." msgstr[1] " anuncios permitidos." -#: includes/ui/class-payment-terms-list.php:160 +#: includes/ui/class-payment-terms-list.php:177 msgid "No images allowed." msgstr "Sin imágenes." -#: includes/ui/class-payment-terms-list.php:163 +#: includes/ui/class-payment-terms-list.php:180 msgid " image allowed." msgid_plural " images allowed." msgstr[0] " imagen permitida." msgstr[1] " imágenes permitidas." -#: includes/ui/class-payment-terms-list.php:170 +#: includes/ui/class-payment-terms-list.php:187 msgid "Unlimited characters in listing's title." msgstr "Caracteres ilimitados en el título del anuncio." -#: includes/ui/class-payment-terms-list.php:173 +#: includes/ui/class-payment-terms-list.php:190 msgid "Up to characters in listing's title." msgstr "Un máximo de caracteres en el título del anuncio." -#: includes/ui/class-payment-terms-list.php:180 +#: includes/ui/class-payment-terms-list.php:197 msgid "Up to categories allowed." msgstr "Hasta categorías permitidas." -#: includes/ui/class-payment-terms-list.php:187 +#: includes/ui/class-payment-terms-list.php:204 msgid "Unlimited characters in listing's content." msgstr "Caracteres ilimitados en el contenido del anuncio." -#: includes/ui/class-payment-terms-list.php:190 +#: includes/ui/class-payment-terms-list.php:207 msgid "Up to characters in listing's content." msgstr "" "Un máximo de caracteres en el contenido del anuncio." -#: includes/ui/class-payment-terms-list.php:196 +#: includes/ui/class-payment-terms-list.php:213 msgid "Purchase this plan" msgstr "Comprar este plan" -#: includes/ui/class-payment-terms-list.php:197 +#: includes/ui/class-payment-terms-list.php:214 msgid "Pay for this plan with credits" msgstr "Pagar este plan usando créditos" -#: includes/ui/class-payment-terms-list.php:200 -#: includes/ui/class-payment-terms-list.php:204 +#: includes/ui/class-payment-terms-list.php:217 +#: includes/ui/class-payment-terms-list.php:221 msgid "Use this plan for free!" msgstr "Usar este plan gratis!" -#: includes/ui/class-payment-terms-list.php:209 -#: includes/ui/class-payment-terms-list.php:214 +#: includes/ui/class-payment-terms-list.php:226 +#: includes/ui/class-payment-terms-list.php:231 msgid "Select" msgstr "Seleccione" -#: includes/ui/class-payment-terms-list.php:213 +#: includes/ui/class-payment-terms-list.php:230 msgid "credits" msgstr "créditos" @@ -8979,13 +9194,13 @@ msgstr "" "opción para requerir pagos." #. translators: %s the step name -#: includes/views/class-base-page.php:82 +#: includes/views/class-base-page.php:83 msgid "Unkown step \"%s\". Please contact the administrator about this error." msgstr "" "Paso desconocido \"%s\". Por favor contacte el Administrador acerca de este " "error." -#: includes/views/class-base-page.php:135 +#: includes/views/class-base-page.php:136 msgid "" "Your request cannot be processed at this time. Please try again or contact " "the administrator about the incident." @@ -8995,7 +9210,7 @@ msgstr "" #. translators: %1$s back link, %2$s transaction id #: includes/views/class-payment-step-decorator.php:41 -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:74 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:76 #, fuzzy msgid "" "You are trying to buy credits using a transaction created for a different " @@ -9025,16 +9240,16 @@ msgstr "" msgid "Congratulations. You have successfully added credit to your account." msgstr "Felicidades. Usted ha agregado crédito a su cuenta con éxito." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:12 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:14 msgid "Buy Credits" msgstr "Comprar Créditos" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:87 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:89 msgid "" "The payment associated with this transaction failed (see reasons below)." msgstr "El pago asociado a esta transacción falló (más detalles abajo)." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:118 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:120 msgid "You are not allowed to buy credits." msgstr "Usted no está autorizado para comprar créditos." @@ -9050,22 +9265,63 @@ msgstr "" msgid "The instance of WP_Scripts is not ready!" msgstr "La instancia de WP_Scripts no está lista!" -#: installer.php:154 +#: installer.php:160 msgid "30 Day Listing" msgstr "Listado de 30 días" -#: installer.php:822 +#: installer.php:307 msgid "Response to your AWPCP Demo Ad" msgstr "Respuesta a su anuncio de prueba" -#: installer.php:823 +#: installer.php:308 msgid "Someone has responded to your AWPCP Demo Ad" msgstr "Alguien ha respondido a su anuncio de prueba" -#: installer.php:848 +#: installer.php:333 msgid "Verify the email address used for Ad $title" msgstr "Verifique la dirección de correo usada para el anuncio $title" +#: installer.php:334 +#, fuzzy +msgid "" +"Hello $author_name \n" +"\n" +"You recently posted the Ad $title to $website_name. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"$verification_link \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" +msgstr "" +"Hola $author_name \n" +"\n" +"Hace poco publicaste el anuncio $title en $website_name. \n" +"\n" +"Es necesario que verifiques tu dirección de correo electrónico para " +"completar el proceso de publicación. Por favor haz clic en el enlace que " +"está más abajo para realizar el proceso de verificación. Al terminar serás " +"dirigido al sitio donde podrás ver tu anuncio. \n" +"\n" +"$verification_link \n" +"\n" +"Una vez verifiques tu dirección de correo electrónico, el administrador será " +"notificado sobre tu anuncio. Si el administrador debe aprobar los anuncios " +"nuevos, tu anuncio permanecerá inactivo hasta que el administrador lo " +"apruebe.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" + #: templates/admin/debug/environment-debug-section.tpl.php:19 msgid "" "Click the button below to contact and get a report about " @@ -9074,11 +9330,11 @@ msgstr "" "Haz clic en el botón que está abajo para contactar y " "obtener un report sobre las capacidades SSL/TSL de tu servidor." -#: templates/admin/debug/environment-debug-section.tpl.php:30 +#: templates/admin/debug/environment-debug-section.tpl.php:32 msgid "Test your SSL Client" msgstr "Probar el cliente SSL" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:16 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:20 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -9090,7 +9346,7 @@ msgstr "" "presiona el botón que está abajo para navegar a la página de opciones de enlaces permanentes." -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:23 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:27 msgid "" "Opening that page in your browser will flush the Rewrite Rules in your site. " "WordPress will then ask all installed and active plugins to register their " @@ -9102,31 +9358,38 @@ msgstr "" "Found deberían desaparecer. Si los errores no desaparecen, por favor " "contacte al servicio de soporte al cliente." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:3 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#, fuzzy +msgid "Plugin Pages" +msgstr "Páginas del plugin" + +#: templates/admin/delete-browse-categories-page-notice.tpl.php:4 +#, fuzzy msgid "" -"The page is no longer necessary. From now on, " -"all listings will be displayed in the page, even " -"when they are filtered by a particular category." +"The %1$s page is no longer necessary. From now on, all listings will be " +"displayed in the %2$s page, even when they are filtered by a particular " +"category." msgstr "" "La página ya no es necesaria. De ahora en " "adelante, todos los anuncios serán mostrados en la página , incluso cuando solo están mostrando los anuncios en un categoría " "particular." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:9 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:11 +#, fuzzy msgid "" -"The plugin will start redirecting all traffic to the page to make sure no broken links are created." +"The plugin will start redirecting all traffic to the %s page to make sure no " +"broken links are created." msgstr "" "El plugin empezará a re-dirigir todo el tráfico hacía la página , para garantizar que los enlaces existentes seguirían " "funcionando." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:13 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:15 msgid "Click the button below to delete the page." msgstr "Presione el botón que está abajo para eliminar la página." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:14 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:18 msgid "Delete Page" msgstr "Eliminar página" @@ -9156,10 +9419,11 @@ msgstr "" "La categoría tiene sub-categorías. Por favor elige una categoría para " "configurarla como la nueva categoría superior de esas sub-categorías." -#: templates/admin/delete-category-admin-page.tpl.php:32 +#. translators: %1$s: Cancel button , %2$s: Submit button label +#: templates/admin/delete-category-admin-page.tpl.php:34 +#, fuzzy msgid "" -"Click to go back to the list of categories or click " -" to proceed." +"Click %1$s to go back to the list of categories or click %2$s to proceed." msgstr "" "Presiona para ir a lista de categorías o presiona " " para continuar." @@ -9168,7 +9432,12 @@ msgstr "" msgid "Selected Category" msgstr "Categoría elegida" -#: templates/admin/export-listings-admin-page.tpl.php:158 +#: templates/admin/export-listings-admin-page.tpl.php:137 +#, fuzzy +msgid "Export Complete" +msgstr "Exportación completa" + +#: templates/admin/export-listings-admin-page.tpl.php:153 #, fuzzy msgid "" "Click \"Cleanup\" once the file has been downloaded in order to remove all " @@ -9178,10 +9447,15 @@ msgstr "" "eliminar toda la información temporal creada por Another WordPress " "Classifieds Plugin durante el proceso de exportación." -#: templates/admin/form-fields-admin-page.tpl.php:7 -msgid "" -"The table below shows all the form fields that users may need to fill to " -"create a listing. Use the six-dots icons at the end of each row to drag the " +#: templates/admin/export-listings-admin-page.tpl.php:160 +#, fuzzy +msgid "Export Canceled" +msgstr "Exportación cancelada" + +#: templates/admin/form-fields-admin-page.tpl.php:7 +msgid "" +"The table below shows all the form fields that users may need to fill to " +"create a listing. Use the six-dots icons at the end of each row to drag the " "form fields around and modify the order in which those fields appear in the " "Ad Details form." msgstr "" @@ -9191,16 +9465,14 @@ msgstr "" "orden en que aparecen en el formulario donde se ingresan los detalles del " "anuncio." -#: templates/admin/form-fields-admin-page.tpl.php:11 -msgid "Form" -msgstr "Formulario" - +#. translators: %s is a link to the Form Fields settings page. #: templates/admin/form-fields-admin-page.tpl.php:13 +#, fuzzy msgid "" -"Go to the settings section to control which of " -"the standard fields appear and if the user is required to enter a value. If " -"you have the Extra Fields module, the rest of the fields can be configured " -"from the Extra Fields admin section." +"Go to the %s settings section to control which of the standard fields appear " +"and if the user is required to enter a value. If you have the Extra Fields " +"module, the rest of the fields can be configured from the Extra Fields admin " +"section." msgstr "" "Dirijase a la sección de opciones para para " "controlar cuales de los campos estándar deben aparecer y si los campos son " @@ -9208,12 +9480,16 @@ msgstr "" "de los campos pueden ser configurados desde la sección de administración de " "Campos Adicionales." +#: templates/admin/form-fields-admin-page.tpl.php:14 +msgid "Form" +msgstr "Formulario" + #: templates/admin/import/example-csv-file.tpl.php:8 msgid "Import Listings: Example CSV File" msgstr "Importar anuncios: archivo CSV de ejemplo" #: templates/admin/import/example-csv-file.tpl.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:84 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:76 msgid "See Supported CSV Headers" msgstr "Ver encabezados CSV permitidos" @@ -9234,7 +9510,7 @@ msgid "Header" msgstr "Cabecera" #: templates/admin/import/supported-csv-headers.tpl.php:39 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:86 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:78 msgid "See Example CSV File" msgstr "Ver archivo CSV de ejemplo" @@ -9348,7 +9624,7 @@ msgstr "" msgid "Default user" msgstr "Usuario por defecto" -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:178 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 #: templates/admin/import-listings-admin-page-import-form.tpl.php:44 msgid "" "Press the button below to cancel the current import operation and discard " @@ -9389,36 +9665,37 @@ msgstr "Cambiar la configuración y reiniciar" msgid "Pause" msgstr "Pausar" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:24 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:21 msgid "CSV file" msgstr "Archivo CVS" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:37 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:31 msgid "Images source" msgstr "Imágenes" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:40 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:34 msgid "Don't import images" msgstr "No importar imágenes" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:42 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:36 msgid "ZIP file" msgstr "Archivo ZIP" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:44 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:38 msgid "Local directory" msgstr "Directorio local" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:49 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:43 msgid "Zip file containing images" msgstr "El archivo ZIP contiene imágenes" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:62 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:54 msgid "Local directory path" msgstr "Ubicación del directorio local" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:74 -msgid "The relative path to a directory inside ." +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:64 +#, fuzzy +msgid "The relative path to a directory inside %s." msgstr "La ruta relativa a un directorio dentro de ." #: templates/admin/listings/listing-information-metabox.tpl.php:56 @@ -9509,27 +9786,27 @@ msgid "Payment Options" msgstr "Configuración de Pagos" #. translators: %s is the link the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:84 +#: templates/admin/main-classifieds-admin-page.tpl.php:87 msgid "" "Go to the %s section to edit/delete current categories or add new categories." msgstr "" "Vaya a la sección %s para editar/eliminar las categorías actuales o agregar " "nuevas categorías." -#: templates/admin/main-classifieds-admin-page.tpl.php:90 +#: templates/admin/main-classifieds-admin-page.tpl.php:95 msgid "Total number of categories in the system" msgstr "Número total de categorías en el sistema" -#: templates/admin/main-classifieds-admin-page.tpl.php:95 +#: templates/admin/main-classifieds-admin-page.tpl.php:100 msgid "Number of Top Level parent categories" msgstr "Número de categorías principales" -#: templates/admin/main-classifieds-admin-page.tpl.php:100 +#: templates/admin/main-classifieds-admin-page.tpl.php:105 msgid "Number of sub level children categories" msgstr "Número de sub-categorías" #. translators: %s is the link to the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:109 +#: templates/admin/main-classifieds-admin-page.tpl.php:114 msgid "" "You have not categories defined. Go to the %s section to set up your " "categories." @@ -9537,76 +9814,76 @@ msgstr "" "Usted no tiene categorías definidas. Vaya a la sección %s para configurar " "sus categorías." -#: templates/admin/manage-categories-admin-page.tpl.php:43 +#: templates/admin/manage-categories-admin-page.tpl.php:44 msgid "Parent Category" msgstr "Categoría Principal" -#: templates/admin/manage-categories-admin-page.tpl.php:52 +#: templates/admin/manage-categories-admin-page.tpl.php:53 msgid "Category list order" msgstr "Orden en la lista de categorías" -#: templates/admin/manage-categories-admin-page.tpl.php:75 +#: templates/admin/manage-categories-admin-page.tpl.php:76 msgid "Icon Meanings:" msgstr "Convenciones:" -#: templates/admin/manage-categories-admin-page.tpl.php:85 +#: templates/admin/manage-categories-admin-page.tpl.php:89 msgid "Move categories or ads under:" msgstr "Mover las categorías o anuncios debajo de:" -#: templates/admin/manage-categories-admin-page.tpl.php:92 +#: templates/admin/manage-categories-admin-page.tpl.php:96 msgid "Delete categories should do this with existing ads:" msgstr "Eliminar categorías debería que los anuncios existentes sean:" -#: templates/admin/manage-categories-admin-page.tpl.php:93 +#: templates/admin/manage-categories-admin-page.tpl.php:97 msgid "Move ads to new category" msgstr "Asociados a una nueva categoría" -#: templates/admin/manage-categories-admin-page.tpl.php:94 +#: templates/admin/manage-categories-admin-page.tpl.php:98 msgid "Delete ads too" msgstr "Borrados" -#: templates/admin/manage-categories-admin-page.tpl.php:101 +#: templates/admin/manage-categories-admin-page.tpl.php:108 msgid "Move Selected Categories" msgstr "Mover las Categorías seleccionadas" -#: templates/admin/manage-categories-admin-page.tpl.php:102 +#: templates/admin/manage-categories-admin-page.tpl.php:109 msgid "Delete Selected Categories" msgstr "Eliminar las Categorías seleccionadas" -#: templates/admin/manage-categories-admin-page.tpl.php:119 +#: templates/admin/manage-categories-admin-page.tpl.php:126 msgid "Select all categories" msgstr "Elegir todas las categorías" -#: templates/admin/manage-categories-admin-page.tpl.php:122 -#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:129 +#: templates/admin/manage-categories-admin-page.tpl.php:145 msgid "Category ID" msgstr "ID de Categoría" -#: templates/admin/manage-categories-admin-page.tpl.php:124 -#: templates/admin/manage-categories-admin-page.tpl.php:136 +#: templates/admin/manage-categories-admin-page.tpl.php:131 +#: templates/admin/manage-categories-admin-page.tpl.php:146 msgid "Category Name (Total Ads)" msgstr "Nombre de la Categoría (Total de Anuncios)" -#: templates/admin/manage-categories-admin-page.tpl.php:126 -#: templates/admin/manage-categories-admin-page.tpl.php:137 +#: templates/admin/manage-categories-admin-page.tpl.php:133 +#: templates/admin/manage-categories-admin-page.tpl.php:147 msgid "Parent" msgstr "Padre" -#: templates/admin/manage-categories-admin-page.tpl.php:127 -#: templates/admin/manage-categories-admin-page.tpl.php:138 +#: templates/admin/manage-categories-admin-page.tpl.php:134 +#: templates/admin/manage-categories-admin-page.tpl.php:148 msgid "Order" msgstr "Orden" -#: templates/admin/manage-categories-admin-page.tpl.php:128 -#: templates/admin/manage-categories-admin-page.tpl.php:139 +#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:149 msgid "Action" msgstr "Acción" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:2 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 msgid "What's your PayPal Merchant ID?" msgstr "¿Cuál es su Merchant ID de PayPal?" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:3 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:10 #, fuzzy msgid "" "In order to verify payments made through PayPal, AWP Classifieds Plugin " @@ -9616,11 +9893,11 @@ msgstr "" "PayPal, para verificar la información de los pagos realizados a través de " "PayPal." -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:13 +#, fuzzy msgid "" -"Go to to obtain the Merchant ID and then go to the Payment Settings page to enter the " -"value." +"Go to %1$s to obtain the Merchant ID and then go to the %2$sPayment " +"Settings%3$s page to enter the value." msgstr "" "Visite para obtener la Merchant ID y luego diríjase a la " "página Opciones de Pago para " @@ -9817,7 +10094,8 @@ msgstr "Publicado" msgid "Expires on" msgstr "Expira en" -#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:9 +#. translators: %s: URL to renew the ad +#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:12 msgid "You can renew your Ad visiting this link: %s" msgstr "Renueva su Anuncio visitando: %s" @@ -9826,12 +10104,45 @@ msgstr "Renueva su Anuncio visitando: %s" msgid "Hello" msgstr "Hola" -#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:2 +#: templates/email/listing-media-upload-notification.plain.tpl.php:2 +#, fuzzy +msgid "Hello," +msgstr "Hola," + +#: templates/email/listing-media-upload-notification.plain.tpl.php:9 +#, fuzzy +msgid "The following media files were recently uploaded to listing \"%s\":" +msgstr "" +"Los siguientes archivos fueron subidos recientemente al anuncio \"\":" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:23 +#, fuzzy msgid "" -"The ad \"\" was modified. A copy of the details sent to the " -"customer can be found below. You can follow this link " -"to go to the Manage Ad Listing section to approve/reject/spam and see the " -"full version of the Ad." +"The following media files were recently uploaded to listing \"%s\" and are " +"awaiting approval:" +msgstr "" +"Los siguientes archivos fueron subidos recientemente al anuncio \"\" y están pendientes de ser aprobados:" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:36 +#, fuzzy +msgid "Click here to manage media uploaded to the listing: %s." +msgstr "" +"Haga click aquí para visualizar o organizar los archivos subidos al anuncio: " +"." + +#: templates/email/listing-media-upload-notification.plain.tpl.php:44 +#, fuzzy +msgid "Click here to view the listing: %s." +msgstr "Haga click aquí para ver el anuncio: ." + +#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:3 +#, fuzzy +msgid "" +"The ad \"%s\" was modified. A copy of the details sent to the customer can " +"be found below. You can follow this link %s to go to the Manage Ad Listing " +"section to approve/reject/spam and see the full version of the Ad." msgstr "" "El anuncio \"\" fue modificado. A continuación puedes ver una " "copia de los detalles que le fueron enviados al cliente. Puedes usar este " @@ -9846,14 +10157,155 @@ msgstr "" "Usted anuncios que han sido reportados pendientes por revisar en . Por favor, revíselos siguiente este enlace: ." -#: templates/frontend/listings.tpl.php:24 +#: templates/frontend/listings.tpl.php:37 msgid "There were no listings found." msgstr "No se encontraron anuncios." +#: templates/frontend/order-submit-listing-section.tpl.php:41 +#, fuzzy +msgid "Who is the owner of this ad?" +msgstr "¿Quién es el propietario de este anuncio?" + +#: templates/frontend/order-submit-listing-section.tpl.php:86 +#, fuzzy +msgid "Your ad will be posted on the following categories: %s." +msgstr "Tu anuncio será publicado en las siguientes categorías: {categories}." + #: templates/privacy-policy.tpl.php:10 msgid "Suggested text:" msgstr "Texto sugerido:" +#: templates/privacy-policy.tpl.php:11 +#, fuzzy +msgid "" +"When you submit a classified listing, the content of the listing and its " +"metadata are retained indefinitely. All users can see, edit or delete the " +"personal information included on their listings at any time. Website " +"administrators can also see and edit that information." +msgstr "" +"Cuando publica un anuncio clasificado, el contenido del anuncio y los " +"metadatos asociados son retenidos indefinidamente. Todos los usuarios puede " +"even, editar o eliminar la información personal incluida en sus anuncios en " +"cualquier momento. Los administradores del sitio también pueden ver y editar " +"esa información." + +#: templates/privacy-policy.tpl.php:14 +#, fuzzy +msgid "" +"Website visitors can see the contact name, website URL, phone number, " +"address and other information included in your submission to describe the " +"classified listing." +msgstr "" +"Los visitantes del sitio web pueden ver la información de contacto, la URL " +"de sitio web, el número telefónico, la dirección y demás información " +"incluida en la publicación para describir el anuncio clasificado." + +#: templates/privacy-policy.tpl.php:18 +#, fuzzy +msgid "" +"Contact name, email address, website URL and content of submitted classified " +"listings may be checked through Akismet's spam detection service. The " +"Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"El nombre de contacto, la dirección de correo electrónico, la URL del sitio " +"web y el contenido de los anuncios clasificados publicados pueden ser " +"revisados a través del servicio de detección de correo no deseado de " +"Akismet. La política de privacidad para el servicio ofrecido por Akismet " +"está disponible aquí." + +#: templates/privacy-policy.tpl.php:24 +#, fuzzy +msgid "Payment Information" +msgstr "Información de pago" + +#: templates/privacy-policy.tpl.php:28 +#, fuzzy +msgid "" +"If you pay to post a classified listing entering your credit card and " +"billing information directly on %s, the credit card information won't be " +"stored but it will be shared through a secure connection with the following " +"payment gateways to process the payment:" +msgstr "" +"Si usted paga para publicar un anuncio clasificado ingresando información de " +"cobro y tarjeta de crédito diréctamente en {home_url}" +", la información de la tarjeta de crédito no será almacenada, pero será " +"compartida a través de una conexión segura con las siguientes pasarelas de " +"pago con el propósito de procesar el pago:" + +#: templates/privacy-policy.tpl.php:36 +#, fuzzy +msgid "PayPal - %1$s" +msgstr "PayPal" + +#: templates/privacy-policy.tpl.php:42 +#, fuzzy +msgid "Authorize.Net - %s" +msgstr "Authorize.Net" + +#: templates/privacy-policy.tpl.php:48 +#, fuzzy +msgid "Stripe - %s" +msgstr "Stripe" + +#: templates/privacy-policy.tpl.php:54 +#, fuzzy +msgid "Regions" +msgstr "Regiones" + +#: templates/privacy-policy.tpl.php:56 +#, fuzzy +msgid "" +"If you choose to see listings published on a specific region, a cookie will " +"be stored on your browser for the remainder of the session to remember the " +"selected region." +msgstr "" +"Si usted elige ver anuncios publicados en una región geográfica específica, " +"una cookie utilizada para recordar la región seleccionada será almacenada en " +"su navegador durante el tiempo que su sesión permanezca activa." + +#: templates/privacy-policy.tpl.php:58 +#, fuzzy +msgid "Comments and Ratings" +msgstr "Comentarios y Calificaciones" + +#: templates/privacy-policy.tpl.php:60 +#, fuzzy +msgid "" +"When visitors leave comments and reviews for classified listings we collect " +"the data shown in the comments form, and also the visitor’s IP address to " +"help spam detection." +msgstr "" +"Cuando los visitantes publiquen comentarios y calificaciones para los " +"anuncios clasificados almacenaremos la información mostrada en el formulario " +"y la dirección IP del visitante con el evito de controlar la publicación de " +"comentarios y ayudar a detectar mensajes no deseados." + +#: templates/privacy-policy.tpl.php:64 +#, fuzzy +msgid "" +"Visitor comments may be checked through Akismet's spam detection service. " +"The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"Los comentarios de los visitantes pueden ser revisados a través del servicio " +"de detección de mensajes no deseados de Akisment. La política de privacidad " +"para el servicio ofrecido por Akismet está disponible aquí." + +#: templates/privacy-policy.tpl.php:70 +msgid "Restricted Categories" +msgstr "Categorías Restringidas" + +#: templates/privacy-policy.tpl.php:72 +#, fuzzy +msgid "" +"When you agree to see listings or publish a listing on a restricted " +"category, a cookie will be stored in your browser to remember your decision. " +"The cookie will be stored on your browser for the remainder of that session." +msgstr "" +"Cuando acepte ver o publicar un anuncio en una categoría restringida, una " +"cookie será almacenada en su navegador para recordar su decisión. La cookie " +"será almacenada durante el tiempo que su sesión permanezca activa." + #. Author URI of the plugin/theme msgid "https://awpcp.com/" msgstr "" @@ -9884,30 +10336,30 @@ msgctxt "awpcp admin menu" msgid "Classifieds" msgstr "Clasificados" -#: admin/admin-panel.php:810 includes/settings/class-listings-settings.php:469 +#: admin/admin-panel.php:794 includes/settings/class-listings-settings.php:469 msgctxt "page name" msgid "Show Ad" msgstr "Mostrar anuncio" -#: admin/admin-panel.php:818 +#: admin/admin-panel.php:802 msgctxt "page name" msgid "Edit Ad" msgstr "Editar Anuncio" -#: admin/class-csv-exporter.php:82 +#: admin/class-csv-exporter.php:83 msgctxt "admin csv-export" msgid "Could not create a temporary directory for handling this CSV export." msgstr "" "No fue posible crear un directorio temporal para almacenar la información " "que deseas exportar." -#: admin/class-csv-exporter.php:85 +#: admin/class-csv-exporter.php:86 msgctxt "admin csv-export" msgid "Could not create awpcp-csv-exports directory." msgstr "No fue posible crear el directorio awpcp-csv-exports." #. translators: %s the error. -#: admin/class-csv-exporter.php:91 +#: admin/class-csv-exporter.php:95 msgctxt "admin csv-export" msgid "Error while creating a temporary directory for CSV export: %s" msgstr "" @@ -9920,76 +10372,73 @@ msgid "Could not decode export state information." msgstr "" "No fue posible descodificar el estado de la información que deseas exportar." -#: admin/class-debug-admin-page.php:136 +#: admin/class-debug-admin-page.php:137 msgctxt "debug page" msgid "Plugin Info" msgstr "Información del plugin" -#: admin/class-debug-admin-page.php:137 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:33 +#: admin/class-debug-admin-page.php:138 msgctxt "debug page" msgid "Plugin Pages" msgstr "Páginas del plugin" -#: admin/class-debug-admin-page.php:138 +#: admin/class-debug-admin-page.php:139 msgctxt "debug page" msgid "Plugin Settings" msgstr "Opciones del plugin" -#: admin/class-debug-admin-page.php:139 +#: admin/class-debug-admin-page.php:140 msgctxt "debug page" msgid "Environment" msgstr "Entorno" -#: admin/class-debug-admin-page.php:140 -#: admin/templates/admin-panel-debug.tpl.php:32 +#: admin/class-debug-admin-page.php:141 +#: admin/templates/admin-panel-debug.tpl.php:59 msgctxt "debug page" msgid "Rewrite Rules" msgstr "Reglas de re-escritura" -#: admin/class-debug-admin-page.php:177 +#: admin/class-debug-admin-page.php:178 msgctxt "debug page" msgid "Plugin Version" msgstr "Versión del plugin" -#: admin/class-debug-admin-page.php:283 -#: admin/templates/admin-panel-debug.tpl.php:126 +#: admin/class-debug-admin-page.php:284 msgctxt "debug page" msgid "cURL's alternate CA info (cacert.pem)" msgstr "Certificados de Autoridad alternativos para cURL (cacert.pem)" -#: admin/class-debug-admin-page.php:287 -#: admin/templates/admin-panel-debug.tpl.php:130 +#: admin/class-debug-admin-page.php:288 msgctxt "debug page" msgid "PayPal Connection" msgstr "Conexión PayPal" -#: admin/class-debug-admin-page.php:359 +#: admin/class-debug-admin-page.php:360 msgctxt "debug page" msgid "Working" msgstr "Trabajando" -#: admin/class-debug-admin-page.php:362 -#: admin/templates/admin-panel-debug.tpl.php:136 +#: admin/class-debug-admin-page.php:363 msgctxt "debug page" msgid "Not Working" msgstr "No funciona" -#: admin/templates/admin-panel-debug.tpl.php:22 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:31 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:34 msgctxt "debug page" msgid "Flush Rewrite Rules" msgstr "Limpiar Reglas de Reescritura" -#: admin/templates/admin-panel-debug.tpl.php:26 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s Linked +#. URL in anchor link +#: admin/templates/admin-panel-debug.tpl.php:48 +#, fuzzy msgctxt "debug page" msgid "" -"This information can help AWPCP Developers to debug possible problems. If " -"you are submitting a bug report please Download the " -"Debug Information and attach it to your bug report or take a " -"minute to copy the information below to http://fpaste.org and provide the resulting URL in " -"your report." +"This information can help the AWP Team to debug possible problems. If you " +"are submitting a bug report please %1$sDownload the Debug Information%2$s " +"and attach it to your bug report or take a minute to copy the information " +"below to %3$s and provide the resulting URL in your report." msgstr "" "Esta información puede ayudar a los desarrolladores de AWPCP a depurar " "posibles problemas. Para enviar un reporte de error, por favor http://" "fpaste.org y proporcione la URL resultante en su informe." -#: admin/templates/admin-panel-debug.tpl.php:29 +#: admin/templates/admin-panel-debug.tpl.php:56 msgctxt "debug page" msgid "AWPCP Pages" msgstr "Páginas AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:57 msgctxt "debug page" msgid "PHP Info" msgstr "PHP Info" -#: admin/templates/admin-panel-debug.tpl.php:31 +#: admin/templates/admin-panel-debug.tpl.php:58 msgctxt "debug page" msgid "AWPCP Settings" msgstr "Configuración AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:118 -msgctxt "debug page" -msgid "PHP Version" -msgstr "Versión PHP" - -#: admin/templates/admin-panel-debug.tpl.php:122 -msgctxt "debug page" -msgid "cURL" -msgstr "cURL" - #. translators: %s is the URL to download the debug information #: templates/admin/debug/debug-admin-page.tpl.php:17 msgctxt "debug page" @@ -10036,22 +10475,22 @@ msgstr "" "descarga la información de depuración y " "agrégala como adjunto a tu mensaje." -#: templates/admin/debug/plugin-info-debug-section.tpl.php:29 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:38 msgctxt "debug page" msgid "There are no premium modules activated right now." msgstr "No hay ningún modulo premium activado en este momento." -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:38 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:49 msgctxt "debug page" msgid "Reference" msgstr "Referencia" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:39 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:50 msgctxt "debug page" msgid "Page Title" msgstr "Titulo de la página" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:51 msgctxt "debug page" msgid "Stored ID" msgstr "ID guardado" @@ -10066,41 +10505,39 @@ msgctxt "debug page" msgid "Setting Value" msgstr "Valor de la opción" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Exists" msgstr "Existe" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Missing" msgstr "No se encontró" -#: admin/class-import-listings-admin-page.php:358 +#: admin/class-import-listings-admin-page.php:362 msgctxt "" "description for messages used to show feedback for the Import Listings " "operation" msgid " in line " msgstr " en la línea " -#: admin/class-import-listings-admin-page.php:369 +#: admin/class-import-listings-admin-page.php:373 msgctxt "text for page subtitle and submit button" msgid "Test Import" msgstr "Probar Importación" -#: admin/class-import-listings-admin-page.php:371 +#: admin/class-import-listings-admin-page.php:375 msgctxt "text for page subtitle and submit button" msgid "Import" msgstr "Importar" -#: admin/class-import-settings-admin-page.php:104 +#: admin/class-import-settings-admin-page.php:102 msgctxt "import settings" msgid "Are you sure you want to do this?" msgstr "Está seguro que desea realizar esta acción?" -#: admin/class-import-settings-admin-page.php:116 +#: admin/class-import-settings-admin-page.php:115 msgctxt "import settings" msgid "" "There was a problem trying to read the settings file; it appears the file " @@ -10109,93 +10546,6 @@ msgstr "" "Ocurrió un problema leyendo el archivo de opciones. Parece que el archivo no " "fue cargado correctamente. Por favor intenta de nuevo." -#: admin/class-import-settings-admin-page.php:122 -msgctxt "another-wordpress-classifieds-plugin" -msgid "Your settings have been successfully imported." -msgstr "Las opciones fueron importadas satisfactoriamente." - -#: includes/settings/class-email-settings.php:201 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello {author_name} \n" -"\n" -"You recently posted the Ad {listing_title} to {website_title}. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"{verification_link} \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" -msgstr "" -"Hola {author_name} \n" -"\n" -"Hace poco publicaste el anuncio {listing_title} en {website_title}. \n" -"\n" -"Es necesario que verifiques tu dirección de correo electrónico para " -"completar el proceso de publicación. Por favor haz clic en el enlace que " -"está más abajo para realizar el proceso de verificación. Al terminar serás " -"dirigido al sitio donde podrás ver tu anuncio. \n" -"\n" -"{verification_link} \n" -"\n" -"Una vez verifiques tu dirección de correo electrónico, el administrador será " -"notificado sobre tu anuncio. Si el administrador debe aprobar los anuncios " -"nuevos, tu anuncio permanecerá inactivo hasta que el administrador lo " -"apruebe.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" - -#: installer.php:849 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello $author_name \n" -"\n" -"You recently posted the Ad $title to $website_name. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"$verification_link \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" -msgstr "" -"Hola $author_name \n" -"\n" -"Hace poco publicaste el anuncio $title en $website_name. \n" -"\n" -"Es necesario que verifiques tu dirección de correo electrónico para " -"completar el proceso de publicación. Por favor haz clic en el enlace que " -"está más abajo para realizar el proceso de verificación. Al terminar serás " -"dirigido al sitio donde podrás ver tu anuncio. \n" -"\n" -"$verification_link \n" -"\n" -"Una vez verifiques tu dirección de correo electrónico, el administrador será " -"notificado sobre tu anuncio. Si el administrador debe aprobar los anuncios " -"nuevos, tu anuncio permanecerá inactivo hasta que el administrador lo " -"apruebe.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" - #: admin/credit-plans/class-delete-credit-plan-action-handler.php:30 #: admin/credit-plans/class-edit-credit-plan-action-handler.php:27 msgctxt "credit plans ajax" @@ -10217,18 +10567,18 @@ msgctxt "form field slug" msgid "Slug" msgstr "Slug" -#: admin/import/class-csv-importer-delegate.php:98 +#: admin/import/class-csv-importer-delegate.php:101 msgctxt "csv importer" msgid "Required value for column \"\" is missing." msgstr "No encontramos un valor para la columna obligatoria \"\"." -#: admin/import/class-csv-importer-delegate.php:181 +#: admin/import/class-csv-importer-delegate.php:184 msgctxt "csv importer" msgid "A new user '%s' with email address '%s' and password '%s' was created." msgstr "" "Se creó un nuevo usuario '%s' con correo electrónico '%s' y contraseña '%s'." -#: admin/import/class-csv-importer-delegate.php:252 +#: admin/import/class-csv-importer-delegate.php:256 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10241,7 +10591,7 @@ msgstr "" "incluidas. Por favor incluye un nombre de usuario y una dirección de correo " "electrónico de contacto o elige un usuario por defecto." -#: admin/import/class-csv-importer-delegate.php:255 +#: admin/import/class-csv-importer-delegate.php:258 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10252,7 +10602,7 @@ msgstr "" "creado porque la columna username está vacía o no fue incluida. Por favor " "incluye un nombre de usuario o elige un usuario por defecto." -#: admin/import/class-csv-importer-delegate.php:258 +#: admin/import/class-csv-importer-delegate.php:260 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10264,17 +10614,17 @@ msgstr "" "favor, incluya una dirección de correo electrónico de contacto o seleccione " "un usuario por defecto." -#: admin/import/class-csv-importer-delegate.php:312 +#: admin/import/class-csv-importer-delegate.php:316 msgctxt "csv importer" msgid "No category with name \"\" was found." msgstr "No encontramos una categoría con nombre \"\"." -#: admin/import/class-csv-importer-delegate.php:328 +#: admin/import/class-csv-importer-delegate.php:332 msgctxt "csv importer" msgid "There was an error trying to create category \"\"." msgstr "Ocurrió un error creando la categoría \"\"." -#: admin/import/class-csv-importer-delegate.php:337 +#: admin/import/class-csv-importer-delegate.php:342 msgctxt "csv importer" msgid "" "A category with name \"\" was created, but there was an error " @@ -10283,50 +10633,50 @@ msgstr "" "La categoría con nombre \"\" fue creada, pero ocurrió un " "error intentando cargar la información desde la base de datos." -#: admin/import/class-csv-importer-delegate.php:349 +#: admin/import/class-csv-importer-delegate.php:355 msgctxt "csv importer" msgid "Item price must be a number." msgstr "El precio del anuncio debe ser un número." -#: admin/import/class-csv-importer-delegate.php:363 +#: admin/import/class-csv-importer-delegate.php:369 msgctxt "csv importer" msgid "The start date is missing and no default value was defined." msgstr "La fecha de inicio no fue incluida y no elegiste un valor por defecto." -#: admin/import/class-csv-importer-delegate.php:364 +#: admin/import/class-csv-importer-delegate.php:370 msgctxt "csv importer" msgid "The start date is invalid and no default value was defined." msgstr "La fecha de inicio no es válida y no elegiste un valor por defecto." -#: admin/import/class-csv-importer-delegate.php:365 +#: admin/import/class-csv-importer-delegate.php:371 msgctxt "csv importer" msgid "Invalid default start date." msgstr "La fecha de inicio no es válida." -#: admin/import/class-csv-importer-delegate.php:430 -#: admin/import/class-csv-importer-delegate.php:431 +#: admin/import/class-csv-importer-delegate.php:436 +#: admin/import/class-csv-importer-delegate.php:437 msgctxt "csv importer" msgid "The end date is missing and no default value was defined." msgstr "" "La fecha de finalización no fue incluida y no elegiste un valor por defecto." -#: admin/import/class-csv-importer-delegate.php:432 +#: admin/import/class-csv-importer-delegate.php:438 msgctxt "csv importer" msgid "Invalid default end date." msgstr "La fecha de finalización no es válida." -#: admin/import/class-csv-importer-delegate.php:499 +#: admin/import/class-csv-importer-delegate.php:505 msgctxt "csv importer" msgid "Image file with name not found." msgstr "No encontramos un archivo de imagen con nombre ." -#: admin/import/class-csv-importer-delegate.php:566 +#: admin/import/class-csv-importer-delegate.php:576 msgctxt "csv importer" msgid "There was an error trying to store imported data into the database." msgstr "" "Ocurrió un error almacenando la información importada en la base datos." -#: admin/import/class-csv-importer-delegate.php:587 +#: admin/import/class-csv-importer-delegate.php:599 msgctxt "csv importer" msgid "" "There was an error trying to import one of the images: {image-validation-" @@ -10349,20 +10699,6 @@ msgctxt "drip-autoresponder" msgid "The email address entered is not valid." msgstr "La dirección de correo electrónico no es válida." -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 -msgctxt "drip-autoresponder" -msgid "Thank you for signing up!" -msgstr "Gracias por registrarse!" - -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 -msgctxt "drip-autoresponder" -msgid "" -"Please check your email and click the link provided to confirm your " -"subscription." -msgstr "" -"Por favor, revise su correo y haga click en el enlace enviado para confirmar " -"su subscripción." - #: admin/pointers/class-drip-autoresponder.php:22 msgctxt "drip-autoresponder" msgid "Yes, I'd like my course, please" @@ -10373,23 +10709,6 @@ msgctxt "drip-autoresponder" msgid "No, thanks" msgstr "No, gracias" -#: admin/pointers/class-drip-autoresponder.php:62 -msgctxt "drip-autoresponder" -msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" -msgstr "" -"¿Le gustaría conocer los secretos de construir un impresionante sitio de " -"anuncios clasificados?" - -#: admin/pointers/class-drip-autoresponder.php:63 -msgctxt "drip-autoresponder" -msgid "" -"Find out how to create a compelling, thriving classifieds site from scratch " -"in this ridiculously actionable (and free) 5-part email course." -msgstr "" -"Descubra cómo crear un sitio de clasificados atractivo y próspero desde cero " -"en este curso por correo electrónico de 5 partes fácilmente procesable (y " -"gratuito)." - #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:6 msgctxt "credit plans form" msgid "Edit Credit Plan Details" @@ -10405,28 +10724,6 @@ msgctxt "Quick Start Guide" msgid "No Thanks" msgstr "No, gracias" -#: admin/templates/admin-quick-start-guide-notice.tpl.php:9 -msgctxt "Quick Start Guide" -msgid "I'll figure it out on my own." -msgstr "Voy a averiguar por mi cuenta." - -#: admin/templates/admin-quick-start-guide-notice.tpl.php:17 -msgctxt "Quick Start Guide" -msgid "Help me get my classifieds running quickly." -msgstr "Ayúdame a poner los anuncios en funcionamiento rápidamente." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:75 -msgctxt "Browse the Quick Start Guide" -msgid "Browse the %s." -msgstr "Explore la %s." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:85 -msgctxt "Read the full Documentation" -msgid "Read the full %s." -msgstr "Lea la %s completa." - #: admin/templates/admin-widget-modification-notice.tpl.php:7 msgctxt "widget modification notice" msgid "Close this, I'll check my Widget configuration." @@ -10488,17 +10785,17 @@ msgctxt "404 HTTP status description" msgid "Listing not found" msgstr "Anuncio no encontrado." -#: frontend/page-place-ad.php:1417 +#: frontend/page-place-ad.php:1420 msgctxt "upload listing images form" msgid "Preview Ad" msgstr "Ver vista previa" -#: frontend/page-place-ad.php:1419 +#: frontend/page-place-ad.php:1422 msgctxt "upload listing images form" msgid "Place Ad" msgstr "Publicar Anuncio" -#: frontend/page-place-ad.php:1421 +#: frontend/page-place-ad.php:1424 msgctxt "upload listing images form" msgid "Checkout" msgstr "Comprar" @@ -10579,7 +10876,7 @@ msgctxt "listing row action" msgid "Unflag" msgstr "Quitar reporte" -#: frontend/templates/email-send-ad-access-key.tpl.php:9 +#: frontend/templates/email-send-ad-access-key.tpl.php:13 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:18 #: templates/email/listing-edit-link-with-access-token.tpl.php:9 msgctxt "edit link email" @@ -10639,11 +10936,6 @@ msgctxt "loading region options" msgid "loading..." msgstr "cargando..." -#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 -msgctxt "add credit checkout step" -msgid "Complete Payment" -msgstr "Completar Pago" - #: frontend/templates/page-edit-ad-email-key-step.tpl.php:34 msgctxt "enter email and access key form" msgid "Continue" @@ -10654,33 +10946,28 @@ msgctxt "send ad access key form" msgid "Continue" msgstr "Continuar" -#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 -msgctxt "place ad checkout step" -msgid "Complete Payment" -msgstr "Completar Pago" - -#: frontend/templates/page-place-ad-details-step.tpl.php:59 +#: frontend/templates/page-place-ad-details-step.tpl.php:63 msgctxt "ad details form" msgid "Start Date" msgstr "Fecha de inicio" -#: frontend/templates/page-place-ad-details-step.tpl.php:69 +#: frontend/templates/page-place-ad-details-step.tpl.php:73 msgctxt "ad details form" msgid "End Date" msgstr "Fecha de finalización" -#: frontend/templates/page-place-ad-details-step.tpl.php:98 +#: frontend/templates/page-place-ad-details-step.tpl.php:104 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:9 msgctxt "ad details form" msgid "Read our Terms of Service" msgstr "Lea nuestros Términos de Servicio" -#: frontend/templates/page-place-ad-details-step.tpl.php:100 +#: frontend/templates/page-place-ad-details-step.tpl.php:106 msgctxt "ad details form" msgid "Terms of service:" msgstr "Términos de servicio:" -#: frontend/templates/page-place-ad-details-step.tpl.php:105 +#: frontend/templates/page-place-ad-details-step.tpl.php:111 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:17 msgctxt "ad details form" msgid "I agree to the terms of service" @@ -10747,12 +11034,12 @@ msgctxt "ad details form" msgid "Terms of Service" msgstr "Términos de servicio" -#: frontend/templates/page-place-ad-details-step.tpl.php:120 +#: frontend/templates/page-place-ad-details-step.tpl.php:126 msgctxt "listing details form" msgid "Preview Ad" msgstr "Ver vista previa" -#: frontend/templates/page-place-ad-details-step.tpl.php:122 +#: frontend/templates/page-place-ad-details-step.tpl.php:128 msgctxt "listing details form" msgid "Continue" msgstr "Continuar" @@ -10782,37 +11069,23 @@ msgctxt "place ad order step" msgid "Please select the owner for this Ad" msgstr "Seleccione un autor para este anuncio" -#: frontend/templates/page-place-ad-order-step.tpl.php:82 +#: frontend/templates/page-place-ad-order-step.tpl.php:84 msgctxt "listing order form" msgid "Continue" msgstr "Continuar" #: frontend/templates/page-place-ad-upload-images-step.tpl.php:15 #: includes/frontend/class-upload-media-submit-listing-section.php:133 -msgctxt "images upload step" -msgid "Thumbnails of already uploaded images are shown below." -msgstr "Las miniaturas de imágenes ya cargadas se muestra a continuación." - -#: frontend/templates/page-renew-ad-order-step.tpl.php:6 -msgctxt "renew ad order step" -msgid "Select Payment Term" -msgstr "Seleccione un término de pago" +msgctxt "images upload step" +msgid "Thumbnails of already uploaded images are shown below." +msgstr "Las miniaturas de imágenes ya cargadas se muestra a continuación." -#: frontend/templates/page-search-ads.tpl.php:88 +#: frontend/templates/page-search-ads.tpl.php:95 msgctxt "ad search form" msgid "Find Ads" msgstr "Buscar anuncios" -#: frontend/templates/payments-billing-form.tpl.php:1 -msgctxt "awpcp billing form" -msgid "" -"Please fill in the billing information in the form below to place your " -"payment." -msgstr "" -"Por favor, ingrese la información de pago en el formulario que está a " -"continuación para realziar su pago." - -#: frontend/templates/payments-checkout-page.tpl.php:13 +#: frontend/templates/payments-checkout-page.tpl.php:12 msgctxt "checkout step" msgid "" "You are about to pay for the following items. Please review the order and " @@ -10821,107 +11094,47 @@ msgstr "" "Usted está a punto de pagar por los siguientes artículos. Por favor, revise " "la orden y elija un método de pago." -#: frontend/templates/payments-checkout-page.tpl.php:17 +#: frontend/templates/payments-checkout-page.tpl.php:16 msgctxt "checkout step" msgid "Payment Terms" msgstr "Términos de pago" -#: frontend/templates/payments-checkout-page.tpl.php:23 +#: frontend/templates/payments-checkout-page.tpl.php:22 msgctxt "checkout step" msgid "Payment Method" msgstr "Método de pago" #: frontend/templates/payments-checkout-payment-page.tpl.php:8 -#: frontend/templates/payments-payment-page.tpl.php:3 msgctxt "checkout-payment page" msgid "You are about to pay for the following items." msgstr "Usted está a punto de pagar por los siguientes artículos." #: frontend/templates/payments-checkout-payment-page.tpl.php:10 -#: frontend/templates/payments-payment-page.tpl.php:5 msgctxt "checkout-payment page" msgid "Payment Terms" msgstr "Términos de pago" -#: includes/payments-api.php:802 +#: includes/payments-api.php:889 msgctxt "checkout-payment page" msgid "Please use the button below to complete your payment." msgstr "Por favor, utilice el botón que aparece debajo para completar su pago." -#: frontend/templates/payments-credit-plans-table.tpl.php:7 -msgctxt "credit plans table" -msgid "" -"You can additionally purchase a Credit Plan to add credit to your account. " -"If you select to pay using credits, the price of the selected payment term " -"will be deducted from your account balance after you have completed payment." -msgstr "" -"Adicionalmente usted puede comprar un plan de crédito para agregar crédito a " -"su cuenta. Si selecciona pagar con créditos, el precio del termino de pago " -"seleccionado sera deducido del saldo de su cuenta cuando completa el pago." - -#: frontend/templates/payments-credit-plans-table.tpl.php:51 -msgctxt "credit plans table" -msgid "clear selection" -msgstr "borrar selección" - -#: includes/payments-api.php:722 -msgctxt "credit plans table" -msgid "Plan" -msgstr "Plan" - -#: includes/payments-api.php:723 -msgctxt "credit plans table" -msgid "Description" -msgstr "Descripción" - -#: includes/payments-api.php:724 -msgctxt "credit plans table" -msgid "Credits" -msgstr "Créditos" - -#: includes/payments-api.php:725 -msgctxt "credit plans table" -msgid "Price" -msgstr "Precio" - -#: frontend/templates/payments-payment-completed-page.tpl.php:2 -msgctxt "payment completed page" -msgid "Transaction Details" -msgstr "Detalles de la Transacción" - #: frontend/templates/payments-paypal-payment-button.tpl.php:27 msgctxt "paypal-checkout-form" msgid "Return to %s" msgstr "Regresar a %s" -#: frontend/templates/payments-transaction-items-table.tpl.php:4 -#: frontend/templates/payments-transaction-items-table.tpl.php:13 -msgctxt "transaction items" -msgid "Item" -msgstr "Artículo" - -#: frontend/templates/payments-transaction-items-table.tpl.php:5 -#: frontend/templates/payments-transaction-items-table.tpl.php:17 -msgctxt "transaction items" -msgid "Amount" -msgstr "Cantidad" - -#: frontend/templates/payments-transaction-items-table.tpl.php:34 -msgctxt "transaction items" -msgid "Total Amount (credit)" -msgstr "Cantidad Total (crédito)" - #: frontend/templates/payments-transaction-items-table.tpl.php:40 msgctxt "transaction items" msgid "Total Amount" msgstr "Cantidad Total" -#: functions.php:743 +#: functions.php:749 msgctxt "comma separated list of things" msgid "%s and %d more." msgstr "%s y %d más." -#: functions.php:1200 +#: functions.php:1222 msgctxt "default blog title" msgid "Classifieds Website" msgstr "Página de Clasificados" @@ -11153,27 +11366,27 @@ msgctxt "listing status" msgid "Active" msgstr "Activo" -#: includes/admin/listings/class-listings-table-columns-handler.php:211 +#: includes/admin/listings/class-listings-table-columns-handler.php:212 msgctxt "listing status" msgid "Pending Approval" msgstr "Pendiente de aprobación" -#: includes/admin/listings/class-listings-table-columns-handler.php:215 +#: includes/admin/listings/class-listings-table-columns-handler.php:217 msgctxt "listing status" msgid "Expired" msgstr "Vencido" -#: includes/admin/listings/class-listings-table-columns-handler.php:219 +#: includes/admin/listings/class-listings-table-columns-handler.php:222 msgctxt "listing status" msgid "Disabled" msgstr "Desactivado" -#: includes/admin/listings/class-listings-table-columns-handler.php:223 +#: includes/admin/listings/class-listings-table-columns-handler.php:227 msgctxt "listing status" msgid "Pending Payment" msgstr "Pago Pendiente" -#: includes/admin/listings/class-listings-table-columns-handler.php:227 +#: includes/admin/listings/class-listings-table-columns-handler.php:232 msgctxt "listing status" msgid "Pending Verification" msgstr "Pendiente de verificación" @@ -11188,17 +11401,17 @@ msgctxt "listings row action" msgid "Quick View" msgstr "Vista rápida" -#: includes/class-awpcp.php:1458 +#: includes/class-awpcp.php:1449 msgctxt "[UI Datepicker] Display text for previous month link" msgid "<Prev" msgstr "<Anterior" -#: includes/class-awpcp.php:1459 +#: includes/class-awpcp.php:1450 msgctxt "[UI Datepicker] Display text for next month link" msgid "Next>" msgstr "Siguiente>" -#: includes/class-awpcp.php:1465 +#: includes/class-awpcp.php:1456 msgctxt "[UI Datepicker] The first day of the week, Sun = 0, Mon = 1, ..." msgid "0" msgstr "1" @@ -11251,7 +11464,7 @@ msgid "Regions" msgstr "Regiones" #. translators: the numbers that need to be added up for the math challenge. -#: includes/frontend/class-default-captcha-provider.php:34 +#: includes/frontend/class-default-captcha-provider.php:45 msgctxt "CAPTCHA" msgid "Enter the value of the following sum: %1$d + %2$d" msgstr "Ingresa el resultado de la siguiente suma: %1$d + %2$d" @@ -11281,12 +11494,7 @@ msgctxt "order submit listing section" msgid "Please select a category for your ad" msgstr "Por favor elige una categoría para tu anuncio" -#: templates/frontend/order-submit-listing-section.tpl.php:44 -msgctxt "order submit listing section" -msgid "Who is the owner of this ad?" -msgstr "¿Quién es el propietario de este anuncio?" - -#: templates/frontend/order-submit-listing-section.tpl.php:59 +#: templates/frontend/order-submit-listing-section.tpl.php:57 msgctxt "order submit listing section" msgid "" "Please select the duration and features that will be available for this ad" @@ -11294,68 +11502,63 @@ msgstr "" "Por elige la duración y las características que estarán disponibles para " "este anuncio" -#: templates/frontend/order-submit-listing-section.tpl.php:81 +#: templates/frontend/order-submit-listing-section.tpl.php:77 msgctxt "order submit listing section" msgid "Continue" msgstr "Continuar" -#: templates/frontend/order-submit-listing-section.tpl.php:87 -msgctxt "order submit listing section" -msgid "Your ad will be posted on the following categories: {categories}." -msgstr "Tu anuncio será publicado en las siguientes categorías: {categories}." - -#: templates/frontend/order-submit-listing-section.tpl.php:95 +#: templates/frontend/order-submit-listing-section.tpl.php:98 msgctxt "order submit listing section" msgid "Credit Plan:" msgstr "Plan de crédito:" -#: templates/frontend/order-submit-listing-section.tpl.php:96 +#: templates/frontend/order-submit-listing-section.tpl.php:99 msgctxt "order submit listing section" msgid "Owner:" msgstr "Propietario:" -#: templates/frontend/order-submit-listing-section.tpl.php:99 +#: templates/frontend/order-submit-listing-section.tpl.php:102 msgctxt "order submit listing section" msgid "Loading ad fields" msgstr "Cargando los campos del anuncio" -#: templates/frontend/order-submit-listing-section.tpl.php:100 +#: templates/frontend/order-submit-listing-section.tpl.php:103 msgctxt "order submit listing section" msgid "Change selection" msgstr "Cambiar selección" -#: includes/frontend/class-recaptcha-v2.php:66 +#: includes/frontend/class-recaptcha-v2.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing" msgstr "La clave secreta no fue enviada." -#: includes/frontend/class-recaptcha-v2.php:69 -#: includes/helpers/class-recaptcha-v3.php:74 +#: includes/frontend/class-recaptcha-v2.php:96 +#: includes/helpers/class-recaptcha-v3.php:96 msgctxt "recaptcha-error" msgid "The secret parameter is invalid or malformed." msgstr "La clave secreta no es válida o está mal formada." -#: includes/frontend/class-recaptcha-v2.php:72 +#: includes/frontend/class-recaptcha-v2.php:99 msgctxt "recaptcha-error" msgid "The response parameter is missing." msgstr "La respuesta del usuario no fue enviada." -#: includes/frontend/class-recaptcha-v2.php:76 +#: includes/frontend/class-recaptcha-v2.php:103 msgctxt "recaptcha-error" msgid "The response parameter is invalid or malformed." msgstr "La respuesta del usuario no es válida o está mal formada." -#: includes/helpers/class-recaptcha-v3.php:71 +#: includes/helpers/class-recaptcha-v3.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing." msgstr "La clave secreta no fue definida." -#: includes/helpers/class-recaptcha-v3.php:77 +#: includes/helpers/class-recaptcha-v3.php:99 msgctxt "recaptcha-error" msgid "reCAPTCHA score was not included." msgstr "La calificación de reCAPTCHA no fue incluida." -#: includes/helpers/class-recaptcha-v3.php:81 +#: includes/helpers/class-recaptcha-v3.php:103 msgctxt "recaptcha-error" msgid "reCAPTCHA couldn't analyze the current interaction." msgstr "No fue posible analizar la interacción actual con reCAPTCHA." @@ -11493,7 +11696,7 @@ msgid "remaining" msgstr "restantes" #. translators: %s is the type of region. -#: includes/helpers/widgets/multiple-region-selector.php:122 +#: includes/helpers/widgets/multiple-region-selector.php:142 msgctxt "Select in Multiple Region Selector" msgid "Select %s" msgstr "Seleccionar %s" @@ -11514,7 +11717,7 @@ msgid "Add New" msgstr "Añadir nuevo" #: includes/models/class-custom-post-types.php:157 -#: includes/settings/class-listings-settings.php:595 +#: includes/settings/class-listings-settings.php:597 msgctxt "listing post type slug" msgid "classifieds" msgstr "clasificados" @@ -11534,7 +11737,7 @@ msgctxt "payment gateways" msgid "2Checkout" msgstr "2Checkout" -#: includes/payment-gateway-paypal-standard.php:24 +#: includes/payment-gateway-paypal-standard.php:26 msgctxt "payment gateways" msgid "PayPal" msgstr "PayPal" @@ -11572,57 +11775,77 @@ msgid_plural "Years" msgstr[0] "Año" msgstr[1] "Años" -#: includes/payment-terms-table.php:33 +#: includes/payment-terms-table.php:38 msgctxt "place ad payment terms column headers" msgid "Payment Term" msgstr "Término de Pago" -#: includes/payment-terms-table.php:34 +#: includes/payment-terms-table.php:39 msgctxt "place ad payment terms column headers" msgid "Ads Allowed" msgstr "Anuncios permitidos" -#: includes/payment-terms-table.php:35 +#: includes/payment-terms-table.php:40 msgctxt "place ad payment terms column headers" msgid "Images Allowed" msgstr "Imágenes permitidas" -#: includes/payment-terms-table.php:36 +#: includes/payment-terms-table.php:41 msgctxt "place ad payment terms column headers" msgid "Characters in Title" msgstr "Caracteres en el título" -#: includes/payment-terms-table.php:37 +#: includes/payment-terms-table.php:42 msgctxt "place ad payment terms column headers" msgid "Chars in Description" msgstr "Caracteres en la descripción" -#: includes/payment-terms-table.php:38 +#: includes/payment-terms-table.php:43 msgctxt "place ad payment terms column headers" msgid "Duration" msgstr "Duración" -#: includes/payment-terms-table.php:44 +#: includes/payment-terms-table.php:49 msgctxt "place ad payment terms column headers" msgid "Price (currency)" msgstr "Precio (moneda)" -#: includes/payment-terms-table.php:49 +#: includes/payment-terms-table.php:54 msgctxt "place ad payment terms column headers" msgid "Price (credits)" msgstr "Precio (crédito)" -#: includes/payment-terms-table.php:106 includes/payment-terms-table.php:111 +#: includes/payment-terms-table.php:139 includes/payment-terms-table.php:145 msgctxt "payment term duration" msgid "No Limit" msgstr "Sin límite" -#: includes/settings/class-email-settings.php:135 +#: includes/payments-api.php:757 +msgctxt "credit plans table" +msgid "Plan" +msgstr "Plan" + +#: includes/payments-api.php:758 +msgctxt "credit plans table" +msgid "Description" +msgstr "Descripción" + +#: includes/payments-api.php:759 +msgctxt "credit plans table" +msgid "Credits" +msgstr "Créditos" + +#: includes/payments-api.php:760 +msgctxt "credit plans table" +msgid "Price" +msgstr "Precio" + +#: includes/settings/class-email-settings.php:137 msgctxt "reply to ad email" msgid "Response to your classified ad: {listing_title}" msgstr "Respuesta a tu anuncio clasificado: {listing_title}" -#: includes/settings/class-email-settings.php:136 +#: includes/settings/class-email-settings.php:138 msgctxt "reply to ad email" msgid "" "Someone has responded to your classified ad.\n" @@ -11655,12 +11878,12 @@ msgstr "" "{website_title}\n" "{website_url}" -#: includes/settings/class-email-settings.php:161 +#: includes/settings/class-email-settings.php:163 msgctxt "reply to ad email" msgid "Notification about a response regarding ad: {listing_title}" msgstr "Notificación acerca de una respuesta para el anuncio: {listing_title}" -#: includes/settings/class-email-settings.php:162 +#: includes/settings/class-email-settings.php:164 msgctxt "reply to ad email" msgid "" "Someone has responded to one of the classified ads on your website.\n" @@ -11693,12 +11916,12 @@ msgstr "" "{website_title}\n" "{website_url}" -#: installer.php:833 +#: installer.php:318 msgctxt "reply to ad email" msgid "{__previous_subject__} regarding: {listing_title}" msgstr "{__previous_subject__} sobre el anuncio: {listing_title}" -#: installer.php:834 +#: installer.php:319 msgctxt "reply to ad email" msgid "" "{__previous_body__}\n" @@ -11798,17 +12021,6 @@ msgstr "" "Deseleccione para mostrar los precios sin decimales. El valor será " "redondeado." -#: includes/settings/class-licenses-settings.php:81 -msgctxt "settings" -msgid "" -"The IP address of your server is . Please make sure to include " -"that information if you need to contact support about problems trying to " -"activate your licenses." -msgstr "" -"La dirección IP de tu servidor es . Por favor asegúrate de " -"incluir esa información cuando te comuniques con el equipo de soporte para " -"reportar problemas intentando activar tus licencias." - #: includes/settings/class-payment-general-settings.php:100 msgctxt "settings" msgid "Pay before entering Ad details" @@ -11848,7 +12060,7 @@ msgstr "" "Estas opciones afectan el título mostrado en la barra de título del " "navegador. Puede incluir o remover los elementos que considere apropiados." -#: includes/settings/class-listings-settings.php:599 +#: includes/settings/class-listings-settings.php:601 msgctxt "listing url settings section" msgid "" "These settings affect the URL path shown for listings. You can include or " @@ -11858,9 +12070,11 @@ msgstr "" "quitar elementos para mejorar la calificación que los motores de búsqueda le " "dan a esas URLs." -#: includes/settings/class-listings-settings.php:605 +#. translators: %s: example URL +#: includes/settings/class-listings-settings.php:610 +#, fuzzy msgctxt "listing url settings section" -msgid "Example path: ." +msgid "Example path: %s." msgstr "Ruta de ejemplo: ." #: includes/settings/renderers/class-wordpress-page-settings-renderer.php:27 @@ -11868,10 +12082,12 @@ msgctxt "page settings" msgid "— Select —" msgstr "— Elegir —" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:40 +#. translators: %1$s is a dropdown with existing pages, %2$s is a link to +#. create a new page +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:34 msgctxt "page settings" -msgid "Select existing page {dropdown} -or- {create_page_button}" -msgstr "Elegir una página existente {dropdown} -o- {create_page_button}" +msgid "Select existing page %1$s -or- %2$s" +msgstr "" #. translators: %1$s the success message, %2$s the error message #: includes/views/admin/listings/class-listing-action-admin-page.php:22 @@ -11892,13 +12108,15 @@ msgstr "" "Puedes revisar el registro de errores de tu sitio o servidor para obtener " "más detalles." -#: templates/admin/export-listings-admin-page.tpl.php:25 +#. translators: %1$s: memory_limit link, %2$s: max_execution_time link +#: templates/admin/export-listings-admin-page.tpl.php:27 +#, fuzzy msgctxt "listings-csv-export" msgid "" "Please note that the export process is a resource intensive task. If your " "export does not succeed try disabling other plugins first and/or increasing " -"the values of the 'memory_limit' and 'max_execution_time' directives in your " -"server's php.ini configuration file." +"the values of the %1$s and %2$s directives in your server php.ini " +"configuration file." msgstr "" "Debes tener en cuenta que el proceso de exportar es una tarea que require " "una cantidad significativa de recursos de computo. Si el proceso falla, " @@ -11906,47 +12124,47 @@ msgstr "" "directivas 'memory_limit' y 'max_execution_time' en el archivo de " "configuración php.ini de tu servidor." -#: templates/admin/export-listings-admin-page.tpl.php:44 +#: templates/admin/export-listings-admin-page.tpl.php:39 msgctxt "listings-csv-export" msgid "Export Configuration" msgstr "Configuración de exportación" -#: templates/admin/export-listings-admin-page.tpl.php:47 +#: templates/admin/export-listings-admin-page.tpl.php:42 msgctxt "listings-csv-export" msgid "Export settings" msgstr "Exportar ajustes" -#: templates/admin/export-listings-admin-page.tpl.php:51 +#: templates/admin/export-listings-admin-page.tpl.php:46 msgctxt "listings-csv-export" msgid "Which listings to export?" msgstr "¿Cuáles anuncios deseas exportar?" -#: templates/admin/export-listings-admin-page.tpl.php:55 +#: templates/admin/export-listings-admin-page.tpl.php:50 msgctxt "listings-csv-export" msgid "All" msgstr "Todos" -#: templates/admin/export-listings-admin-page.tpl.php:56 +#: templates/admin/export-listings-admin-page.tpl.php:51 msgctxt "listings-csv-export" msgid "Active Only" msgstr "Anuncios activos" -#: templates/admin/export-listings-admin-page.tpl.php:57 +#: templates/admin/export-listings-admin-page.tpl.php:52 msgctxt "listings-csv-export" msgid "Active + Pending Renewal" msgstr "Anuncios activos y pendientes por renovar" -#: templates/admin/export-listings-admin-page.tpl.php:63 +#: templates/admin/export-listings-admin-page.tpl.php:58 msgctxt "listings-csv-export" msgid "Export images?" msgstr "¿Deseas exportar imágenes?" -#: templates/admin/export-listings-admin-page.tpl.php:68 +#: templates/admin/export-listings-admin-page.tpl.php:63 msgctxt "listings-csv-export" msgid "Export images" msgstr "Exportar imágenes" -#: templates/admin/export-listings-admin-page.tpl.php:71 +#: templates/admin/export-listings-admin-page.tpl.php:66 msgctxt "listings-csv-export" msgid "" "When checked, instead of just a CSV file a ZIP file will be generated with " @@ -11956,17 +12174,17 @@ msgstr "" "archivo ZIP que contiene un archivo CSV con la información de los anuncios y " "los archivos de imagen asociado a esos anuncios." -#: templates/admin/export-listings-admin-page.tpl.php:77 +#: templates/admin/export-listings-admin-page.tpl.php:72 msgctxt "listings-csv-export" msgid "Additional metadata to export:" msgstr "Exportar los siguientes metadatos adicionales:" -#: templates/admin/export-listings-admin-page.tpl.php:82 +#: templates/admin/export-listings-admin-page.tpl.php:77 msgctxt "listings-csv-export" msgid "Include unique IDs for each listing (sequence_id column)." msgstr "Incluir un ID único para cada anuncio (columna sequence_id)." -#: templates/admin/export-listings-admin-page.tpl.php:85 +#: templates/admin/export-listings-admin-page.tpl.php:80 msgctxt "listings-csv-export" msgid "" "If you plan to re-import the listings into AWPCP and don't want new ones " @@ -11976,42 +12194,42 @@ msgstr "" "fueron exportados y no quieres crear anuncios nuevos con información " "duplicada." -#: templates/admin/export-listings-admin-page.tpl.php:90 +#: templates/admin/export-listings-admin-page.tpl.php:85 msgctxt "listings-csv-export" msgid "Author information (username)" msgstr "Información del autor (nombre de usuario)" -#: templates/admin/export-listings-admin-page.tpl.php:96 +#: templates/admin/export-listings-admin-page.tpl.php:91 msgctxt "listings-csv-export" msgid "CSV File Settings" msgstr "Opciones del archivo CSV" -#: templates/admin/export-listings-admin-page.tpl.php:100 +#: templates/admin/export-listings-admin-page.tpl.php:95 msgctxt "listings-csv-export" msgid "Image Separator" msgstr "Separador de imágenes" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "Category Separator" msgstr "Separador de categorías" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "required" msgstr "requerido" -#: templates/admin/export-listings-admin-page.tpl.php:118 +#: templates/admin/export-listings-admin-page.tpl.php:113 msgctxt "listings-csv-export" msgid "Export Listings" msgstr "Exportar anuncios" -#: templates/admin/export-listings-admin-page.tpl.php:124 +#: templates/admin/export-listings-admin-page.tpl.php:119 msgctxt "listings-csv-export" msgid "Export in Progress..." msgstr "Exportación en progreso..." -#: templates/admin/export-listings-admin-page.tpl.php:125 +#: templates/admin/export-listings-admin-page.tpl.php:120 msgctxt "listings-csv-export" msgid "" "Your export file is being prepared. Please do not leave this page until the " @@ -12020,27 +12238,22 @@ msgstr "" "Tu información está siendo preparada. Por favor no abandones la página hasta " "que la exportación termine." -#: templates/admin/export-listings-admin-page.tpl.php:128 +#: templates/admin/export-listings-admin-page.tpl.php:123 msgctxt "listings-csv-export" msgid "No. of listings:" msgstr "Número de anuncios:" -#: templates/admin/export-listings-admin-page.tpl.php:130 +#: templates/admin/export-listings-admin-page.tpl.php:125 msgctxt "listings-csv-export" msgid "Approximate export file size:" msgstr "Tamaño aproximado del archivo generado:" -#: templates/admin/export-listings-admin-page.tpl.php:137 +#: templates/admin/export-listings-admin-page.tpl.php:132 msgctxt "listings-csv-export" msgid "Cancel Export" msgstr "Cancelar exportación" -#: templates/admin/export-listings-admin-page.tpl.php:142 -msgctxt "listings-csv-export" -msgid "Export Complete" -msgstr "Exportación completa" - -#: templates/admin/export-listings-admin-page.tpl.php:143 +#: templates/admin/export-listings-admin-page.tpl.php:138 msgctxt "listings-csv-export" msgid "" "Your export file has been successfully created and it is now ready for " @@ -12050,32 +12263,27 @@ msgstr "" "para ser descargada." #. translators: %1$s filename %2$s filesize. -#: templates/admin/export-listings-admin-page.tpl.php:149 +#: templates/admin/export-listings-admin-page.tpl.php:144 msgctxt "listings-csv-export" msgid "Download %1$s (%2$s)" msgstr "Descargar %1$s (%2$s)" -#: templates/admin/export-listings-admin-page.tpl.php:160 +#: templates/admin/export-listings-admin-page.tpl.php:155 msgctxt "listings-csv-export" msgid "Cleanup" msgstr "Limpiar" -#: templates/admin/export-listings-admin-page.tpl.php:165 -msgctxt "listings-csv-export" -msgid "Export Canceled" -msgstr "Exportación cancelada" - -#: templates/admin/export-listings-admin-page.tpl.php:166 +#: templates/admin/export-listings-admin-page.tpl.php:161 msgctxt "listings-csv-export" msgid "The export has been canceled." msgstr "La exportación ha sido cancelada." -#: templates/admin/export-listings-admin-page.tpl.php:167 +#: templates/admin/export-listings-admin-page.tpl.php:162 msgctxt "listings-csv-export" msgid "← Return to CSV Export" msgstr "← Regresar a exportar anuncios" -#: templates/admin/export-listings-admin-page.tpl.php:101 +#: templates/admin/export-listings-admin-page.tpl.php:96 msgctxt "admin forms" msgid "required" msgstr "requerido" @@ -12127,43 +12335,6 @@ msgctxt "The 'or' after 'Drop files here to upload' in Media Uploader" msgid "or" msgstr "o" -#: templates/email/listing-media-upload-notification.plain.tpl.php:1 -msgctxt "listing media uploaded notification" -msgid "Hello," -msgstr "Hola," - -#: templates/email/listing-media-upload-notification.plain.tpl.php:5 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\":" -msgstr "" -"Los siguientes archivos fueron subidos recientemente al anuncio \"\":" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:16 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\" and are awaiting approval:" -msgstr "" -"Los siguientes archivos fueron subidos recientemente al anuncio \"\" y están pendientes de ser aprobados:" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:26 -msgctxt "listing media uploaded notification" -msgid "" -"Click here to manage media uploaded to the listing: ." -msgstr "" -"Haga click aquí para visualizar o organizar los archivos subidos al anuncio: " -"." - -#: templates/email/listing-media-upload-notification.plain.tpl.php:31 -msgctxt "listing media uploaded notification" -msgid "Click here to view the listing: ." -msgstr "Haga click aquí para ver el anuncio: ." - #: templates/frontend/actions-submit-listing-section.tpl.php:7 msgctxt "actions submit listing section" msgid "Actions" @@ -12199,151 +12370,75 @@ msgctxt "upload media submit listing section" msgid "Loading..." msgstr "Cargando..." -#: templates/privacy-policy.tpl.php:10 -msgctxt "privacy policy" -msgid "" -"When you submit a classified listing, the content of the listing and its " -"metadata are retained indefinitely. All users can see, edit or delete the " -"personal information included on their listings at any time. Website " -"administrators can also see and edit that information." -msgstr "" -"Cuando publica un anuncio clasificado, el contenido del anuncio y los " -"metadatos asociados son retenidos indefinidamente. Todos los usuarios puede " -"even, editar o eliminar la información personal incluida en sus anuncios en " -"cualquier momento. Los administradores del sitio también pueden ver y editar " -"esa información." +#~ msgid "Duration: " +#~ msgstr "Duración: " -#: templates/privacy-policy.tpl.php:12 -msgctxt "privacy policy" -msgid "" -"Website visitors can see the contact name, website URL, phone number, " -"address and other information included in your submission to describe the " -"classified listing." -msgstr "" -"Los visitantes del sitio web pueden ver la información de contacto, la URL " -"de sitio web, el número telefónico, la dirección y demás información " -"incluida en la publicación para describir el anuncio clasificado." +#~ msgid "# of images: " +#~ msgstr "Número de imágenes: " -#: templates/privacy-policy.tpl.php:14 -msgctxt "privacy policy" -msgid "" -"Contact name, email address, website URL and content of submitted classified " -"listings may be checked through Akismet's spam detection service. The " -"Akismet service privacy policy is available here." -msgstr "" -"El nombre de contacto, la dirección de correo electrónico, la URL del sitio " -"web y el contenido de los anuncios clasificados publicados pueden ser " -"revisados a través del servicio de detección de correo no deseado de " -"Akismet. La política de privacidad para el servicio ofrecido por Akismet " -"está disponible aquí." +#~ msgid "Chars in title: " +#~ msgstr "Caracteres en el título: " -#: templates/privacy-policy.tpl.php:16 -msgctxt "privacy policy" -msgid "Payment Information" -msgstr "Información de pago" +#~ msgid "Chars in description: " +#~ msgstr "Caracteres en la descripción: " -#: templates/privacy-policy.tpl.php:18 -msgctxt "privacy policy" -msgid "" -"If you pay to post a classified listing entering your credit card and " -"billing information directly on {home_url}, the " -"credit card information won't be stored but it will be shared through a " -"secure connection with the following payment gateways to process the payment:" -msgstr "" -"Si usted paga para publicar un anuncio clasificado ingresando información de " -"cobro y tarjeta de crédito diréctamente en {home_url}" -", la información de la tarjeta de crédito no será almacenada, pero será " -"compartida a través de una conexión segura con las siguientes pasarelas de " -"pago con el propósito de procesar el pago:" +#~ msgid "Documentation" +#~ msgstr "Documentación" -#: templates/privacy-policy.tpl.php:21 -msgctxt "privacy policy" -msgid "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -msgstr "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgid "Status: " +#~ msgstr "Estado: " -#: templates/privacy-policy.tpl.php:22 -msgctxt "privacy policy" -msgid "" -"Authorize.Net — https://www.authorize.net/company/privacy/" -msgstr "" -"Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgctxt "debug page" +#~ msgid "PHP Version" +#~ msgstr "Versión PHP" -#: templates/privacy-policy.tpl.php:23 -msgctxt "privacy policy" -msgid "" -"Stripe — https://stripe.com/" -"us/privacy/" -msgstr "" -"Stripe — https://stripe.com/" -"us/privacy/" +#~ msgctxt "Browse the Quick Start Guide" +#~ msgid "Browse the %s." +#~ msgstr "Explore la %s." -#: templates/privacy-policy.tpl.php:26 -msgctxt "privacy policy" -msgid "Regions" -msgstr "Regiones" +#~ msgctxt "place ad checkout step" +#~ msgid "Complete Payment" +#~ msgstr "Completar Pago" -#: templates/privacy-policy.tpl.php:28 -msgctxt "privacy policy" -msgid "" -"If you choose to see listings published on a specific region, a cookie will " -"be stored on your browser for the remainder of the session to remember the " -"selected region." -msgstr "" -"Si usted elige ver anuncios publicados en una región geográfica específica, " -"una cookie utilizada para recordar la región seleccionada será almacenada en " -"su navegador durante el tiempo que su sesión permanezca activa." +#~ msgctxt "transaction items" +#~ msgid "Amount" +#~ msgstr "Cantidad" -#: templates/privacy-policy.tpl.php:30 -msgctxt "privacy policy" -msgid "Comments and Ratings" -msgstr "Comentarios y Calificaciones" +#~ msgctxt "page settings" +#~ msgid "Select existing page {dropdown} -or- {create_page_button}" +#~ msgstr "Elegir una página existente {dropdown} -o- {create_page_button}" -#: templates/privacy-policy.tpl.php:32 -msgctxt "privacy policy" -msgid "" -"When visitors leave comments and reviews for classified listings we collect " -"the data shown in the comments form, and also the visitor’s IP address to " -"help spam detection." -msgstr "" -"Cuando los visitantes publiquen comentarios y calificaciones para los " -"anuncios clasificados almacenaremos la información mostrada en el formulario " -"y la dirección IP del visitante con el evito de controlar la publicación de " -"comentarios y ayudar a detectar mensajes no deseados." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgstr "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -#: templates/privacy-policy.tpl.php:34 -msgctxt "privacy policy" -msgid "" -"Visitor comments may be checked through Akismet's spam detection service. " -"The Akismet service privacy policy is available here." -msgstr "" -"Los comentarios de los visitantes pueden ser revisados a través del servicio " -"de detección de mensajes no deseados de Akisment. La política de privacidad " -"para el servicio ofrecido por Akismet está disponible aquí." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgstr "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" -#: templates/privacy-policy.tpl.php:36 -msgctxt "privacy policy" -msgid "Restricted Categories" -msgstr "Categorías Restringidas" +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Stripe — https://stripe." +#~ "com/us/privacy/" +#~ msgstr "" +#~ "Stripe — https://stripe." +#~ "com/us/privacy/" -#: templates/privacy-policy.tpl.php:38 -msgctxt "privacy policy" -msgid "" -"When you agree to see listings or publish a listing on a restricted " -"category, a cookie will be stored in your browser to remember your decision. " -"The cookie will be stored on your browser for the remainder of that session." -msgstr "" -"Cuando acepte ver o publicar un anuncio en una categoría restringida, una " -"cookie será almacenada en su navegador para recordar su decisión. La cookie " -"será almacenada durante el tiempo que su sesión permanezca activa." +#~ msgctxt "privacy policy" +#~ msgid "Regions" +#~ msgstr "Regiones" + +#~ msgctxt "privacy policy" +#~ msgid "Restricted Categories" +#~ msgstr "Categorías Restringidas" #~ msgid "AWPCP" #~ msgstr "AWPCP" @@ -12426,9 +12521,6 @@ msgstr "" #~ msgid "PayFast" #~ msgstr "PayFast" -#~ msgid "Restricted Categories" -#~ msgstr "Categorías Restringidas" - #~ msgid "The number of regions allowed must be equal or greater than zero." #~ msgstr "El número de regiones permitidas debe ser mayor o igual que cero." diff --git a/languages/another-wordpress-classifieds-plugin-fr_FR.mo b/languages/another-wordpress-classifieds-plugin-fr_FR.mo index 79ee0074f..41e002e81 100644 Binary files a/languages/another-wordpress-classifieds-plugin-fr_FR.mo and b/languages/another-wordpress-classifieds-plugin-fr_FR.mo differ diff --git a/languages/another-wordpress-classifieds-plugin-fr_FR.po b/languages/another-wordpress-classifieds-plugin-fr_FR.po index fb0dcec3c..0f9b48099 100644 --- a/languages/another-wordpress-classifieds-plugin-fr_FR.po +++ b/languages/another-wordpress-classifieds-plugin-fr_FR.po @@ -29,7 +29,7 @@ msgstr "" "Project-Id-Version: Another WordPress Classifieds Plugin\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/another-wordpress-" "classifieds-plugin\n" -"POT-Creation-Date: 2024-03-20 20:22:37+00:00\n" +"POT-Creation-Date: 2024-06-13 20:37:03+00:00\n" "PO-Revision-Date: 2020-10-15 19:51+0000\n" "Last-Translator: Diego Giraldo \n" "Language-Team: French (France) (http://www.transifex.com/wp-translations/" @@ -45,21 +45,21 @@ msgstr "" #: admin/fees/class-fee-details-form.php:39 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:9 #: includes/settings/class-payment-general-settings.php:60 -#: templates/admin/manage-categories-admin-page.tpl.php:31 +#: templates/admin/manage-categories-admin-page.tpl.php:32 msgid "Name" msgstr "Nom" #: admin/admin-panel-credit-plans-table.php:80 #: admin/fees/class-fee-details-form.php:45 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:25 -#: templates/admin/manage-categories-admin-page.tpl.php:36 +#: templates/admin/manage-categories-admin-page.tpl.php:37 msgid "Description" msgstr "Description" #: admin/admin-panel-credit-plans-table.php:81 #: admin/admin-panel-fees-table.php:121 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:14 -#: includes/settings/class-payment-general-settings.php:270 +#: includes/settings/class-payment-general-settings.php:272 msgid "Credits" msgstr "Crédits" @@ -68,7 +68,7 @@ msgstr "Crédits" #: admin/fees/class-fee-details-form.php:222 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:19 #: frontend/placeholders.php:514 -#: includes/settings/class-display-settings.php:483 +#: includes/settings/class-display-settings.php:482 #: includes/settings/class-payment-general-settings.php:61 msgid "Price" msgstr "Prix" @@ -94,25 +94,29 @@ msgstr "Privé" msgid " " msgstr " " -#: admin/admin-panel-fees-table.php:196 -msgid "Duration: " -msgstr "Durée: " +#: admin/admin-panel-fees-table.php:197 +#, fuzzy +msgid "Duration: %s" +msgstr "Durée" -#: admin/admin-panel-fees-table.php:206 -msgid "# of images: " -msgstr "# d'images: " +#: admin/admin-panel-fees-table.php:207 +#, fuzzy +msgid "# of images: %s" +msgstr "# d'images:" #: admin/admin-panel-fees-table.php:219 admin/admin-panel-fees-table.php:235 msgid "unlimited" msgstr "illimité" -#: admin/admin-panel-fees-table.php:222 -msgid "Chars in title: " -msgstr "Caractères dans le titre: " +#: admin/admin-panel-fees-table.php:223 +#, fuzzy +msgid "Chars in title: %s" +msgstr "Caractères dans le titre:" -#: admin/admin-panel-fees-table.php:238 -msgid "Chars in description: " -msgstr "Caractères dans la description: " +#: admin/admin-panel-fees-table.php:239 +#, fuzzy +msgid "Chars in description: %s" +msgstr "Caractères dans la description" #: admin/admin-panel-fees-table.php:265 admin/admin-panel-fees-table.php:269 #: templates/admin/import/supported-csv-headers.tpl.php:31 @@ -144,7 +148,7 @@ msgstr "L’utilisateur indiqué n’existe pas." msgid "Manual Upgrade" msgstr "Mise à jour manuelle" -#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:799 +#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:783 #: includes/models/class-custom-post-types.php:97 #: includes/models/class-custom-post-types.php:99 #: includes/settings/class-listings-settings.php:30 @@ -160,20 +164,20 @@ msgid "Dashboard" msgstr "Tableau de bord" #: admin/admin-panel.php:140 admin/admin-panel.php:141 -#: admin/admin-panel.php:509 +#: admin/admin-panel.php:492 msgid "Settings" msgstr "Réglages" #: admin/admin-panel.php:154 -#: templates/admin/main-classifieds-admin-page.tpl.php:86 -#: templates/admin/main-classifieds-admin-page.tpl.php:111 +#: templates/admin/main-classifieds-admin-page.tpl.php:88 +#: templates/admin/main-classifieds-admin-page.tpl.php:116 msgid "Manage Categories" msgstr "Gestion des rubriques" #: admin/admin-panel.php:203 admin/admin-panel.php:204 #: admin/form-fields/class-form-fields-admin-page.php:12 -#: includes/settings/class-display-settings.php:298 -#: includes/settings/class-display-settings.php:438 +#: includes/settings/class-display-settings.php:297 +#: includes/settings/class-display-settings.php:437 msgid "Form Fields" msgstr "Champs du formulaire" @@ -206,7 +210,7 @@ msgstr "Importation & exportation" msgid "Debug" msgstr "Débogage" -#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:24 +#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:38 msgid "Debug Information" msgstr "Informations de débogage" @@ -215,12 +219,12 @@ msgid "Uninstall" msgstr "Désinstaller" #: admin/admin-panel.php:354 admin/admin-panel.php:355 -#: admin/admin-panel.php:826 frontend/templates/page-renew-ad.tpl.php:3 +#: admin/admin-panel.php:810 frontend/templates/page-renew-ad.tpl.php:3 #: includes/admin/class-admin-container-configuration.php:175 msgid "Renew Ad" msgstr "Renouveler l’annonce" -#: admin/admin-panel.php:427 +#: admin/admin-panel.php:417 msgid "" "Use the Account Balance column on the table below to manage credit balance " "for users." @@ -228,7 +232,7 @@ msgstr "" "Utilisez la colonne Solde du compte dans le tableau ci-dessous pour gérer le " "solde créditeur des utilisateurs." -#: admin/admin-panel.php:446 +#: admin/admin-panel.php:436 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing." @@ -236,7 +240,7 @@ msgstr "" "Les options d'AWPCP sont momentanément désactivées car l'extension nécessite " "une mise à jour manuelle pour continuer à fonctionner." -#: admin/admin-panel.php:447 +#: admin/admin-panel.php:437 msgid "" "The duration for this upgrade operation varies between several minutes and a " "few hours, depending on the size of your database, the current network " @@ -254,7 +258,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the page explaining how #. to downgrade to a previous version of the plugin, %2$s is the closing tag #. for the link. -#: admin/admin-panel.php:450 +#: admin/admin-panel.php:440 msgid "" "If this is not a good time to go through the upgrade process, we recommend " "you to %1$sinstall the previous version again%2$s and plan to upgrade " @@ -267,7 +271,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:456 +#: admin/admin-panel.php:446 msgid "" "To upgrade, please %1$sgo to the Classifieds admin section%2$s or click the " "button below." @@ -278,7 +282,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:466 +#: admin/admin-panel.php:456 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing. Please %1$sgo to the Classifieds " @@ -291,7 +295,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:488 +#: admin/admin-panel.php:471 msgid "" "AWPCP needs you to perform a manual upgrade to update the database schema " "and the information stored there. All plugin features will continue to work " @@ -305,7 +309,7 @@ msgstr "" "section des administrateurs des petites annonces pour mettre à niveau %2$s " "ou cliquer sur le bouton ci-dessous." -#: admin/admin-panel.php:562 +#: admin/admin-panel.php:545 msgid "" "Page %1$s has the same URL as the %2$s from AWPCP. The WordPress page %1$s " "is going to be unreachable until this changes." @@ -319,7 +323,7 @@ msgstr[1] "" "La page %1$s a la même URL que le %2$s de AWPCP. La page WordPress %1$s sera " "inaccessible jusqu'à ce que cela change." -#: admin/admin-panel.php:570 +#: admin/admin-panel.php:553 msgid "" "The %1$s is dynamic; you don't need to create a real WordPress page to show " "the list of categories, the plugin will generate it for you. If the " @@ -345,77 +349,78 @@ msgstr[1] "" "catégories AWPCP, vous pouvez la supprimer et ce message d'erreur " "disparaîtra. Sinon, assurez-vous de ne pas avoir les noms de page en double." -#: admin/admin-panel.php:765 admin/class-categories-admin-page.php:60 +#: admin/admin-panel.php:749 admin/class-categories-admin-page.php:60 #: admin/class-categories-admin-page.php:64 msgid "Manage Category Icon" msgstr "Gestion des icônes de rubrique" -#: admin/admin-panel.php:770 admin/class-categories-admin-page.php:35 +#: admin/admin-panel.php:754 admin/class-categories-admin-page.php:35 #: admin/class-categories-admin-page.php:39 #: admin/class-categories-admin-page.php:133 msgid "Edit Category" msgstr "Modifier la rubrique" -#: admin/admin-panel.php:771 admin/class-categories-admin-page.php:46 +#: admin/admin-panel.php:755 admin/class-categories-admin-page.php:46 #: admin/class-categories-admin-page.php:50 msgid "Delete Category" msgstr "Supprimer la rubrique" -#: admin/admin-panel.php:776 +#: admin/admin-panel.php:760 msgid "Select {category_name}" msgstr "Sélectionnez {category_name}" -#: admin/admin-panel.php:814 frontend/page-reply-to-ad.php:11 +#: admin/admin-panel.php:798 frontend/page-reply-to-ad.php:11 msgid "Reply to Ad" msgstr "Répondre à l’annonce" -#: admin/admin-panel.php:822 admin/templates/admin-panel-listings.tpl.php:5 +#: admin/admin-panel.php:806 admin/templates/admin-panel-listings.tpl.php:5 msgid "Place Ad" msgstr "Ajouter une annonce" -#: admin/admin-panel.php:830 frontend/page-browse-ads.php:9 +#: admin/admin-panel.php:814 frontend/page-browse-ads.php:9 msgid "Browse Ads" msgstr "Parcourir toutes les annonces" -#: admin/admin-panel.php:834 admin/templates/admin-panel-listings.tpl.php:11 +#: admin/admin-panel.php:818 admin/templates/admin-panel-listings.tpl.php:20 #: frontend/page-search-ads.php:9 msgid "Search Ads" msgstr "Rechercher des annonces" -#: admin/categories/class-create-category-admin-page.php:38 -#: admin/categories/class-delete-categories-admin-page.php:55 -#: admin/categories/class-delete-category-admin-page.php:68 -#: admin/categories/class-move-categories-admin-page.php:54 -#: admin/categories/class-update-category-admin-page.php:50 +#: admin/categories/class-create-category-admin-page.php:39 +#: admin/categories/class-delete-categories-admin-page.php:57 +#: admin/categories/class-delete-category-admin-page.php:69 +#: admin/categories/class-move-categories-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:51 msgid "invalid nonce" msgstr "" -#: admin/categories/class-create-category-admin-page.php:42 +#: admin/categories/class-create-category-admin-page.php:43 msgid "The new category was successfully added." msgstr "La nouvelle rubrique a bien été ajoutée." -#: admin/categories/class-delete-categories-admin-page.php:61 +#: admin/categories/class-delete-categories-admin-page.php:64 +#, fuzzy msgid "" "The categories couldn't be deleted because there was an error trying to load " -"the categoery that you selecetd to become the new category associated to " -"affected ads. " +"the categoery that you selected to become the new category associated to " +"affected ads. %s" msgstr "" "Les catégories n'ont pas pu être supprimées car une erreur s'est produite " "lors de la tentative de chargement de la catégorie que vous avez " "sélectionnée pour devenir la nouvelle catégorie associée aux annonces " "concernées. " -#: admin/categories/class-delete-categories-admin-page.php:71 +#: admin/categories/class-delete-categories-admin-page.php:75 msgid "The selected categories have been deleted." msgstr "Les catégories sélectionnées ont été supprimées." -#: admin/categories/class-delete-categories-admin-page.php:76 +#: admin/categories/class-delete-categories-admin-page.php:80 msgid "There was an error trying to delete the selected categories." msgstr "" "Une erreur s'est produite lors de la tentative de suppression des catégories " "sélectionnées." -#: admin/categories/class-delete-categories-admin-page.php:80 +#: admin/categories/class-delete-categories-admin-page.php:84 msgid "" " (out of ) categories were deleted. " "However, there was an error trying to delete the other ." -#: admin/categories/class-delete-category-admin-page.php:41 +#: admin/categories/class-delete-category-admin-page.php:42 msgid "The category you are trying to delete doesn't exist." msgstr "La catégorie que vous essayez de supprimer n'existe pas." -#: admin/categories/class-delete-category-admin-page.php:53 +#: admin/categories/class-delete-category-admin-page.php:54 msgid "There was an error trying to delete the category. " msgstr "" "Une erreur s'est produite lors de la tentative de suppression de la " "catégorie. " -#: admin/categories/class-delete-category-admin-page.php:74 +#: admin/categories/class-delete-category-admin-page.php:75 msgid "" "There was an error trying to load the selected category. " msgstr "" "Une erreur s'est produite lors de la tentative de chargement de la catégorie " "sélectionnée. " -#: admin/categories/class-delete-category-admin-page.php:85 +#: admin/categories/class-delete-category-admin-page.php:86 msgid "The category was deleted successfully" msgstr "La catégorie a été supprimée avec succès" -#: admin/categories/class-delete-category-admin-page.php:103 +#: admin/categories/class-delete-category-admin-page.php:104 msgid "Are you sure you want to delete \"\" category?" msgstr "Êtes-vous sûr de vouloir supprimer la catégorie \" \"?" -#: admin/categories/class-delete-category-admin-page.php:116 +#: admin/categories/class-delete-category-admin-page.php:117 msgid "Delete category" msgstr "Supprimer la catégorie" -#: admin/categories/class-delete-category-admin-page.php:117 +#: admin/categories/class-delete-category-admin-page.php:118 #: admin/fees/class-fee-details-form.php:80 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:31 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:12 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:23 #: admin/templates/admin-panel-fees-delete.tpl.php:12 #: admin/templates/admin-panel-users-balance-form.tpl.php:19 #: admin/templates/delete_form.tpl.php:16 #: frontend/templates/payments-billing-form.tpl.php:123 #: includes/listings/class-listing-action-with-confirmation.php:8 -#: includes/settings/renderers/class-button-settings-renderer.php:41 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 +#: includes/settings/renderers/class-button-settings-renderer.php:44 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:184 #: templates/admin/import-listings-admin-page-import-form.tpl.php:47 msgid "Cancel" msgstr "Annuler" -#: admin/categories/class-move-categories-admin-page.php:59 +#: admin/categories/class-move-categories-admin-page.php:60 msgid "" "The categories couldn't be moved because there was an error trying to load " "the target category. " @@ -477,17 +482,17 @@ msgstr "" "Les catégories n'ont pas pu être déplacées car une erreur s'est produite " "lors du chargement de la catégorie cible. " -#: admin/categories/class-move-categories-admin-page.php:68 +#: admin/categories/class-move-categories-admin-page.php:69 msgid "The selected categories have been moved." msgstr "Les catégories sélectionnées ont été déplacées." -#: admin/categories/class-move-categories-admin-page.php:73 +#: admin/categories/class-move-categories-admin-page.php:74 msgid "There was an error trying to move the selected categories." msgstr "" "Une erreur s'est produite lors de la tentative de déplacement des catégories " "sélectionnées." -#: admin/categories/class-move-categories-admin-page.php:77 +#: admin/categories/class-move-categories-admin-page.php:78 msgid "" " (out of ) categories were moved. " "However, there was an error trying to move the other " @@ -497,11 +502,11 @@ msgstr "" "déplacées. Cependant, une erreur s'est produite lors de la tentative de " "déplacement des autres catégories ." -#: admin/categories/class-update-category-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:56 msgid "The category you're trying to update doesn't exist." msgstr "La catégorie que vous essayez de mettre à jour n'existe pas." -#: admin/categories/class-update-category-admin-page.php:66 +#: admin/categories/class-update-category-admin-page.php:67 msgid "The category was successfully updated." msgstr "La catégorie a été mise à jour avec succès." @@ -527,39 +532,40 @@ msgstr "Ajouter une nouvelle rubrique" msgid "Update" msgstr "Mettre à jour" -#: admin/class-debug-admin-page.php:255 +#: admin/class-debug-admin-page.php:256 msgid "WordPress version" msgstr "Version WordPress" -#: admin/class-debug-admin-page.php:259 +#: admin/class-debug-admin-page.php:260 msgid "OS" msgstr "OS" -#: admin/class-debug-admin-page.php:263 +#: admin/class-debug-admin-page.php:264 msgid "Apache Version" msgstr "Version Apache" -#: admin/class-debug-admin-page.php:267 +#: admin/class-debug-admin-page.php:268 +#: admin/templates/admin-panel-debug.tpl.php:177 msgid "PHP Version" msgstr "Version PHP" -#: admin/class-debug-admin-page.php:271 +#: admin/class-debug-admin-page.php:272 msgid "MySQL Version" msgstr "Version MySQL" -#: admin/class-debug-admin-page.php:275 +#: admin/class-debug-admin-page.php:276 msgid "cURL Version" msgstr "version cURL" -#: admin/class-debug-admin-page.php:279 +#: admin/class-debug-admin-page.php:280 msgid "cURL SSL Version" msgstr "cURL SSL Version" -#: admin/class-debug-admin-page.php:332 admin/class-debug-admin-page.php:338 +#: admin/class-debug-admin-page.php:333 admin/class-debug-admin-page.php:339 msgid "N/A" msgstr "N/D" -#: admin/class-import-listings-admin-page.php:100 +#: admin/class-import-listings-admin-page.php:102 msgid "" "The uploaded file doesn't look like a CSV file. Please upload a valid CSV " "file." @@ -567,13 +573,13 @@ msgstr "" "Le fichier mis en ligne ne ressemble pas à un fichier CSV. Veuillez mettre " "en ligne un fichier CSV valide." -#: admin/class-import-listings-admin-page.php:104 +#: admin/class-import-listings-admin-page.php:106 msgid "There was an error moving the uploaded CSV file to a proper location." msgstr "" "Une erreur s’est produite lors du déplacement du fichier CSV mis en ligne " "vers un emplacement approprié." -#: admin/class-import-listings-admin-page.php:121 +#: admin/class-import-listings-admin-page.php:125 msgid "" "The uploaded file doesn't look like a ZIP file. Please upload a valid ZIP " "file." @@ -581,33 +587,33 @@ msgstr "" "Le fichier mis en ligne ne ressemble pas à un fichier ZIP. Veuillez mettre " "en ligne un fichier ZIP valide." -#: admin/class-import-listings-admin-page.php:125 +#: admin/class-import-listings-admin-page.php:129 msgid "There was an error moving the uploaded ZIP file to a proper location." msgstr "" "Une erreur s'est produite lors du déplacement du fichier ZIP mis en ligne " "vers un emplacement approprié." -#: admin/class-import-listings-admin-page.php:137 +#: admin/class-import-listings-admin-page.php:141 msgid "Incompatible ZIP Archive" msgstr "Archive ZIP est incompatible" -#: admin/class-import-listings-admin-page.php:139 +#: admin/class-import-listings-admin-page.php:143 msgid "Empty ZIP Archive" msgstr "L'archive ZIP est vide" -#: admin/class-import-listings-admin-page.php:165 +#: admin/class-import-listings-admin-page.php:169 msgid "Could not write temporary file %s" msgstr "Impossible d'écrire dans le fichier temporaire %s" -#: admin/class-import-listings-admin-page.php:174 +#: admin/class-import-listings-admin-page.php:178 msgid "The specified directory is not a valid path." msgstr "Le répertoire spécifié n’est pas un chemin valide." -#: admin/class-import-listings-admin-page.php:176 +#: admin/class-import-listings-admin-page.php:180 msgid "The specified directory does not exists." msgstr "Le répertoire spécifié n’existe pas." -#: admin/class-import-listings-admin-page.php:357 +#: admin/class-import-listings-admin-page.php:361 msgid "" "() of rows " "processed. rows imported and lignes importées et lignes rejectées.." -#: admin/class-settings-admin-page.php:230 +#: admin/class-import-settings-admin-page.php:121 +#, fuzzy +msgid "Your settings have been successfully imported." +msgstr "Vos paramètres ont été importés avec succès." + +#: admin/class-settings-admin-page.php:224 msgid "" "We could not obtain a valid access token from Facebook. The API returned the " "following error: %s" @@ -625,24 +636,25 @@ msgstr "" "Nous n’avons pas pu obtenir de jeton d’accès valide chez Facebook. L’API a " "retourné l’erreur suivante : %s" -#: admin/class-settings-admin-page.php:235 +#: admin/class-settings-admin-page.php:229 msgid "" "We could not obtain a valid access token from Facebook. Please try again." msgstr "" "Nous n’avons pas pu obtenir de jeton d’accès valide chez Facebook. Veuillez " "faire un nouvel essai." -#: admin/class-settings-admin-page.php:243 +#: admin/class-settings-admin-page.php:237 msgid "Facebook Config Diagnostics" msgstr "Diagnostic de configuration de Facebook" -#: admin/class-settings-admin-page.php:250 +#: admin/class-settings-admin-page.php:244 msgid "Everything looks OK." msgstr "Tout semble fonctionner correctement." #: admin/class-table-entry-action-ajax-handler.php:16 +#: admin/class-uninstall-admin-page.php:52 #: admin/pointers/class-drip-autoresponder-ajax-handler.php:23 -#: functions.php:531 +#: functions.php:537 #: includes/frontend/class-create-empty-listing-ajax-handler.php:104 #: includes/frontend/class-execute-listing-action-ajax-handler.php:58 #: includes/frontend/class-save-listing-information-ajax-handler.php:117 @@ -663,7 +675,7 @@ msgstr "Modifier" #: admin/credit-plans/class-credit-plans-admin-page.php:23 #: admin/fees/class-fees-admin-page.php:65 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:13 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:24 #: admin/templates/delete_form.tpl.php:17 msgid "Delete" msgstr "Supprimer" @@ -778,7 +790,7 @@ msgstr "" "l’opération de suppression. AWPCP vous aidera à attribuer aux annonces " "concernées cette nouvelle participation." -#: admin/import/class-csv-importer-delegate.php:271 +#: admin/import/class-csv-importer-delegate.php:275 msgid "" "No user could be assigned to this listing. Our attempt to create a new user " "failed with the following error: ." @@ -787,11 +799,11 @@ msgstr "" "création d’un nouvel utilisateur a échoué avec le message d’erreur suivant: " "." -#: admin/import/class-csv-importer-delegate.php:470 +#: admin/import/class-csv-importer-delegate.php:476 msgid "The payment term type must be 'fee' or 'subscription'." msgstr "Le type de délai de paiement doit être 'taxe' ou 'abonnement'." -#: admin/import/class-csv-importer-delegate.php:476 +#: admin/import/class-csv-importer-delegate.php:482 msgid "" "There is no payment term with type {payment_term_type} and ID " "{payment_term_id}." @@ -799,7 +811,7 @@ msgstr "" "Il n'y a pas de délai de paiement de type {payment_term_type} et d'ID " "{payment_term_id}." -#: admin/import/class-csv-importer-delegate.php:490 +#: admin/import/class-csv-importer-delegate.php:496 msgid "" "No images directory was configured. Are you sure you uploaded a ZIP file or " "defined a local directory?" @@ -807,13 +819,13 @@ msgstr "" "Aucun répertoire d’images n’était configuré. Êtes-vous sûr d’avoir mis en " "ligne un fichier ZIP ou défini un répertoire local?" -#: admin/import/class-csv-importer-delegate.php:676 +#: admin/import/class-csv-importer-delegate.php:690 msgid "The value for Extra Field %s's is not allowed. Allowed values are: %%s" msgstr "" "La valeur du champ additionnel %s n'est pas autorisée. Les valeurs " "autorisées sont: %%s" -#: admin/import/class-csv-importer-delegate.php:686 +#: admin/import/class-csv-importer-delegate.php:700 msgid "" "The value for Extra Field %s's is not allowed. Allowed value is one of: %%s" msgstr "" @@ -837,10 +849,37 @@ msgstr "" msgid "That Ad failed to delete." msgstr "L’annonce a bien été supprimée" +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 +#, fuzzy +msgid "Thank you for signing up!" +msgstr "Merci pour votre inscription !" + +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 +#, fuzzy +msgid "" +"Please check your email and click the link provided to confirm your " +"subscription." +msgstr "" +"Veuillez vérifier vos courriels et cliquer sur le lien fourni pour confirmer " +"votre souscription." + #: admin/pointers/class-drip-autoresponder-ajax-handler.php:149 msgid "An unexpected error ocurred." msgstr "Une erreur inattendue est survenue." +#: admin/pointers/class-drip-autoresponder.php:62 +#, fuzzy +msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" +msgstr "" +"Voulez-vous connaître les secrets pour construire un superbe site web de " +"petites annonces ?" + +#: admin/pointers/class-drip-autoresponder.php:63 +msgid "" +"Find out how to create a compelling, thriving classifieds site from scratch " +"in this ridiculously actionable (and free) 5-part email course." +msgstr "" + #: admin/pointers/class-drip-autoresponder.php:67 msgid "Email Address" msgstr "Adresse e-mail" @@ -849,28 +888,28 @@ msgstr "Adresse e-mail" msgid "Add" msgstr "Ajouter" -#: admin/templates/admin-panel-credit-plans.tpl.php:10 +#: admin/templates/admin-panel-credit-plans.tpl.php:11 msgid "Credit System Settings" msgstr "Configuration du système de crédit" -#: admin/templates/admin-panel-credit-plans.tpl.php:21 +#: admin/templates/admin-panel-credit-plans.tpl.php:25 #: templates/admin/settings-admin-page.tpl.php:50 -#: templates/admin/settings-admin-page.tpl.php:64 +#: templates/admin/settings-admin-page.tpl.php:67 msgid "Save Changes" msgstr "Enregistrer les modifications" -#: admin/templates/admin-panel-credit-plans.tpl.php:34 +#: admin/templates/admin-panel-credit-plans.tpl.php:38 msgid "Add Credit Plan" msgstr "Ajouter une offre de crédit" -#: admin/templates/admin-panel-debug.tpl.php:8 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:6 +#: admin/templates/admin-panel-debug.tpl.php:11 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:8 msgid "Are you seeing 404 Not Found errors?" msgstr "Voyez-vous des erreurs 404 Non trouvé ?" #. translators: %1$s: Start link HTML, %2$s: end link HTML, %3$s: Start link #. HTML -#: admin/templates/admin-panel-debug.tpl.php:14 +#: admin/templates/admin-panel-debug.tpl.php:21 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -881,54 +920,84 @@ msgid "" "please contact %3$scustomer support%1$s." msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:49 +#: admin/templates/admin-panel-debug.tpl.php:84 msgid "Stored ID" msgstr "ID enregistrée" -#: admin/templates/admin-panel-debug.tpl.php:50 +#: admin/templates/admin-panel-debug.tpl.php:85 msgid "Reference" msgstr "Référence" -#: admin/templates/admin-panel-debug.tpl.php:51 +#: admin/templates/admin-panel-debug.tpl.php:86 #: frontend/templates/widget-categories-form.tpl.php:2 #: frontend/templates/widget-latest-ads-form.tpl.php:2 #: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:5 msgid "Title" msgstr "Titre" -#: admin/templates/admin-panel-debug.tpl.php:60 +#: admin/templates/admin-panel-debug.tpl.php:95 msgid "Page not found" msgstr "Page non trouvée" -#: admin/templates/admin-panel-debug.tpl.php:74 +#: admin/templates/admin-panel-debug.tpl.php:117 msgid "Option Name" msgstr "Nom de l’option" -#: admin/templates/admin-panel-debug.tpl.php:75 +#: admin/templates/admin-panel-debug.tpl.php:118 msgid "Option Value" msgstr "Valeur de l’option" -#: admin/templates/admin-panel-debug.tpl.php:96 +#: admin/templates/admin-panel-debug.tpl.php:147 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:9 msgid "Pattern" msgstr "Modèle" -#: admin/templates/admin-panel-debug.tpl.php:97 +#: admin/templates/admin-panel-debug.tpl.php:148 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:10 msgid "Replacement" msgstr "Remplacement" -#: admin/templates/admin-panel-debug.tpl.php:133 +#: admin/templates/admin-panel-debug.tpl.php:181 +#, fuzzy +msgid "cURL" +msgstr "cURL" + +#: admin/templates/admin-panel-debug.tpl.php:185 +#, fuzzy +msgid "cURL's alternate CA info (cacert.pem)" +msgstr "information CA alternée de cURL (cacert.pem)" + +#: admin/templates/admin-panel-debug.tpl.php:189 +#, fuzzy +msgid "Exists" +msgstr "Existe" + +#: admin/templates/admin-panel-debug.tpl.php:190 +#, fuzzy +msgid "Missing" +msgstr "Manquant" + +#: admin/templates/admin-panel-debug.tpl.php:195 +#: includes/settings/class-payment-general-settings.php:134 +msgid "PayPal" +msgstr "PayPal" + +#: admin/templates/admin-panel-debug.tpl.php:198 #, fuzzy msgid "Working" msgstr "Fonctionne" -#: admin/templates/admin-panel-debug.tpl.php:148 -#: templates/admin/debug/debug-admin-page.tpl.php:36 +#: admin/templates/admin-panel-debug.tpl.php:201 +#, fuzzy +msgid "Not Working" +msgstr "Ne fonctionne pas" + +#: admin/templates/admin-panel-debug.tpl.php:216 +#: templates/admin/debug/debug-admin-page.tpl.php:42 msgid "Debug & Development Tools" msgstr "Outils de débogage et de développement" -#: admin/templates/admin-panel-fees-delete-form.tpl.php:6 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:7 #: admin/templates/delete_form.tpl.php:11 msgid "Are you sure you want to delete this item?" msgstr "Voulez-vous vraiment supprimer cet élément ?" @@ -945,42 +1014,43 @@ msgstr "" msgid "Switch" msgstr "Basculer" -#: admin/templates/admin-panel-fees.tpl.php:7 -msgid "Payment Settings page" -msgstr "Page des réglages de paiement" - -#: admin/templates/admin-panel-fees.tpl.php:9 +#: admin/templates/admin-panel-fees.tpl.php:8 +#, fuzzy msgid "" "Currently your classifieds are in Free mode. Fee plans are not available or " -"used during free mode.

To change this, visit the and enable Charge Listing Fee setting." +"used during free mode.%1$s To change this, visit the %2$s and enable Charge " +"Listing Fee setting." msgstr "" "Actuellement vos annonces sont en mode gratuit. Les paramètres d’honoraires " "ne sont pas disponibles ou utilisables en mode gratuit.

Pour " "changer cela, visitez et activer le paramètre " "\"Facturer une participation ?\"." -#: admin/templates/admin-panel-fees.tpl.php:20 +#: admin/templates/admin-panel-fees.tpl.php:11 +msgid "Payment Settings page" +msgstr "Page des réglages de paiement" + +#: admin/templates/admin-panel-fees.tpl.php:22 msgid "Add Fee Plan" msgstr "Ajouter une offre de participation" -#: admin/templates/admin-panel-fees.tpl.php:24 -msgid "Fee Plan sort order and sort direction Settings" -msgstr "Ordre de tri du plan tarifaire et sens du tri" - #: admin/templates/admin-panel-fees.tpl.php:26 +#, fuzzy msgid "" -"If you wish to change the sorting of your fee plans, you can change the ." +"If you wish to change the sorting of your fee plans, you can change the %s." msgstr "" "Si vous souhaitez changer l’ordre de vos Plans d’Honoraires, vous pouvez " "modifier le ." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:14 +#: admin/templates/admin-panel-fees.tpl.php:30 +msgid "Fee Plan sort order and sort direction Settings" +msgstr "Ordre de tri du plan tarifaire et sens du tri" + +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:17 msgid "Facebook Integration" msgstr "Intégration avec Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:16 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:23 msgid "" "We currently support two methods for posting new ads to Facebook: Facebook " "API and Zapier/IFTTT Webhooks." @@ -988,7 +1058,7 @@ msgstr "" "Nous prenons actuellement en charge deux méthodes pour publier de nouvelles " "annonces sur Facebook: l'API Facebook et les Webhook Zapier / IFTTT." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:18 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:25 msgid "" "Support for Facebook API will be removed in the future. Facebook " "significantly reduced access to their APIs across all apps on Apr, 2018. Now " @@ -1007,13 +1077,14 @@ msgstr "" "charge de Zapier / IFTTT Webhooks comme une alternative et attendons des " "clients qu'ils migrent vers cette méthode d'intégration." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:22 -msgid "You can read more about Facebook changes here: {facebook_post_link}" +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:30 +#, fuzzy +msgid "You can read more about Facebook changes here: %s" msgstr "" "Vous pouvez en savoir plus sur les modifications de Facebook ici: " "{facebook_post_link}" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:29 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:38 msgid "" "If you are currently using the Facebook API integration method and not " "having any issues, you don't have to do anything right now. If you are " @@ -1024,19 +1095,19 @@ msgstr "" "Si vous rencontrez des problèmes, veuillez lire la section Diagnostics ci-" "dessous pour essayer de les résoudre." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:40 #: includes/settings/class-general-settings.php:735 msgid "Facebook API" msgstr "API Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:35 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:46 +#, fuzzy msgid "" "This integration method allows you to post ads to Facebook using a Facebook " -"Application. Please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"Application. Please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" "Cette méthode d'intégration vous permet de publier des annonces sur Facebook " "à l'aide d'une application Facebook. Veuillez lire " @@ -1045,8 +1116,8 @@ msgstr "" "{link_to_facebook_integration_documentation} ces instructions {/ " "link_to_facebook_integration_documentation}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:45 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:79 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 msgid "" "Add the following URL to the list of Valid OAuth Redirect URIs for the " "configuration of the Facebook Application:" @@ -1054,12 +1125,12 @@ msgstr "" "Ajoutez l'URL suivante à la liste des URLs de redirection valides pour la " "configuration de l'application Facebook:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:59 #: includes/settings/class-general-settings.php:736 msgid "Zapier/IFTTT Webhooks" msgstr "Webhooks Zapier / IFTTT" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:51 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:61 msgid "" "Webhooks allow the plugin to send a request to one of the configured webhook " "URLs the first time an ad becomes publicly available on the website. That " @@ -1075,13 +1146,13 @@ msgstr "" "sur Zapier ou IFTTT pour traiter les informations soumises (URL, titre et " "description) et créer un message sur une page Facebook que vous contrôlez." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:67 +#, fuzzy msgid "" -"Follow the instructiones to create the tasks on " -"{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} or " -"{webhook_instructions_for_ifttt}IFTTT{/webhook_instructions_for_ifttt}. Then " -"update the settings at the bottom of this page to enter the webhook URLs " -"associated with those tasks." +"Follow the instructiones to create the tasks on %1$sZapier or IFTTT%2$s. " +"Then update the settings at the bottom of this page to enter the webhook " +"URLs associated with those tasks." msgstr "" "Suivez les instructions pour créer les tâches sur " "{webhook_instructions_for_zapier} Zapier {/ webhook_instructions_for_zapier} " @@ -1089,21 +1160,21 @@ msgstr "" "webhook_instructions_for_ifttt}. Puis mettez à jour les paramètres au bas de " "cette page pour entrer les URL Webhook associées à ces tâches." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:65 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:74 msgid "Facebook Cache" msgstr "Cache Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:69 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:80 +#, fuzzy msgid "" "If you are using Webhooks to send ads to Facebook, a Facebook Application " "can still be used to ask Facebook to clear the cache it has stored for ads " "pages. This is useful to ensure users always see the latest version when the " "ad is shared on Facebook Pages, Groups and user feeds. If you decide to use " -"this feature, please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"this feature, please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" "Si vous utilisez Webhooks pour envoyer des annonces sur Facebook, vous " "pouvez toujours utiliser une application Facebook pour demander à Facebook " @@ -1117,19 +1188,19 @@ msgstr "" "{link_to_facebook_integration_documentation} ces instructions {/ " "link_to_facebook_integration_documentation}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:83 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:93 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:120 msgid "Diagnostics" msgstr "Diagnostics" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:95 msgid "" "If you see the following error after trying to get a valid User Access Token:" msgstr "" "Si vous voyez l'erreur suivante après avoir tenté d'obtenir un jeton d'accès " "utilisateur valide:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:99 msgid "" "You have to submit your Facebook Application for Review and ask for those " "permissions or use the Webhooks integration method to send ads to Facebook " @@ -1139,22 +1210,22 @@ msgstr "" "ces autorisations ou utiliser la méthode d'intégration Webhooks pour envoyer " "des publicités à Facebook à l'aide de Zapier ou IFTTT Webhooks." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:91 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:101 msgid "If you see the following error trying to send ads to a Facebook Group:" msgstr "" "Si l'erreur suivante s'affiche lors de la tentative d'envoi d'annonces sur " "un groupe Facebook:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:97 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#, fuzzy msgid "" -"Please make sure the Facebook Application " -"{link_to_how_to_add_apps_to_a_group}was added to the group{/" -"link_to_how_to_add_apps_to_a_group}." +"Please make sure the Facebook Application %1$swas added to the group%2$s." msgstr "" "Assurez-vous que l'application Facebook {link_to_how_to_add_apps_to_a_group} " "a été ajoutée au groupe {/ link_to_how_to_add_apps_to_a_group}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:108 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:119 msgid "" "If you are having additional problems with Facebook API, click " "\"Diagnostics\" to check your settings." @@ -1162,15 +1233,15 @@ msgstr "" "Si vous rencontrez des problèmes supplémentaires avec l'API Facebook, " "cliquez sur \"Diagnostics\" pour vérifier vos paramètres." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:3 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:4 msgid "Restore AWPCP Pages" msgstr "Restaurer les pages AWPCP" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:8 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:10 msgid "The following pages were restored: ." msgstr "Les pages suivantes ont été restaurées: ." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:19 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:21 msgid "" "The pages listed below are missing. The plugin is looking for a page with a " "particular ID but it seems that the page was permanently deleted. Please a " @@ -1180,12 +1251,13 @@ msgstr "" "avec un identifiant particulier, mais il semble que la page ait été " "définitivement supprimée. Veuillez en sélectionner un nouveau." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:23 -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:71 -msgid "%s (Default name: %s)." +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:28 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:97 +#, fuzzy +msgid "%1$s (Default name: %2$s)." msgstr "%s (Nom par défaut: %s )." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:39 msgid "" "The following pages are not published. Did you move them to the Trash by " "accident or saved them as Draft?" @@ -1193,11 +1265,13 @@ msgstr "" "Les pages suivantes ne sont pas publiées. Les avez-vous déplacés dans la " "corbeille par accident ou les avez-vous enregistrés comme brouillon?" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:41 -msgid "%s — Selected page: %s (%s)" +#. translators: %1$s page label, %2$s link to the page, %3$s the page status. +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:57 +#, fuzzy +msgid "%1$s Selected page: %2$s (%3$s)" msgstr "%s & mdash; Page sélectionnée: %s ( %s )" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:69 msgid "" "The following pages are not currently assigned. Please select an existing " "page or create a new one to use as the following plugin pages:" @@ -1206,16 +1280,17 @@ msgstr "" "sélectionner une page existante ou en créer une nouvelle à utiliser comme " "page de plugin suivante:" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:64 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#, fuzzy msgid "" -" — You can select one of these pages that already include " -"the necessary shortcode: or create a new one." +"%1$s You can select one of these pages that already include the necessary " +"shortcode: %2$s or %3$screate a new one%4$s." msgstr "" "<étiquette-page> & mdash; Vous pouvez sélectionner l'une de ces pages " "contenant déjà le code court nécessaire: ou en créer un " "nouveau ." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:115 msgid "" "Use the button below to have the plugin attempt to find the necessary pages. " "If you continue to have problems or seeing page related warnings above, you " @@ -1228,11 +1303,11 @@ msgstr "" "plug-in affectées et utiliser le bouton Restaurer les pages pour que le plug-" "in les crée à nouveau." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:86 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:116 msgid "Restore Pages" msgstr "Restaurer les pages AWPCP" -#: admin/templates/admin-panel-uninstall.tpl.php:13 +#: admin/templates/admin-panel-uninstall.tpl.php:10 msgid "" "Thank you for using AWPCP. You have arrived at this page by clicking the " "Uninstall link. If you are certain you wish to uninstall the plugin, please " @@ -1242,7 +1317,7 @@ msgstr "" "lien Désinstaller. Si vous êtes certain de vouloir désinstaller le plug-in, " "veuillez cliquer sur le bouton en bas pour continuer." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "" "PLEASE NOTE: When you click the button below, ALL your data related to the " "plugin including your classifieds, images and everything else created by the " @@ -1253,11 +1328,11 @@ msgstr "" "tous les autres éléments créés par le plug-in seront définitivement " "supprimées." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "We cannot recover the data after you click this." msgstr "Nous ne pourrons pas récupérer es données après avoir cliqué." -#: admin/templates/admin-panel-uninstall.tpl.php:18 +#: admin/templates/admin-panel-uninstall.tpl.php:15 msgid "" "BEFORE YOU CLICK THE BUTTON BELOW — read carefully in case you want to " "extract your data first!" @@ -1265,7 +1340,7 @@ msgstr "" "AVANT DE VOUS CLIQUEZ SUR LE BUTTON BELOW 'mdash; lisez attentivement au cas " "où vous voulez extraire vos données en premier!" -#: admin/templates/admin-panel-uninstall.tpl.php:21 +#: admin/templates/admin-panel-uninstall.tpl.php:18 msgid "" "If you plan to use the data created by the plugin please export the data " "from your mysql database before clicking the uninstall link." @@ -1274,10 +1349,11 @@ msgstr "" "veuillez les exporter de votre base avant de cliquer sur le lien de " "désinstallation." -#: admin/templates/admin-panel-uninstall.tpl.php:22 +#: admin/templates/admin-panel-uninstall.tpl.php:21 +#, fuzzy msgid "" -"If you want to keep your user uploaded images, please download to " -"your local drive for later use or rename the folder to something else so the " +"If you want to keep your user uploaded images, please download %s to your " +"local drive for later use or rename the folder to something else so the " "uninstaller can bypass it." msgstr "" "Si vous voulez conserver vos images utilisateur téléchargées, veuillez " @@ -1285,39 +1361,42 @@ msgstr "" "ou renommer le répertoire, le programme de désinstallation peut alors le " "contourner." -#: admin/templates/admin-panel-uninstall.tpl.php:28 +#: admin/templates/admin-panel-uninstall.tpl.php:29 #, fuzzy msgid "Proceed with Uninstalling AWP Classifieds Plugin" msgstr "" "Poursuivre avec la désinstallation d'un autre plugin de petites annonces " "WordPress" -#: admin/templates/admin-panel-uninstall.tpl.php:33 +#: admin/templates/admin-panel-uninstall.tpl.php:35 msgid "Almost done... one more step!" msgstr "C’est presque fini... Plus qu’une étape&nbs;!" -#: admin/templates/admin-panel-uninstall.tpl.php:36 -msgid "Please click here to complete the uninstallation process" +#: admin/templates/admin-panel-uninstall.tpl.php:39 +#, fuzzy +msgid "Please click here to deactivate plugins." msgstr "" "S’il vous plaît cliquez ici pour terminer le processus de désinstallation" #: admin/templates/admin-panel-users-balance-form.tpl.php:12 +#: frontend/templates/payments-transaction-items-table.tpl.php:5 +#: frontend/templates/payments-transaction-items-table.tpl.php:17 msgid "Amount" msgstr "Montant" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:12 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:14 msgid "Manual Upgrade Required" msgstr "Une mise à jour manuelle est nécessaire" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:17 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:26 msgid "Upgrade" msgstr "Mettre à jour" #: admin/templates/admin-quick-start-guide-notice.tpl.php:2 #, fuzzy msgid "" -"Hello and welcome to AWP Classifieds. This plugin is super " -"easy to use AND highly configurable." +"Hello and welcome to AWP Classifieds. This plugin is super easy to use AND " +"highly configurable." msgstr "" "Bonjour et bienvenue dans Another WordPress Classifieds. " "Cette extension est très facile à manipuler ET hautement configurable." @@ -1327,39 +1406,53 @@ msgid "Would you like some help getting started?" msgstr "Souhaitez-vous un petit coup de main pour démarrer ?" #: admin/templates/admin-quick-start-guide-notice.tpl.php:12 +#, fuzzy +msgid "I'll figure it out on my own." +msgstr "Non, je me débrouillerai très bien tout seul." + +#: admin/templates/admin-quick-start-guide-notice.tpl.php:15 msgid "Yes Please!" msgstr "Oh oui !" -#: admin/templates/admin-sidebar.tpl.php:14 +#: admin/templates/admin-quick-start-guide-notice.tpl.php:20 +#, fuzzy +msgid "Help me get my classifieds running quickly." +msgstr "Aidez-moi à publier mes petites annonces le plus vite possible." + +#: admin/templates/admin-sidebar.tpl.php:15 msgid "Like this plugin?" msgstr "Vous aimez cette extension ?" -#: admin/templates/admin-sidebar.tpl.php:20 +#: admin/templates/admin-sidebar.tpl.php:24 msgid "Give a 5 star rating on WordPress.org." msgstr "" -#: admin/templates/admin-sidebar.tpl.php:36 +#: admin/templates/admin-sidebar.tpl.php:42 #, fuzzy msgid "Get more features!" msgstr "Annonce marquée comme sélectionnée." -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:67 msgid "Found a bug?" msgstr "Un bug à signaler ?" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:68 msgid "Need Support?" msgstr "Besoin d’assistance&;nbsp;?" -#: admin/templates/admin-sidebar.tpl.php:70 -msgid "Quick Start Guide" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:80 +#, fuzzy +msgid "Browse the %1$sQuick Start Guide%2$s" msgstr "Guide de démarrage rapide" -#: admin/templates/admin-sidebar.tpl.php:80 -msgid "Documentation" -msgstr "Documentation" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:90 +#, fuzzy +msgid "Read the full %1$sDocumentation%2$s." +msgstr "Lisez notre %s." -#: admin/templates/admin-sidebar.tpl.php:91 +#: admin/templates/admin-sidebar.tpl.php:98 msgid "Get Help" msgstr "Obtenir de l'aide" @@ -1369,11 +1462,11 @@ msgid "Thank you for using AWP Classifieds Plugin." msgstr "Merci d’utiliser Another WordPress Classifieds Plugin." #: admin/templates/admin-widget-modification-notice.tpl.php:3 +#, fuzzy msgid "" -"AWPCP 3.0 includes several modifications to the Search Ads, " -"Featured Ads and Latest Ads widgets. For " -"example, the Latest Ads widget can now be used in multiple sidebars. Also, " -"there is a new Widget to show Random Ads." +"AWPCP 3.0 includes several modifications to the Search Ads, Featured Ads and " +"Latest Ads widgets. For example, the Latest Ads widget can now be used in " +"multiple sidebars. Also, there is a new Widget to show Random Ads." msgstr "" "AWPCP 3.0.x comporte plusieurs modifications au niveau de la " "Recherche d’annonces, la Mise en avant " @@ -1519,7 +1612,7 @@ msgstr "" "Mise à niveau de PHP pour en savoir plus sur PHP et sur la mise à " "niveau." -#: awpcp.php:200 +#: awpcp.php:198 #, fuzzy msgid "" "AWP Classifieds Plugin installation is incomplete. Please {support_link}" @@ -1529,25 +1622,25 @@ msgstr "" "Veuillez {support_link} contacter le support {/ support_link}." #. translators: %s is the title of the listing. -#: frontend/ad-functions.php:155 +#: frontend/ad-functions.php:159 #: includes/listings/class-listing-renewed-email-notifications.php:85 msgid "The ad \"%s\" has been successfully renewed." msgstr "L’annonce \"%s\" a été renouvelée avec succès." -#: frontend/ad-functions.php:189 frontend/page-renew-ad.php:160 +#: frontend/ad-functions.php:193 frontend/page-renew-ad.php:160 msgid "The Ad has been successfully renewed. New expiration date is %s." msgstr "" "L'annonce a été renouvelée avec succès. La nouvelle date d'expiration est " "%s ." -#: frontend/ad-functions.php:194 frontend/page-renew-ad.php:152 +#: frontend/ad-functions.php:198 frontend/page-renew-ad.php:151 #: templates/admin/listings/quick-view-listing-admin-page.tpl.php:18 #: templates/admin/listings-media-center.tpl.php:6 #: templates/admin/view-listing-admin-page.tpl.php:14 msgid "Return to Listings" msgstr "Revenir à la liste" -#: frontend/ad-functions.php:212 frontend/page-place-ad.php:151 +#: frontend/ad-functions.php:216 frontend/page-place-ad.php:154 msgid "" "You do not have permission to perform the function you are trying to " "perform. Access to this page has been denied" @@ -1555,11 +1648,11 @@ msgstr "" "Vous n’êtes pas autorisé à effectuer cette opération. L’accès à cette page a " "été refusé" -#: frontend/ad-functions.php:227 +#: frontend/ad-functions.php:231 msgid "The Ad has been deleted" msgstr "L’annonce a bien été supprimée" -#: frontend/ad-functions.php:230 +#: frontend/ad-functions.php:234 msgid "" "Your Ad details and any photos you have uploaded have been deleted from the " "system" @@ -1567,18 +1660,18 @@ msgstr "" "Les détails de votre annonce ainsi que la ou les images qui y étai(en)t " "rattaché(s) ont été supprimés" -#: frontend/ad-functions.php:234 +#: frontend/ad-functions.php:238 #: includes/frontend/class-edit-listing-page.php:188 msgid "The specified Ad doesn't exists." msgstr "L’annonce demandée n’existe pas." -#: frontend/ad-functions.php:236 +#: frontend/ad-functions.php:240 msgid "There was an error trying to delete the Ad. The Ad was not deleted." msgstr "" "Une erreur s’est produite pendant l’opération de suppression. L’annonce n’a " "pu être supprimée." -#: frontend/ad-functions.php:239 +#: frontend/ad-functions.php:243 msgid "Problem encountered. Cannot complete request" msgstr "" "Une erreur est survenue pendant l’opération. Impossible de finaliser la " @@ -1600,7 +1693,7 @@ msgstr "" "Aucune rubrique n’étant spécifiée, nous affichons les annonces de toutes les " "rubriques." -#: frontend/page-place-ad.php:74 +#: frontend/page-place-ad.php:75 #: includes/views/class-verify-transaction-exists-step-decorator.php:17 msgid "" "There was an error processing your Payment Request. Please try again or " @@ -1609,19 +1702,20 @@ msgstr "" "Une erreur est survenue pendant le traitement du paiement. Veuillez " "réessayer ou contactez l’administrateur du site." -#: frontend/page-place-ad.php:132 +#: frontend/page-place-ad.php:133 msgid "Please select a category." msgstr "Merci de choisir une rubrique." -#: frontend/page-place-ad.php:133 -msgid "Please select the Ad's owner." +#: frontend/page-place-ad.php:134 +#, fuzzy +msgid "Please select the Ad owner." msgstr "Merci de choisir l’auteur de l’annonce." -#: frontend/page-place-ad.php:134 +#: frontend/page-place-ad.php:135 msgid "Please select a payment term." msgstr "Merci de choisir une date de règlement." -#: frontend/page-place-ad.php:165 frontend/page-renew-ad.php:87 +#: frontend/page-place-ad.php:168 frontend/page-renew-ad.php:86 msgid "" "You are trying to post an Ad using a transaction created for a different " "purpose. Please go back to the %s page.
If you think " @@ -1633,7 +1727,7 @@ msgstr "" "
Si vous pensez qu’il s’agit d’une erreur, veuillez contacter " "l’administrateur en lui indiquant l’identifiant de transaction suivant: %s" -#: frontend/page-place-ad.php:174 +#: frontend/page-place-ad.php:177 #: includes/frontend/class-submit-listing-page.php:291 msgid "" "You can't post an Ad at this time because the payment associated with this " @@ -1642,38 +1736,38 @@ msgstr "" "Un paiement associé à cette transaction a échoué. Par conséquent vous ne " "pouvez pas publier d’annonce (voir les raisons ci-dessous)." -#: frontend/page-place-ad.php:256 +#: frontend/page-place-ad.php:259 #: includes/listings/class-payment-information-validator.php:88 msgid "You should select an owner for this Ad." msgstr "Vous devriez sélectionner un titulaire pour cette annonce." -#: frontend/page-place-ad.php:260 frontend/page-renew-ad.php:197 +#: frontend/page-place-ad.php:263 frontend/page-renew-ad.php:199 #: includes/listings/class-payment-information-validator.php:64 #: includes/listings/class-payment-information-validator.php:73 msgid "You should choose one of the available Payment Terms." msgstr "" "Vous devriez sélectionner l’une des conditions de paiement disponibles." -#: frontend/page-place-ad.php:264 +#: frontend/page-place-ad.php:267 #: includes/listings/class-payment-information-validator.php:75 msgid "" "The Payment Term you selected is not available for non-administrator users." msgstr "" "La condition de paiement sélectionnée est réservée aux administrateurs." -#: frontend/page-place-ad.php:280 +#: frontend/page-place-ad.php:283 #: includes/listings/class-payment-information-validator.php:108 msgid "Ad Category field is required" msgstr "Le champ Rubrique est obligatoire" -#: frontend/page-place-ad.php:285 +#: frontend/page-place-ad.php:288 #: includes/listings/class-payment-information-validator.php:119 msgid "You cannot list your Ad in top level categories." msgstr "" "Vous ne pouvez pas afficher votre annonce dans les catégories de niveau " "supérieur." -#: frontend/page-place-ad.php:291 +#: frontend/page-place-ad.php:294 #: includes/frontend/class-submit-listing-page.php:190 msgid "" "Hi, You need to be a registered user to post Ads in this website. Please use " @@ -1682,7 +1776,7 @@ msgstr "" "La publication d’annonces est réservée aux membres du site. Veuillez vous " "connecter ou cliquez sur le lien pour vous enregistrer." -#: frontend/page-place-ad.php:429 frontend/page-place-ad.php:836 +#: frontend/page-place-ad.php:432 frontend/page-place-ad.php:839 #: frontend/page-renew-ad.php:297 #: includes/frontend/class-order-submit-listing-section.php:119 msgid "" @@ -1694,7 +1788,7 @@ msgstr "" #. translators: %s is an alphanumeric string that identifies a payment #. transaction. #. translators: %s the transaction id -#: frontend/page-place-ad.php:511 frontend/page-renew-ad.php:347 +#: frontend/page-place-ad.php:514 frontend/page-renew-ad.php:347 #: includes/frontend/class-submit-listing-page.php:333 #: includes/views/class-verify-payment-can-be-processed-step-decorator.php:18 msgid "" @@ -1706,7 +1800,7 @@ msgstr "" "ce moment. Veuillez contacter l’administrateur en lui indiquant " "l’identifiant de transaction suivant: %s" -#: frontend/page-place-ad.php:834 +#: frontend/page-place-ad.php:837 msgid "" "Your Ad details have been filled out in the form below. Make any changes " "needed and then resubmit the Ad to update it." @@ -1715,11 +1809,11 @@ msgstr "" "Modifiez-les à votre guise puis sauvegardez-les pour mettre à jour votre " "annonce." -#: frontend/page-place-ad.php:838 +#: frontend/page-place-ad.php:841 msgid "Fill out the form below to post your classified ad." msgstr "Remplissez le formulaire ci-dessous pour publier votre petite annonce." -#: frontend/page-place-ad.php:842 +#: frontend/page-place-ad.php:845 msgid "" "We found errors in the details you submitted. A detailed error message is " "shown in front or below each invalid field. Please fix the errors and submit " @@ -1729,11 +1823,11 @@ msgstr "" "message d’erreur détaillé figure au regard ou sous chaque champ concerné. " "Veuillez les corriger avant de réexpédier le formulaire." -#: frontend/page-place-ad.php:861 +#: frontend/page-place-ad.php:864 msgid "Start & End Date" msgstr "Durée de l’annonce" -#: frontend/page-place-ad.php:863 +#: frontend/page-place-ad.php:866 #: includes/admin/import/class-csv-importer-columns.php:185 #: includes/admin/listings/class-listings-table-nav-handler.php:151 #: includes/form-fields/class-listing-form-fields.php:127 @@ -1741,7 +1835,7 @@ msgstr "Durée de l’annonce" msgid "Start Date" msgstr "Date de début" -#: frontend/page-place-ad.php:865 +#: frontend/page-place-ad.php:868 #: includes/admin/import/class-csv-importer-columns.php:196 #: includes/admin/listings/class-listings-table-nav-handler.php:152 #: includes/form-fields/class-listing-form-fields.php:131 @@ -1749,7 +1843,7 @@ msgstr "Date de début" msgid "End Date" msgstr "Date de fin" -#: frontend/page-place-ad.php:973 +#: frontend/page-place-ad.php:976 msgid "" "Hi, Payment is required for posting Ads in this website and we couldn't find " "a Payment Transaction assigned to you. You can't post Ads this time. If you " @@ -1760,60 +1854,60 @@ msgstr "" "Si vous pensez qu’il s’agit d’une erreur, veuillez contacter " "l’administrateur du site." -#: frontend/page-place-ad.php:1000 +#: frontend/page-place-ad.php:1003 msgid "" "You did not select a Payment Term. Please select a Payment Term for this Ad." msgstr "Vous avez oublié d’indiquer une condition de paiement." -#: frontend/page-place-ad.php:1005 +#: frontend/page-place-ad.php:1008 msgid "Please enter a start date for the Ad." msgstr "Merci de saisir une date de début de publication." -#: frontend/page-place-ad.php:1010 +#: frontend/page-place-ad.php:1013 msgid "Please enter an end date for the Ad." msgstr "Merci de saisir une date de fin de publication." -#: frontend/page-place-ad.php:1014 +#: frontend/page-place-ad.php:1017 #: includes/form-fields/class-form-fields-validator.php:71 msgid "The start date must occur before the end date." msgstr "La date de début doit avoir lieu avant la date de fin." -#: frontend/page-place-ad.php:1019 +#: frontend/page-place-ad.php:1022 msgid "You did not enter a title for your Ad" msgstr "Vous avez oublié de mettre un titre" -#: frontend/page-place-ad.php:1024 +#: frontend/page-place-ad.php:1027 msgid "" "You did not enter any text for your Ad. Please enter some text for your Ad." msgstr "Vous avez oublié le texte de votre annonce." -#: frontend/page-place-ad.php:1037 +#: frontend/page-place-ad.php:1040 msgid "" "You did not enter your website address. Your website address is required." msgstr "Vous avez oublié l’adresse de votre site." -#: frontend/page-place-ad.php:1043 +#: frontend/page-place-ad.php:1046 msgid "" "Your website address is not properly formatted. Please make sure you have " "included the http:// part of your website address" msgstr "" "L’adresse web est mal formatée. Assurez-vous d’avoir bien inclus http://" -#: frontend/page-place-ad.php:1048 +#: frontend/page-place-ad.php:1051 msgid "You did not enter your name. Your name is required." msgstr "Vous avez oublié d’indiquer votre nom." -#: frontend/page-place-ad.php:1053 +#: frontend/page-place-ad.php:1056 msgid "You did not enter your email. Your email is required." msgstr "Vous avez oublié d’indiquer votre adresse email." -#: frontend/page-place-ad.php:1058 frontend/page-reply-to-ad.php:160 +#: frontend/page-place-ad.php:1061 frontend/page-reply-to-ad.php:160 msgid "" "The email address you entered was not a valid email address. Please check " "for errors and try again." msgstr "L’adresse email est mal formatée. Veuillez la corriger puis réessayez." -#: frontend/page-place-ad.php:1060 +#: frontend/page-place-ad.php:1063 msgid "" "The email address you entered is not allowed in this website. Please use an " "email address from one of the following domains: %s." @@ -1821,36 +1915,36 @@ msgstr "" "L’adresse email que vous indiquez n’est pas autorisée sur ce site. Veuillez " "en utiliser une utilisant provenant d’un des domaines suivants: %s." -#: frontend/page-place-ad.php:1071 +#: frontend/page-place-ad.php:1074 msgid "You did not enter your phone number. Your phone number is required." msgstr "Vous avez oublié d’indiquer votre numéro de téléphone." -#: frontend/page-place-ad.php:1089 -#: includes/helpers/widgets/multiple-region-selector.php:124 +#: frontend/page-place-ad.php:1092 +#: includes/helpers/widgets/multiple-region-selector.php:144 msgid "You did not enter your country. Your country is required." msgstr "Vous avez oublié d’indiquer votre pays." -#: frontend/page-place-ad.php:1098 -#: includes/helpers/widgets/multiple-region-selector.php:125 +#: frontend/page-place-ad.php:1101 +#: includes/helpers/widgets/multiple-region-selector.php:145 msgid "You did not enter your state. Your state is required." msgstr "Vous avez oublié d’indiquer votre rue." -#: frontend/page-place-ad.php:1107 -#: includes/helpers/widgets/multiple-region-selector.php:127 +#: frontend/page-place-ad.php:1110 +#: includes/helpers/widgets/multiple-region-selector.php:147 msgid "You did not enter your city. Your city is required." msgstr "Vous avez oublié d’indiquer votre commune." -#: frontend/page-place-ad.php:1116 -#: includes/helpers/widgets/multiple-region-selector.php:126 +#: frontend/page-place-ad.php:1119 +#: includes/helpers/widgets/multiple-region-selector.php:146 msgid "You did not enter your county/village. Your county/village is required." msgstr "" "Vous n’avez pas saisi votre code postal/ville. Ce champ est obligatoire." -#: frontend/page-place-ad.php:1123 +#: frontend/page-place-ad.php:1126 msgid "You did not enter the price of your item. The item price is required." msgstr "Vous avez oublié d’indiquer votre prix." -#: frontend/page-place-ad.php:1129 +#: frontend/page-place-ad.php:1132 msgid "" "You have entered an invalid item price. Make sure your price contains " "numbers only. Please do not include currency symbols." @@ -1858,18 +1952,18 @@ msgstr "" "Vous avez indiqué un item de prix invalide. Assurez-vous que la somme ne " "contient que des chiffres et n’utilisez aucun symbole de devise." -#: frontend/page-place-ad.php:1147 +#: frontend/page-place-ad.php:1150 msgid "You did not accept the terms of service" msgstr "Vous n’avez pas accepté les conditions d’utilisation" -#: frontend/page-place-ad.php:1163 +#: frontend/page-place-ad.php:1166 msgid "" "Your Ad was flagged as spam. Please contact the administrator of this site." msgstr "" "Votre annonce a été signalée comme indésirable. Veuillez contacter " "l’administrateur du site." -#: frontend/page-place-ad.php:1354 +#: frontend/page-place-ad.php:1357 msgid "" "We were unable to find a Payment Transaction assigned to this operation. No " "images can be added at this time." @@ -1877,28 +1971,28 @@ msgstr "" "Aucun paiement n’a été assigné à cette opération. Par conséquent aucune " "image ne peut être ajoutée." -#: frontend/page-place-ad.php:1361 +#: frontend/page-place-ad.php:1364 msgid "The specified Ad doesn't exists. No images can be added at this time." msgstr "L’annonce demandée n’existe pas. Aucune image ne peut y être ajoutée." -#: frontend/page-place-ad.php:1440 frontend/page-place-ad.php:1492 +#: frontend/page-place-ad.php:1443 frontend/page-place-ad.php:1495 #: includes/frontend/class-submit-listing-page.php:393 msgid "" "We were unable to find a Payment Transaction assigned to this operation." msgstr "Aucun paiement n’est assigné à cette opération." -#: frontend/page-place-ad.php:1447 frontend/page-place-ad.php:1499 +#: frontend/page-place-ad.php:1450 frontend/page-place-ad.php:1502 #: frontend/page-renew-ad.php:408 #: includes/frontend/class-submit-listing-page.php:400 msgid "The Ad associated with this transaction doesn't exists." msgstr "L’annonce associée à cette transaction n’existe pas." -#: frontend/page-renew-ad.php:73 +#: frontend/page-renew-ad.php:72 #, fuzzy msgid "That Ad doesn't need to be renewed." msgstr "L’annonce indiquée ne nécessite pas de renouvellement." -#: frontend/page-renew-ad.php:78 +#: frontend/page-renew-ad.php:77 msgid "" "There was an error trying to renew your Ad. The URL is not valid. Please " "contact the Administrator of this site for further assistance." @@ -1906,7 +2000,7 @@ msgstr "" "Une erreur est survenue pendant le renouvellement de l’annonce. L’url n’est " "pas valide. Veuillez contacter l’administrateur du site." -#: frontend/page-renew-ad.php:94 +#: frontend/page-renew-ad.php:93 msgid "" "You can't renew your Ad at this time because the payment associated with " "this transaction failed (see reasons below)." @@ -1914,7 +2008,7 @@ msgstr "" "Le paiement associé à cette transaction a échoué. Par conséquent, elle ne " "peut être renouvelée." -#: frontend/page-renew-ad.php:117 +#: frontend/page-renew-ad.php:116 msgid "" "The Ad was posted under a Payment Term that no longer exists or is disabled. " "The Ad can't be renewed." @@ -1922,11 +2016,11 @@ msgstr "" "Le paiement associé à cette annonce est désactivé ou inexistant. Par " "conséquent elle ne peut être renouvelée." -#: frontend/page-renew-ad.php:154 +#: frontend/page-renew-ad.php:153 msgid "You can see your Ad here" msgstr "Votre annonce est visible ici" -#: frontend/page-renew-ad.php:200 +#: frontend/page-renew-ad.php:201 msgid "" "You are trying to renew your Ad using a different Payment Term. That's not " "allowed." @@ -2042,7 +2136,7 @@ msgstr "Vendeur" msgid "Visit Website" msgstr "Visiter le site web" -#: frontend/placeholders.php:655 includes/functions/listings.php:405 +#: frontend/placeholders.php:655 includes/functions/listings.php:415 msgid "Location" msgstr "Adresse" @@ -2114,30 +2208,30 @@ msgstr "" "Une erreur est survenue pendant la procédure de paiement d’un client. Les " "informations concernant la transaction sont affichées ci-dessous" -#: frontend/templates/email-abort-payment-admin.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:12 msgid "User Name" msgstr "Nom de l’utilisateur" -#: frontend/templates/email-abort-payment-admin.tpl.php:10 +#: frontend/templates/email-abort-payment-admin.tpl.php:13 msgid "User Login" msgstr "Identifiant de connexion" -#: frontend/templates/email-abort-payment-admin.tpl.php:11 +#: frontend/templates/email-abort-payment-admin.tpl.php:14 msgid "User Email" msgstr "E-mail de l’utilisateur" -#: frontend/templates/email-abort-payment-admin.tpl.php:15 +#: frontend/templates/email-abort-payment-admin.tpl.php:18 #: includes/admin/import/class-csv-importer-columns.php:219 msgid "Payment Term Type" msgstr "Type de règlement" -#: frontend/templates/email-abort-payment-admin.tpl.php:16 +#: frontend/templates/email-abort-payment-admin.tpl.php:19 #: includes/admin/import/class-csv-importer-columns.php:207 msgid "Payment Term ID" msgstr "Identifiant du type de règlement" -#: frontend/templates/email-abort-payment-admin.tpl.php:17 -#: frontend/templates/email-abort-payment-user.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:20 +#: frontend/templates/email-abort-payment-user.tpl.php:12 msgid "Payment transaction ID" msgstr "Identifiant de la transaction de règlement" @@ -2147,11 +2241,11 @@ msgid "Additional Details" msgstr "Informations complémentaires" #: frontend/templates/email-ad-enabled-user.tpl.php:3 -#: frontend/templates/email-send-ad-access-key.tpl.php:1 +#: frontend/templates/email-send-ad-access-key.tpl.php:3 msgid "Hello %s," msgstr "Bonjour %s," -#: frontend/templates/email-ad-enabled-user.tpl.php:6 +#: frontend/templates/email-ad-enabled-user.tpl.php:8 msgid "" "Your Ad \"%1$s\" was recently approved by the admin. You should be able to " "see the Ad published here: %2$s." @@ -2220,8 +2314,8 @@ msgstr "" msgid "Ad Information" msgstr "Informations sur l’annonce" -#: frontend/templates/email-ad-updated-user.tpl.php:18 -#: frontend/templates/email-place-ad-success-user.tpl.php:45 +#: frontend/templates/email-ad-updated-user.tpl.php:20 +#: frontend/templates/email-place-ad-success-user.tpl.php:47 msgid "" "If you have questions about your listing contact %s. Thank you for your " "business." @@ -2263,21 +2357,22 @@ msgstr "" "Le lien suivant vous dirigera sur une page permettant de modifier " "l’annonce :" -#: frontend/templates/email-send-ad-access-key.tpl.php:3 +#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#, fuzzy msgid "" -"Below you will find the access key for your Ad \"%s\" associated to the " +"Below you will find the access key for your Ad \"%s\" associated with the " "email address %s." msgstr "" "Veuillez trouver ci-dessous la clé d’accès à votre annonce \"%s\". L’adresse " "email associée à cette annonce est: %s." -#: frontend/templates/email-send-ad-access-key.tpl.php:6 +#: frontend/templates/email-send-ad-access-key.tpl.php:10 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:13 #: templates/admin/view-listing-admin-page.tpl.php:11 msgid "Access Key" msgstr "Code d'accès" -#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#: frontend/templates/email-send-ad-access-key.tpl.php:11 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:14 msgid "Edit Link:" msgstr "Modifier le lien :" @@ -2314,6 +2409,12 @@ msgstr "Mot de passe oublié ?" msgid "Classifieds Menu" msgstr "Annonces" +#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 +#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 +#, fuzzy +msgid "Complete Payment" +msgstr "Terminer le paiement" + #: frontend/templates/page-buy-credits-final-step.tpl.php:7 msgid "" "The credit in your account can be used to pay for posting your Ads. You can " @@ -2331,9 +2432,9 @@ msgstr "Sélectionnez un plan de crédit" #: frontend/templates/page-buy-credits-select-credit-plan-step.tpl.php:18 #: frontend/templates/page-renew-ad-order-step.tpl.php:27 -#: frontend/templates/page-reply-to-ad.tpl.php:43 +#: frontend/templates/page-reply-to-ad.tpl.php:48 #: frontend/templates/payments-billing-form.tpl.php:124 -#: frontend/templates/payments-checkout-page.tpl.php:28 +#: frontend/templates/payments-checkout-page.tpl.php:27 #: frontend/templates/payments-payment-completed-page.tpl.php:18 msgid "Continue" msgstr "Étape suivante" @@ -2363,27 +2464,27 @@ msgstr "Me renvoyer une clé d’activation" msgid "Enter Ad Details" msgstr "Dépôt d'une annonce - étape 2" -#: frontend/templates/page-place-ad-details-step.tpl.php:35 +#: frontend/templates/page-place-ad-details-step.tpl.php:36 #: includes/admin/import/class-csv-importer-columns.php:79 #: includes/admin/listings/class-listing-owner-metabox.php:59 msgid "Ad Owner" msgstr "Auteur de l’annonce" -#: frontend/templates/page-place-ad-details-step.tpl.php:41 -#: frontend/templates/page-place-ad-order-step.tpl.php:60 +#: frontend/templates/page-place-ad-details-step.tpl.php:43 +#: frontend/templates/page-place-ad-order-step.tpl.php:61 msgid "User" msgstr "Utilisateur" -#: frontend/templates/page-place-ad-details-step.tpl.php:42 -#: frontend/templates/page-place-ad-order-step.tpl.php:61 +#: frontend/templates/page-place-ad-details-step.tpl.php:44 +#: frontend/templates/page-place-ad-order-step.tpl.php:62 msgid "Select an User owner for this Ad" msgstr "Sélectionnez un auteur pour cette annonce" -#: frontend/templates/page-place-ad-details-step.tpl.php:77 +#: frontend/templates/page-place-ad-details-step.tpl.php:81 msgid "Add Details and Contact Information" msgstr "Coordonnées et détails de l’annonce" -#: frontend/templates/page-place-ad-order-step.tpl.php:73 +#: frontend/templates/page-place-ad-order-step.tpl.php:75 msgid "Please select a payment term for your Ad" msgstr "Veuillez indiquer une condition de paiement pour votre annonce" @@ -2427,7 +2528,12 @@ msgstr "" msgid "Your Ad has been renewed" msgstr "Votre annonce a bien été renouvelée" -#: frontend/templates/page-renew-ad.tpl.php:15 +#: frontend/templates/page-renew-ad-order-step.tpl.php:6 +#, fuzzy +msgid "Select Payment Term" +msgstr "Sélectionnez une condition de paiement" + +#: frontend/templates/page-renew-ad.tpl.php:13 msgid "" "Please click the payment button below to proceed with Payment for your Ad " "renewal. You will be asked to pay %s." @@ -2435,19 +2541,19 @@ msgstr "" "Veuillez cliquer sur le bouton de paiement ci-dessous pour régler le " "renouvellement de votre annonce. Vous serez demandé à payer %s." -#: frontend/templates/page-reply-to-ad.tpl.php:7 +#: frontend/templates/page-reply-to-ad.tpl.php:10 msgid "You are responding to Ad: %s." msgstr "Vous répondez à l’annonce: %s." -#: frontend/templates/page-reply-to-ad.tpl.php:18 +#: frontend/templates/page-reply-to-ad.tpl.php:24 msgid "Your name" msgstr "Votre nom" -#: frontend/templates/page-reply-to-ad.tpl.php:24 +#: frontend/templates/page-reply-to-ad.tpl.php:30 msgid "Your email address" msgstr "Votre adresse e-mail" -#: frontend/templates/page-reply-to-ad.tpl.php:30 +#: frontend/templates/page-reply-to-ad.tpl.php:36 msgid "Your message" msgstr "Votre message" @@ -2455,19 +2561,19 @@ msgstr "Votre message" msgid "Search for ads containing this word or phrase" msgstr "Rechercher des annonces contenant ce mot ou cette phrase" -#: frontend/templates/page-search-ads.tpl.php:37 +#: frontend/templates/page-search-ads.tpl.php:41 msgid "For ads posted by" msgstr "Pour les annonces postées par" -#: frontend/templates/page-search-ads.tpl.php:39 +#: frontend/templates/page-search-ads.tpl.php:43 msgid "All Users" msgstr "Tous les utilisateurs" -#: frontend/templates/page-search-ads.tpl.php:48 +#: frontend/templates/page-search-ads.tpl.php:55 msgid "Min price" msgstr "Prix min" -#: frontend/templates/page-search-ads.tpl.php:52 +#: frontend/templates/page-search-ads.tpl.php:59 msgid "Max price" msgstr "Prix max" @@ -2475,9 +2581,18 @@ msgstr "Prix max" msgid "Pay With 2Checkout" msgstr "Payer avec 2Checkout" -#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:791 -#: includes/admin/class-listings-personal-data-provider.php:115 -#: includes/admin/class-listings-personal-data-provider.php:125 +#: frontend/templates/payments-billing-form.tpl.php:1 +#, fuzzy +msgid "" +"Please fill in the billing information in the form below to place your " +"payment." +msgstr "" +"Veuillez compléter le formulaire de facturation ci-dessous pour effectuer " +"votre paiement." + +#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:797 +#: includes/admin/class-listings-personal-data-provider.php:117 +#: includes/admin/class-listings-personal-data-provider.php:127 #: includes/admin/import/class-csv-importer-columns.php:230 msgid "Country" msgstr "Pays" @@ -2515,15 +2630,15 @@ msgid "Address Line 2" msgstr "Adresse 2" #: frontend/templates/payments-billing-form.tpl.php:92 -#: includes/admin/class-listings-personal-data-provider.php:116 -#: includes/admin/class-listings-personal-data-provider.php:126 +#: includes/admin/class-listings-personal-data-provider.php:118 +#: includes/admin/class-listings-personal-data-provider.php:128 #: includes/admin/import/class-csv-importer-columns.php:238 msgid "State" msgstr "État" -#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:811 -#: includes/admin/class-listings-personal-data-provider.php:117 -#: includes/admin/class-listings-personal-data-provider.php:127 +#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:817 +#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:129 #: includes/admin/import/class-csv-importer-columns.php:260 msgid "City" msgstr "Ville" @@ -2537,14 +2652,57 @@ msgstr "Code postal" msgid "Email" msgstr "E-mail" +#: frontend/templates/payments-credit-plans-table.tpl.php:7 +#, fuzzy +msgid "" +"You can additionally purchase a Credit Plan to add credit to your account. " +"If you select to pay using credits, the price of the selected payment term " +"will be deducted from your account balance after you have completed payment." +msgstr "" +"Vous pouvez en outre acheter une offre de crédit à verser votre compte. Si " +"vous choisissez de payer en utilisant des crédits, le prix de la durée de " +"paiement choisi sera déduit du solde de votre compte après avoir terminé le " +"paiement." + #: frontend/templates/payments-credit-plans-table.tpl.php:22 msgid "No credit plans available." msgstr "Aucune offre de crédit disponible." +#: frontend/templates/payments-credit-plans-table.tpl.php:51 +#, fuzzy +msgid "clear selection" +msgstr "annuler la sélection" + +#: frontend/templates/payments-payment-completed-page.tpl.php:2 +#, fuzzy +msgid "Transaction Details" +msgstr "Informations sur la transaction" + +#: frontend/templates/payments-payment-page.tpl.php:3 +#, fuzzy +msgid "You are about to pay for the following items." +msgstr "Vous êtes sur le point de payer pour les éléments suivants." + +#: frontend/templates/payments-payment-page.tpl.php:5 +#, fuzzy +msgid "Payment Terms" +msgstr "Conditions de paiement" + #: frontend/templates/payments-paypal-payment-button.tpl.php:30 msgid "Make payments with PayPal - it's fast, free and secure!" msgstr "Payer avec PayPal - c’est rapide, gratuit et sécurisé !" +#: frontend/templates/payments-transaction-items-table.tpl.php:4 +#: frontend/templates/payments-transaction-items-table.tpl.php:13 +#, fuzzy +msgid "Item" +msgstr "Élément" + +#: frontend/templates/payments-transaction-items-table.tpl.php:34 +#, fuzzy +msgid "Total Amount (credit)" +msgstr "Montant total (crédit)" + #: frontend/templates/widget-categories-form.tpl.php:9 msgid "Hide empty categories." msgstr "Masquer les rubriques vides." @@ -2618,7 +2776,7 @@ msgstr "Afficher les mots-clés ?" msgid "Show Posted By field?" msgstr "Afficher le champ Publié par ?" -#: frontend/templates/widget-search-form.tpl.php:28 +#: frontend/templates/widget-search-form.tpl.php:32 msgid "Show Category field?" msgstr "Afficher le champ Rubrique ?" @@ -2634,23 +2792,23 @@ msgstr "Rubriques" msgid "Ad Categories" msgstr "Catégories d’annonce" -#: frontend/widget-latest-ads.php:13 +#: frontend/widget-latest-ads.php:17 msgid "AWPCP Latest Ads" msgstr "Annonces récentes" -#: frontend/widget-latest-ads.php:14 +#: frontend/widget-latest-ads.php:18 msgid "Displays a list of latest Ads" msgstr "Afficher une liste des dernières annonces" -#: frontend/widget-latest-ads.php:30 +#: frontend/widget-latest-ads.php:34 msgid "Latest Ads" msgstr "Annonces récentes" -#: frontend/widget-latest-ads.php:72 +#: frontend/widget-latest-ads.php:76 msgid "There are currently no ads to show." msgstr "Il n'y a actuellement aucune annonce à afficher." -#: frontend/widget-latest-ads.php:114 +#: frontend/widget-latest-ads.php:118 msgid "Read more" msgstr "Lire la suite" @@ -2682,67 +2840,67 @@ msgstr "Tous les annonceurs" msgid "Select Option" msgstr "Sélectionner une option" -#: frontend/widget-search.php:105 +#: frontend/widget-search.php:106 msgid "Search by keyword" msgstr "Par mot-clé" -#: frontend/widget-search.php:119 +#: frontend/widget-search.php:121 msgid "Search by Category" msgstr "Rubrique" -#: frontend/widget-search.php:137 +#: frontend/widget-search.php:141 msgid "Search" msgstr "Rechercher" -#: functions.php:427 +#: functions.php:431 msgid "%s ago" msgstr "%s depuis" -#: functions.php:604 +#: functions.php:610 msgid "Ads per page:" msgstr "Annonces par page:" -#: functions.php:621 +#: functions.php:627 msgid "Page {current_page_number} of {number_of_pages}" msgstr "Page {current_page_number} of {number_of_pages}" -#: functions.php:732 +#: functions.php:738 msgid "None" msgstr "Aucun" -#: functions.php:792 +#: functions.php:798 msgid "separate countries by commas" msgstr "séparez les pays par des virgules" -#: functions.php:801 +#: functions.php:807 msgid "State/Province" msgstr "N° et rue" -#: functions.php:802 +#: functions.php:808 msgid "separate states by commas" msgstr "séparez les états par des virgules" -#: functions.php:812 +#: functions.php:818 msgid "separate cities by commas" msgstr "séparez les communes par des virgules" -#: functions.php:821 +#: functions.php:827 msgid "County/Village/Other" msgstr "Code Postal" -#: functions.php:822 +#: functions.php:828 msgid "separate counties by commas" msgstr "séparez les codes postaux par des virgules" -#: functions.php:1036 +#: functions.php:1050 msgid "-- Choose a Country --" msgstr "--- Sélectionner un pays ---" -#: functions.php:1507 templates/admin/main-classifieds-admin-page.tpl.php:58 +#: functions.php:1537 templates/admin/main-classifieds-admin-page.tpl.php:58 msgid "Free" msgstr "Gratuit" -#: functions.php:1852 templates/components/media-center.tpl.php:14 +#: functions.php:1893 templates/components/media-center.tpl.php:14 msgid "" "The images or files with pale red background have been rejected by an " "administrator user. Likewise, files with a pale yellow background are " @@ -2754,7 +2912,7 @@ msgstr "" "attente de validation. Les fichiers en attente ou rejetés ne peuvent pas " "être affichés sur le site." -#: functions.php:1871 +#: functions.php:1912 msgid "" "This version of AWPCP %1$s module is not compatible with AWPCP version %2$s. " "Please get AWPCP %1$s %3$s or newer!" @@ -2762,55 +2920,55 @@ msgstr "" "Cette version du module AWPCP %1$s n'est pas compatible avec la version de " "AWPCP %2$s. S'il vous plaît obtenez AWPCP %1$s %3$s ou plus récent!" -#: functions.php:1873 +#: functions.php:1914 msgid "Error" msgstr "Erreur" -#: functions.php:2231 +#: functions.php:2287 msgid "No errors." msgstr "Aucune erreur." -#: functions.php:2232 +#: functions.php:2288 msgid "The file is larger than upload_max_filesize." msgstr "Le fichier est plus grand que upload_max_filesize." -#: functions.php:2233 +#: functions.php:2289 msgid "The file is larger than form MAX_FILE_SIZE." msgstr "Le fichier est plus grand que MAX_FILE_SIZE." -#: functions.php:2234 +#: functions.php:2290 msgid "The file was only partially uploaded." msgstr "Le fichier n’a été téléchargé que partiellement." -#: functions.php:2235 +#: functions.php:2291 msgid "No file was uploaded." msgstr "Aucun fichier n'a été mis en ligne." -#: functions.php:2236 +#: functions.php:2292 msgid "Missing temporary directory." msgstr "Il manque un répertoire temporaire." -#: functions.php:2237 +#: functions.php:2293 msgid "Can't write file to disk." msgstr "Impossible d’écrire dans le fichier." -#: functions.php:2238 +#: functions.php:2294 msgid "The file upload was stopped by extension." msgstr "Par conséquent le téléchargement a été interrompu." -#: functions.php:2476 +#: functions.php:2536 msgid "Your Ad \"%s\" has been approved" msgstr "L'annonce \"%s\" a été validée" -#: functions.php:2499 +#: functions.php:2559 msgid "Your Ad \"%s\" has been successfully updated" msgstr "L'annonce \"%s\" a bien été mise à jour" -#: functions.php:2521 +#: functions.php:2581 msgid "Images on Ad \"%s\" are awaiting approval" msgstr "Les images de l'annonce \"%s\" sont en attente de validation" -#: functions.php:2523 +#: functions.php:2583 msgid "" "Images on Ad \"%s\" are awaiting approval. You can approve the images going " "to the Manage Images section for that Ad and clicking the \"Enable\" button " @@ -2820,13 +2978,13 @@ msgstr "" "approuver les images en vous rendant dans la section Gestion des Images et " "en cliquant sur \"Activer\". Cliquez ici pour continuer: %s." -#: functions.php:2526 +#: functions.php:2586 msgid "The Ad \"%s\" is awaiting approval" msgstr "L'annonce \"%s\" a été mise en attente de validation" #. translators: %1$s is the listing title. %2$s is the URL for managing #. listing. -#: functions.php:2529 includes/functions/notifications.php:157 +#: functions.php:2589 includes/functions/notifications.php:156 msgid "" "The Ad \"%1$s\" is awaiting approval. You can approve the Ad going to the " "Classified edit section and clicking the \"Publish\" button. Click here to " @@ -2834,7 +2992,7 @@ msgid "" msgstr "" #. translators: %s is the URL for managing listing images. -#: functions.php:2536 includes/functions/notifications.php:165 +#: functions.php:2596 includes/functions/notifications.php:164 msgid "" "Additionally, You can approve the images going to the Manage Images section " "for that Ad and clicking the \"Enable\" button below each image. Click here " @@ -2844,27 +3002,27 @@ msgstr "" "Gestion des Images et en cliquant sur le bouton \"Activer\" présent sous " "chaque image. Cliquez ici pour continuer: %s." -#: functions.php:3068 +#: functions.php:3123 msgid "Email sent %s." msgstr "Courriel envoyé %s." -#: functions.php:3199 +#: functions.php:3254 msgid "Not Installed" msgstr "Non installé" -#: functions.php:3203 +#: functions.php:3258 msgid "Installed" msgstr "Installée" -#: functions.php:3211 +#: functions.php:3266 msgid "SSL Support: Yes." msgstr "Prise en charge SSL: Oui." -#: functions.php:3213 +#: functions.php:3268 msgid "SSL Support: No." msgstr "Prise en charge SSL: Non." -#: functions.php:3216 +#: functions.php:3271 msgid "OpenSSL version:" msgstr "Version OpenSSL:" @@ -2884,58 +3042,58 @@ msgstr "Champs classés" msgid "Search for listings matching" msgstr "Rechercher des annonces correspondant" -#: includes/admin/class-listings-personal-data-provider.php:110 +#: includes/admin/class-listings-personal-data-provider.php:112 msgid "Classified ID" msgstr "ID classifié" -#: includes/admin/class-listings-personal-data-provider.php:111 +#: includes/admin/class-listings-personal-data-provider.php:113 msgid "Contact Name" msgstr "Nom du contact" -#: includes/admin/class-listings-personal-data-provider.php:112 +#: includes/admin/class-listings-personal-data-provider.php:114 msgid "Contact Phone Number" msgstr "Numéro de téléphone du contact" -#: includes/admin/class-listings-personal-data-provider.php:113 +#: includes/admin/class-listings-personal-data-provider.php:115 msgid "Contact Phone Number Digits" msgstr "Numéro de téléphone du contact" -#: includes/admin/class-listings-personal-data-provider.php:114 +#: includes/admin/class-listings-personal-data-provider.php:116 msgid "Contact Email" msgstr "E-mail du contact" -#: includes/admin/class-listings-personal-data-provider.php:118 -#: includes/admin/class-listings-personal-data-provider.php:128 +#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:130 #: includes/admin/import/class-csv-importer-columns.php:249 msgid "County" msgstr "Code Postal" -#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:121 msgid "Website URL" msgstr "URL du site Web" -#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:122 #: includes/admin/class-payment-personal-data-provider.php:47 msgid "Payer Email" msgstr "E-mail" -#: includes/admin/class-listings-personal-data-provider.php:121 +#: includes/admin/class-listings-personal-data-provider.php:123 msgid "Author IP" msgstr "IP de l'auteur" -#: includes/admin/class-listings-personal-data-provider.php:132 +#: includes/admin/class-listings-personal-data-provider.php:134 msgid "URL" msgstr "URL" -#: includes/admin/class-listings-personal-data-provider.php:146 +#: includes/admin/class-listings-personal-data-provider.php:148 msgid "Classifieds Listings" msgstr "Annonces classées" -#: includes/admin/class-listings-personal-data-provider.php:157 +#: includes/admin/class-listings-personal-data-provider.php:159 msgid "Classifieds Media" msgstr "Annonces Médias" -#: includes/admin/class-listings-personal-data-provider.php:218 +#: includes/admin/class-listings-personal-data-provider.php:220 msgid "" "An unknown error occurred while trying to delete information for classified " "{listing_id}." @@ -2960,7 +3118,7 @@ msgid "Contact Address" msgstr "Adresse du Contact" #: includes/admin/class-user-personal-data-provider.php:55 -#: includes/settings/class-display-settings.php:476 +#: includes/settings/class-display-settings.php:475 msgid "Contact Phone" msgstr "Téléphone du Contact" @@ -3065,8 +3223,8 @@ msgstr "" "incluses dans le fichier ZIP joint." #: includes/admin/import/class-importer-form-steps.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:17 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:88 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:14 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:80 msgid "Upload Source Files" msgstr "Mettre en ligne les fichiers source" @@ -3075,12 +3233,12 @@ msgid "Configuration" msgstr "Configuration" #: includes/admin/import/class-importer-form-steps.php:29 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:173 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:176 msgid "Import" msgstr "Importer" #: includes/admin/import/class-importer-form-steps.php:32 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:172 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:175 msgid "Test Import" msgstr "Tester l’importation" @@ -3127,7 +3285,7 @@ msgstr[0] "%d annonce était déjà activée." msgstr[1] "%d annonce était déjà activée." #: includes/admin/listings/class-listing-owner-metabox.php:62 -#: templates/frontend/order-submit-listing-section.tpl.php:45 +#: templates/frontend/order-submit-listing-section.tpl.php:42 msgid "Please select a user" msgstr "Veuillez sélectionner un utilisateur" @@ -3648,46 +3806,46 @@ msgstr "Plan du site XML" msgid "ZIP Code Search Module" msgstr "Module de recherche de code postal" -#: includes/class-awpcp.php:1445 +#: includes/class-awpcp.php:1436 msgid "This field is required." msgstr "Ce champ est obligatoire." -#: includes/class-awpcp.php:1446 +#: includes/class-awpcp.php:1437 #: includes/form-fields/class-form-fields-validator.php:101 #: includes/frontend/class-edit-listing-page.php:273 #: includes/frontend/class-edit-listing-page.php:350 -#: includes/settings/class-payment-general-settings.php:158 +#: includes/settings/class-payment-general-settings.php:157 msgid "Please enter a valid email address." msgstr "Veuillez saisir une adresse e-mail valide." -#: includes/class-awpcp.php:1447 includes/class-awpcp.php:1448 +#: includes/class-awpcp.php:1438 includes/class-awpcp.php:1439 msgid "Please enter a valid URL." msgstr "Veuillez indiquer une URL valide." -#: includes/class-awpcp.php:1449 +#: includes/class-awpcp.php:1440 msgid "Please enter a valid number." msgstr "Veuillez saisir un nombre valide." -#: includes/class-awpcp.php:1450 +#: includes/class-awpcp.php:1441 msgid "Please enter a valid amount." msgstr "Veuillez saisir un montant valide." -#: includes/class-awpcp.php:1451 +#: includes/class-awpcp.php:1442 msgid "" "You have reached the maximum allowed categories for the selected fee plan." msgstr "" "Vous avez atteint le nombre maximum de catégories autorisées pour le forfait " "sélectionné." -#: includes/class-awpcp.php:1470 +#: includes/class-awpcp.php:1461 msgid "There are files currently being uploaded." msgstr "Il y a des fichiers en cours de téléchargement." -#: includes/class-awpcp.php:1471 +#: includes/class-awpcp.php:1462 msgid "There are files pending to be uploaded." msgstr "Il y a des fichiers en attente de téléchargement." -#: includes/class-awpcp.php:1472 +#: includes/class-awpcp.php:1463 msgid "You haven't uploaded any images or files." msgstr "Vous n’avez téléchargé aucune image ni aucun fichier." @@ -3745,7 +3903,7 @@ msgstr "" "already active on another site. Contact customer support " "for further assistance." -#: includes/class-listings-api.php:106 includes/class-listings-api.php:306 +#: includes/class-listings-api.php:106 includes/class-listings-api.php:310 msgid "" "There was an unexpected error trying to save the listing details. Please try " "again or contact an administrator." @@ -3753,7 +3911,7 @@ msgstr "" "Une erreur inattendue s'est produite lors de la tentative d'enregistrement " "des détails de la liste. Veuillez réessayer ou contacter un administrateur." -#: includes/class-listings-api.php:197 +#: includes/class-listings-api.php:199 msgid "" "To avoid overwritting existing metadata, use fill_default_listing_metadata() " "instead." @@ -3761,13 +3919,13 @@ msgstr "" "Pour éviter d'écraser les métadonnées existantes, utilisez plutôt " "fill_default_listing metadata ()." -#: includes/class-listings-api.php:302 +#: includes/class-listings-api.php:306 msgid "There was an error trying to save the listing details:" msgstr "" "Une erreur s'est produite lors de la tentative d'enregistrement des détails " "de l'annonce:" -#: includes/class-listings-api.php:730 +#: includes/class-listings-api.php:734 msgid "" "If you have uploaded images your images will not show up until an admin has " "approved them." @@ -3815,19 +3973,19 @@ msgstr "" "Veuillez réessayer ou contacter le support client avec une copie de votre " "fichier." -#: includes/credit-plan.php:109 includes/payment-term.php:133 +#: includes/credit-plan.php:114 includes/payment-term.php:133 msgid "The name of the plan is required." msgstr "Un nom pour le plan est obligatoire." -#: includes/credit-plan.php:112 includes/payment-term.php:151 +#: includes/credit-plan.php:117 includes/payment-term.php:151 msgid "The number of credits must be greater than zero." msgstr "Le nombre de crédits doit être supérieur à zéro." -#: includes/credit-plan.php:115 +#: includes/credit-plan.php:120 msgid "The price must be greater or equal than zero." msgstr "Le prix doit être supérieur ou égal à zéro." -#: includes/credit-plan.php:153 +#: includes/credit-plan.php:158 msgid "The Credit Plan doesn't exist." msgstr "Le plan de crédit n’existe pas." @@ -3925,7 +4083,7 @@ msgstr "" msgid "Please read and accept the Terms of Service." msgstr "Veuillez lire et accepter les conditions d'utilisation." -#: includes/frontend/class-captcha.php:70 +#: includes/frontend/class-captcha.php:77 msgid "" "An unknown error ocurred trying to validate the answer to the CAPTCHA " "challenge." @@ -3949,14 +4107,14 @@ msgstr "" "Vous n'êtes pas autorisé à effectuer cette action. Seuls les utilisateurs " "connectés sont autorisés à soumettre des annonces." -#: includes/frontend/class-default-captcha-provider.php:59 +#: includes/frontend/class-default-captcha-provider.php:76 msgid "" "You did not solve the math problem. Please solve the math problem to proceed." msgstr "" "Vous n’avez pas répondu à la question mathématique. Veuillez recommencer " "pour pourvoir continuer." -#: includes/frontend/class-default-captcha-provider.php:64 +#: includes/frontend/class-default-captcha-provider.php:81 msgid "Your solution to the math problem was incorrect. Please try again." msgstr "Votre réponse est incorrecte. Recommencez." @@ -4123,15 +4281,15 @@ msgstr "Le délai de paiement sélectionné est introuvable." #. translators: %s will become an A HTML tag pointing to reCAPTCHA admin #. console. -#: includes/frontend/class-recaptcha-provider.php:47 +#: includes/frontend/class-recaptcha-provider.php:68 msgid "To use reCAPTCHA you must get an API key from %s." msgstr "Pour pouvoir utiliser reCAPTCHA, il vous faut une clé API de %s." -#: includes/frontend/class-recaptcha-provider.php:85 +#: includes/frontend/class-recaptcha-provider.php:106 msgid "Your answers couldn't be verified by the reCAPTCHA server." msgstr "Votre réponse n’a pas pu être validée par le serveur reCAPTCHA." -#: includes/frontend/class-recaptcha-v2.php:51 +#: includes/frontend/class-recaptcha-v2.php:78 msgid "" "There was an error trying to verify the reCAPTCHA answer. " msgstr "" @@ -4148,8 +4306,8 @@ msgid "Login/Registration" msgstr "Connexion / Inscription" #: includes/frontend/class-submit-listing-form-steps.php:48 -#: includes/ui/class-category-selector.php:125 -#: templates/components/category-selector.tpl.php:16 +#: includes/ui/class-category-selector.php:147 +#: templates/components/category-selector.tpl.php:15 msgid "Select a Category" msgstr "Sélectionnez une rubrique" @@ -4306,12 +4464,12 @@ msgstr "" msgid "Could not create resized versions of image %s." msgstr "Impossible de créer une version redimensionnée de l’image %s." -#: includes/functions/format.php:67 +#: includes/functions/format.php:50 msgid "Classifieds Management System" msgstr "Système de Gestion de Petites Annonces" #. translators: example: and -#: includes/functions/format.php:84 +#: includes/functions/format.php:67 msgid " and " msgstr " et " @@ -4363,22 +4521,22 @@ msgstr "Veuillez saisir les détails de votre annonce." msgid "Top Level Category" msgstr "Rubrique principale" -#: includes/functions/listings.php:278 -#: includes/listings/class-listings-content-renderer.php:169 +#: includes/functions/listings.php:288 +#: includes/listings/class-listings-content-renderer.php:182 msgid "Are you sure you want to flag this ad?" msgstr "Voulez-vous vraiment signaler cette annonce ?" -#: includes/functions/listings.php:279 -#: includes/listings/class-listings-content-renderer.php:170 +#: includes/functions/listings.php:289 +#: includes/listings/class-listings-content-renderer.php:183 msgid "This Ad has been flagged." msgstr "Annonce signalée." -#: includes/functions/listings.php:280 -#: includes/listings/class-listings-content-renderer.php:171 +#: includes/functions/listings.php:290 +#: includes/listings/class-listings-content-renderer.php:184 msgid "An error occurred while trying to flag the Ad." msgstr "Une erreur est survenue pendant le traitement du signalement." -#: includes/functions/listings.php:317 +#: includes/functions/listings.php:327 msgid "" "Sorry, that listing is not available. Please try browsing or searching " "existing listings." @@ -4386,7 +4544,7 @@ msgstr "" "Désolés, cette annonce n’est pas disponible. Veuillez naviguer ou rechercher " "d’autres annonces existantes." -#: includes/functions/listings.php:334 +#: includes/functions/listings.php:344 msgid "" "The Ad you are trying to view is pending approval. Once the Administrator " "approves it, it will be active and visible." @@ -4394,12 +4552,12 @@ msgstr "" "L’annonce que vous demandez est en cours de validation. Elle sera active et " "visible après son contrôle par l’administrateur." -#: includes/functions/listings.php:340 +#: includes/functions/listings.php:350 #: includes/listings/class-listings-content-renderer.php:106 msgid "Your email address was successfully verified." msgstr "La vérification de l’adresse mail a réussie." -#: includes/functions/listings.php:344 +#: includes/functions/listings.php:354 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the Administrator) and the author can see it." @@ -4407,7 +4565,7 @@ msgstr "" "Cette annonce en cours de validation est momentanément désactivée. En " "attendant son approbation, seul l’administrateur et l’auteur peuvent la voir." -#: includes/functions/listings.php:347 +#: includes/functions/listings.php:357 msgid "" "This Ad is currently disabled until you verify the email address used for " "the contact information. Only you (the author) can see it." @@ -4415,7 +4573,7 @@ msgstr "" "Cette annonce en cours de validation est momentanément désactivée. En " "attendant son approbation, seul l’auteur (vous) peut la voir." -#: includes/functions/listings.php:350 +#: includes/functions/listings.php:360 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the author) can see it." @@ -4433,13 +4591,13 @@ msgid "Listing \"%s\" was updated" msgstr "L’Annonce \"%s\" a été mise à jour" #. translators: %s is the listing title. -#: includes/functions/notifications.php:147 +#: includes/functions/notifications.php:146 msgid "Images on listing \"%s\" are awaiting approval" msgstr "Les images de l’Annonce \"%s\" sont en attente d’approbation" #. translators: %1$s is the listing title. %2$s is the URL for managing listing #. images. -#: includes/functions/notifications.php:150 +#: includes/functions/notifications.php:149 msgid "" "Images on Ad \"%1$s\" are awaiting approval. You can approve the images " "going to the Manage Images section for that Ad and clicking the \"Enable\" " @@ -4447,11 +4605,11 @@ msgid "" msgstr "" #. translators: %s is the listing title. -#: includes/functions/notifications.php:154 +#: includes/functions/notifications.php:153 msgid "Listing \"%s\" is awaiting approval" msgstr "L’annonce \"%s\" est en attente d’approbation" -#: includes/functions/notifications.php:202 +#: includes/functions/notifications.php:201 msgid "Listing was flagged" msgstr "L’Annonce a été signalée" @@ -4471,7 +4629,8 @@ msgid "Missing License Status parameter" msgstr "Paramètre du statut de licence manquante" #: includes/helpers/class-easy-digital-downloads.php:53 -msgid "License Status parameter was set to Failed" +#, fuzzy +msgid "License Status parameter was set to Failed" msgstr "" "Le paramètre du statut de licence à été défini sur Échoué" @@ -4584,7 +4743,7 @@ msgstr[1] "" "demander une mise à jour. Veuillez également inclure une référence à cette " "erreur dans votre message." -#: includes/helpers/class-modules-manager.php:217 +#: includes/helpers/class-modules-manager.php:220 msgid "" "The version of AWPCP {modules_names} is not compatible with version " "{awpcp_version}." @@ -4598,12 +4757,12 @@ msgstr[1] "" "La version de AWPCP {modules_names} n'est pas compatible avec la version " "{awpcp_version}." -#: includes/helpers/class-modules-manager.php:219 +#: includes/helpers/class-modules-manager.php:222 msgid "Please get AWPCP {required_modules_versions} or newer!" msgstr "" "S'il vous plaît obtenir AWPCP {required_modules_versions} ou plus récent!" -#: includes/helpers/class-modules-manager.php:250 +#: includes/helpers/class-modules-manager.php:256 msgid "" "The license for AWPCP is inactive. All features will remain " "disabled until you activate the license. Please go to the Paramètres de licence pour " "l'activer." -#: includes/helpers/class-modules-manager.php:264 +#: includes/helpers/class-modules-manager.php:276 msgid "" "The AWPCP requires a license to be used. All features will " "remain disabled until a valid license is entered. Please go to the " "Paramètres de licence pour entrer ou mettre à jour votre licence." -#: includes/helpers/class-modules-manager.php:269 +#: includes/helpers/class-modules-manager.php:284 msgid "" "The license for AWPCP expired. The module will continue to " "work but you will not receive automatic updates when a new version is " @@ -4662,7 +4821,7 @@ msgstr[1] "" "fonctionner, mais vous ne recevrez pas de mises à jour automatiques " "lorsqu'une nouvelle version sera disponible." -#: includes/helpers/class-modules-manager.php:281 +#: includes/helpers/class-modules-manager.php:299 msgid "" "The AWPCP is currently disabled because it requires you to " "perform a manual upgrade before continuing. Please go to the " @@ -4680,11 +4839,11 @@ msgstr[1] "" "niveau manuelle avant de continuer. S'il vous plaît , allez à " "la section administrateur de Annonces pour effectuer une mise à niveau ." -#: includes/helpers/class-modules-manager.php:294 +#: includes/helpers/class-modules-manager.php:312 msgid "The specified module does not exists!." msgstr "Le module spécifié n’existe pas." -#: includes/helpers/class-recaptcha-v3.php:56 +#: includes/helpers/class-recaptcha-v3.php:78 msgid "" "There was an error trying to analyze the current interaction with reCAPTCHA. " "" @@ -4692,7 +4851,7 @@ msgstr "" "Une erreur s'est produite lors de la tentative d'analyse de l'interaction " "actuelle avec reCAPTCHA. " -#: includes/helpers/class-recaptcha-v3.php:98 +#: includes/helpers/class-recaptcha-v3.php:120 msgid "" "The current interaction was not approved by reCAPTCHA. Please try again." msgstr "" @@ -4761,11 +4920,11 @@ msgstr "" "Une erreur est survenue pendant le traitement du paiement. Veuillez " "réessayer ou contactez l’administrateur du site." -#: includes/helpers/widgets/class-user-field.php:32 +#: includes/helpers/widgets/class-user-field.php:48 msgid "Select an User" msgstr "Sélectionner un utilisateur" -#: includes/helpers/widgets/multiple-region-selector.php:123 +#: includes/helpers/widgets/multiple-region-selector.php:143 msgid "" "This particular region is already selected in another field. Please choose " "one or more sub-regions, to make the selection more specific, or change the " @@ -4775,19 +4934,19 @@ msgstr "" "ou plusieurs autres sous-régions, pour rendre la sélection plus spécifique, " "ou changer la région sélectionnée." -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Search Region" msgstr "Ajouter une Région" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Region" msgstr "Ajouter une Région" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Delete Search Region" msgstr "Supprimer une région" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Remove Region" msgstr "Retirer la Région" @@ -4868,6 +5027,11 @@ msgstr "" msgid "There was an error trying to update the database." msgstr "Il y a eu une erreur en essayant de mettre à jour la base de données." +#: includes/media/class-attachment-action-ajax-handler.php:53 +#, fuzzy +msgid "You are not allowed to perform this action." +msgstr "Vous n'êtes pas autorisé à effectuer cette action." + #: includes/media/class-attachment-action-ajax-handler.php:57 msgid "The specified file is not associated with Listing with ID %d." msgstr "Le fichier spécifié n’est pas associée à la liste avec l’ID %d." @@ -4977,7 +5141,7 @@ msgstr "" "Le fichier est plus petit que la taille minimale de fichier " "autorisé de octets. Le fichier n’a pas été téléchargé." -#: includes/media/class-listings-media-uploader-component.php:51 +#: includes/media/class-listings-media-uploader-component.php:56 msgid "" "You can upload images of up to each, " " videos of up to each and " @@ -4987,7 +5151,7 @@ msgstr "" "chacune, videos de maxi chacune et " " autres fichiers de maxi chacun." -#: includes/media/class-listings-media-uploader-component.php:52 +#: includes/media/class-listings-media-uploader-component.php:57 msgid "" "You can upload images of up to each and " " other files (no videos) of up to each." @@ -4996,7 +5160,7 @@ msgstr "" "chacune, et autres fichiers de maxi " "chacun (pas de vidéo)." -#: includes/media/class-listings-media-uploader-component.php:53 +#: includes/media/class-listings-media-uploader-component.php:58 msgid "" "You can upload images of up to each and " " videos of up to each." @@ -5004,7 +5168,7 @@ msgstr "" "Vous pouvez charger images de maxi " "chacune et videos de maxi chacune." -#: includes/media/class-listings-media-uploader-component.php:54 +#: includes/media/class-listings-media-uploader-component.php:59 msgid "" "You can upload videos of up to each and " " other files (no images) of up to each." @@ -5013,14 +5177,14 @@ msgstr "" "chacune et autres fichiers de maxi " "chacun (pas d’image)." -#: includes/media/class-listings-media-uploader-component.php:55 +#: includes/media/class-listings-media-uploader-component.php:60 msgid "" "You can upload images of up to each." msgstr "" "Vous pouvez charger images de maxi " "chacune." -#: includes/media/class-listings-media-uploader-component.php:56 +#: includes/media/class-listings-media-uploader-component.php:61 msgid "" "You can upload files (no videos or images) of up to each." @@ -5028,7 +5192,7 @@ msgstr "" "Vous pouvez charger fichiers de maxi " "chacun (pas de vidéo ni d’image)." -#: includes/media/class-listings-media-uploader-component.php:57 +#: includes/media/class-listings-media-uploader-component.php:62 msgid "" "You can upload videos of up to each." msgstr "" @@ -5127,15 +5291,15 @@ msgstr "Une petite annonce." msgid "General" msgstr "Général" -#: includes/models/payment-transaction.php:225 +#: includes/models/payment-transaction.php:232 msgid "The transaction must be assigned to a WordPress user." msgstr "La transaction doit être assignée à un utilisateur WordPress." -#: includes/models/payment-transaction.php:238 +#: includes/models/payment-transaction.php:245 msgid "The transaction has no items." msgstr "La transaction n’a pas d’élément." -#: includes/models/payment-transaction.php:250 +#: includes/models/payment-transaction.php:257 msgid "" "The amount of credit in your account is not enough to pay for the selected " "items. Please choose one of the available Credit Plans in addition to the " @@ -5148,7 +5312,7 @@ msgstr "" "votre compte depuis votre page de profil.
Il vous faut %d de crédit " "supplémentaire." -#: includes/models/payment-transaction.php:252 +#: includes/models/payment-transaction.php:259 msgid "" "The selected Credit Plan is not enough to pay for the selected items. Please " "choose a bigger Credit Plan or add credit to your account from your Profile " @@ -5158,11 +5322,11 @@ msgstr "" "sélectionnés. Utilisez une autre offre ou ajoutez du crédit à votre compte " "depuis votre page de profil.
Il vous faut %d crédit supplémentaire." -#: includes/models/payment-transaction.php:282 +#: includes/models/payment-transaction.php:289 msgid "You must select a payment method." msgstr "Veuillez sélectionner un mode de règlement." -#: includes/models/payment-transaction.php:294 +#: includes/models/payment-transaction.php:301 msgid "The payment status for this transaction hasn't been defined." msgstr "Aucun statut de paiement n’a été défini pour cette transaction." @@ -5181,7 +5345,7 @@ msgstr "" "Et dans ce cas, vous pouvez l’ignorer." #: includes/payment-gateway-2checkout.php:101 -#: includes/payment-gateway-paypal-standard.php:140 +#: includes/payment-gateway-paypal-standard.php:142 msgid "" "The amount you have paid does not match the required amount for this " "transaction. Please contact us to clarify the problem." @@ -5191,7 +5355,7 @@ msgstr "" "situation." #: includes/payment-gateway-2checkout.php:109 -#: includes/payment-gateway-paypal-standard.php:148 +#: includes/payment-gateway-paypal-standard.php:150 msgid "" "There was an error processing your transaction. If funds have been deducted " "from your account, they have not been processed to our account. You will " @@ -5203,7 +5367,7 @@ msgstr "" "dysfonctionnement." #: includes/payment-gateway-2checkout.php:119 -#: includes/payment-gateway-paypal-standard.php:158 +#: includes/payment-gateway-paypal-standard.php:160 msgid "" "It appears this transaction has already been processed. If you do not see " "your ad in the system please contact the site adminstrator for assistance." @@ -5213,7 +5377,7 @@ msgstr "" "obtenir de l’aide." #. translators: %s link url. -#: includes/payment-gateway-paypal-standard.php:58 +#: includes/payment-gateway-paypal-standard.php:60 msgid "" "We haven't received your payment information from PayPal yet and we are " "unable to verify your transaction. Please reload this page or visit admin section to change the order in which " "the fields mentioned below are shown to users in the Ad Details form." @@ -6039,33 +6203,33 @@ msgstr "" "pour changer l’ordre dans lequel les champs mentionnés ci-dessous " "s’afficheront à la lecture de l’Annonce." -#: includes/settings/class-display-settings.php:452 +#: includes/settings/class-display-settings.php:451 msgid "Form Fields Behavior" msgstr "Comportement des champs de formulaire" -#: includes/settings/class-display-settings.php:461 +#: includes/settings/class-display-settings.php:460 #: templates/admin/import/supported-csv-headers.tpl.php:18 msgid "Field" msgstr "Champ" -#: includes/settings/class-display-settings.php:462 +#: includes/settings/class-display-settings.php:461 msgid "Show field on form" msgstr "Afficher le champ sur le formulaire" -#: includes/settings/class-display-settings.php:463 +#: includes/settings/class-display-settings.php:462 msgid "Show field on search form" msgstr "Afficher le champ sur le formulaire de recherche" -#: includes/settings/class-display-settings.php:464 +#: includes/settings/class-display-settings.php:463 #: templates/admin/import/supported-csv-headers.tpl.php:19 msgid "Required" msgstr "Nécessaire" -#: includes/settings/class-display-settings.php:465 +#: includes/settings/class-display-settings.php:464 msgid "Show value to registered users only" msgstr "Afficher la valeur uniquement pour les utilisateurs enregistrés" -#: includes/settings/class-display-settings.php:469 +#: includes/settings/class-display-settings.php:468 msgid "Website" msgstr "Site Web" @@ -6159,15 +6323,15 @@ msgstr "" "cochez pas la case et assurez-vous que le mail de l’admin WordPress est " "identique à celui que vous avez indiquez dans votre contrat d’hébergement." -#. translators: full-email-address=John Doe , -#. short-email-address=john.doe@example.com -#: includes/settings/class-email-settings.php:84 +#. translators: %1$s=John Doe , %2$s=john.doe@example.com +#: includes/settings/class-email-settings.php:85 +#, fuzzy msgid "" "If checked, whenever the name of the recipient is available, emails will be " -"sent to instead of just . Some " -"email servers, however, have problems handling email address that include " -"the name of the recipient. If emails sent by the plugin are not being " -"delivered properly, try unchecking this settting." +"sent to %1$s instead of just %2$s. Some email servers, however, have " +"problems handling email address that include the name of the recipient. If " +"emails sent by the plugin are not being delivered properly, try unchecking " +"this settting." msgstr "" "Si cette case est cochée, chaque fois que le nom du destinataire est " "disponible, les courriers électroniques seront envoyés à is not a valid email address. Please check the value you entered " "to use as the FROM email address for outgoing messages." @@ -6583,7 +6787,7 @@ msgstr "" "que vous avez entrée pour l'utiliser comme adresse e-mail \"FROM\" pour les " "messages sortants." -#: includes/settings/class-email-settings.php:317 +#: includes/settings/class-email-settings.php:319 msgid "" " is not a valid email address. Please check the value you entered " "to use as recipient email address for admin notifications." @@ -7617,15 +7821,18 @@ msgstr "" "unique créée à l'aide de l'URL Webhooks et du nom de l'événement que vous " "avez définis." -#: includes/settings/class-general-settings.php:919 +#. translators: %1$s is the link to Facebook Developer Apps page. %2$s is the +#. closing anchor tag. +#: includes/settings/class-general-settings.php:921 +#, fuzzy msgid "" -"You can find your application information in the Facebook Developer Apps page." +"You can find your application information in the %1$sFacebook Developer " +"Apps%2$s page." msgstr "" "Vous trouverez des informations sur votre application sur la page " "Facebook Developer Apps (en)." -#: includes/settings/class-general-settings.php:935 +#: includes/settings/class-general-settings.php:936 msgid "" "AWPCP needs to get an authorization token from Facebook to work correctly. " "You'll be redirected to Facebook to login. AWPCP does not store or obtain " @@ -7635,7 +7842,7 @@ msgstr "" "correctement. Vous serez redirigé vers Facebook pour vous connecter. AWPCP " "ne stocke ou n’obtient aucune information personnelle de votre profil." -#: includes/settings/class-general-settings.php:936 +#: includes/settings/class-general-settings.php:937 msgid "" "Please choose Public as the audience for posts made by the application, even " "if you are just testing the integration. Facebook won't allow us to post " @@ -7646,11 +7853,11 @@ msgstr "" "ne nous permettra pas d’afficher du contenu dans certains cas, si vous " "choisissez quelque chose d’autre." -#: includes/settings/class-general-settings.php:945 +#: includes/settings/class-general-settings.php:947 msgid "Click here to obtain an access token from Facebook" msgstr "Cliquez ici pour obtenir un jeton d'accès de Facebook" -#: includes/settings/class-general-settings.php:947 +#: includes/settings/class-general-settings.php:951 msgid "" "Please provide a value for the App Id and App Secret settings before trying " "to get an access token from Facebook." @@ -7658,7 +7865,7 @@ msgstr "" "Veuillez fournir une valeur pour les paramètres App Id et App Secret avant " "d'essayer d'obtenir un jeton d'accès à partir de Facebook." -#: includes/settings/class-general-settings.php:958 +#: includes/settings/class-general-settings.php:960 msgid "" "Available Facebook Pages and Groups will be displayed after you enter a " "valid User Access Token." @@ -7666,18 +7873,16 @@ msgstr "" "Les pages et groupes Facebook disponibles seront affichés après que vous " "ayez entré un jeton d'accès utilisateur valide." -#: includes/settings/class-general-settings.php:959 -msgid "" -"As of April 4, 2018, all applications need to go through App Review " -"in order to get access to the Page API and Groups API. That means that you may need to submit your app for review (ask for the " -"manage_pages, publish_pages, " -"publish_to_groups permissions), before AWPCP can display the " +#. translators: %1$s opening anchor tag, %2$s closing anchor tag, %3$s opening +#. anchor tag, %4$s closing anchor tag, %5$s opening anchor tag, %6$s closing +#. anchor tag, %7$s opening anchor tag, %8$s closing anchor tag +#: includes/settings/class-general-settings.php:964 +#, fuzzy +msgid "" +"All applications need to go through %1$sApp Review%2$s in order to get " +"access to the %3$sPage API%4$s and %5$sGroups API%6$s. That means that you " +"may need to %7$ssubmit your app for review%8$s (ask for the manage_pages, " +"publish_pages, publish_to_groups permissions), before AWPCP can display the " "list of pages and groups you manage and be able to post classifieds ads to " "those groups and pages." msgstr "" @@ -7694,19 +7899,19 @@ msgstr "" "avant qu'AWPCP puisse afficher la liste des pages et des groupes que vous " "gérez et pouvoir publier des annonces classées sur ces groupes et pages." -#: includes/settings/class-general-settings.php:977 +#: includes/settings/class-general-settings.php:989 msgid "None (Do not sent ads to a Facebook Page)" msgstr "Aucun (ne pas envoyer d'annonces sur une page Facebook)" -#: includes/settings/class-general-settings.php:984 +#: includes/settings/class-general-settings.php:996 msgid "(Your own profile page)" msgstr "(votre page de profil)" -#: includes/settings/class-general-settings.php:1008 +#: includes/settings/class-general-settings.php:1020 msgid "None (Do not sent ads to a Facebook Group)" msgstr "Aucun (ne pas envoyer d'annonces sur un groupe Facebook)" -#: includes/settings/class-general-settings.php:1064 +#: includes/settings/class-general-settings.php:1076 msgid "" "Akismet SPAM control cannot be enabled because Akismet plugin is not " "installed or activated." @@ -7714,7 +7919,7 @@ msgstr "" "Vous ne pouvez pas activer le contrôle de SPAM Akismet parce que vous n’avez " "pas installé ou activé le plugin Akismet." -#: includes/settings/class-general-settings.php:1068 +#: includes/settings/class-general-settings.php:1080 msgid "" "Akismet SPAM control cannot be enabled because Akismet is not properly " "configured." @@ -7722,31 +7927,31 @@ msgstr "" "Vous ne pouvez pas activer le contrôle de SPAM Akismet parce que Akismet " "n’est pas correctement configuré." -#: includes/settings/class-general-settings.php:1094 +#: includes/settings/class-general-settings.php:1106 msgid "" "reCAPTCHA can't be used because the public key and private key settings are " "required for reCAPTCHA to work properly." msgstr "reCAPTCHA est inutilisable sans ses clés publique et privée." -#: includes/settings/class-general-settings.php:1096 +#: includes/settings/class-general-settings.php:1108 msgid "" "reCAPTCHA can't be used because the public key setting is required for " "reCAPTCHA to work properly." msgstr "reCAPTCHA nécessite une clé publique pour fonctionner." -#: includes/settings/class-general-settings.php:1098 +#: includes/settings/class-general-settings.php:1110 msgid "" "reCAPTCHA can't be used because the private key setting is required for " "reCAPTCHA to work properly." msgstr "reCAPTCHA nécessite une clé privée pour fonctionner." -#: includes/settings/class-general-settings.php:1145 +#: includes/settings/class-general-settings.php:1157 msgid "Thousands separator and decimal separator cant be the same." msgstr "" "Le séparateur de milliers et le séparateur décimal ne peuvent pas être " "identiques." -#: includes/settings/class-general-settings.php:1159 +#: includes/settings/class-general-settings.php:1171 msgid "" "Credit System was automatically disabled because you disabled Require " "Registration setting." @@ -7764,10 +7969,21 @@ msgid "Licenses" msgstr "Licences" #: includes/settings/class-licenses-settings.php:64 -#: templates/admin/debug/plugin-info-debug-section.tpl.php:18 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:24 msgid "Premium Modules" msgstr "Modules Premium" +#: includes/settings/class-licenses-settings.php:82 +#, fuzzy +msgid "" +"The IP address of your server is %s. Please make sure to include that " +"information if you need to contact support about problems trying to activate " +"your licenses." +msgstr "" +"L'adresse IP de votre serveur est . Assurez-vous d'inclure ces " +"informations si vous avez besoin de contacter le support technique pour des " +"problèmes d'activation de vos licences." + #: includes/settings/class-listings-moderation-settings.php:22 msgid "" "Email verification was disabled because you enabled Require Registration. " @@ -8187,19 +8403,20 @@ msgstr "" "Afficher la rubrique sur la barre de titre du navigateur (sur la page " "d’aperçu d’une annonce)" -#: includes/settings/class-listings-settings.php:472 +#: includes/settings/class-listings-settings.php:473 +#, fuzzy msgid "" "Enable this setting to display each listing on its own page, instead of " -"showing the listing's content inside the page." +"showing the listing's content inside the %s page." msgstr "" "Activez ce paramètre pour afficher chaque liste sur sa propre page, au lieu " "d'afficher le contenu de la liste dans la page ." -#: includes/settings/class-listings-settings.php:478 +#: includes/settings/class-listings-settings.php:480 msgid "Display listings on their own page" msgstr "Afficher les annonces sur leur propre page" -#: includes/settings/class-listings-settings.php:486 +#: includes/settings/class-listings-settings.php:488 msgid "" "Portion of the URL that appears between the website's domain and the " "listing's information. Example: in ." @@ -8207,11 +8424,11 @@ msgstr "" "Partie de l'URL qui apparaît entre le domaine du site Web et les " "informations de la liste. Exemple: dans ." -#: includes/settings/class-listings-settings.php:496 +#: includes/settings/class-listings-settings.php:498 msgid "Listings slug" msgstr "Annonces slug" -#: includes/settings/class-listings-settings.php:509 +#: includes/settings/class-listings-settings.php:511 msgid "" "Include the slug of the plugin's main page () in the URL " "that points to the page of an individual listing." @@ -8219,7 +8436,7 @@ msgstr "" "Incluez le slug de la page principale du plugin () dans " "l'URL qui pointe vers la page d'une liste individuelle." -#: includes/settings/class-listings-settings.php:512 +#: includes/settings/class-listings-settings.php:514 msgid "" "Include the slug of the plugin's main page in the URL that points to the " "page of an individual listing." @@ -8227,68 +8444,68 @@ msgstr "" "Incluez le slug de la page principale du plug-in dans l'URL qui pointe vers " "la page d'une liste individuelle." -#: includes/settings/class-listings-settings.php:518 +#: includes/settings/class-listings-settings.php:520 msgid "Include the slug of the plugin's main page in the listing URL" msgstr "Inclure le slug de la page principale du plugin dans l'URL de la liste" -#: includes/settings/class-listings-settings.php:532 +#: includes/settings/class-listings-settings.php:534 msgid "Include the title in the listing URL" msgstr "Inclure le titre dans l’URL de l’Annonce" -#: includes/settings/class-listings-settings.php:535 +#: includes/settings/class-listings-settings.php:537 msgid "" "Include the title in the URL that points to the page of an individual " "listing." msgstr "Inclure le titre dans l’URL pointant vers la page de l’Annonce." -#: includes/settings/class-listings-settings.php:541 +#: includes/settings/class-listings-settings.php:543 msgid "Include the name of the category in the listing URL" msgstr "Inclure le nom de la catégorie dans l’URL de l’Annonce" -#: includes/settings/class-listings-settings.php:544 +#: includes/settings/class-listings-settings.php:546 msgid "" "Include the name of the category in the URL that points to the page of an " "individual listing." msgstr "" "Inclure le nom de la catégorie dans l’URL pointant vers la page de l’Annonce." -#: includes/settings/class-listings-settings.php:550 +#: includes/settings/class-listings-settings.php:552 msgid "Include the name of the country in the listing URL" msgstr "Inclure le nom du pays dans l’URL de l’Annonce" -#: includes/settings/class-listings-settings.php:553 +#: includes/settings/class-listings-settings.php:555 msgid "" "Include the name of the country in the URL that points to the page of an " "individual listing." msgstr "Inclure le nom du pays dans l’URL pointant vers la page de l’Annonce." -#: includes/settings/class-listings-settings.php:559 +#: includes/settings/class-listings-settings.php:561 msgid "Include the name of the state in the listing URL" msgstr "Inclure le nom de N° et rue dans l’URL de l’Annonce" -#: includes/settings/class-listings-settings.php:562 +#: includes/settings/class-listings-settings.php:564 msgid "" "Include the name of the state in the URL that points to the page of an " "individual listing." msgstr "" "Inclure le nom de N° et rue dans l’URL pointant vers la page de l’Annonce." -#: includes/settings/class-listings-settings.php:568 +#: includes/settings/class-listings-settings.php:570 msgid "Include the name of the city in the listing URL" msgstr "Inclure le nom de la ville dans l’URL de l’Annonce" -#: includes/settings/class-listings-settings.php:571 +#: includes/settings/class-listings-settings.php:573 msgid "" "Include the name of the city in the URL that points to the page of an " "individual listing." msgstr "" "Inclure le nom de la ville dans l’URL pointant vers la page de l’Annonce." -#: includes/settings/class-listings-settings.php:577 +#: includes/settings/class-listings-settings.php:579 msgid "Include the name of the county in the listing URL" msgstr "Inclure le Code Postal dans l’URL de l’Annonce" -#: includes/settings/class-listings-settings.php:580 +#: includes/settings/class-listings-settings.php:582 msgid "" "Include the name of the county in the URL that points to the page of an " "individual listing." @@ -8461,7 +8678,7 @@ msgstr "" "seront accessibles via une connexion sécurisée (HTTPS). Ne pas activer cette " "fonction si votre serveur ne prend pas en charge le protocole HTTPS." -#: includes/settings/class-payment-general-settings.php:109 +#: includes/settings/class-payment-general-settings.php:108 msgid "" "Force Secure URLs was not enabled because your website couldn't be accessed " "using a secure connection." @@ -8469,23 +8686,19 @@ msgstr "" "Forcer les URLs Sécurisées n’était pas activé parce que votre site n’est pas " "accessible via une connexion sécurisée." -#: includes/settings/class-payment-general-settings.php:135 -msgid "PayPal" -msgstr "PayPal" - -#: includes/settings/class-payment-general-settings.php:140 +#: includes/settings/class-payment-general-settings.php:139 msgid "PayPal Settings" msgstr "Configuration de PayPal" -#: includes/settings/class-payment-general-settings.php:142 +#: includes/settings/class-payment-general-settings.php:141 msgid "Activate PayPal?" msgstr "Activer PayPal ?" -#: includes/settings/class-payment-general-settings.php:146 +#: includes/settings/class-payment-general-settings.php:145 msgid "PayPal receiver email" msgstr "E-mail du récipiendaire PayPal" -#: includes/settings/class-payment-general-settings.php:149 +#: includes/settings/class-payment-general-settings.php:148 msgid "" "Email address for PayPal payments (if running in pay mode and if PayPal is " "activated)." @@ -8493,86 +8706,85 @@ msgstr "" "Adresse email pour les règlements par PayPal (si le mode payant et PayPal " "sont activés)." -#: includes/settings/class-payment-general-settings.php:167 +#: includes/settings/class-payment-general-settings.php:166 msgid "PayPal Merchant ID" msgstr "Identifiant de marchand PayPal" #: includes/settings/class-payment-general-settings.php:170 +#, fuzzy msgid "" "Merchant ID associated with the PayPal account that will receive the " -"payments. Go to https://www.paypal.com/myaccount/settings/ to obtain " -"your Merchant ID." +"payments. Go to %s to obtain your Merchant ID." msgstr "" "Identifiant du marchand associé au compte PayPal qui recevra les paiements. " "Accédez à https://www.paypal.com/myaccount/settings/. pour " "obtenir votre identifiant marchand." -#: includes/settings/class-payment-general-settings.php:178 +#: includes/settings/class-payment-general-settings.php:180 msgid "The PayPal Currency Code must be one of ." msgstr "" "Le code de Devise de Paypal doit être un des codes suivants ." -#: includes/settings/class-payment-general-settings.php:183 +#: includes/settings/class-payment-general-settings.php:185 msgid "PayPal currency code" msgstr "Code de devise PayPal" -#: includes/settings/class-payment-general-settings.php:186 +#: includes/settings/class-payment-general-settings.php:188 msgid "The currency in which you would like to receive your PayPal payments" msgstr "La devise dans laquelle vous souhaitez recevoir votre règlement PayPal" -#: includes/settings/class-payment-general-settings.php:209 +#: includes/settings/class-payment-general-settings.php:211 msgid "2Checkout" msgstr "2Checkout" -#: includes/settings/class-payment-general-settings.php:214 +#: includes/settings/class-payment-general-settings.php:216 msgid "2Checkout Settings" msgstr "Configuration de 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout" msgstr "Activer 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout?" msgstr "Activer 2Checkout ?" -#: includes/settings/class-payment-general-settings.php:220 +#: includes/settings/class-payment-general-settings.php:222 msgid "2Checkout account" msgstr "Compte 2Checkout" -#: includes/settings/class-payment-general-settings.php:223 +#: includes/settings/class-payment-general-settings.php:225 msgid "Account for 2Checkout payments." msgstr "Compte pour les paiements 2Checkout." -#: includes/settings/class-payment-general-settings.php:238 +#: includes/settings/class-payment-general-settings.php:240 msgid "2Checkout Currency Code" msgstr "Code devises 2Checkout" -#: includes/settings/class-payment-general-settings.php:249 +#: includes/settings/class-payment-general-settings.php:251 msgid "The currency in which you would like to receive your 2Checkout payments" msgstr "" "La devise dans laquelle vous souhaitez recevoir vos règlements de 2Checkout" -#: includes/settings/class-payment-general-settings.php:261 -#: includes/settings/class-payment-general-settings.php:266 +#: includes/settings/class-payment-general-settings.php:263 +#: includes/settings/class-payment-general-settings.php:268 msgid "Credit System" msgstr "Système de crédit" -#: includes/settings/class-payment-general-settings.php:269 +#: includes/settings/class-payment-general-settings.php:271 msgid "Currency" msgstr "Devise" -#: includes/settings/class-payment-general-settings.php:271 +#: includes/settings/class-payment-general-settings.php:273 msgid "Currency & Credits" msgstr "Devise et Crédits" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "Enable Credit System" msgstr "Activer le système de crédit" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "" "The Credit System allows users to purchase credit that can later be used to " "pay for placing Ads." @@ -8580,17 +8792,17 @@ msgstr "" "Le système de crédit permet aux utilisateurs d’acheter du crédit qui pourra " "ensuite être utilisé pour régler la publication d’annonces." -#: includes/settings/class-payment-general-settings.php:279 +#: includes/settings/class-payment-general-settings.php:281 msgid "Accepted payment type" msgstr "Type de règlement accepté" -#: includes/settings/class-payment-general-settings.php:282 +#: includes/settings/class-payment-general-settings.php:284 msgid "Select the type of payment that can be used to purchase Ads." msgstr "" "Sélectionnez le mode de paiement pouvant être utilisé pour acheter une " "annonce." -#: includes/settings/class-payment-general-settings.php:294 +#: includes/settings/class-payment-general-settings.php:296 msgid "" "You cannot configure Credits as the only accepted payment type unless you " "enable the Credit System as well. The setting was set to accept both " @@ -8600,7 +8812,7 @@ msgstr "" "à moins que vous activiez le Système de Crédits. Le réglage retenu accepte " "et les Devisse et le Crédits." -#: includes/settings/class-payment-general-settings.php:311 +#: includes/settings/class-payment-general-settings.php:313 msgid "" "There is a problem with the PayPal Currency Code you have entered. It does " "not match any of the codes in our list of curencies supported by PayPal." @@ -8609,11 +8821,11 @@ msgstr "" "ne correspond à aucun des codes dans la liste des devises disponibles " "fournies par PayPal." -#: includes/settings/class-payment-general-settings.php:312 +#: includes/settings/class-payment-general-settings.php:314 msgid "The available currency codes are" msgstr "Les codes de devises disponibles sont" -#: includes/settings/class-payment-general-settings.php:321 +#: includes/settings/class-payment-general-settings.php:323 msgid "" "Require Registration setting was enabled automatically because you activated " "the Credit System." @@ -8621,7 +8833,7 @@ msgstr "" "L’inscription automatique a été activée automatiquement parce que vous avez " "activé le système de crédit." -#: includes/settings/class-payment-general-settings.php:326 +#: includes/settings/class-payment-general-settings.php:328 msgid "" "Charge Listing Fee setting was enabled automatically because you activated " "the Credit System." @@ -8629,7 +8841,7 @@ msgstr "" "La facturation de participations a été activée automatiquement parce que " "vous avez activé le système de crédit." -#: includes/settings/class-payment-general-settings.php:332 +#: includes/settings/class-payment-general-settings.php:334 msgid "" "Credit System was disabled automatically because you disabled Charge Listing " "Fee." @@ -8637,7 +8849,7 @@ msgstr "" "Le système de crédit a été désactivé automatiquement parce que vous " "désactivé la facturation de participations." -#: includes/settings/renderers/class-button-settings-renderer.php:39 +#: includes/settings/renderers/class-button-settings-renderer.php:40 msgid "" "Resetting to the default layout will cause any custom HTML layout changes " "you've made to be lost. Are you sure?" @@ -8645,7 +8857,7 @@ msgstr "" "Si vous rétablissez la présentation par défaut, toutes les modifications " "apportées à la présentation HTML personnalisée seront perdues. Êtes-vous sûr?" -#: includes/settings/renderers/class-button-settings-renderer.php:42 +#: includes/settings/renderers/class-button-settings-renderer.php:47 msgid "Reset" msgstr "Réinitialiser" @@ -8653,55 +8865,54 @@ msgstr "Réinitialiser" msgid "Deactivate" msgstr "Désactiver" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -msgid "active" -msgstr "licence active" - -#: includes/settings/renderers/class-license-settings-renderer.php:43 #: includes/settings/renderers/class-license-settings-renderer.php:46 -#: includes/settings/renderers/class-license-settings-renderer.php:56 -#: includes/settings/renderers/class-license-settings-renderer.php:58 -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "Status: " -msgstr "Statut: " - -#: includes/settings/renderers/class-license-settings-renderer.php:45 -#: includes/settings/renderers/class-license-settings-renderer.php:48 +#: includes/settings/renderers/class-license-settings-renderer.php:50 msgid "Activate" msgstr "Activer" -#: includes/settings/renderers/class-license-settings-renderer.php:46 -msgid "inactive" -msgstr "inactif" - -#: includes/settings/renderers/class-license-settings-renderer.php:51 +#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag +#: includes/settings/renderers/class-license-settings-renderer.php:55 +#, fuzzy msgid "" -"Click the button above to check the status of your license. Please contact customer support if you think the reported status is wrong." +"Click the button above to check the status of your license. Please " +"%1$scontact customer support%2$s if you think the reported status is wrong." msgstr "" "Cliquez sur le bouton ci-dessus pour vérifier le statut de votre licence. " "S’il vous plaît Contactez le support client si vous " "pensez que le statut rapporté est faux." -#: includes/settings/renderers/class-license-settings-renderer.php:56 -msgid "expired" -msgstr "expirée" - -#: includes/settings/renderers/class-license-settings-renderer.php:58 +#: includes/settings/renderers/class-license-settings-renderer.php:75 msgid "disabled" msgstr "désactivé" -#: includes/settings/renderers/class-license-settings-renderer.php:60 +#: includes/settings/renderers/class-license-settings-renderer.php:76 +msgid "inactive" +msgstr "inactif" + +#: includes/settings/renderers/class-license-settings-renderer.php:77 +msgid "active" +msgstr "licence active" + +#: includes/settings/renderers/class-license-settings-renderer.php:78 +msgid "expired" +msgstr "expirée" + +#: includes/settings/renderers/class-license-settings-renderer.php:79 msgid "unknown" msgstr "inconnu" +#: includes/settings/renderers/class-license-settings-renderer.php:84 +#, fuzzy +msgid "Status: %s" +msgstr "Statut :" + #. translators: screen reader text label for individual settings on a settings #. grid -#: includes/settings/renderers/class-settings-grid-renderer.php:75 +#: includes/settings/renderers/class-settings-grid-renderer.php:80 msgid " setting for field" msgstr "Paramètre pour le champ " -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:35 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:38 msgid "Create Page" msgstr "Créer une page" @@ -8709,21 +8920,21 @@ msgstr "Créer une page" msgid "Ad Category" msgstr "Rubrique" -#: includes/ui/class-category-selector.php:122 +#: includes/ui/class-category-selector.php:144 msgid "All Categories" msgstr "Toutes les rubriques" -#: includes/ui/class-category-selector.php:171 +#: includes/ui/class-category-selector.php:193 msgid "Select a Sub-category" msgstr "Sélectionnez une sous-rubrique" -#: includes/ui/class-payment-terms-list.php:86 +#: includes/ui/class-payment-terms-list.php:103 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" msgstr "" "{payment-term-name} & ndash; {payment-term-duration} ({payment-term-price})" -#: includes/ui/class-payment-terms-list.php:91 +#: includes/ui/class-payment-terms-list.php:108 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" @@ -8731,62 +8942,62 @@ msgstr "" "{payment-term-name} & ndash; {durée-paiement-durée} (crédits {paiement-terme-" "prix})" -#: includes/ui/class-payment-terms-list.php:152 +#: includes/ui/class-payment-terms-list.php:169 msgid " listing allowed." msgid_plural " listings allowed." msgstr[0] " liste autorisée." msgstr[1] " listes autorisées." -#: includes/ui/class-payment-terms-list.php:160 +#: includes/ui/class-payment-terms-list.php:177 msgid "No images allowed." msgstr "Aucune image autorisée." -#: includes/ui/class-payment-terms-list.php:163 +#: includes/ui/class-payment-terms-list.php:180 msgid " image allowed." msgid_plural " images allowed." msgstr[0] " image autorisée." msgstr[1] " images autorisées." -#: includes/ui/class-payment-terms-list.php:170 +#: includes/ui/class-payment-terms-list.php:187 msgid "Unlimited characters in listing's title." msgstr "Caractères illimités dans le titre de l'annonce." -#: includes/ui/class-payment-terms-list.php:173 +#: includes/ui/class-payment-terms-list.php:190 msgid "Up to characters in listing's title." msgstr "Jusqu'à caractères dans le titre de l'annonce." -#: includes/ui/class-payment-terms-list.php:180 +#: includes/ui/class-payment-terms-list.php:197 msgid "Up to categories allowed." msgstr "Jusqu'à catégories autorisées." -#: includes/ui/class-payment-terms-list.php:187 +#: includes/ui/class-payment-terms-list.php:204 msgid "Unlimited characters in listing's content." msgstr "Caractères illimités dans la description de l'annonce." -#: includes/ui/class-payment-terms-list.php:190 +#: includes/ui/class-payment-terms-list.php:207 msgid "Up to characters in listing's content." msgstr "" "Jusqu'à caractères dans la description de l'annonce." -#: includes/ui/class-payment-terms-list.php:196 +#: includes/ui/class-payment-terms-list.php:213 msgid "Purchase this plan" msgstr "Achetez ce plan" -#: includes/ui/class-payment-terms-list.php:197 +#: includes/ui/class-payment-terms-list.php:214 msgid "Pay for this plan with credits" msgstr "Payer pour ce plan avec des crédits" -#: includes/ui/class-payment-terms-list.php:200 -#: includes/ui/class-payment-terms-list.php:204 +#: includes/ui/class-payment-terms-list.php:217 +#: includes/ui/class-payment-terms-list.php:221 msgid "Use this plan for free!" msgstr "Utilisez ce plan gratuitement!" -#: includes/ui/class-payment-terms-list.php:209 -#: includes/ui/class-payment-terms-list.php:214 +#: includes/ui/class-payment-terms-list.php:226 +#: includes/ui/class-payment-terms-list.php:231 msgid "Select" msgstr "Sélectionner" -#: includes/ui/class-payment-terms-list.php:213 +#: includes/ui/class-payment-terms-list.php:230 msgid "credits" msgstr "crédits" @@ -8935,13 +9146,13 @@ msgstr "" "link>définir un support d’annonces gratuites." #. translators: %s the step name -#: includes/views/class-base-page.php:82 +#: includes/views/class-base-page.php:83 msgid "Unkown step \"%s\". Please contact the administrator about this error." msgstr "" "%s: étape inconnue. Veuillez signaler cette erreur à l’administrateur du " "site." -#: includes/views/class-base-page.php:135 +#: includes/views/class-base-page.php:136 msgid "" "Your request cannot be processed at this time. Please try again or contact " "the administrator about the incident." @@ -8951,7 +9162,7 @@ msgstr "" #. translators: %1$s back link, %2$s transaction id #: includes/views/class-payment-step-decorator.php:41 -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:74 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:76 #, fuzzy msgid "" "You are trying to buy credits using a transaction created for a different " @@ -8983,18 +9194,18 @@ msgstr "" msgid "Congratulations. You have successfully added credit to your account." msgstr "Bonne nouvelle ! Votre solde a été augmenté par du crédit." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:12 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:14 msgid "Buy Credits" msgstr "Acheter du crédit" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:87 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:89 msgid "" "The payment associated with this transaction failed (see reasons below)." msgstr "" "Un paiement associé à cette transaction a échoué (voir les raisons ci-" "dessous)." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:118 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:120 msgid "You are not allowed to buy credits." msgstr "" "Désolé, vous n'êtes pas autorisé à " @@ -9012,22 +9223,62 @@ msgstr "" msgid "The instance of WP_Scripts is not ready!" msgstr "L'instance de WP_Scripts n'est pas prête!" -#: installer.php:154 +#: installer.php:160 msgid "30 Day Listing" msgstr "Parutions sur 30 jours" -#: installer.php:822 +#: installer.php:307 msgid "Response to your AWPCP Demo Ad" msgstr "Réponse à votre annonce de test AWPCP" -#: installer.php:823 +#: installer.php:308 msgid "Someone has responded to your AWPCP Demo Ad" msgstr "Quelqu’un a répondu à votre annonce de test AWPCP" -#: installer.php:848 +#: installer.php:333 msgid "Verify the email address used for Ad $title" msgstr "Vérifier l’adresse email utilisée pour l’annonce $title" +#: installer.php:334 +#, fuzzy +msgid "" +"Hello $author_name \n" +"\n" +"You recently posted the Ad $title to $website_name. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"$verification_link \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" +msgstr "" +"Bonjour $author_name \n" +"\n" +"Vous avez récemment posté le titre de l'annonce $title to $website_name. \n" +"\n" +"Afin de terminer le processus de publication, vous devez vérifier votre " +"adresse e-mail. Veuillez cliquer sur le lien ci-dessous pour terminer le " +"processus de vérification. Vous serez redirigé vers le site Web où vous " +"pouvez voir votre annonce. \n" +"\n" +"$verification_link \n" +"\n" +"Après avoir vérifié votre adresse e-mail, l'administrateur sera informé de " +"la nouvelle annonce. Si la modération est activée, votre annonce restera " +"désactivée jusqu'à ce que l'administrateur l'approuve. \n" +"\n" +"$website_name\n" +"\n" +"$website_url" + #: templates/admin/debug/environment-debug-section.tpl.php:19 msgid "" "Click the button below to contact and get a report about " @@ -9036,11 +9287,11 @@ msgstr "" "Cliquez sur le bouton ci-dessous pour contacter et obtenir " "un rapport sur les fonctionnalités SSL / TSL de votre serveur." -#: templates/admin/debug/environment-debug-section.tpl.php:30 +#: templates/admin/debug/environment-debug-section.tpl.php:32 msgid "Test your SSL Client" msgstr "Testez votre client SSL" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:16 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:20 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -9052,7 +9303,7 @@ msgstr "" "corrompues. Cliquez sur le bouton ci-dessous pour accéder à la page " " Permalinks Settings ." -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:23 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:27 msgid "" "Opening that page in your browser will flush the Rewrite Rules in your site. " "WordPress will then ask all installed and active plugins to register their " @@ -9065,29 +9316,36 @@ msgstr "" "disparaître. Si ce n'est pas le cas, contactez le support client ." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:3 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#, fuzzy +msgid "Plugin Pages" +msgstr "Plugin Pages" + +#: templates/admin/delete-browse-categories-page-notice.tpl.php:4 +#, fuzzy msgid "" -"The page is no longer necessary. From now on, " -"all listings will be displayed in the page, even " -"when they are filtered by a particular category." +"The %1$s page is no longer necessary. From now on, all listings will be " +"displayed in the %2$s page, even when they are filtered by a particular " +"category." msgstr "" "La page n’est plus nécessaire. A partir de " "maintenant, toutes les listes seront affichées dans la page , même quand elles sont filtrées par une rubrique particulière." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:9 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:11 +#, fuzzy msgid "" -"The plugin will start redirecting all traffic to the page to make sure no broken links are created." +"The plugin will start redirecting all traffic to the %s page to make sure no " +"broken links are created." msgstr "" "Le plugin va commencer à rediriger tout le trafic vers la page pour s’assurer qu’aucun lien brisé ne soit créé." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:13 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:15 msgid "Click the button below to delete the page." msgstr "Cliquez sur le bouton ci-dessous pour supprimer la page." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:14 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:18 msgid "Delete Page" msgstr "Supprime la page" @@ -9117,10 +9375,11 @@ msgstr "" "La catégorie a des catégories enfants. Veuillez sélectionner une catégorie à " "définir comme nouveau parent des catégories enfants." -#: templates/admin/delete-category-admin-page.tpl.php:32 +#. translators: %1$s: Cancel button , %2$s: Submit button label +#: templates/admin/delete-category-admin-page.tpl.php:34 +#, fuzzy msgid "" -"Click to go back to the list of categories or click " -" to proceed." +"Click %1$s to go back to the list of categories or click %2$s to proceed." msgstr "" "Cliquez sur pour revenir à la liste des catégories ou " "sur pour continuer." @@ -9129,7 +9388,12 @@ msgstr "" msgid "Selected Category" msgstr "Catégorie sélectionnée" -#: templates/admin/export-listings-admin-page.tpl.php:158 +#: templates/admin/export-listings-admin-page.tpl.php:137 +#, fuzzy +msgid "Export Complete" +msgstr "Export terminé" + +#: templates/admin/export-listings-admin-page.tpl.php:153 #, fuzzy msgid "" "Click \"Cleanup\" once the file has been downloaded in order to remove all " @@ -9139,6 +9403,11 @@ msgstr "" "les données temporaires créées par un autre plug-in WordPress Classifieds " "lors du processus d'exportation." +#: templates/admin/export-listings-admin-page.tpl.php:160 +#, fuzzy +msgid "Export Canceled" +msgstr "Export annulé" + #: templates/admin/form-fields-admin-page.tpl.php:7 msgid "" "The table below shows all the form fields that users may need to fill to " @@ -9151,28 +9420,30 @@ msgstr "" "ligne pour déposer les champs sur le formulaire en choisissant leur ordre " "d’affichage." -#: templates/admin/form-fields-admin-page.tpl.php:11 -msgid "Form" -msgstr "Formulaire" - +#. translators: %s is a link to the Form Fields settings page. #: templates/admin/form-fields-admin-page.tpl.php:13 +#, fuzzy msgid "" -"Go to the settings section to control which of " -"the standard fields appear and if the user is required to enter a value. If " -"you have the Extra Fields module, the rest of the fields can be configured " -"from the Extra Fields admin section." +"Go to the %s settings section to control which of the standard fields appear " +"and if the user is required to enter a value. If you have the Extra Fields " +"module, the rest of the fields can be configured from the Extra Fields admin " +"section." msgstr "" "Aller à la section des Réglages pour vérifier " "quels sont les champs standards affichés et si l’utilisateur doit y entrer " "une valeur. Si vus disposez du module Champs Supplémentaires, le reste des " "champs peut être configuré à partir du panneau d’administration de ce module." +#: templates/admin/form-fields-admin-page.tpl.php:14 +msgid "Form" +msgstr "Formulaire" + #: templates/admin/import/example-csv-file.tpl.php:8 msgid "Import Listings: Example CSV File" msgstr "Importer des listes: exemple de fichier CSV" #: templates/admin/import/example-csv-file.tpl.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:84 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:76 msgid "See Supported CSV Headers" msgstr "Voir les en-têtes CSV pris en charge" @@ -9193,7 +9464,7 @@ msgid "Header" msgstr "En-tête" #: templates/admin/import/supported-csv-headers.tpl.php:39 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:86 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:78 msgid "See Example CSV File" msgstr "Voir un exemple de fichier CSV" @@ -9306,7 +9577,7 @@ msgstr "" msgid "Default user" msgstr "Utilisateur par défaut" -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:178 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 #: templates/admin/import-listings-admin-page-import-form.tpl.php:44 msgid "" "Press the button below to cancel the current import operation and discard " @@ -9349,36 +9620,37 @@ msgstr "Modifier la configuration et redémarrer" msgid "Pause" msgstr "Pause" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:24 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:21 msgid "CSV file" msgstr "Fichier CSV" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:37 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:31 msgid "Images source" msgstr "Source des images" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:40 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:34 msgid "Don't import images" msgstr "Ne pas importer les images" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:42 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:36 msgid "ZIP file" msgstr "Fichier ZIP" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:44 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:38 msgid "Local directory" msgstr "Répertoire local" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:49 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:43 msgid "Zip file containing images" msgstr "Archive ZIP contenant des images" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:62 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:54 msgid "Local directory path" msgstr "Chemin du répertoire local" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:74 -msgid "The relative path to a directory inside ." +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:64 +#, fuzzy +msgid "The relative path to a directory inside %s." msgstr "" "Le chemin relatif vers un répertoire à l’intérieur de ." @@ -9467,27 +9739,27 @@ msgid "Payment Options" msgstr "Options de paiement" #. translators: %s is the link the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:84 +#: templates/admin/main-classifieds-admin-page.tpl.php:87 msgid "" "Go to the %s section to edit/delete current categories or add new categories." msgstr "" "Allez dans la partie %s pour modifier/supprimer les rubriques actuelles ou " "en ajouter des nouvelles." -#: templates/admin/main-classifieds-admin-page.tpl.php:90 +#: templates/admin/main-classifieds-admin-page.tpl.php:95 msgid "Total number of categories in the system" msgstr "Nombre de rubriques actuellement enregistrées" -#: templates/admin/main-classifieds-admin-page.tpl.php:95 +#: templates/admin/main-classifieds-admin-page.tpl.php:100 msgid "Number of Top Level parent categories" msgstr "Nombre de rubriques principales" -#: templates/admin/main-classifieds-admin-page.tpl.php:100 +#: templates/admin/main-classifieds-admin-page.tpl.php:105 msgid "Number of sub level children categories" msgstr "Nombre de sous-rubriques" #. translators: %s is the link to the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:109 +#: templates/admin/main-classifieds-admin-page.tpl.php:114 msgid "" "You have not categories defined. Go to the %s section to set up your " "categories." @@ -9495,77 +9767,77 @@ msgstr "" "Vous n’avez pas encore défini de rubrique. Allez dans la partie %s pour " "définir vos rubriques." -#: templates/admin/manage-categories-admin-page.tpl.php:43 +#: templates/admin/manage-categories-admin-page.tpl.php:44 msgid "Parent Category" msgstr "Rubrique parente" -#: templates/admin/manage-categories-admin-page.tpl.php:52 +#: templates/admin/manage-categories-admin-page.tpl.php:53 msgid "Category list order" msgstr "Ordre de catégories d’annonces" -#: templates/admin/manage-categories-admin-page.tpl.php:75 +#: templates/admin/manage-categories-admin-page.tpl.php:76 msgid "Icon Meanings:" msgstr "Signification des icônes:" -#: templates/admin/manage-categories-admin-page.tpl.php:85 +#: templates/admin/manage-categories-admin-page.tpl.php:89 msgid "Move categories or ads under:" msgstr "Déplacer des catégories ou des annonces sous:" -#: templates/admin/manage-categories-admin-page.tpl.php:92 +#: templates/admin/manage-categories-admin-page.tpl.php:96 msgid "Delete categories should do this with existing ads:" msgstr "" "Les catégories de suppression doivent le faire avec les annonces existantes:" -#: templates/admin/manage-categories-admin-page.tpl.php:93 +#: templates/admin/manage-categories-admin-page.tpl.php:97 msgid "Move ads to new category" msgstr "Déplacer les annonces vers une nouvelle catégorie" -#: templates/admin/manage-categories-admin-page.tpl.php:94 +#: templates/admin/manage-categories-admin-page.tpl.php:98 msgid "Delete ads too" msgstr "Supprimer les annonces aussi" -#: templates/admin/manage-categories-admin-page.tpl.php:101 +#: templates/admin/manage-categories-admin-page.tpl.php:108 msgid "Move Selected Categories" msgstr "Déplacer les rubriques sélectionnées" -#: templates/admin/manage-categories-admin-page.tpl.php:102 +#: templates/admin/manage-categories-admin-page.tpl.php:109 msgid "Delete Selected Categories" msgstr "Supprimer les rubriques sélectionnées" -#: templates/admin/manage-categories-admin-page.tpl.php:119 +#: templates/admin/manage-categories-admin-page.tpl.php:126 msgid "Select all categories" msgstr "Sélectionnez toutes les catégories" -#: templates/admin/manage-categories-admin-page.tpl.php:122 -#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:129 +#: templates/admin/manage-categories-admin-page.tpl.php:145 msgid "Category ID" msgstr "ID de la rubrique" -#: templates/admin/manage-categories-admin-page.tpl.php:124 -#: templates/admin/manage-categories-admin-page.tpl.php:136 +#: templates/admin/manage-categories-admin-page.tpl.php:131 +#: templates/admin/manage-categories-admin-page.tpl.php:146 msgid "Category Name (Total Ads)" msgstr "Intitulé de la rubrique (total des annonces)" -#: templates/admin/manage-categories-admin-page.tpl.php:126 -#: templates/admin/manage-categories-admin-page.tpl.php:137 +#: templates/admin/manage-categories-admin-page.tpl.php:133 +#: templates/admin/manage-categories-admin-page.tpl.php:147 msgid "Parent" msgstr "Parente" -#: templates/admin/manage-categories-admin-page.tpl.php:127 -#: templates/admin/manage-categories-admin-page.tpl.php:138 +#: templates/admin/manage-categories-admin-page.tpl.php:134 +#: templates/admin/manage-categories-admin-page.tpl.php:148 msgid "Order" msgstr "Ordre" -#: templates/admin/manage-categories-admin-page.tpl.php:128 -#: templates/admin/manage-categories-admin-page.tpl.php:139 +#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:149 msgid "Action" msgstr "Action" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:2 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 msgid "What's your PayPal Merchant ID?" msgstr "Qu'est-ce que votre identifiant de marchand PayPal?" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:3 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:10 #, fuzzy msgid "" "In order to verify payments made through PayPal, AWP Classifieds Plugin " @@ -9574,11 +9846,11 @@ msgstr "" "Afin de vérifier les paiements effectués via PayPal, Another WordPress " "Classifieds Plugin doit connaître votre identifiant de marchand PayPal." -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:13 +#, fuzzy msgid "" -"Go to to obtain the Merchant ID and then go to the Payment Settings page to enter the " -"value." +"Go to %1$s to obtain the Merchant ID and then go to the %2$sPayment " +"Settings%3$s page to enter the value." msgstr "" "Allez sur pour obtenir l'identifiant de marchand et allez " "ensuite sur la page Réglages du paiement\":" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:23 +#, fuzzy +msgid "" +"The following media files were recently uploaded to listing \"%s\" and are " +"awaiting approval:" +msgstr "" +"Les fichiers de média suivants ont été récemment ajoutés à l'annonce " +"\"\" et sont en attente d'approbation:" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:36 +#, fuzzy +msgid "Click here to manage media uploaded to the listing: %s." +msgstr "" +"Cliquez ici pour gérer les médias ajoutés à l'annonce: ." + +#: templates/email/listing-media-upload-notification.plain.tpl.php:44 +#, fuzzy +msgid "Click here to view the listing: %s." +msgstr "Cliquez ici pour voir l'annonce: ." + +#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:3 +#, fuzzy msgid "" -"The ad \"\" was modified. A copy of the details sent to the " -"customer can be found below. You can follow this link " -"to go to the Manage Ad Listing section to approve/reject/spam and see the " -"full version of the Ad." +"The ad \"%s\" was modified. A copy of the details sent to the customer can " +"be found below. You can follow this link %s to go to the Manage Ad Listing " +"section to approve/reject/spam and see the full version of the Ad." msgstr "" "L'annonce \"\" a été modifiée. Une copie des détails envoyés " "au client est disponible ci-dessous. Vous pouvez suivre ce lien . " "Svp, vérifiez-les ici : ." -#: templates/frontend/listings.tpl.php:24 +#: templates/frontend/listings.tpl.php:37 msgid "There were no listings found." msgstr "Aucune Annonce n’a été trouvée." +#: templates/frontend/order-submit-listing-section.tpl.php:41 +#, fuzzy +msgid "Who is the owner of this ad?" +msgstr "Qui est le propriétaire de cette annonce?" + +#: templates/frontend/order-submit-listing-section.tpl.php:86 +#, fuzzy +msgid "Your ad will be posted on the following categories: %s." +msgstr "Votre annonce sera publiée dans la catégorie suivante: {categories}." + #: templates/privacy-policy.tpl.php:10 msgid "Suggested text:" msgstr "Texte suggéré:" +#: templates/privacy-policy.tpl.php:11 +#, fuzzy +msgid "" +"When you submit a classified listing, the content of the listing and its " +"metadata are retained indefinitely. All users can see, edit or delete the " +"personal information included on their listings at any time. Website " +"administrators can also see and edit that information." +msgstr "" +"Lorsque vous soumettez une liste classée, son contenu et ses métadonnées " +"sont conservés indéfiniment. Tous les utilisateurs peuvent voir, éditer ou " +"supprimer les informations personnelles incluses dans leurs listes à tout " +"moment. Les administrateurs de site Web peuvent également voir et éditer ces " +"informations." + +#: templates/privacy-policy.tpl.php:14 +#, fuzzy +msgid "" +"Website visitors can see the contact name, website URL, phone number, " +"address and other information included in your submission to describe the " +"classified listing." +msgstr "" +"Les visiteurs du site Web peuvent voir le nom du contact, l'URL du site Web, " +"le numéro de téléphone, l'adresse et d'autres informations incluses dans " +"votre soumission pour décrire la liste classée." + +#: templates/privacy-policy.tpl.php:18 +#, fuzzy +msgid "" +"Contact name, email address, website URL and content of submitted classified " +"listings may be checked through Akismet's spam detection service. The " +"Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"Le nom du contact, l'adresse e-mail, l'URL du site Web et le contenu des " +"petites annonces soumises peuvent être vérifiés via le service de détection " +"de spam d'Akismet. La politique de confidentialité du service Akismet est " +"disponible ici ." + +#: templates/privacy-policy.tpl.php:24 +#, fuzzy +msgid "Payment Information" +msgstr "Informations de paiement" + +#: templates/privacy-policy.tpl.php:28 +#, fuzzy +msgid "" +"If you pay to post a classified listing entering your credit card and " +"billing information directly on %s, the credit card information won't be " +"stored but it will be shared through a secure connection with the following " +"payment gateways to process the payment:" +msgstr "" +"Si vous payez pour publier une annonce classifiée, entrez vos informations " +"de carte de crédit et de facturation directement sur {home_url} , les informations de carte de crédit ne " +"seront pas stockées mais elles seront partagées via une connexion sécurisée " +"avec les passerelles de paiement suivantes pour traiter le paiement:" + +#: templates/privacy-policy.tpl.php:36 +#, fuzzy +msgid "PayPal - %1$s" +msgstr "PayPal" + +#: templates/privacy-policy.tpl.php:42 +#, fuzzy +msgid "Authorize.Net - %s" +msgstr "Authorize.Net" + +#: templates/privacy-policy.tpl.php:48 +#, fuzzy +msgid "Stripe - %s" +msgstr "Stripe" + +#: templates/privacy-policy.tpl.php:54 +#, fuzzy +msgid "Regions" +msgstr "Régions" + +#: templates/privacy-policy.tpl.php:56 +#, fuzzy +msgid "" +"If you choose to see listings published on a specific region, a cookie will " +"be stored on your browser for the remainder of the session to remember the " +"selected region." +msgstr "" +"Si vous choisissez de voir les annonces publiées sur une région spécifique, " +"un cookie sera stocké sur votre navigateur pour le reste de la session afin " +"de mémoriser la région sélectionnée." + +#: templates/privacy-policy.tpl.php:58 +#, fuzzy +msgid "Comments and Ratings" +msgstr "Commentaires et évaluations" + +#: templates/privacy-policy.tpl.php:60 +#, fuzzy +msgid "" +"When visitors leave comments and reviews for classified listings we collect " +"the data shown in the comments form, and also the visitor’s IP address to " +"help spam detection." +msgstr "" +"Lorsque les visiteurs laissent des commentaires et des critiques d’annonces " +"classées, nous collectons les données figurant dans le formulaire de " +"commentaires, ainsi que l’adresse IP du visiteur afin de faciliter la " +"détection du spam." + +#: templates/privacy-policy.tpl.php:64 +#, fuzzy +msgid "" +"Visitor comments may be checked through Akismet's spam detection service. " +"The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"Les commentaires des visiteurs peuvent être vérifiés via le service de " +"détection de spam d’Akismet. La politique de confidentialité du service " +"Akismet est disponible ici ." + +#: templates/privacy-policy.tpl.php:70 +msgid "Restricted Categories" +msgstr "Rubriques restreintes" + +#: templates/privacy-policy.tpl.php:72 +#, fuzzy +msgid "" +"When you agree to see listings or publish a listing on a restricted " +"category, a cookie will be stored in your browser to remember your decision. " +"The cookie will be stored on your browser for the remainder of that session." +msgstr "" +"Lorsque vous acceptez de voir des annonces ou de publier une annonce dans " +"une catégorie restreinte, un cookie sera enregistré dans votre navigateur " +"pour rappeler votre décision. Le cookie sera stocké sur votre navigateur " +"pour le reste de la session." + #. Author URI of the plugin/theme msgid "https://awpcp.com/" msgstr "" @@ -9842,30 +10288,30 @@ msgctxt "awpcp admin menu" msgid "Classifieds" msgstr "Petites annonces" -#: admin/admin-panel.php:810 includes/settings/class-listings-settings.php:469 +#: admin/admin-panel.php:794 includes/settings/class-listings-settings.php:469 msgctxt "page name" msgid "Show Ad" msgstr "Afficher l'annonce" -#: admin/admin-panel.php:818 +#: admin/admin-panel.php:802 msgctxt "page name" msgid "Edit Ad" msgstr "Modifier l’annonce" -#: admin/class-csv-exporter.php:82 +#: admin/class-csv-exporter.php:83 msgctxt "admin csv-export" msgid "Could not create a temporary directory for handling this CSV export." msgstr "" "Impossible de créer un répertoire temporaire pour gérer cette exportation " "CSV." -#: admin/class-csv-exporter.php:85 +#: admin/class-csv-exporter.php:86 msgctxt "admin csv-export" msgid "Could not create awpcp-csv-exports directory." msgstr "Impossible de créer le répertoire awpcp-csv-exports." #. translators: %s the error. -#: admin/class-csv-exporter.php:91 +#: admin/class-csv-exporter.php:95 msgctxt "admin csv-export" msgid "Error while creating a temporary directory for CSV export: %s" msgstr "" @@ -9877,76 +10323,73 @@ msgctxt "admin csv-export" msgid "Could not decode export state information." msgstr "Impossible de décoder les informations d'état d'exportation." -#: admin/class-debug-admin-page.php:136 +#: admin/class-debug-admin-page.php:137 msgctxt "debug page" msgid "Plugin Info" msgstr "Info plugin" -#: admin/class-debug-admin-page.php:137 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:33 +#: admin/class-debug-admin-page.php:138 msgctxt "debug page" msgid "Plugin Pages" msgstr "Plugin Pages" -#: admin/class-debug-admin-page.php:138 +#: admin/class-debug-admin-page.php:139 msgctxt "debug page" msgid "Plugin Settings" msgstr "Paramètres de l'extension" -#: admin/class-debug-admin-page.php:139 +#: admin/class-debug-admin-page.php:140 msgctxt "debug page" msgid "Environment" msgstr "Environnement" -#: admin/class-debug-admin-page.php:140 -#: admin/templates/admin-panel-debug.tpl.php:32 +#: admin/class-debug-admin-page.php:141 +#: admin/templates/admin-panel-debug.tpl.php:59 msgctxt "debug page" msgid "Rewrite Rules" msgstr "Règles de réécriture" -#: admin/class-debug-admin-page.php:177 +#: admin/class-debug-admin-page.php:178 msgctxt "debug page" msgid "Plugin Version" msgstr "Version du plugin" -#: admin/class-debug-admin-page.php:283 -#: admin/templates/admin-panel-debug.tpl.php:126 +#: admin/class-debug-admin-page.php:284 msgctxt "debug page" msgid "cURL's alternate CA info (cacert.pem)" msgstr "information CA alternée de cURL (cacert.pem)" -#: admin/class-debug-admin-page.php:287 -#: admin/templates/admin-panel-debug.tpl.php:130 +#: admin/class-debug-admin-page.php:288 msgctxt "debug page" msgid "PayPal Connection" msgstr "Connexion PayPal" -#: admin/class-debug-admin-page.php:359 +#: admin/class-debug-admin-page.php:360 msgctxt "debug page" msgid "Working" msgstr "Fonctionne" -#: admin/class-debug-admin-page.php:362 -#: admin/templates/admin-panel-debug.tpl.php:136 +#: admin/class-debug-admin-page.php:363 msgctxt "debug page" msgid "Not Working" msgstr "Ne fonctionne pas" -#: admin/templates/admin-panel-debug.tpl.php:22 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:31 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:34 msgctxt "debug page" msgid "Flush Rewrite Rules" msgstr "Purger les règles de réécriture" -#: admin/templates/admin-panel-debug.tpl.php:26 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s Linked +#. URL in anchor link +#: admin/templates/admin-panel-debug.tpl.php:48 +#, fuzzy msgctxt "debug page" msgid "" -"This information can help AWPCP Developers to debug possible problems. If " -"you are submitting a bug report please Download the " -"Debug Information and attach it to your bug report or take a " -"minute to copy the information below to http://fpaste.org and provide the resulting URL in " -"your report." +"This information can help the AWP Team to debug possible problems. If you " +"are submitting a bug report please %1$sDownload the Debug Information%2$s " +"and attach it to your bug report or take a minute to copy the information " +"below to %3$s and provide the resulting URL in your report." msgstr "" "Cette information peut aider les développeurs de AWPCP. Si vous voulez faire " "un rapport d’incident, veuillez télécharger The Debug " @@ -9955,31 +10398,21 @@ msgstr "" "target=\"_blank\">http://fpaste.org et fournir l’URL qui en résultera à " "votre rapport." -#: admin/templates/admin-panel-debug.tpl.php:29 +#: admin/templates/admin-panel-debug.tpl.php:56 msgctxt "debug page" msgid "AWPCP Pages" msgstr "Pages" -#: admin/templates/admin-panel-debug.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:57 msgctxt "debug page" msgid "PHP Info" msgstr "PHP Info" -#: admin/templates/admin-panel-debug.tpl.php:31 +#: admin/templates/admin-panel-debug.tpl.php:58 msgctxt "debug page" msgid "AWPCP Settings" msgstr "Configuration de AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:118 -msgctxt "debug page" -msgid "PHP Version" -msgstr "Version PHP" - -#: admin/templates/admin-panel-debug.tpl.php:122 -msgctxt "debug page" -msgid "cURL" -msgstr "cURL" - #. translators: %s is the URL to download the debug information #: templates/admin/debug/debug-admin-page.tpl.php:17 msgctxt "debug page" @@ -9993,22 +10426,22 @@ msgstr "" "href=\" %s \"> téléchargez les informations de débogage et " "joignez-le à votre rapport de bogue." -#: templates/admin/debug/plugin-info-debug-section.tpl.php:29 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:38 msgctxt "debug page" msgid "There are no premium modules activated right now." msgstr "Il n'y a pas de modules premium activés pour le moment." -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:38 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:49 msgctxt "debug page" msgid "Reference" msgstr "Référence" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:39 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:50 msgctxt "debug page" msgid "Page Title" msgstr "Titre de page" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:51 msgctxt "debug page" msgid "Stored ID" msgstr "ID enregistrée" @@ -10023,41 +10456,39 @@ msgctxt "debug page" msgid "Setting Value" msgstr "Valeur de réglage" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Exists" msgstr "Existe" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Missing" msgstr "Manquant" -#: admin/class-import-listings-admin-page.php:358 +#: admin/class-import-listings-admin-page.php:362 msgctxt "" "description for messages used to show feedback for the Import Listings " "operation" msgid " in line " msgstr " dans la ligne " -#: admin/class-import-listings-admin-page.php:369 +#: admin/class-import-listings-admin-page.php:373 msgctxt "text for page subtitle and submit button" msgid "Test Import" msgstr "Tester l’importation" -#: admin/class-import-listings-admin-page.php:371 +#: admin/class-import-listings-admin-page.php:375 msgctxt "text for page subtitle and submit button" msgid "Import" msgstr "Importer" -#: admin/class-import-settings-admin-page.php:104 +#: admin/class-import-settings-admin-page.php:102 msgctxt "import settings" msgid "Are you sure you want to do this?" msgstr "Voulez-vous vraiment faire cela?" -#: admin/class-import-settings-admin-page.php:116 +#: admin/class-import-settings-admin-page.php:115 msgctxt "import settings" msgid "" "There was a problem trying to read the settings file; it appears the file " @@ -10067,91 +10498,6 @@ msgstr "" "paramètres. il semble que le fichier n'a pas été téléchargé correctement. " "Veuillez réessayer." -#: admin/class-import-settings-admin-page.php:122 -msgctxt "another-wordpress-classifieds-plugin" -msgid "Your settings have been successfully imported." -msgstr "Vos paramètres ont été importés avec succès." - -#: includes/settings/class-email-settings.php:201 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello {author_name} \n" -"\n" -"You recently posted the Ad {listing_title} to {website_title}. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"{verification_link} \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" -msgstr "" -"Bonjour {author_name} \n" -"\n" -"Vous avez récemment publié l'annonce {listing_title} sur {website_title}. \n" -"\n" -"Afin de terminer le processus de publication, vous devez vérifier votre " -"adresse e-mail. Veuillez cliquer sur le lien ci-dessous pour terminer le " -"processus de vérification. Vous serez redirigé vers le site Web où vous " -"pouvez voir votre annonce.\n" -"\n" -"{verification_link} \n" -"\n" -"Après avoir vérifié votre adresse e-mail, l'administrateur sera informé de " -"la nouvelle annonce. Si la modération est activée, votre annonce restera " -"désactivée jusqu'à ce que l'administrateur l'approuve.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" - -#: installer.php:849 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello $author_name \n" -"\n" -"You recently posted the Ad $title to $website_name. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"$verification_link \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" -msgstr "" -"Bonjour $author_name \n" -"\n" -"Vous avez récemment posté le titre de l'annonce $title to $website_name. \n" -"\n" -"Afin de terminer le processus de publication, vous devez vérifier votre " -"adresse e-mail. Veuillez cliquer sur le lien ci-dessous pour terminer le " -"processus de vérification. Vous serez redirigé vers le site Web où vous " -"pouvez voir votre annonce. \n" -"\n" -"$verification_link \n" -"\n" -"Après avoir vérifié votre adresse e-mail, l'administrateur sera informé de " -"la nouvelle annonce. Si la modération est activée, votre annonce restera " -"désactivée jusqu'à ce que l'administrateur l'approuve. \n" -"\n" -"$website_name\n" -"\n" -"$website_url" - #: admin/credit-plans/class-delete-credit-plan-action-handler.php:30 #: admin/credit-plans/class-edit-credit-plan-action-handler.php:27 msgctxt "credit plans ajax" @@ -10173,19 +10519,19 @@ msgctxt "form field slug" msgid "Slug" msgstr "Identifiant" -#: admin/import/class-csv-importer-delegate.php:98 +#: admin/import/class-csv-importer-delegate.php:101 msgctxt "csv importer" msgid "Required value for column \"\" is missing." msgstr "La valeur requise pour la colonne \"\" est manquante." -#: admin/import/class-csv-importer-delegate.php:181 +#: admin/import/class-csv-importer-delegate.php:184 msgctxt "csv importer" msgid "A new user '%s' with email address '%s' and password '%s' was created." msgstr "" "Un nouvel utilisateur avec l'adresse e-amil ’%s’ et le mot de passe ’%s’ a " "été créé." -#: admin/import/class-csv-importer-delegate.php:252 +#: admin/import/class-csv-importer-delegate.php:256 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10199,7 +10545,7 @@ msgstr "" "plaît inclure un nom d'utilisateur et email de contact ou sélectionnez un " "utilisateur par défaut." -#: admin/import/class-csv-importer-delegate.php:255 +#: admin/import/class-csv-importer-delegate.php:258 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10211,7 +10557,7 @@ msgstr "" "une valeur vide. Veuillez inclure un nom d'utilisateur ou sélectionner un " "utilisateur par défaut." -#: admin/import/class-csv-importer-delegate.php:258 +#: admin/import/class-csv-importer-delegate.php:260 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10223,19 +10569,19 @@ msgstr "" "valeur vide. Veuillez inclure un contact_email ou sélectionnez un " "utilisateur par défaut." -#: admin/import/class-csv-importer-delegate.php:312 +#: admin/import/class-csv-importer-delegate.php:316 msgctxt "csv importer" msgid "No category with name \"\" was found." msgstr "Aucune catégorie avec le nom \"\" n'a été trouvée." -#: admin/import/class-csv-importer-delegate.php:328 +#: admin/import/class-csv-importer-delegate.php:332 msgctxt "csv importer" msgid "There was an error trying to create category \"\"." msgstr "" "Une erreur s'est produite lors de la tentative de création de la catégorie " "\"\"." -#: admin/import/class-csv-importer-delegate.php:337 +#: admin/import/class-csv-importer-delegate.php:342 msgctxt "csv importer" msgid "" "A category with name \"\" was created, but there was an error " @@ -10245,54 +10591,54 @@ msgstr "" "erreur s'est produite lors de la tentative d'extraction de ses informations " "à partir de la base de données." -#: admin/import/class-csv-importer-delegate.php:349 +#: admin/import/class-csv-importer-delegate.php:355 msgctxt "csv importer" msgid "Item price must be a number." msgstr "Le prix de l'article doit être un nombre." -#: admin/import/class-csv-importer-delegate.php:363 +#: admin/import/class-csv-importer-delegate.php:369 msgctxt "csv importer" msgid "The start date is missing and no default value was defined." msgstr "" "La date de début est manquante et aucune valeur par défaut n'a été définie." -#: admin/import/class-csv-importer-delegate.php:364 +#: admin/import/class-csv-importer-delegate.php:370 msgctxt "csv importer" msgid "The start date is invalid and no default value was defined." msgstr "" "La date de début n'est pas valide et aucune valeur par défaut n'a été " "définie." -#: admin/import/class-csv-importer-delegate.php:365 +#: admin/import/class-csv-importer-delegate.php:371 msgctxt "csv importer" msgid "Invalid default start date." msgstr "Date de début par défaut non valide." -#: admin/import/class-csv-importer-delegate.php:430 -#: admin/import/class-csv-importer-delegate.php:431 +#: admin/import/class-csv-importer-delegate.php:436 +#: admin/import/class-csv-importer-delegate.php:437 msgctxt "csv importer" msgid "The end date is missing and no default value was defined." msgstr "" "La date de fin est manquante et aucune valeur par défaut n'a été définie." -#: admin/import/class-csv-importer-delegate.php:432 +#: admin/import/class-csv-importer-delegate.php:438 msgctxt "csv importer" msgid "Invalid default end date." msgstr "Date de fin par défaut non valide." -#: admin/import/class-csv-importer-delegate.php:499 +#: admin/import/class-csv-importer-delegate.php:505 msgctxt "csv importer" msgid "Image file with name not found." msgstr "Fichier image dont le nom est introuvable." -#: admin/import/class-csv-importer-delegate.php:566 +#: admin/import/class-csv-importer-delegate.php:576 msgctxt "csv importer" msgid "There was an error trying to store imported data into the database." msgstr "" "Une erreur s'est produite lors de la tentative de stockage des données " "importées dans la base de données." -#: admin/import/class-csv-importer-delegate.php:587 +#: admin/import/class-csv-importer-delegate.php:599 msgctxt "csv importer" msgid "" "There was an error trying to import one of the images: {image-validation-" @@ -10316,20 +10662,6 @@ msgctxt "drip-autoresponder" msgid "The email address entered is not valid." msgstr "L’adresse email que vous avez saisie n’est pas valide." -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 -msgctxt "drip-autoresponder" -msgid "Thank you for signing up!" -msgstr "Merci pour votre inscription !" - -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 -msgctxt "drip-autoresponder" -msgid "" -"Please check your email and click the link provided to confirm your " -"subscription." -msgstr "" -"Veuillez vérifier vos courriels et cliquer sur le lien fourni pour confirmer " -"votre souscription." - #: admin/pointers/class-drip-autoresponder.php:22 msgctxt "drip-autoresponder" msgid "Yes, I'd like my course, please" @@ -10340,20 +10672,6 @@ msgctxt "drip-autoresponder" msgid "No, thanks" msgstr "Non, merci" -#: admin/pointers/class-drip-autoresponder.php:62 -msgctxt "drip-autoresponder" -msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" -msgstr "" -"Voulez-vous connaître les secrets pour construire un superbe site web de " -"petites annonces ?" - -#: admin/pointers/class-drip-autoresponder.php:63 -msgctxt "drip-autoresponder" -msgid "" -"Find out how to create a compelling, thriving classifieds site from scratch " -"in this ridiculously actionable (and free) 5-part email course." -msgstr "" - #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:6 msgctxt "credit plans form" msgid "Edit Credit Plan Details" @@ -10369,28 +10687,6 @@ msgctxt "Quick Start Guide" msgid "No Thanks" msgstr "Non merci" -#: admin/templates/admin-quick-start-guide-notice.tpl.php:9 -msgctxt "Quick Start Guide" -msgid "I'll figure it out on my own." -msgstr "Non, je me débrouillerai très bien tout seul." - -#: admin/templates/admin-quick-start-guide-notice.tpl.php:17 -msgctxt "Quick Start Guide" -msgid "Help me get my classifieds running quickly." -msgstr "Aidez-moi à publier mes petites annonces le plus vite possible." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:75 -msgctxt "Browse the Quick Start Guide" -msgid "Browse the %s." -msgstr "Parcourez le %s." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:85 -msgctxt "Read the full Documentation" -msgid "Read the full %s." -msgstr "Lisez notre %s." - #: admin/templates/admin-widget-modification-notice.tpl.php:7 msgctxt "widget modification notice" msgid "Close this, I'll check my Widget configuration." @@ -10451,17 +10747,17 @@ msgctxt "404 HTTP status description" msgid "Listing not found" msgstr "Liste non trouvée" -#: frontend/page-place-ad.php:1417 +#: frontend/page-place-ad.php:1420 msgctxt "upload listing images form" msgid "Preview Ad" msgstr "Prévisualiser l’annonce" -#: frontend/page-place-ad.php:1419 +#: frontend/page-place-ad.php:1422 msgctxt "upload listing images form" msgid "Place Ad" msgstr "Ajouter une annonce" -#: frontend/page-place-ad.php:1421 +#: frontend/page-place-ad.php:1424 msgctxt "upload listing images form" msgid "Checkout" msgstr "Commande" @@ -10542,7 +10838,7 @@ msgctxt "listing row action" msgid "Unflag" msgstr "Retirer le signalement" -#: frontend/templates/email-send-ad-access-key.tpl.php:9 +#: frontend/templates/email-send-ad-access-key.tpl.php:13 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:18 #: templates/email/listing-edit-link-with-access-token.tpl.php:9 msgctxt "edit link email" @@ -10602,11 +10898,6 @@ msgctxt "loading region options" msgid "loading..." msgstr "chargement..." -#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 -msgctxt "add credit checkout step" -msgid "Complete Payment" -msgstr "Terminer le paiement" - #: frontend/templates/page-edit-ad-email-key-step.tpl.php:34 msgctxt "enter email and access key form" msgid "Continue" @@ -10617,33 +10908,28 @@ msgctxt "send ad access key form" msgid "Continue" msgstr "Continuer" -#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 -msgctxt "place ad checkout step" -msgid "Complete Payment" -msgstr "Terminer le paiement" - -#: frontend/templates/page-place-ad-details-step.tpl.php:59 +#: frontend/templates/page-place-ad-details-step.tpl.php:63 msgctxt "ad details form" msgid "Start Date" msgstr "Date de début" -#: frontend/templates/page-place-ad-details-step.tpl.php:69 +#: frontend/templates/page-place-ad-details-step.tpl.php:73 msgctxt "ad details form" msgid "End Date" msgstr "Date de fin" -#: frontend/templates/page-place-ad-details-step.tpl.php:98 +#: frontend/templates/page-place-ad-details-step.tpl.php:104 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:9 msgctxt "ad details form" msgid "Read our Terms of Service" msgstr "Lire nos Conditions Générales" -#: frontend/templates/page-place-ad-details-step.tpl.php:100 +#: frontend/templates/page-place-ad-details-step.tpl.php:106 msgctxt "ad details form" msgid "Terms of service:" msgstr "Conditions Générales :" -#: frontend/templates/page-place-ad-details-step.tpl.php:105 +#: frontend/templates/page-place-ad-details-step.tpl.php:111 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:17 msgctxt "ad details form" msgid "I agree to the terms of service" @@ -10710,12 +10996,12 @@ msgctxt "ad details form" msgid "Terms of Service" msgstr "Conditions Générales d'Utilisation" -#: frontend/templates/page-place-ad-details-step.tpl.php:120 +#: frontend/templates/page-place-ad-details-step.tpl.php:126 msgctxt "listing details form" msgid "Preview Ad" msgstr "Prévisualiser l’annonce" -#: frontend/templates/page-place-ad-details-step.tpl.php:122 +#: frontend/templates/page-place-ad-details-step.tpl.php:128 msgctxt "listing details form" msgid "Continue" msgstr "Continuer" @@ -10745,7 +11031,7 @@ msgctxt "place ad order step" msgid "Please select the owner for this Ad" msgstr "Veuillez choisir un auteur pour cette annonce" -#: frontend/templates/page-place-ad-order-step.tpl.php:82 +#: frontend/templates/page-place-ad-order-step.tpl.php:84 msgctxt "listing order form" msgid "Continue" msgstr "Continuer" @@ -10753,29 +11039,15 @@ msgstr "Continuer" #: frontend/templates/page-place-ad-upload-images-step.tpl.php:15 #: includes/frontend/class-upload-media-submit-listing-section.php:133 msgctxt "images upload step" -msgid "Thumbnails of already uploaded images are shown below." -msgstr "Les vignettes des images déjà téléchargées sont affichées ci-dessous." - -#: frontend/templates/page-renew-ad-order-step.tpl.php:6 -msgctxt "renew ad order step" -msgid "Select Payment Term" -msgstr "Sélectionnez une condition de paiement" +msgid "Thumbnails of already uploaded images are shown below." +msgstr "Les vignettes des images déjà téléchargées sont affichées ci-dessous." -#: frontend/templates/page-search-ads.tpl.php:88 +#: frontend/templates/page-search-ads.tpl.php:95 msgctxt "ad search form" msgid "Find Ads" msgstr "Trouver des annonces" -#: frontend/templates/payments-billing-form.tpl.php:1 -msgctxt "awpcp billing form" -msgid "" -"Please fill in the billing information in the form below to place your " -"payment." -msgstr "" -"Veuillez compléter le formulaire de facturation ci-dessous pour effectuer " -"votre paiement." - -#: frontend/templates/payments-checkout-page.tpl.php:13 +#: frontend/templates/payments-checkout-page.tpl.php:12 msgctxt "checkout step" msgid "" "You are about to pay for the following items. Please review the order and " @@ -10784,109 +11056,48 @@ msgstr "" "Vous êtes sur le point de payer pour les éléments suivants. Vérifiez l’ordre " "et indiquez un mode de paiement." -#: frontend/templates/payments-checkout-page.tpl.php:17 +#: frontend/templates/payments-checkout-page.tpl.php:16 msgctxt "checkout step" msgid "Payment Terms" msgstr "Conditions de paiement" -#: frontend/templates/payments-checkout-page.tpl.php:23 +#: frontend/templates/payments-checkout-page.tpl.php:22 msgctxt "checkout step" msgid "Payment Method" msgstr "Méthode de paiement" #: frontend/templates/payments-checkout-payment-page.tpl.php:8 -#: frontend/templates/payments-payment-page.tpl.php:3 msgctxt "checkout-payment page" msgid "You are about to pay for the following items." msgstr "Vous êtes sur le point de payer pour les éléments suivants." #: frontend/templates/payments-checkout-payment-page.tpl.php:10 -#: frontend/templates/payments-payment-page.tpl.php:5 msgctxt "checkout-payment page" msgid "Payment Terms" msgstr "Conditions de paiement" -#: includes/payments-api.php:802 +#: includes/payments-api.php:889 msgctxt "checkout-payment page" msgid "Please use the button below to complete your payment." msgstr "" "S'il vous plaît utilisez le bouton ci-dessous pour terminer votre paiement." -#: frontend/templates/payments-credit-plans-table.tpl.php:7 -msgctxt "credit plans table" -msgid "" -"You can additionally purchase a Credit Plan to add credit to your account. " -"If you select to pay using credits, the price of the selected payment term " -"will be deducted from your account balance after you have completed payment." -msgstr "" -"Vous pouvez en outre acheter une offre de crédit à verser votre compte. Si " -"vous choisissez de payer en utilisant des crédits, le prix de la durée de " -"paiement choisi sera déduit du solde de votre compte après avoir terminé le " -"paiement." - -#: frontend/templates/payments-credit-plans-table.tpl.php:51 -msgctxt "credit plans table" -msgid "clear selection" -msgstr "annuler la sélection" - -#: includes/payments-api.php:722 -msgctxt "credit plans table" -msgid "Plan" -msgstr "Offre" - -#: includes/payments-api.php:723 -msgctxt "credit plans table" -msgid "Description" -msgstr "Description" - -#: includes/payments-api.php:724 -msgctxt "credit plans table" -msgid "Credits" -msgstr "Crédits" - -#: includes/payments-api.php:725 -msgctxt "credit plans table" -msgid "Price" -msgstr "Prix" - -#: frontend/templates/payments-payment-completed-page.tpl.php:2 -msgctxt "payment completed page" -msgid "Transaction Details" -msgstr "Informations sur la transaction" - #: frontend/templates/payments-paypal-payment-button.tpl.php:27 msgctxt "paypal-checkout-form" msgid "Return to %s" msgstr "Revenir à %s" -#: frontend/templates/payments-transaction-items-table.tpl.php:4 -#: frontend/templates/payments-transaction-items-table.tpl.php:13 -msgctxt "transaction items" -msgid "Item" -msgstr "Élément" - -#: frontend/templates/payments-transaction-items-table.tpl.php:5 -#: frontend/templates/payments-transaction-items-table.tpl.php:17 -msgctxt "transaction items" -msgid "Amount" -msgstr "Montant" - -#: frontend/templates/payments-transaction-items-table.tpl.php:34 -msgctxt "transaction items" -msgid "Total Amount (credit)" -msgstr "Montant total (crédit)" - #: frontend/templates/payments-transaction-items-table.tpl.php:40 msgctxt "transaction items" msgid "Total Amount" msgstr "Montant total" -#: functions.php:743 +#: functions.php:749 msgctxt "comma separated list of things" msgid "%s and %d more." msgstr "%s et %d de plus." -#: functions.php:1200 +#: functions.php:1222 msgctxt "default blog title" msgid "Classifieds Website" msgstr "Site de petites annonces" @@ -11118,27 +11329,27 @@ msgctxt "listing status" msgid "Active" msgstr "Activé" -#: includes/admin/listings/class-listings-table-columns-handler.php:211 +#: includes/admin/listings/class-listings-table-columns-handler.php:212 msgctxt "listing status" msgid "Pending Approval" msgstr "Validation en attente" -#: includes/admin/listings/class-listings-table-columns-handler.php:215 +#: includes/admin/listings/class-listings-table-columns-handler.php:217 msgctxt "listing status" msgid "Expired" msgstr "Expirée" -#: includes/admin/listings/class-listings-table-columns-handler.php:219 +#: includes/admin/listings/class-listings-table-columns-handler.php:222 msgctxt "listing status" msgid "Disabled" msgstr "Désactivé" -#: includes/admin/listings/class-listings-table-columns-handler.php:223 +#: includes/admin/listings/class-listings-table-columns-handler.php:227 msgctxt "listing status" msgid "Pending Payment" msgstr "Paiement en attente" -#: includes/admin/listings/class-listings-table-columns-handler.php:227 +#: includes/admin/listings/class-listings-table-columns-handler.php:232 msgctxt "listing status" msgid "Pending Verification" msgstr "En attente de vérification" @@ -11153,17 +11364,17 @@ msgctxt "listings row action" msgid "Quick View" msgstr "Aperçu rapide" -#: includes/class-awpcp.php:1458 +#: includes/class-awpcp.php:1449 msgctxt "[UI Datepicker] Display text for previous month link" msgid "<Prev" msgstr "<Précedent" -#: includes/class-awpcp.php:1459 +#: includes/class-awpcp.php:1450 msgctxt "[UI Datepicker] Display text for next month link" msgid "Next>" msgstr "Suivant>" -#: includes/class-awpcp.php:1465 +#: includes/class-awpcp.php:1456 msgctxt "[UI Datepicker] The first day of the week, Sun = 0, Mon = 1, ..." msgid "0" msgstr "0" @@ -11216,7 +11427,7 @@ msgid "Regions" msgstr "Régions" #. translators: the numbers that need to be added up for the math challenge. -#: includes/frontend/class-default-captcha-provider.php:34 +#: includes/frontend/class-default-captcha-provider.php:45 msgctxt "CAPTCHA" msgid "Enter the value of the following sum: %1$d + %2$d" msgstr "Entrez la valeur de la somme suivante: %1$d + %2$d" @@ -11247,12 +11458,7 @@ msgctxt "order submit listing section" msgid "Please select a category for your ad" msgstr "Veuillez sélectionner une catégorie pour votre annonce" -#: templates/frontend/order-submit-listing-section.tpl.php:44 -msgctxt "order submit listing section" -msgid "Who is the owner of this ad?" -msgstr "Qui est le propriétaire de cette annonce?" - -#: templates/frontend/order-submit-listing-section.tpl.php:59 +#: templates/frontend/order-submit-listing-section.tpl.php:57 msgctxt "order submit listing section" msgid "" "Please select the duration and features that will be available for this ad" @@ -11260,68 +11466,63 @@ msgstr "" "Veuillez sélectionner la durée et les fonctionnalités disponibles pour cette " "annonce" -#: templates/frontend/order-submit-listing-section.tpl.php:81 +#: templates/frontend/order-submit-listing-section.tpl.php:77 msgctxt "order submit listing section" msgid "Continue" msgstr "Continuer" -#: templates/frontend/order-submit-listing-section.tpl.php:87 -msgctxt "order submit listing section" -msgid "Your ad will be posted on the following categories: {categories}." -msgstr "Votre annonce sera publiée dans la catégorie suivante: {categories}." - -#: templates/frontend/order-submit-listing-section.tpl.php:95 +#: templates/frontend/order-submit-listing-section.tpl.php:98 msgctxt "order submit listing section" msgid "Credit Plan:" msgstr "Plan de crédit:" -#: templates/frontend/order-submit-listing-section.tpl.php:96 +#: templates/frontend/order-submit-listing-section.tpl.php:99 msgctxt "order submit listing section" msgid "Owner:" msgstr "Propriétaire:" -#: templates/frontend/order-submit-listing-section.tpl.php:99 +#: templates/frontend/order-submit-listing-section.tpl.php:102 msgctxt "order submit listing section" msgid "Loading ad fields" msgstr "Chargement des champs d'annonce" -#: templates/frontend/order-submit-listing-section.tpl.php:100 +#: templates/frontend/order-submit-listing-section.tpl.php:103 msgctxt "order submit listing section" msgid "Change selection" msgstr "Changer la sélection" -#: includes/frontend/class-recaptcha-v2.php:66 +#: includes/frontend/class-recaptcha-v2.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing" msgstr "Le paramètre secret est manquant" -#: includes/frontend/class-recaptcha-v2.php:69 -#: includes/helpers/class-recaptcha-v3.php:74 +#: includes/frontend/class-recaptcha-v2.php:96 +#: includes/helpers/class-recaptcha-v3.php:96 msgctxt "recaptcha-error" msgid "The secret parameter is invalid or malformed." msgstr "Le paramètre secret est invalide ou mal renseigné." -#: includes/frontend/class-recaptcha-v2.php:72 +#: includes/frontend/class-recaptcha-v2.php:99 msgctxt "recaptcha-error" msgid "The response parameter is missing." msgstr "Le paramètre réponse reCAPTCHA est manquant." -#: includes/frontend/class-recaptcha-v2.php:76 +#: includes/frontend/class-recaptcha-v2.php:103 msgctxt "recaptcha-error" msgid "The response parameter is invalid or malformed." msgstr "Le paramètre réponse reCAPTCHA est invalide ou mal renseigné." -#: includes/helpers/class-recaptcha-v3.php:71 +#: includes/helpers/class-recaptcha-v3.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing." msgstr "Le paramètre secret est manquant." -#: includes/helpers/class-recaptcha-v3.php:77 +#: includes/helpers/class-recaptcha-v3.php:99 msgctxt "recaptcha-error" msgid "reCAPTCHA score was not included." msgstr "le score reCAPTCHA n'était pas inclus." -#: includes/helpers/class-recaptcha-v3.php:81 +#: includes/helpers/class-recaptcha-v3.php:103 msgctxt "recaptcha-error" msgid "reCAPTCHA couldn't analyze the current interaction." msgstr "reCAPTCHA n'a pas pu analyser l'interaction en cours." @@ -11459,7 +11660,7 @@ msgid "remaining" msgstr "restant" #. translators: %s is the type of region. -#: includes/helpers/widgets/multiple-region-selector.php:122 +#: includes/helpers/widgets/multiple-region-selector.php:142 msgctxt "Select in Multiple Region Selector" msgid "Select %s" msgstr "Sélectionner %s" @@ -11482,7 +11683,7 @@ msgid "Add New" msgstr "Ajouter nouveau" #: includes/models/class-custom-post-types.php:157 -#: includes/settings/class-listings-settings.php:595 +#: includes/settings/class-listings-settings.php:597 msgctxt "listing post type slug" msgid "classifieds" msgstr "petites annonces" @@ -11502,7 +11703,7 @@ msgctxt "payment gateways" msgid "2Checkout" msgstr "2Checkout" -#: includes/payment-gateway-paypal-standard.php:24 +#: includes/payment-gateway-paypal-standard.php:26 msgctxt "payment gateways" msgid "PayPal" msgstr "PayPal" @@ -11540,57 +11741,77 @@ msgid_plural "Years" msgstr[0] "Année" msgstr[1] "Années" -#: includes/payment-terms-table.php:33 +#: includes/payment-terms-table.php:38 msgctxt "place ad payment terms column headers" msgid "Payment Term" msgstr "Conditions de paiement" -#: includes/payment-terms-table.php:34 +#: includes/payment-terms-table.php:39 msgctxt "place ad payment terms column headers" msgid "Ads Allowed" msgstr "Annonces autorisées" -#: includes/payment-terms-table.php:35 +#: includes/payment-terms-table.php:40 msgctxt "place ad payment terms column headers" msgid "Images Allowed" msgstr "Images autorisées" -#: includes/payment-terms-table.php:36 +#: includes/payment-terms-table.php:41 msgctxt "place ad payment terms column headers" msgid "Characters in Title" msgstr "Caractères autorisés dans le titre" -#: includes/payment-terms-table.php:37 +#: includes/payment-terms-table.php:42 msgctxt "place ad payment terms column headers" msgid "Chars in Description" msgstr "Caractères dans la description" -#: includes/payment-terms-table.php:38 +#: includes/payment-terms-table.php:43 msgctxt "place ad payment terms column headers" msgid "Duration" msgstr "Durée" -#: includes/payment-terms-table.php:44 +#: includes/payment-terms-table.php:49 msgctxt "place ad payment terms column headers" msgid "Price (currency)" msgstr "Format de devise" -#: includes/payment-terms-table.php:49 +#: includes/payment-terms-table.php:54 msgctxt "place ad payment terms column headers" msgid "Price (credits)" msgstr "Montant du crédit" -#: includes/payment-terms-table.php:106 includes/payment-terms-table.php:111 +#: includes/payment-terms-table.php:139 includes/payment-terms-table.php:145 msgctxt "payment term duration" msgid "No Limit" msgstr "Illimité" -#: includes/settings/class-email-settings.php:135 +#: includes/payments-api.php:757 +msgctxt "credit plans table" +msgid "Plan" +msgstr "Offre" + +#: includes/payments-api.php:758 +msgctxt "credit plans table" +msgid "Description" +msgstr "Description" + +#: includes/payments-api.php:759 +msgctxt "credit plans table" +msgid "Credits" +msgstr "Crédits" + +#: includes/payments-api.php:760 +msgctxt "credit plans table" +msgid "Price" +msgstr "Prix" + +#: includes/settings/class-email-settings.php:137 msgctxt "reply to ad email" msgid "Response to your classified ad: {listing_title}" msgstr "Réponse à votre annonce: {listing_title}" -#: includes/settings/class-email-settings.php:136 +#: includes/settings/class-email-settings.php:138 msgctxt "reply to ad email" msgid "" "Someone has responded to your classified ad.\n" @@ -11623,13 +11844,13 @@ msgstr "" "{website_title}\n" "{website_url}" -#: includes/settings/class-email-settings.php:161 +#: includes/settings/class-email-settings.php:163 msgctxt "reply to ad email" msgid "Notification about a response regarding ad: {listing_title}" msgstr "" "Notification concernant une réponse concernant l'annonce: {listing_title}" -#: includes/settings/class-email-settings.php:162 +#: includes/settings/class-email-settings.php:164 msgctxt "reply to ad email" msgid "" "Someone has responded to one of the classified ads on your website.\n" @@ -11662,12 +11883,12 @@ msgstr "" "{website_title}\n" "{website_url}" -#: installer.php:833 +#: installer.php:318 msgctxt "reply to ad email" msgid "{__previous_subject__} regarding: {listing_title}" msgstr "{__previous_subject__} concernant: {listing_title}" -#: installer.php:834 +#: installer.php:319 msgctxt "reply to ad email" msgid "" "{__previous_body__}\n" @@ -11764,17 +11985,6 @@ msgid "Uncheck to show prices without decimals. The value will be rounded." msgstr "" "Décochez pour afficher un prix sans décimales. La valeur sera arrondie." -#: includes/settings/class-licenses-settings.php:81 -msgctxt "settings" -msgid "" -"The IP address of your server is . Please make sure to include " -"that information if you need to contact support about problems trying to " -"activate your licenses." -msgstr "" -"L'adresse IP de votre serveur est . Assurez-vous d'inclure ces " -"informations si vous avez besoin de contacter le support technique pour des " -"problèmes d'activation de vos licences." - #: includes/settings/class-payment-general-settings.php:100 msgctxt "settings" msgid "Pay before entering Ad details" @@ -11815,7 +12025,7 @@ msgstr "" "pour l’Annonce. Vous pouvez ajouter ou retrancher certains éléments si vous " "le souhaitez." -#: includes/settings/class-listings-settings.php:599 +#: includes/settings/class-listings-settings.php:601 msgctxt "listing url settings section" msgid "" "These settings affect the URL path shown for listings. You can include or " @@ -11824,9 +12034,11 @@ msgstr "" "Ces paramètres affectent le chemin d'URL affiché pour les listes. Vous " "pouvez inclure ou supprimer des éléments à des fins de référencement." -#: includes/settings/class-listings-settings.php:605 +#. translators: %s: example URL +#: includes/settings/class-listings-settings.php:610 +#, fuzzy msgctxt "listing url settings section" -msgid "Example path: ." +msgid "Example path: %s." msgstr "Exemple de chemin: ." #: includes/settings/renderers/class-wordpress-page-settings-renderer.php:27 @@ -11834,10 +12046,12 @@ msgctxt "page settings" msgid "— Select —" msgstr "- Sélectionnez -" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:40 +#. translators: %1$s is a dropdown with existing pages, %2$s is a link to +#. create a new page +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:34 msgctxt "page settings" -msgid "Select existing page {dropdown} -or- {create_page_button}" -msgstr "Sélectionner une page existante {dropdown} -or- {{create_page_button}" +msgid "Select existing page %1$s -or- %2$s" +msgstr "" #. translators: %1$s the success message, %2$s the error message #: includes/views/admin/listings/class-listing-action-admin-page.php:22 @@ -11857,13 +12071,15 @@ msgstr "" "disposer de suffisamment d'espace disque et de mémoire disponibles pour PHP. " "Vérifiez vos journaux d'erreurs pour plus de détails." -#: templates/admin/export-listings-admin-page.tpl.php:25 +#. translators: %1$s: memory_limit link, %2$s: max_execution_time link +#: templates/admin/export-listings-admin-page.tpl.php:27 +#, fuzzy msgctxt "listings-csv-export" msgid "" "Please note that the export process is a resource intensive task. If your " "export does not succeed try disabling other plugins first and/or increasing " -"the values of the 'memory_limit' and 'max_execution_time' directives in your " -"server's php.ini configuration file." +"the values of the %1$s and %2$s directives in your server php.ini " +"configuration file." msgstr "" "Veuillez noter que le processus d'exportation est une tâche gourmande en " "ressources. Si votre exportation échoue, essayez de désactiver tout d'abord " @@ -11871,47 +12087,47 @@ msgstr "" "'memory_limit' et 'max_execution_time' dans le fichier de configuration php." "ini de votre serveur." -#: templates/admin/export-listings-admin-page.tpl.php:44 +#: templates/admin/export-listings-admin-page.tpl.php:39 msgctxt "listings-csv-export" msgid "Export Configuration" msgstr "Configuration d'exportation" -#: templates/admin/export-listings-admin-page.tpl.php:47 +#: templates/admin/export-listings-admin-page.tpl.php:42 msgctxt "listings-csv-export" msgid "Export settings" msgstr "Exporter les réglages" -#: templates/admin/export-listings-admin-page.tpl.php:51 +#: templates/admin/export-listings-admin-page.tpl.php:46 msgctxt "listings-csv-export" msgid "Which listings to export?" msgstr "Quelles listes exporter?" -#: templates/admin/export-listings-admin-page.tpl.php:55 +#: templates/admin/export-listings-admin-page.tpl.php:50 msgctxt "listings-csv-export" msgid "All" msgstr "Tous" -#: templates/admin/export-listings-admin-page.tpl.php:56 +#: templates/admin/export-listings-admin-page.tpl.php:51 msgctxt "listings-csv-export" msgid "Active Only" msgstr "Actif seulement" -#: templates/admin/export-listings-admin-page.tpl.php:57 +#: templates/admin/export-listings-admin-page.tpl.php:52 msgctxt "listings-csv-export" msgid "Active + Pending Renewal" msgstr "Renouvellement actif + en attente" -#: templates/admin/export-listings-admin-page.tpl.php:63 +#: templates/admin/export-listings-admin-page.tpl.php:58 msgctxt "listings-csv-export" msgid "Export images?" msgstr "Exporter des images?" -#: templates/admin/export-listings-admin-page.tpl.php:68 +#: templates/admin/export-listings-admin-page.tpl.php:63 msgctxt "listings-csv-export" msgid "Export images" msgstr "Exporter des images" -#: templates/admin/export-listings-admin-page.tpl.php:71 +#: templates/admin/export-listings-admin-page.tpl.php:66 msgctxt "listings-csv-export" msgid "" "When checked, instead of just a CSV file a ZIP file will be generated with " @@ -11920,18 +12136,18 @@ msgstr "" "Lorsque coché, au lieu d’un fichier CSV, un fichier ZIP sera généré avec un " "fichier CSV et une liste d’images." -#: templates/admin/export-listings-admin-page.tpl.php:77 +#: templates/admin/export-listings-admin-page.tpl.php:72 msgctxt "listings-csv-export" msgid "Additional metadata to export:" msgstr "Métadonnées supplémentaires à exporter:" -#: templates/admin/export-listings-admin-page.tpl.php:82 +#: templates/admin/export-listings-admin-page.tpl.php:77 msgctxt "listings-csv-export" msgid "Include unique IDs for each listing (sequence_id column)." msgstr "" "Inclure des identifiants uniques pour chaque liste (colonne sequence_id)." -#: templates/admin/export-listings-admin-page.tpl.php:85 +#: templates/admin/export-listings-admin-page.tpl.php:80 msgctxt "listings-csv-export" msgid "" "If you plan to re-import the listings into AWPCP and don't want new ones " @@ -11940,69 +12156,64 @@ msgstr "" "Si vous envisagez de réimporter les listes dans AWPCP et que vous ne voulez " "pas en créer de nouvelles, sélectionnez cette option!" -#: templates/admin/export-listings-admin-page.tpl.php:90 +#: templates/admin/export-listings-admin-page.tpl.php:85 msgctxt "listings-csv-export" msgid "Author information (username)" msgstr "Informations sur l'auteur (nom d'utilisateur)" -#: templates/admin/export-listings-admin-page.tpl.php:96 +#: templates/admin/export-listings-admin-page.tpl.php:91 msgctxt "listings-csv-export" msgid "CSV File Settings" msgstr "Paramètres de fichier CSV" -#: templates/admin/export-listings-admin-page.tpl.php:100 +#: templates/admin/export-listings-admin-page.tpl.php:95 msgctxt "listings-csv-export" msgid "Image Separator" msgstr "Séparateur pour les images" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "Category Separator" msgstr "Séparateur de catégories" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "required" msgstr "nécessaire" -#: templates/admin/export-listings-admin-page.tpl.php:118 +#: templates/admin/export-listings-admin-page.tpl.php:113 msgctxt "listings-csv-export" msgid "Export Listings" msgstr "Exporter des listes" -#: templates/admin/export-listings-admin-page.tpl.php:124 +#: templates/admin/export-listings-admin-page.tpl.php:119 msgctxt "listings-csv-export" msgid "Export in Progress..." msgstr "Export en cours ..." -#: templates/admin/export-listings-admin-page.tpl.php:125 +#: templates/admin/export-listings-admin-page.tpl.php:120 msgctxt "listings-csv-export" msgid "" "Your export file is being prepared. Please do not leave this page until the " "export finishes." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:128 +#: templates/admin/export-listings-admin-page.tpl.php:123 msgctxt "listings-csv-export" msgid "No. of listings:" msgstr "Nb de fiches:" -#: templates/admin/export-listings-admin-page.tpl.php:130 +#: templates/admin/export-listings-admin-page.tpl.php:125 msgctxt "listings-csv-export" msgid "Approximate export file size:" msgstr "Taille approximative du fichier d'exportation:" -#: templates/admin/export-listings-admin-page.tpl.php:137 +#: templates/admin/export-listings-admin-page.tpl.php:132 msgctxt "listings-csv-export" msgid "Cancel Export" msgstr "Annuler l'exportation" -#: templates/admin/export-listings-admin-page.tpl.php:142 -msgctxt "listings-csv-export" -msgid "Export Complete" -msgstr "Export terminé" - -#: templates/admin/export-listings-admin-page.tpl.php:143 +#: templates/admin/export-listings-admin-page.tpl.php:138 msgctxt "listings-csv-export" msgid "" "Your export file has been successfully created and it is now ready for " @@ -12012,32 +12223,27 @@ msgstr "" "à être téléchargé." #. translators: %1$s filename %2$s filesize. -#: templates/admin/export-listings-admin-page.tpl.php:149 +#: templates/admin/export-listings-admin-page.tpl.php:144 msgctxt "listings-csv-export" msgid "Download %1$s (%2$s)" msgstr "Télécharger %1$s ( %2$s )" -#: templates/admin/export-listings-admin-page.tpl.php:160 +#: templates/admin/export-listings-admin-page.tpl.php:155 msgctxt "listings-csv-export" msgid "Cleanup" msgstr "Nettoyage" -#: templates/admin/export-listings-admin-page.tpl.php:165 -msgctxt "listings-csv-export" -msgid "Export Canceled" -msgstr "Export annulé" - -#: templates/admin/export-listings-admin-page.tpl.php:166 +#: templates/admin/export-listings-admin-page.tpl.php:161 msgctxt "listings-csv-export" msgid "The export has been canceled." msgstr "L'exportation a été annulée." -#: templates/admin/export-listings-admin-page.tpl.php:167 +#: templates/admin/export-listings-admin-page.tpl.php:162 msgctxt "listings-csv-export" msgid "← Return to CSV Export" msgstr "← Retour sur Export CSV" -#: templates/admin/export-listings-admin-page.tpl.php:101 +#: templates/admin/export-listings-admin-page.tpl.php:96 msgctxt "admin forms" msgid "required" msgstr "nécessaire" @@ -12090,43 +12296,6 @@ msgctxt "The 'or' after 'Drop files here to upload' in Media Uploader" msgid "or" msgstr "ou" -#: templates/email/listing-media-upload-notification.plain.tpl.php:1 -msgctxt "listing media uploaded notification" -msgid "Hello," -msgstr "Bonjour," - -#: templates/email/listing-media-upload-notification.plain.tpl.php:5 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\":" -msgstr "" -"Les fichiers de média suivants ont été récemment ajoutés à l'annonce " -"\"\":" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:16 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\" and are awaiting approval:" -msgstr "" -"Les fichiers de média suivants ont été récemment ajoutés à l'annonce " -"\"\" et sont en attente d'approbation:" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:26 -msgctxt "listing media uploaded notification" -msgid "" -"Click here to manage media uploaded to the listing: ." -msgstr "" -"Cliquez ici pour gérer les médias ajoutés à l'annonce: ." - -#: templates/email/listing-media-upload-notification.plain.tpl.php:31 -msgctxt "listing media uploaded notification" -msgid "Click here to view the listing: ." -msgstr "Cliquez ici pour voir l'annonce: ." - #: templates/frontend/actions-submit-listing-section.tpl.php:7 msgctxt "actions submit listing section" msgid "Actions" @@ -12162,150 +12331,76 @@ msgctxt "upload media submit listing section" msgid "Loading..." msgstr "Chargement..." -#: templates/privacy-policy.tpl.php:10 -msgctxt "privacy policy" -msgid "" -"When you submit a classified listing, the content of the listing and its " -"metadata are retained indefinitely. All users can see, edit or delete the " -"personal information included on their listings at any time. Website " -"administrators can also see and edit that information." -msgstr "" -"Lorsque vous soumettez une liste classée, son contenu et ses métadonnées " -"sont conservés indéfiniment. Tous les utilisateurs peuvent voir, éditer ou " -"supprimer les informations personnelles incluses dans leurs listes à tout " -"moment. Les administrateurs de site Web peuvent également voir et éditer ces " -"informations." +#~ msgid "Duration: " +#~ msgstr "Durée: " -#: templates/privacy-policy.tpl.php:12 -msgctxt "privacy policy" -msgid "" -"Website visitors can see the contact name, website URL, phone number, " -"address and other information included in your submission to describe the " -"classified listing." -msgstr "" -"Les visiteurs du site Web peuvent voir le nom du contact, l'URL du site Web, " -"le numéro de téléphone, l'adresse et d'autres informations incluses dans " -"votre soumission pour décrire la liste classée." +#~ msgid "# of images: " +#~ msgstr "# d'images: " -#: templates/privacy-policy.tpl.php:14 -msgctxt "privacy policy" -msgid "" -"Contact name, email address, website URL and content of submitted classified " -"listings may be checked through Akismet's spam detection service. The " -"Akismet service privacy policy is available here." -msgstr "" -"Le nom du contact, l'adresse e-mail, l'URL du site Web et le contenu des " -"petites annonces soumises peuvent être vérifiés via le service de détection " -"de spam d'Akismet. La politique de confidentialité du service Akismet est " -"disponible ici ." +#~ msgid "Chars in title: " +#~ msgstr "Caractères dans le titre: " -#: templates/privacy-policy.tpl.php:16 -msgctxt "privacy policy" -msgid "Payment Information" -msgstr "Informations de paiement" +#~ msgid "Chars in description: " +#~ msgstr "Caractères dans la description: " -#: templates/privacy-policy.tpl.php:18 -msgctxt "privacy policy" -msgid "" -"If you pay to post a classified listing entering your credit card and " -"billing information directly on {home_url}, the " -"credit card information won't be stored but it will be shared through a " -"secure connection with the following payment gateways to process the payment:" -msgstr "" -"Si vous payez pour publier une annonce classifiée, entrez vos informations " -"de carte de crédit et de facturation directement sur {home_url} , les informations de carte de crédit ne " -"seront pas stockées mais elles seront partagées via une connexion sécurisée " -"avec les passerelles de paiement suivantes pour traiter le paiement:" +#~ msgid "Documentation" +#~ msgstr "Documentation" -#: templates/privacy-policy.tpl.php:21 -msgctxt "privacy policy" -msgid "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -msgstr "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgid "Status: " +#~ msgstr "Statut: " -#: templates/privacy-policy.tpl.php:22 -msgctxt "privacy policy" -msgid "" -"Authorize.Net — https://www.authorize.net/company/privacy/" -msgstr "" -"Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgctxt "debug page" +#~ msgid "PHP Version" +#~ msgstr "Version PHP" -#: templates/privacy-policy.tpl.php:23 -msgctxt "privacy policy" -msgid "" -"Stripe — https://stripe.com/" -"us/privacy/" -msgstr "" -"Stripe — https://stripe.com/" -"us/privacy/" +#~ msgctxt "Browse the Quick Start Guide" +#~ msgid "Browse the %s." +#~ msgstr "Parcourez le %s." -#: templates/privacy-policy.tpl.php:26 -msgctxt "privacy policy" -msgid "Regions" -msgstr "Régions" +#~ msgctxt "place ad checkout step" +#~ msgid "Complete Payment" +#~ msgstr "Terminer le paiement" -#: templates/privacy-policy.tpl.php:28 -msgctxt "privacy policy" -msgid "" -"If you choose to see listings published on a specific region, a cookie will " -"be stored on your browser for the remainder of the session to remember the " -"selected region." -msgstr "" -"Si vous choisissez de voir les annonces publiées sur une région spécifique, " -"un cookie sera stocké sur votre navigateur pour le reste de la session afin " -"de mémoriser la région sélectionnée." +#~ msgctxt "transaction items" +#~ msgid "Amount" +#~ msgstr "Montant" -#: templates/privacy-policy.tpl.php:30 -msgctxt "privacy policy" -msgid "Comments and Ratings" -msgstr "Commentaires et évaluations" +#~ msgctxt "page settings" +#~ msgid "Select existing page {dropdown} -or- {create_page_button}" +#~ msgstr "" +#~ "Sélectionner une page existante {dropdown} -or- {{create_page_button}" -#: templates/privacy-policy.tpl.php:32 -msgctxt "privacy policy" -msgid "" -"When visitors leave comments and reviews for classified listings we collect " -"the data shown in the comments form, and also the visitor’s IP address to " -"help spam detection." -msgstr "" -"Lorsque les visiteurs laissent des commentaires et des critiques d’annonces " -"classées, nous collectons les données figurant dans le formulaire de " -"commentaires, ainsi que l’adresse IP du visiteur afin de faciliter la " -"détection du spam." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgstr "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -#: templates/privacy-policy.tpl.php:34 -msgctxt "privacy policy" -msgid "" -"Visitor comments may be checked through Akismet's spam detection service. " -"The Akismet service privacy policy is available here." -msgstr "" -"Les commentaires des visiteurs peuvent être vérifiés via le service de " -"détection de spam d’Akismet. La politique de confidentialité du service " -"Akismet est disponible ici ." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgstr "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" -#: templates/privacy-policy.tpl.php:36 -msgctxt "privacy policy" -msgid "Restricted Categories" -msgstr "Rubriques restreintes" +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Stripe — https://stripe." +#~ "com/us/privacy/" +#~ msgstr "" +#~ "Stripe — https://stripe." +#~ "com/us/privacy/" -#: templates/privacy-policy.tpl.php:38 -msgctxt "privacy policy" -msgid "" -"When you agree to see listings or publish a listing on a restricted " -"category, a cookie will be stored in your browser to remember your decision. " -"The cookie will be stored on your browser for the remainder of that session." -msgstr "" -"Lorsque vous acceptez de voir des annonces ou de publier une annonce dans " -"une catégorie restreinte, un cookie sera enregistré dans votre navigateur " -"pour rappeler votre décision. Le cookie sera stocké sur votre navigateur " -"pour le reste de la session." +#~ msgctxt "privacy policy" +#~ msgid "Regions" +#~ msgstr "Régions" + +#~ msgctxt "privacy policy" +#~ msgid "Restricted Categories" +#~ msgstr "Rubriques restreintes" #~ msgid "AWPCP" #~ msgstr "AWPCP" @@ -12387,9 +12482,6 @@ msgstr "" #~ msgid "PayFast" #~ msgstr "PayFast" -#~ msgid "Restricted Categories" -#~ msgstr "Rubriques restreintes" - #~ msgid "The number of regions allowed must be equal or greater than zero." #~ msgstr "Le nombre de Régions autorisées doit être supérieur ou égal à zéro." diff --git a/languages/another-wordpress-classifieds-plugin-hu_HU.mo b/languages/another-wordpress-classifieds-plugin-hu_HU.mo index 6f1550f77..96803a7d6 100644 Binary files a/languages/another-wordpress-classifieds-plugin-hu_HU.mo and b/languages/another-wordpress-classifieds-plugin-hu_HU.mo differ diff --git a/languages/another-wordpress-classifieds-plugin-hu_HU.po b/languages/another-wordpress-classifieds-plugin-hu_HU.po index 8cdfcee3d..d9d534d56 100644 --- a/languages/another-wordpress-classifieds-plugin-hu_HU.po +++ b/languages/another-wordpress-classifieds-plugin-hu_HU.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Another WordPress Classifieds Plugin\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/another-wordpress-" "classifieds-plugin\n" -"POT-Creation-Date: 2024-03-20 20:22:37+00:00\n" +"POT-Creation-Date: 2024-06-13 20:37:03+00:00\n" "PO-Revision-Date: 2020-10-15 19:51+0000\n" "Last-Translator: Diego Giraldo \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/wp-translations/" @@ -25,21 +25,21 @@ msgstr "" #: admin/fees/class-fee-details-form.php:39 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:9 #: includes/settings/class-payment-general-settings.php:60 -#: templates/admin/manage-categories-admin-page.tpl.php:31 +#: templates/admin/manage-categories-admin-page.tpl.php:32 msgid "Name" msgstr "Név" #: admin/admin-panel-credit-plans-table.php:80 #: admin/fees/class-fee-details-form.php:45 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:25 -#: templates/admin/manage-categories-admin-page.tpl.php:36 +#: templates/admin/manage-categories-admin-page.tpl.php:37 msgid "Description" msgstr "Leírás" #: admin/admin-panel-credit-plans-table.php:81 #: admin/admin-panel-fees-table.php:121 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:14 -#: includes/settings/class-payment-general-settings.php:270 +#: includes/settings/class-payment-general-settings.php:272 msgid "Credits" msgstr "Kreditek" @@ -48,7 +48,7 @@ msgstr "Kreditek" #: admin/fees/class-fee-details-form.php:222 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:19 #: frontend/placeholders.php:514 -#: includes/settings/class-display-settings.php:483 +#: includes/settings/class-display-settings.php:482 #: includes/settings/class-payment-general-settings.php:61 msgid "Price" msgstr "Ár" @@ -74,25 +74,28 @@ msgstr "Privát" msgid " " msgstr "" -#: admin/admin-panel-fees-table.php:196 -msgid "Duration: " -msgstr "" +#: admin/admin-panel-fees-table.php:197 +#, fuzzy +msgid "Duration: %s" +msgstr "Időtartam" -#: admin/admin-panel-fees-table.php:206 -msgid "# of images: " +#: admin/admin-panel-fees-table.php:207 +msgid "# of images: %s" msgstr "" #: admin/admin-panel-fees-table.php:219 admin/admin-panel-fees-table.php:235 msgid "unlimited" msgstr "korlátlan" -#: admin/admin-panel-fees-table.php:222 -msgid "Chars in title: " -msgstr "" +#: admin/admin-panel-fees-table.php:223 +#, fuzzy +msgid "Chars in title: %s" +msgstr "Karakterek a címben" -#: admin/admin-panel-fees-table.php:238 -msgid "Chars in description: " -msgstr "" +#: admin/admin-panel-fees-table.php:239 +#, fuzzy +msgid "Chars in description: %s" +msgstr "Karakterek a Leírásban" #: admin/admin-panel-fees-table.php:265 admin/admin-panel-fees-table.php:269 #: templates/admin/import/supported-csv-headers.tpl.php:31 @@ -124,7 +127,7 @@ msgstr "A meghatározott felhasználó nem létezik." msgid "Manual Upgrade" msgstr "Manuális frissítés" -#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:799 +#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:783 #: includes/models/class-custom-post-types.php:97 #: includes/models/class-custom-post-types.php:99 #: includes/settings/class-listings-settings.php:30 @@ -140,20 +143,20 @@ msgid "Dashboard" msgstr "Vezérlőpult" #: admin/admin-panel.php:140 admin/admin-panel.php:141 -#: admin/admin-panel.php:509 +#: admin/admin-panel.php:492 msgid "Settings" msgstr "Beállítások" #: admin/admin-panel.php:154 -#: templates/admin/main-classifieds-admin-page.tpl.php:86 -#: templates/admin/main-classifieds-admin-page.tpl.php:111 +#: templates/admin/main-classifieds-admin-page.tpl.php:88 +#: templates/admin/main-classifieds-admin-page.tpl.php:116 msgid "Manage Categories" msgstr "Kategóriák kezelése" #: admin/admin-panel.php:203 admin/admin-panel.php:204 #: admin/form-fields/class-form-fields-admin-page.php:12 -#: includes/settings/class-display-settings.php:298 -#: includes/settings/class-display-settings.php:438 +#: includes/settings/class-display-settings.php:297 +#: includes/settings/class-display-settings.php:437 msgid "Form Fields" msgstr "Űrlapmezők" @@ -186,7 +189,7 @@ msgstr "" msgid "Debug" msgstr "Hibakeresés" -#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:24 +#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:38 msgid "Debug Information" msgstr "Debug Információ" @@ -195,24 +198,24 @@ msgid "Uninstall" msgstr "Eltávolítás" #: admin/admin-panel.php:354 admin/admin-panel.php:355 -#: admin/admin-panel.php:826 frontend/templates/page-renew-ad.tpl.php:3 +#: admin/admin-panel.php:810 frontend/templates/page-renew-ad.tpl.php:3 #: includes/admin/class-admin-container-configuration.php:175 msgid "Renew Ad" msgstr "Hirdetés meghosszabbítása" -#: admin/admin-panel.php:427 +#: admin/admin-panel.php:417 msgid "" "Use the Account Balance column on the table below to manage credit balance " "for users." msgstr "" -#: admin/admin-panel.php:446 +#: admin/admin-panel.php:436 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing." msgstr "" -#: admin/admin-panel.php:447 +#: admin/admin-panel.php:437 msgid "" "The duration for this upgrade operation varies between several minutes and a " "few hours, depending on the size of your database, the current network " @@ -224,7 +227,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the page explaining how #. to downgrade to a previous version of the plugin, %2$s is the closing tag #. for the link. -#: admin/admin-panel.php:450 +#: admin/admin-panel.php:440 msgid "" "If this is not a good time to go through the upgrade process, we recommend " "you to %1$sinstall the previous version again%2$s and plan to upgrade " @@ -233,7 +236,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:456 +#: admin/admin-panel.php:446 msgid "" "To upgrade, please %1$sgo to the Classifieds admin section%2$s or click the " "button below." @@ -241,7 +244,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:466 +#: admin/admin-panel.php:456 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing. Please %1$sgo to the Classifieds " @@ -250,7 +253,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:488 +#: admin/admin-panel.php:471 msgid "" "AWPCP needs you to perform a manual upgrade to update the database schema " "and the information stored there. All plugin features will continue to work " @@ -258,7 +261,7 @@ msgid "" "admin section to Upgrade%2$s or click the button below." msgstr "" -#: admin/admin-panel.php:562 +#: admin/admin-panel.php:545 msgid "" "Page %1$s has the same URL as the %2$s from AWPCP. The WordPress page %1$s " "is going to be unreachable until this changes." @@ -268,7 +271,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: admin/admin-panel.php:570 +#: admin/admin-panel.php:553 msgid "" "The %1$s is dynamic; you don't need to create a real WordPress page to show " "the list of categories, the plugin will generate it for you. If the " @@ -284,143 +287,143 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: admin/admin-panel.php:765 admin/class-categories-admin-page.php:60 +#: admin/admin-panel.php:749 admin/class-categories-admin-page.php:60 #: admin/class-categories-admin-page.php:64 msgid "Manage Category Icon" msgstr "Kategória ikon kezelése" -#: admin/admin-panel.php:770 admin/class-categories-admin-page.php:35 +#: admin/admin-panel.php:754 admin/class-categories-admin-page.php:35 #: admin/class-categories-admin-page.php:39 #: admin/class-categories-admin-page.php:133 msgid "Edit Category" msgstr "Kategória szerkesztése" -#: admin/admin-panel.php:771 admin/class-categories-admin-page.php:46 +#: admin/admin-panel.php:755 admin/class-categories-admin-page.php:46 #: admin/class-categories-admin-page.php:50 msgid "Delete Category" msgstr "Kategória Törlése" -#: admin/admin-panel.php:776 +#: admin/admin-panel.php:760 msgid "Select {category_name}" msgstr "" -#: admin/admin-panel.php:814 frontend/page-reply-to-ad.php:11 +#: admin/admin-panel.php:798 frontend/page-reply-to-ad.php:11 msgid "Reply to Ad" msgstr "Válasz a hirdetésre" -#: admin/admin-panel.php:822 admin/templates/admin-panel-listings.tpl.php:5 +#: admin/admin-panel.php:806 admin/templates/admin-panel-listings.tpl.php:5 msgid "Place Ad" msgstr "Hirdetés feladása" -#: admin/admin-panel.php:830 frontend/page-browse-ads.php:9 +#: admin/admin-panel.php:814 frontend/page-browse-ads.php:9 msgid "Browse Ads" msgstr "Hirdetések böngészése" -#: admin/admin-panel.php:834 admin/templates/admin-panel-listings.tpl.php:11 +#: admin/admin-panel.php:818 admin/templates/admin-panel-listings.tpl.php:20 #: frontend/page-search-ads.php:9 msgid "Search Ads" msgstr "Hirdetések keresése" -#: admin/categories/class-create-category-admin-page.php:38 -#: admin/categories/class-delete-categories-admin-page.php:55 -#: admin/categories/class-delete-category-admin-page.php:68 -#: admin/categories/class-move-categories-admin-page.php:54 -#: admin/categories/class-update-category-admin-page.php:50 +#: admin/categories/class-create-category-admin-page.php:39 +#: admin/categories/class-delete-categories-admin-page.php:57 +#: admin/categories/class-delete-category-admin-page.php:69 +#: admin/categories/class-move-categories-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:51 msgid "invalid nonce" msgstr "" -#: admin/categories/class-create-category-admin-page.php:42 +#: admin/categories/class-create-category-admin-page.php:43 msgid "The new category was successfully added." msgstr "Az új kategória sikeresen hozzáadva." -#: admin/categories/class-delete-categories-admin-page.php:61 +#: admin/categories/class-delete-categories-admin-page.php:64 msgid "" "The categories couldn't be deleted because there was an error trying to load " -"the categoery that you selecetd to become the new category associated to " -"affected ads. " +"the categoery that you selected to become the new category associated to " +"affected ads. %s" msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:71 +#: admin/categories/class-delete-categories-admin-page.php:75 msgid "The selected categories have been deleted." msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:76 +#: admin/categories/class-delete-categories-admin-page.php:80 msgid "There was an error trying to delete the selected categories." msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:80 +#: admin/categories/class-delete-categories-admin-page.php:84 msgid "" " (out of ) categories were deleted. " "However, there was an error trying to delete the other categories." msgstr "" -#: admin/categories/class-delete-category-admin-page.php:41 +#: admin/categories/class-delete-category-admin-page.php:42 msgid "The category you are trying to delete doesn't exist." msgstr "" -#: admin/categories/class-delete-category-admin-page.php:53 +#: admin/categories/class-delete-category-admin-page.php:54 msgid "There was an error trying to delete the category. " msgstr "" -#: admin/categories/class-delete-category-admin-page.php:74 +#: admin/categories/class-delete-category-admin-page.php:75 msgid "" "There was an error trying to load the selected category. " msgstr "" -#: admin/categories/class-delete-category-admin-page.php:85 +#: admin/categories/class-delete-category-admin-page.php:86 msgid "The category was deleted successfully" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:103 +#: admin/categories/class-delete-category-admin-page.php:104 msgid "Are you sure you want to delete \"\" category?" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:116 +#: admin/categories/class-delete-category-admin-page.php:117 msgid "Delete category" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:117 +#: admin/categories/class-delete-category-admin-page.php:118 #: admin/fees/class-fee-details-form.php:80 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:31 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:12 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:23 #: admin/templates/admin-panel-fees-delete.tpl.php:12 #: admin/templates/admin-panel-users-balance-form.tpl.php:19 #: admin/templates/delete_form.tpl.php:16 #: frontend/templates/payments-billing-form.tpl.php:123 #: includes/listings/class-listing-action-with-confirmation.php:8 -#: includes/settings/renderers/class-button-settings-renderer.php:41 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 +#: includes/settings/renderers/class-button-settings-renderer.php:44 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:184 #: templates/admin/import-listings-admin-page-import-form.tpl.php:47 msgid "Cancel" msgstr "Mégse" -#: admin/categories/class-move-categories-admin-page.php:59 +#: admin/categories/class-move-categories-admin-page.php:60 msgid "" "The categories couldn't be moved because there was an error trying to load " "the target category. " msgstr "" -#: admin/categories/class-move-categories-admin-page.php:68 +#: admin/categories/class-move-categories-admin-page.php:69 msgid "The selected categories have been moved." msgstr "" -#: admin/categories/class-move-categories-admin-page.php:73 +#: admin/categories/class-move-categories-admin-page.php:74 msgid "There was an error trying to move the selected categories." msgstr "" -#: admin/categories/class-move-categories-admin-page.php:77 +#: admin/categories/class-move-categories-admin-page.php:78 msgid "" " (out of ) categories were moved. " "However, there was an error trying to move the other " "categories." msgstr "" -#: admin/categories/class-update-category-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:56 msgid "The category you're trying to update doesn't exist." msgstr "" -#: admin/categories/class-update-category-admin-page.php:66 +#: admin/categories/class-update-category-admin-page.php:67 msgid "The category was successfully updated." msgstr "" @@ -446,86 +449,92 @@ msgstr "Új kategória létrehozása" msgid "Update" msgstr "Frissítés" -#: admin/class-debug-admin-page.php:255 +#: admin/class-debug-admin-page.php:256 msgid "WordPress version" msgstr "" -#: admin/class-debug-admin-page.php:259 +#: admin/class-debug-admin-page.php:260 msgid "OS" msgstr "" -#: admin/class-debug-admin-page.php:263 +#: admin/class-debug-admin-page.php:264 msgid "Apache Version" msgstr "" -#: admin/class-debug-admin-page.php:267 +#: admin/class-debug-admin-page.php:268 +#: admin/templates/admin-panel-debug.tpl.php:177 msgid "PHP Version" msgstr "PHP verzió" -#: admin/class-debug-admin-page.php:271 +#: admin/class-debug-admin-page.php:272 msgid "MySQL Version" msgstr "MySQL verziója" -#: admin/class-debug-admin-page.php:275 +#: admin/class-debug-admin-page.php:276 msgid "cURL Version" msgstr "" -#: admin/class-debug-admin-page.php:279 +#: admin/class-debug-admin-page.php:280 msgid "cURL SSL Version" msgstr "" -#: admin/class-debug-admin-page.php:332 admin/class-debug-admin-page.php:338 +#: admin/class-debug-admin-page.php:333 admin/class-debug-admin-page.php:339 msgid "N/A" msgstr "N/A" -#: admin/class-import-listings-admin-page.php:100 +#: admin/class-import-listings-admin-page.php:102 msgid "" "The uploaded file doesn't look like a CSV file. Please upload a valid CSV " "file." msgstr "" -#: admin/class-import-listings-admin-page.php:104 +#: admin/class-import-listings-admin-page.php:106 msgid "There was an error moving the uploaded CSV file to a proper location." msgstr "" -#: admin/class-import-listings-admin-page.php:121 +#: admin/class-import-listings-admin-page.php:125 msgid "" "The uploaded file doesn't look like a ZIP file. Please upload a valid ZIP " "file." msgstr "" -#: admin/class-import-listings-admin-page.php:125 +#: admin/class-import-listings-admin-page.php:129 msgid "There was an error moving the uploaded ZIP file to a proper location." msgstr "" -#: admin/class-import-listings-admin-page.php:137 +#: admin/class-import-listings-admin-page.php:141 msgid "Incompatible ZIP Archive" msgstr "Inkompatibilis ZIP Archívum" -#: admin/class-import-listings-admin-page.php:139 +#: admin/class-import-listings-admin-page.php:143 msgid "Empty ZIP Archive" msgstr "Üres ZIP Archívum" -#: admin/class-import-listings-admin-page.php:165 +#: admin/class-import-listings-admin-page.php:169 msgid "Could not write temporary file %s" msgstr "Nem írható átmeneti fájl %s" -#: admin/class-import-listings-admin-page.php:174 +#: admin/class-import-listings-admin-page.php:178 msgid "The specified directory is not a valid path." msgstr "" -#: admin/class-import-listings-admin-page.php:176 +#: admin/class-import-listings-admin-page.php:180 msgid "The specified directory does not exists." msgstr "" -#: admin/class-import-listings-admin-page.php:357 +#: admin/class-import-listings-admin-page.php:361 msgid "" "() of rows " "processed. rows imported and rows rejected." msgstr "" -#: admin/class-settings-admin-page.php:230 +#: admin/class-import-settings-admin-page.php:121 +#, fuzzy +msgid "Your settings have been successfully imported." +msgstr "Az Ön hirdetése \"%s\" sikeresen frissítve" + +#: admin/class-settings-admin-page.php:224 msgid "" "We could not obtain a valid access token from Facebook. The API returned the " "following error: %s" @@ -533,24 +542,25 @@ msgstr "" "Nem tudtunk érvényes hozzáférési tokent lekérdezni a Facebook szervertől. Az " "API a következő hibát adta: %s" -#: admin/class-settings-admin-page.php:235 +#: admin/class-settings-admin-page.php:229 msgid "" "We could not obtain a valid access token from Facebook. Please try again." msgstr "" "Nem tudtunk érvényes hozzáférési tokent lekérdezni a Facebook szervertől. " "Kérjük próbálja meg újra." -#: admin/class-settings-admin-page.php:243 +#: admin/class-settings-admin-page.php:237 msgid "Facebook Config Diagnostics" msgstr "Facebook Konfigurációs Diagnosztika" -#: admin/class-settings-admin-page.php:250 +#: admin/class-settings-admin-page.php:244 msgid "Everything looks OK." msgstr "Minden jónak tűnik." #: admin/class-table-entry-action-ajax-handler.php:16 +#: admin/class-uninstall-admin-page.php:52 #: admin/pointers/class-drip-autoresponder-ajax-handler.php:23 -#: functions.php:531 +#: functions.php:537 #: includes/frontend/class-create-empty-listing-ajax-handler.php:104 #: includes/frontend/class-execute-listing-action-ajax-handler.php:58 #: includes/frontend/class-save-listing-information-ajax-handler.php:117 @@ -571,7 +581,7 @@ msgstr "Szerkeszt" #: admin/credit-plans/class-credit-plans-admin-page.php:23 #: admin/fees/class-fees-admin-page.php:65 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:13 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:24 #: admin/templates/delete_form.tpl.php:17 msgid "Delete" msgstr "Törlés" @@ -680,33 +690,33 @@ msgstr "" "próbálkozzon újra a törléssel. Az AWPCP segíteni fog megváltoztatni a létező " "hirdetések díjazását." -#: admin/import/class-csv-importer-delegate.php:271 +#: admin/import/class-csv-importer-delegate.php:275 msgid "" "No user could be assigned to this listing. Our attempt to create a new user " "failed with the following error: ." msgstr "" -#: admin/import/class-csv-importer-delegate.php:470 +#: admin/import/class-csv-importer-delegate.php:476 msgid "The payment term type must be 'fee' or 'subscription'." msgstr "" -#: admin/import/class-csv-importer-delegate.php:476 +#: admin/import/class-csv-importer-delegate.php:482 msgid "" "There is no payment term with type {payment_term_type} and ID " "{payment_term_id}." msgstr "" -#: admin/import/class-csv-importer-delegate.php:490 +#: admin/import/class-csv-importer-delegate.php:496 msgid "" "No images directory was configured. Are you sure you uploaded a ZIP file or " "defined a local directory?" msgstr "" -#: admin/import/class-csv-importer-delegate.php:676 +#: admin/import/class-csv-importer-delegate.php:690 msgid "The value for Extra Field %s's is not allowed. Allowed values are: %%s" msgstr "" -#: admin/import/class-csv-importer-delegate.php:686 +#: admin/import/class-csv-importer-delegate.php:700 msgid "" "The value for Extra Field %s's is not allowed. Allowed value is one of: %%s" msgstr "" @@ -726,10 +736,35 @@ msgstr "" msgid "That Ad failed to delete." msgstr "A hirdetés eltávolítva." +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 +#, fuzzy +msgid "Thank you for signing up!" +msgstr "Köszönjük a feliratkozást!" + +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 +#, fuzzy +msgid "" +"Please check your email and click the link provided to confirm your " +"subscription." +msgstr "" +"Kérjük menjen az email fiókjába, s klikkeljen az általunk küldött linkre, " +"hogy megerősítse feliratkozását" + #: admin/pointers/class-drip-autoresponder-ajax-handler.php:149 msgid "An unexpected error ocurred." msgstr "Egy váratlan hiba történt" +#: admin/pointers/class-drip-autoresponder.php:62 +#, fuzzy +msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" +msgstr "Tudni szeretné egy nagyszerű apróhirdető oldal építésének titkait? " + +#: admin/pointers/class-drip-autoresponder.php:63 +msgid "" +"Find out how to create a compelling, thriving classifieds site from scratch " +"in this ridiculously actionable (and free) 5-part email course." +msgstr "" + #: admin/pointers/class-drip-autoresponder.php:67 msgid "Email Address" msgstr "Emai cím" @@ -738,28 +773,28 @@ msgstr "Emai cím" msgid "Add" msgstr "Hozzáadás" -#: admin/templates/admin-panel-credit-plans.tpl.php:10 +#: admin/templates/admin-panel-credit-plans.tpl.php:11 msgid "Credit System Settings" msgstr "Peták Rendszer Beállítások" -#: admin/templates/admin-panel-credit-plans.tpl.php:21 +#: admin/templates/admin-panel-credit-plans.tpl.php:25 #: templates/admin/settings-admin-page.tpl.php:50 -#: templates/admin/settings-admin-page.tpl.php:64 +#: templates/admin/settings-admin-page.tpl.php:67 msgid "Save Changes" msgstr "Módosítások mentése" -#: admin/templates/admin-panel-credit-plans.tpl.php:34 +#: admin/templates/admin-panel-credit-plans.tpl.php:38 msgid "Add Credit Plan" msgstr "Kredit Csomag Hozzáadása" -#: admin/templates/admin-panel-debug.tpl.php:8 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:6 +#: admin/templates/admin-panel-debug.tpl.php:11 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:8 msgid "Are you seeing 404 Not Found errors?" msgstr "404-es Nem Található hibaüzenetet lát?" #. translators: %1$s: Start link HTML, %2$s: end link HTML, %3$s: Start link #. HTML -#: admin/templates/admin-panel-debug.tpl.php:14 +#: admin/templates/admin-panel-debug.tpl.php:21 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -770,54 +805,84 @@ msgid "" "please contact %3$scustomer support%1$s." msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:49 +#: admin/templates/admin-panel-debug.tpl.php:84 msgid "Stored ID" msgstr "Tárolt ID" -#: admin/templates/admin-panel-debug.tpl.php:50 +#: admin/templates/admin-panel-debug.tpl.php:85 msgid "Reference" msgstr "Hivatkozások" -#: admin/templates/admin-panel-debug.tpl.php:51 +#: admin/templates/admin-panel-debug.tpl.php:86 #: frontend/templates/widget-categories-form.tpl.php:2 #: frontend/templates/widget-latest-ads-form.tpl.php:2 #: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:5 msgid "Title" msgstr "Cím" -#: admin/templates/admin-panel-debug.tpl.php:60 +#: admin/templates/admin-panel-debug.tpl.php:95 msgid "Page not found" msgstr "Oldal nem található" -#: admin/templates/admin-panel-debug.tpl.php:74 +#: admin/templates/admin-panel-debug.tpl.php:117 msgid "Option Name" msgstr "Opció neve" -#: admin/templates/admin-panel-debug.tpl.php:75 +#: admin/templates/admin-panel-debug.tpl.php:118 msgid "Option Value" msgstr "Opció értéke" -#: admin/templates/admin-panel-debug.tpl.php:96 +#: admin/templates/admin-panel-debug.tpl.php:147 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:9 msgid "Pattern" msgstr "Minta" -#: admin/templates/admin-panel-debug.tpl.php:97 +#: admin/templates/admin-panel-debug.tpl.php:148 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:10 msgid "Replacement" msgstr "Helyettesítés" -#: admin/templates/admin-panel-debug.tpl.php:133 +#: admin/templates/admin-panel-debug.tpl.php:181 +#, fuzzy +msgid "cURL" +msgstr "cURL" + +#: admin/templates/admin-panel-debug.tpl.php:185 +#, fuzzy +msgid "cURL's alternate CA info (cacert.pem)" +msgstr "cURL CA info (cacert.pem) alternatíva" + +#: admin/templates/admin-panel-debug.tpl.php:189 +#, fuzzy +msgid "Exists" +msgstr "Létezik" + +#: admin/templates/admin-panel-debug.tpl.php:190 +#, fuzzy +msgid "Missing" +msgstr "Hiányzik" + +#: admin/templates/admin-panel-debug.tpl.php:195 +#: includes/settings/class-payment-general-settings.php:134 +msgid "PayPal" +msgstr "PayPal" + +#: admin/templates/admin-panel-debug.tpl.php:198 #, fuzzy msgid "Working" msgstr "Működik" -#: admin/templates/admin-panel-debug.tpl.php:148 -#: templates/admin/debug/debug-admin-page.tpl.php:36 +#: admin/templates/admin-panel-debug.tpl.php:201 +#, fuzzy +msgid "Not Working" +msgstr "Nem működik" + +#: admin/templates/admin-panel-debug.tpl.php:216 +#: templates/admin/debug/debug-admin-page.tpl.php:42 msgid "Debug & Development Tools" msgstr "" -#: admin/templates/admin-panel-fees-delete-form.tpl.php:6 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:7 #: admin/templates/delete_form.tpl.php:11 msgid "Are you sure you want to delete this item?" msgstr "Biztos benne, hogy törli ezt az elemet?" @@ -834,48 +899,49 @@ msgstr "" msgid "Switch" msgstr "Váltás" -#: admin/templates/admin-panel-fees.tpl.php:7 -msgid "Payment Settings page" -msgstr "Fizetési Beállítások oldala" - -#: admin/templates/admin-panel-fees.tpl.php:9 +#: admin/templates/admin-panel-fees.tpl.php:8 +#, fuzzy msgid "" "Currently your classifieds are in Free mode. Fee plans are not available or " -"used during free mode.

To change this, visit the and enable Charge Listing Fee setting." +"used during free mode.%1$s To change this, visit the %2$s and enable Charge " +"Listing Fee setting." msgstr "" "A hirdetések jelenleg díjmentes módra vannak állítva. Ilyenkor az ingyenes " "fizetési kategória nem értelmezhető.

A megváltoztatásához lépjél a " "-re és engedélyezd a Listázási Díjak Terhelése " "beállítást.." -#: admin/templates/admin-panel-fees.tpl.php:20 +#: admin/templates/admin-panel-fees.tpl.php:11 +msgid "Payment Settings page" +msgstr "Fizetési Beállítások oldala" + +#: admin/templates/admin-panel-fees.tpl.php:22 msgid "Add Fee Plan" msgstr "Díjazási terv hozzáadása" -#: admin/templates/admin-panel-fees.tpl.php:24 -msgid "Fee Plan sort order and sort direction Settings" -msgstr "" - #: admin/templates/admin-panel-fees.tpl.php:26 +#, fuzzy msgid "" -"If you wish to change the sorting of your fee plans, you can change the ." +"If you wish to change the sorting of your fee plans, you can change the %s." msgstr "" "Ha a díjazási tervek rendezését kívánja megváltoztatni, megváltoztathatja a " "." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:14 +#: admin/templates/admin-panel-fees.tpl.php:30 +msgid "Fee Plan sort order and sort direction Settings" +msgstr "" + +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:17 msgid "Facebook Integration" msgstr "Facebook Integráció" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:16 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:23 msgid "" "We currently support two methods for posting new ads to Facebook: Facebook " "API and Zapier/IFTTT Webhooks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:18 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:25 msgid "" "Support for Facebook API will be removed in the future. Facebook " "significantly reduced access to their APIs across all apps on Apr, 2018. Now " @@ -886,45 +952,44 @@ msgid "" "integration method." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:22 -msgid "You can read more about Facebook changes here: {facebook_post_link}" +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:30 +msgid "You can read more about Facebook changes here: %s" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:29 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:38 msgid "" "If you are currently using the Facebook API integration method and not " "having any issues, you don't have to do anything right now. If you are " "having issues, please read the Diagnostics section below to try to fix them." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:40 #: includes/settings/class-general-settings.php:735 msgid "Facebook API" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:35 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:46 msgid "" "This integration method allows you to post ads to Facebook using a Facebook " -"Application. Please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"Application. Please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:45 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:79 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 msgid "" "Add the following URL to the list of Valid OAuth Redirect URIs for the " "configuration of the Facebook Application:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:59 #: includes/settings/class-general-settings.php:736 msgid "Zapier/IFTTT Webhooks" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:51 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:61 msgid "" "Webhooks allow the plugin to send a request to one of the configured webhook " "URLs the first time an ad becomes publicly available on the website. That " @@ -934,109 +999,108 @@ msgid "" "control." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:67 msgid "" -"Follow the instructiones to create the tasks on " -"{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} or " -"{webhook_instructions_for_ifttt}IFTTT{/webhook_instructions_for_ifttt}. Then " -"update the settings at the bottom of this page to enter the webhook URLs " -"associated with those tasks." +"Follow the instructiones to create the tasks on %1$sZapier or IFTTT%2$s. " +"Then update the settings at the bottom of this page to enter the webhook " +"URLs associated with those tasks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:65 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:74 msgid "Facebook Cache" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:69 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:80 msgid "" "If you are using Webhooks to send ads to Facebook, a Facebook Application " "can still be used to ask Facebook to clear the cache it has stored for ads " "pages. This is useful to ensure users always see the latest version when the " "ad is shared on Facebook Pages, Groups and user feeds. If you decide to use " -"this feature, please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"this feature, please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:83 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:93 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:120 msgid "Diagnostics" msgstr "Diagnosztika" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:95 msgid "" "If you see the following error after trying to get a valid User Access Token:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:99 msgid "" "You have to submit your Facebook Application for Review and ask for those " "permissions or use the Webhooks integration method to send ads to Facebook " "using Zapier or IFTTT Webhooks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:91 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:101 msgid "If you see the following error trying to send ads to a Facebook Group:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:97 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 msgid "" -"Please make sure the Facebook Application " -"{link_to_how_to_add_apps_to_a_group}was added to the group{/" -"link_to_how_to_add_apps_to_a_group}." +"Please make sure the Facebook Application %1$swas added to the group%2$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:108 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:119 msgid "" "If you are having additional problems with Facebook API, click " "\"Diagnostics\" to check your settings." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:3 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:4 msgid "Restore AWPCP Pages" msgstr "AWPCP Oldalak Visszaállítása" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:8 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:10 msgid "The following pages were restored: ." msgstr "A következő oldalak visszaállításra kerültek: " -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:19 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:21 msgid "" "The pages listed below are missing. The plugin is looking for a page with a " "particular ID but it seems that the page was permanently deleted. Please a " "select a new one." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:23 -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:71 -msgid "%s (Default name: %s)." -msgstr "" +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:28 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:97 +#, fuzzy +msgid "%1$s (Default name: %2$s)." +msgstr "%s és %s." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:39 msgid "" "The following pages are not published. Did you move them to the Trash by " "accident or saved them as Draft?" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:41 -msgid "%s — Selected page: %s (%s)" +#. translators: %1$s page label, %2$s link to the page, %3$s the page status. +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:57 +msgid "%1$s Selected page: %2$s (%3$s)" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:69 msgid "" "The following pages are not currently assigned. Please select an existing " "page or create a new one to use as the following plugin pages:" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:64 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 msgid "" -" — You can select one of these pages that already include " -"the necessary shortcode: or create a new one." +"%1$s You can select one of these pages that already include the necessary " +"shortcode: %2$s or %3$screate a new one%4$s." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:115 msgid "" "Use the button below to have the plugin attempt to find the necessary pages. " "If you continue to have problems or seeing page related warnings above, you " @@ -1044,29 +1108,29 @@ msgid "" "the plugin create them again." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:86 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:116 msgid "Restore Pages" msgstr "Oldalak visszaállítása" -#: admin/templates/admin-panel-uninstall.tpl.php:13 +#: admin/templates/admin-panel-uninstall.tpl.php:10 msgid "" "Thank you for using AWPCP. You have arrived at this page by clicking the " "Uninstall link. If you are certain you wish to uninstall the plugin, please " "click the button at the bottom to proceed." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "" "PLEASE NOTE: When you click the button below, ALL your data related to the " "plugin including your classifieds, images and everything else created by the " "plugin will be permanently deleted." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "We cannot recover the data after you click this." msgstr "Miután erre kattint, nem tudjuk visszaállítani adatait." -#: admin/templates/admin-panel-uninstall.tpl.php:18 +#: admin/templates/admin-panel-uninstall.tpl.php:15 msgid "" "BEFORE YOU CLICK THE BUTTON BELOW — read carefully in case you want to " "extract your data first!" @@ -1074,7 +1138,7 @@ msgstr "" "MIELŐTT AZ ALÁBBI GOMBRA KATTINT — olvassa el figyelmesen, amennyiben " "ki akarja emelni adatait!" -#: admin/templates/admin-panel-uninstall.tpl.php:21 +#: admin/templates/admin-panel-uninstall.tpl.php:18 msgid "" "If you plan to use the data created by the plugin please export the data " "from your mysql database before clicking the uninstall link." @@ -1082,45 +1146,49 @@ msgstr "" "Amennyiben tervezi a bővítmény által létrehozott adatok használatát, kérjük " "exportálja azt mysql adatbázisából az eltávolítás előtt" -#: admin/templates/admin-panel-uninstall.tpl.php:22 +#: admin/templates/admin-panel-uninstall.tpl.php:21 +#, fuzzy msgid "" -"If you want to keep your user uploaded images, please download to " -"your local drive for later use or rename the folder to something else so the " +"If you want to keep your user uploaded images, please download %s to your " +"local drive for later use or rename the folder to something else so the " "uninstaller can bypass it." msgstr "" "Amennyiben meg kívánja tartani a felhasználók által feltöltött képeket, " "kérjük töltse le a helyi meghajtójára későbbi használatra, vagy " "nevezze át a mappát, így az eltávolítás során nem lesz figyelembe véve." -#: admin/templates/admin-panel-uninstall.tpl.php:28 +#: admin/templates/admin-panel-uninstall.tpl.php:29 msgid "Proceed with Uninstalling AWP Classifieds Plugin" msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:33 +#: admin/templates/admin-panel-uninstall.tpl.php:35 msgid "Almost done... one more step!" msgstr "Majdnem kész... még egy lépés!" -#: admin/templates/admin-panel-uninstall.tpl.php:36 -msgid "Please click here to complete the uninstallation process" +#: admin/templates/admin-panel-uninstall.tpl.php:39 +#, fuzzy +msgid "Please click here to deactivate plugins." msgstr "Kérjük kattinrson az eltávolítás befejezéséhez" #: admin/templates/admin-panel-users-balance-form.tpl.php:12 +#: frontend/templates/payments-transaction-items-table.tpl.php:5 +#: frontend/templates/payments-transaction-items-table.tpl.php:17 msgid "Amount" msgstr "Összeg" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:12 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:14 msgid "Manual Upgrade Required" msgstr "Manuális frissítés szükséges" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:17 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:26 msgid "Upgrade" msgstr "Frissítés" #: admin/templates/admin-quick-start-guide-notice.tpl.php:2 #, fuzzy msgid "" -"Hello and welcome to AWP Classifieds. This plugin is super " -"easy to use AND highly configurable." +"Hello and welcome to AWP Classifieds. This plugin is super easy to use AND " +"highly configurable." msgstr "" "Üdvözöli az Another Wordpress Classifieds. Ez a bővítmény " "rendkívül könnyen használható, és személyre szabható." @@ -1130,38 +1198,52 @@ msgid "Would you like some help getting started?" msgstr "Igényel segítséget az első lépésekhez?" #: admin/templates/admin-quick-start-guide-notice.tpl.php:12 +#, fuzzy +msgid "I'll figure it out on my own." +msgstr "Rájövök magamtól." + +#: admin/templates/admin-quick-start-guide-notice.tpl.php:15 msgid "Yes Please!" msgstr "Igen!" -#: admin/templates/admin-sidebar.tpl.php:14 +#: admin/templates/admin-quick-start-guide-notice.tpl.php:20 +#, fuzzy +msgid "Help me get my classifieds running quickly." +msgstr "Hogy lehet az apróhirdetéseimet gyorsan beindítani?" + +#: admin/templates/admin-sidebar.tpl.php:15 msgid "Like this plugin?" msgstr "Kedveli ezt a bővítményt?" -#: admin/templates/admin-sidebar.tpl.php:20 +#: admin/templates/admin-sidebar.tpl.php:24 msgid "Give a 5 star rating on WordPress.org." msgstr "" -#: admin/templates/admin-sidebar.tpl.php:36 +#: admin/templates/admin-sidebar.tpl.php:42 msgid "Get more features!" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:67 msgid "Found a bug?" msgstr "Hibát észlelt?" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:68 msgid "Need Support?" msgstr "Támogatást igényel?" -#: admin/templates/admin-sidebar.tpl.php:70 -msgid "Quick Start Guide" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:80 +#, fuzzy +msgid "Browse the %1$sQuick Start Guide%2$s" msgstr "Gyors Útmutató" -#: admin/templates/admin-sidebar.tpl.php:80 -msgid "Documentation" -msgstr "Dokumentáció" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:90 +#, fuzzy +msgid "Read the full %1$sDocumentation%2$s." +msgstr "Teljes %s elolvasása" -#: admin/templates/admin-sidebar.tpl.php:91 +#: admin/templates/admin-sidebar.tpl.php:98 msgid "Get Help" msgstr "Kaphat segítséget" @@ -1171,11 +1253,11 @@ msgid "Thank you for using AWP Classifieds Plugin." msgstr "Köszönjük, hogy AWPCP-t használja!" #: admin/templates/admin-widget-modification-notice.tpl.php:3 +#, fuzzy msgid "" -"AWPCP 3.0 includes several modifications to the Search Ads, " -"Featured Ads and Latest Ads widgets. For " -"example, the Latest Ads widget can now be used in multiple sidebars. Also, " -"there is a new Widget to show Random Ads." +"AWPCP 3.0 includes several modifications to the Search Ads, Featured Ads and " +"Latest Ads widgets. For example, the Latest Ads widget can now be used in " +"multiple sidebars. Also, there is a new Widget to show Random Ads." msgstr "" "Az AWPCP 3.0-ban számos módosítást talál a Hirdetéskereső, " "feltüntetett hirdetések és Legújabb hirdetés to understand more about PHP and how to upgrade." msgstr "" -#: awpcp.php:200 +#: awpcp.php:198 msgid "" "AWP Classifieds Plugin installation is incomplete. Please {support_link}" "contact support{/support_link}." msgstr "" #. translators: %s is the title of the listing. -#: frontend/ad-functions.php:155 +#: frontend/ad-functions.php:159 #: includes/listings/class-listing-renewed-email-notifications.php:85 msgid "The ad \"%s\" has been successfully renewed." msgstr "" -#: frontend/ad-functions.php:189 frontend/page-renew-ad.php:160 +#: frontend/ad-functions.php:193 frontend/page-renew-ad.php:160 msgid "The Ad has been successfully renewed. New expiration date is %s." msgstr "" -#: frontend/ad-functions.php:194 frontend/page-renew-ad.php:152 +#: frontend/ad-functions.php:198 frontend/page-renew-ad.php:151 #: templates/admin/listings/quick-view-listing-admin-page.tpl.php:18 #: templates/admin/listings-media-center.tpl.php:6 #: templates/admin/view-listing-admin-page.tpl.php:14 msgid "Return to Listings" msgstr "Visszatérés a Listázásokhoz" -#: frontend/ad-functions.php:212 frontend/page-place-ad.php:151 +#: frontend/ad-functions.php:216 frontend/page-place-ad.php:154 msgid "" "You do not have permission to perform the function you are trying to " "perform. Access to this page has been denied" @@ -1319,11 +1401,11 @@ msgstr "" "Nincs engedélye végrehajtani ezt a feladatot. Az oldalhoz való hozzáférés " "megtagadva." -#: frontend/ad-functions.php:227 +#: frontend/ad-functions.php:231 msgid "The Ad has been deleted" msgstr "A hirdetés eltávolítva." -#: frontend/ad-functions.php:230 +#: frontend/ad-functions.php:234 msgid "" "Your Ad details and any photos you have uploaded have been deleted from the " "system" @@ -1331,18 +1413,18 @@ msgstr "" "Hirdetésének részletei, és az ön által feltöltött képek eltávolításra " "kerültek a rendszerből." -#: frontend/ad-functions.php:234 +#: frontend/ad-functions.php:238 #: includes/frontend/class-edit-listing-page.php:188 msgid "The specified Ad doesn't exists." msgstr "A hirdetés nem létezik." -#: frontend/ad-functions.php:236 +#: frontend/ad-functions.php:240 msgid "There was an error trying to delete the Ad. The Ad was not deleted." msgstr "" "A hirdetés eltávolítása során hiba történt. A hirdetés nem került " "eltávolításra" -#: frontend/ad-functions.php:239 +#: frontend/ad-functions.php:243 msgid "Problem encountered. Cannot complete request" msgstr "Problémába ütköztünk, a kérést nem tudtuk teljesíteni." @@ -1361,7 +1443,7 @@ msgid "" msgstr "" "Mivel nem választott böngészési kategóriát, minden kategóriájú listázást lát." -#: frontend/page-place-ad.php:74 +#: frontend/page-place-ad.php:75 #: includes/views/class-verify-transaction-exists-step-decorator.php:17 msgid "" "There was an error processing your Payment Request. Please try again or " @@ -1370,19 +1452,20 @@ msgstr "" "Hiba történt a Befizetési Kérése során. Kérjük próbálja újra, vagy lépjen " "kapcsolatba az adminnal." -#: frontend/page-place-ad.php:132 +#: frontend/page-place-ad.php:133 msgid "Please select a category." msgstr "Válasszon kategóriát" -#: frontend/page-place-ad.php:133 -msgid "Please select the Ad's owner." +#: frontend/page-place-ad.php:134 +#, fuzzy +msgid "Please select the Ad owner." msgstr "Válassza ki a hirdetés tulajdonosát" -#: frontend/page-place-ad.php:134 +#: frontend/page-place-ad.php:135 msgid "Please select a payment term." msgstr "Válasszon befizetést" -#: frontend/page-place-ad.php:165 frontend/page-renew-ad.php:87 +#: frontend/page-place-ad.php:168 frontend/page-renew-ad.php:86 msgid "" "You are trying to post an Ad using a transaction created for a different " "purpose. Please go back to the %s page.
If you think " @@ -1390,7 +1473,7 @@ msgid "" "transaction ID: %s" msgstr "" -#: frontend/page-place-ad.php:174 +#: frontend/page-place-ad.php:177 #: includes/frontend/class-submit-listing-page.php:291 msgid "" "You can't post an Ad at this time because the payment associated with this " @@ -1399,35 +1482,35 @@ msgstr "" "Nem tehet közzé hirdetést, mivel a tranzakcióhoz kapcsolódó befizetés " "sikertelen (az okokat tekintse meg lentebb)." -#: frontend/page-place-ad.php:256 +#: frontend/page-place-ad.php:259 #: includes/listings/class-payment-information-validator.php:88 msgid "You should select an owner for this Ad." msgstr "Válasszon hirdetéstulajdonost" -#: frontend/page-place-ad.php:260 frontend/page-renew-ad.php:197 +#: frontend/page-place-ad.php:263 frontend/page-renew-ad.php:199 #: includes/listings/class-payment-information-validator.php:64 #: includes/listings/class-payment-information-validator.php:73 msgid "You should choose one of the available Payment Terms." msgstr "Válasszon egyet az elérhető fizetési módok közül" -#: frontend/page-place-ad.php:264 +#: frontend/page-place-ad.php:267 #: includes/listings/class-payment-information-validator.php:75 msgid "" "The Payment Term you selected is not available for non-administrator users." msgstr "" "Az ön által kiválasztott fizetési mód csak adminisztrátoroknak elérhető." -#: frontend/page-place-ad.php:280 +#: frontend/page-place-ad.php:283 #: includes/listings/class-payment-information-validator.php:108 msgid "Ad Category field is required" msgstr "Kategória mező kitöltése szükséges" -#: frontend/page-place-ad.php:285 +#: frontend/page-place-ad.php:288 #: includes/listings/class-payment-information-validator.php:119 msgid "You cannot list your Ad in top level categories." msgstr "" -#: frontend/page-place-ad.php:291 +#: frontend/page-place-ad.php:294 #: includes/frontend/class-submit-listing-page.php:190 msgid "" "Hi, You need to be a registered user to post Ads in this website. Please use " @@ -1437,7 +1520,7 @@ msgstr "" "weblapon. Kérjük töltse ki az alábbi űrlapot hogy bejelentkezzen, vagy " "kattintson a regisztráció linkre" -#: frontend/page-place-ad.php:429 frontend/page-place-ad.php:836 +#: frontend/page-place-ad.php:432 frontend/page-place-ad.php:839 #: frontend/page-renew-ad.php:297 #: includes/frontend/class-order-submit-listing-section.php:119 msgid "" @@ -1447,7 +1530,7 @@ msgstr "Adminisztrátorként van bejelentkezve. A fizetési lépéseket átugorj #. translators: %s is an alphanumeric string that identifies a payment #. transaction. #. translators: %s the transaction id -#: frontend/page-place-ad.php:511 frontend/page-renew-ad.php:347 +#: frontend/page-place-ad.php:514 frontend/page-renew-ad.php:347 #: includes/frontend/class-submit-listing-page.php:333 #: includes/views/class-verify-payment-can-be-processed-step-decorator.php:18 msgid "" @@ -1459,7 +1542,7 @@ msgstr "" "kapcsolatba az adminisztrátorral, és közölje vele a következő tranzakció ID-" "t: %s" -#: frontend/page-place-ad.php:834 +#: frontend/page-place-ad.php:837 msgid "" "Your Ad details have been filled out in the form below. Make any changes " "needed and then resubmit the Ad to update it." @@ -1467,11 +1550,11 @@ msgstr "" "A hirdetésének részletei az alábbi űrlapon találhatók. Amennyiben szükséges, " "változtassa meg, és frissítse a hirdetést." -#: frontend/page-place-ad.php:838 +#: frontend/page-place-ad.php:841 msgid "Fill out the form below to post your classified ad." msgstr "" -#: frontend/page-place-ad.php:842 +#: frontend/page-place-ad.php:845 msgid "" "We found errors in the details you submitted. A detailed error message is " "shown in front or below each invalid field. Please fix the errors and submit " @@ -1481,11 +1564,11 @@ msgstr "" "minden hibás mezőnél. Kérjük javítsa ki a hibákat, és adja be az űrlapot " "ismét." -#: frontend/page-place-ad.php:861 +#: frontend/page-place-ad.php:864 msgid "Start & End Date" msgstr "Kezdeti és záródátum" -#: frontend/page-place-ad.php:863 +#: frontend/page-place-ad.php:866 #: includes/admin/import/class-csv-importer-columns.php:185 #: includes/admin/listings/class-listings-table-nav-handler.php:151 #: includes/form-fields/class-listing-form-fields.php:127 @@ -1493,7 +1576,7 @@ msgstr "Kezdeti és záródátum" msgid "Start Date" msgstr "Kezdeti dátum" -#: frontend/page-place-ad.php:865 +#: frontend/page-place-ad.php:868 #: includes/admin/import/class-csv-importer-columns.php:196 #: includes/admin/listings/class-listings-table-nav-handler.php:152 #: includes/form-fields/class-listing-form-fields.php:131 @@ -1501,7 +1584,7 @@ msgstr "Kezdeti dátum" msgid "End Date" msgstr "Befejezési dátum" -#: frontend/page-place-ad.php:973 +#: frontend/page-place-ad.php:976 msgid "" "Hi, Payment is required for posting Ads in this website and we couldn't find " "a Payment Transaction assigned to you. You can't post Ads this time. If you " @@ -1512,39 +1595,39 @@ msgstr "" "Ha úgy gondolja hiba történt, kérem elérhetőségeink valamelyikén lépjen " "kapcsolatba velünk. " -#: frontend/page-place-ad.php:1000 +#: frontend/page-place-ad.php:1003 msgid "" "You did not select a Payment Term. Please select a Payment Term for this Ad." msgstr "Nem választott fizetési módot, kérjük tegye meg!" -#: frontend/page-place-ad.php:1005 +#: frontend/page-place-ad.php:1008 msgid "Please enter a start date for the Ad." msgstr "Kérjük adjon meg egy indulási dátumot ehhez a hirdetéshez" -#: frontend/page-place-ad.php:1010 +#: frontend/page-place-ad.php:1013 msgid "Please enter an end date for the Ad." msgstr "érjük adjon meg egy záródátumot ehhez a hirdetéshez" -#: frontend/page-place-ad.php:1014 +#: frontend/page-place-ad.php:1017 #: includes/form-fields/class-form-fields-validator.php:71 msgid "The start date must occur before the end date." msgstr "Az indulási dátumnak a záródátum előtt kell lennie" -#: frontend/page-place-ad.php:1019 +#: frontend/page-place-ad.php:1022 msgid "You did not enter a title for your Ad" msgstr "Nem adott címet a hirdetésnek" -#: frontend/page-place-ad.php:1024 +#: frontend/page-place-ad.php:1027 msgid "" "You did not enter any text for your Ad. Please enter some text for your Ad." msgstr "Nem írt szöveget a hirdetéséhez, kérjük tegye meg!" -#: frontend/page-place-ad.php:1037 +#: frontend/page-place-ad.php:1040 msgid "" "You did not enter your website address. Your website address is required." msgstr "Nem adta meg az ön weboldalának címét. A webcím szükséges adat." -#: frontend/page-place-ad.php:1043 +#: frontend/page-place-ad.php:1046 msgid "" "Your website address is not properly formatted. Please make sure you have " "included the http:// part of your website address" @@ -1552,22 +1635,22 @@ msgstr "" "Az ön weboldalának címe nincs megfelelően megformázva. Ellenőrizze, hogy " "megadta-e weboldalának http:// részét." -#: frontend/page-place-ad.php:1048 +#: frontend/page-place-ad.php:1051 msgid "You did not enter your name. Your name is required." msgstr "Nem adta meg a nevét. A név megadása kötelező." -#: frontend/page-place-ad.php:1053 +#: frontend/page-place-ad.php:1056 msgid "You did not enter your email. Your email is required." msgstr "Nem adta meg az email címét. Email cím megadása kötelező." -#: frontend/page-place-ad.php:1058 frontend/page-reply-to-ad.php:160 +#: frontend/page-place-ad.php:1061 frontend/page-reply-to-ad.php:160 msgid "" "The email address you entered was not a valid email address. Please check " "for errors and try again." msgstr "" "Az ön által megadott email cím nem valós. Ellenőrizze, majd próbálja újra." -#: frontend/page-place-ad.php:1060 +#: frontend/page-place-ad.php:1063 msgid "" "The email address you entered is not allowed in this website. Please use an " "email address from one of the following domains: %s." @@ -1575,35 +1658,35 @@ msgstr "" "Az ön által megadott email cím nem engedélyezett ezen a weboldalon. Kérjük " "használjon egy email címet az alábbi domainok közül: %s" -#: frontend/page-place-ad.php:1071 +#: frontend/page-place-ad.php:1074 msgid "You did not enter your phone number. Your phone number is required." msgstr "Nem adta meg a telefonszámát. Telefonszám megadása kötelező." -#: frontend/page-place-ad.php:1089 -#: includes/helpers/widgets/multiple-region-selector.php:124 +#: frontend/page-place-ad.php:1092 +#: includes/helpers/widgets/multiple-region-selector.php:144 msgid "You did not enter your country. Your country is required." msgstr "Nem adta meg országát. Ország megadása kötelező." -#: frontend/page-place-ad.php:1098 -#: includes/helpers/widgets/multiple-region-selector.php:125 +#: frontend/page-place-ad.php:1101 +#: includes/helpers/widgets/multiple-region-selector.php:145 msgid "You did not enter your state. Your state is required." msgstr "Nem adta meg államát. Állam megadása kötelező." -#: frontend/page-place-ad.php:1107 -#: includes/helpers/widgets/multiple-region-selector.php:127 +#: frontend/page-place-ad.php:1110 +#: includes/helpers/widgets/multiple-region-selector.php:147 msgid "You did not enter your city. Your city is required." msgstr "Nem adta meg városát. Város megadása kötelező." -#: frontend/page-place-ad.php:1116 -#: includes/helpers/widgets/multiple-region-selector.php:126 +#: frontend/page-place-ad.php:1119 +#: includes/helpers/widgets/multiple-region-selector.php:146 msgid "You did not enter your county/village. Your county/village is required." msgstr "Nem adott meg megyét/települést. Megye/település megadása kötelező." -#: frontend/page-place-ad.php:1123 +#: frontend/page-place-ad.php:1126 msgid "You did not enter the price of your item. The item price is required." msgstr "Nem adta meg a termék árát. Ár megadása kötelező." -#: frontend/page-place-ad.php:1129 +#: frontend/page-place-ad.php:1132 msgid "" "You have entered an invalid item price. Make sure your price contains " "numbers only. Please do not include currency symbols." @@ -1611,18 +1694,18 @@ msgstr "" "Valótlan termékárat adott meg. Kérjük csak számokkal, pénznem nélkül adja " "meg az árat." -#: frontend/page-place-ad.php:1147 +#: frontend/page-place-ad.php:1150 msgid "You did not accept the terms of service" msgstr "Nem fogadta el a felhasználási feltételeket" -#: frontend/page-place-ad.php:1163 +#: frontend/page-place-ad.php:1166 msgid "" "Your Ad was flagged as spam. Please contact the administrator of this site." msgstr "" "Hirdetése spamként lett megjelölve. Lépjen kapcsolatba a weboldal " "adminisztrátorával." -#: frontend/page-place-ad.php:1354 +#: frontend/page-place-ad.php:1357 msgid "" "We were unable to find a Payment Transaction assigned to this operation. No " "images can be added at this time." @@ -1630,28 +1713,28 @@ msgstr "" "Nem találtunk fizetési tranzakciót hozzárendelve a folyamathoz. Jelenleg nem " "lehet képeket hozzáadni." -#: frontend/page-place-ad.php:1361 +#: frontend/page-place-ad.php:1364 msgid "The specified Ad doesn't exists. No images can be added at this time." msgstr "A megadott hirdetés nem létezik. Jelenleg nem adhatók hozzá képek." -#: frontend/page-place-ad.php:1440 frontend/page-place-ad.php:1492 +#: frontend/page-place-ad.php:1443 frontend/page-place-ad.php:1495 #: includes/frontend/class-submit-listing-page.php:393 msgid "" "We were unable to find a Payment Transaction assigned to this operation." msgstr "Nem találtunk fizetési tranzakciót hozzárendelve a folyamathoz. " -#: frontend/page-place-ad.php:1447 frontend/page-place-ad.php:1499 +#: frontend/page-place-ad.php:1450 frontend/page-place-ad.php:1502 #: frontend/page-renew-ad.php:408 #: includes/frontend/class-submit-listing-page.php:400 msgid "The Ad associated with this transaction doesn't exists." msgstr "A tranzakcióhoz kapcsolódó hirdetés nem létezik." -#: frontend/page-renew-ad.php:73 +#: frontend/page-renew-ad.php:72 #, fuzzy msgid "That Ad doesn't need to be renewed." msgstr "A megadott hirdetést nem szükséges megújítani" -#: frontend/page-renew-ad.php:78 +#: frontend/page-renew-ad.php:77 msgid "" "There was an error trying to renew your Ad. The URL is not valid. Please " "contact the Administrator of this site for further assistance." @@ -1659,7 +1742,7 @@ msgstr "" "Hiba történt a hirdetés megújítása során: az URL nem valós. További " "segítségért lépjen kapcsolatba az adminisztrátorral." -#: frontend/page-renew-ad.php:94 +#: frontend/page-renew-ad.php:93 msgid "" "You can't renew your Ad at this time because the payment associated with " "this transaction failed (see reasons below)." @@ -1667,7 +1750,7 @@ msgstr "" "Nem tudjuk megújítani a hirdetést, mivel a tranzakcióhoz kapcsolódó " "befizetés sikertelen (az okokat tekintse meg lentebb)." -#: frontend/page-renew-ad.php:117 +#: frontend/page-renew-ad.php:116 msgid "" "The Ad was posted under a Payment Term that no longer exists or is disabled. " "The Ad can't be renewed." @@ -1675,11 +1758,11 @@ msgstr "" "A hirdetés nem létező vagy kikapcsolt fizetési móddal rendelkezik, ezért nem " "lehet megújítani" -#: frontend/page-renew-ad.php:154 +#: frontend/page-renew-ad.php:153 msgid "You can see your Ad here" msgstr "Itt láthatja a hirdetését" -#: frontend/page-renew-ad.php:200 +#: frontend/page-renew-ad.php:201 msgid "" "You are trying to renew your Ad using a different Payment Term. That's not " "allowed." @@ -1792,7 +1875,7 @@ msgstr "Eladó" msgid "Visit Website" msgstr "Weboldal meglátogatása" -#: frontend/placeholders.php:655 includes/functions/listings.php:405 +#: frontend/placeholders.php:655 includes/functions/listings.php:415 msgid "Location" msgstr "Helyszín" @@ -1864,30 +1947,30 @@ msgstr "" "Az ügyfél fizetése során probléma merült fel. A tranzakció részleteit " "lentebb láthatja." -#: frontend/templates/email-abort-payment-admin.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:12 msgid "User Name" msgstr "Felhasználónév" -#: frontend/templates/email-abort-payment-admin.tpl.php:10 +#: frontend/templates/email-abort-payment-admin.tpl.php:13 msgid "User Login" msgstr "Felhasználó bejelentkezés" -#: frontend/templates/email-abort-payment-admin.tpl.php:11 +#: frontend/templates/email-abort-payment-admin.tpl.php:14 msgid "User Email" msgstr "Felhasználói e-mail" -#: frontend/templates/email-abort-payment-admin.tpl.php:15 +#: frontend/templates/email-abort-payment-admin.tpl.php:18 #: includes/admin/import/class-csv-importer-columns.php:219 msgid "Payment Term Type" msgstr "Fizetési feltétel mód" -#: frontend/templates/email-abort-payment-admin.tpl.php:16 +#: frontend/templates/email-abort-payment-admin.tpl.php:19 #: includes/admin/import/class-csv-importer-columns.php:207 msgid "Payment Term ID" msgstr "Fizetési feltétel azonosító ID" -#: frontend/templates/email-abort-payment-admin.tpl.php:17 -#: frontend/templates/email-abort-payment-user.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:20 +#: frontend/templates/email-abort-payment-user.tpl.php:12 msgid "Payment transaction ID" msgstr "Fizetési Tranzakció azonosító ID" @@ -1897,11 +1980,11 @@ msgid "Additional Details" msgstr "További adatok" #: frontend/templates/email-ad-enabled-user.tpl.php:3 -#: frontend/templates/email-send-ad-access-key.tpl.php:1 +#: frontend/templates/email-send-ad-access-key.tpl.php:3 msgid "Hello %s," msgstr "Hello %s," -#: frontend/templates/email-ad-enabled-user.tpl.php:6 +#: frontend/templates/email-ad-enabled-user.tpl.php:8 msgid "" "Your Ad \"%1$s\" was recently approved by the admin. You should be able to " "see the Ad published here: %2$s." @@ -1965,8 +2048,8 @@ msgstr "Hirdetése frissítése sikeres. Hirdetési információk alább olvasha msgid "Ad Information" msgstr "Hirdetési információk" -#: frontend/templates/email-ad-updated-user.tpl.php:18 -#: frontend/templates/email-place-ad-success-user.tpl.php:45 +#: frontend/templates/email-ad-updated-user.tpl.php:20 +#: frontend/templates/email-place-ad-success-user.tpl.php:47 msgid "" "If you have questions about your listing contact %s. Thank you for your " "business." @@ -2001,21 +2084,22 @@ msgid "The next link will take you to a page where you can edit the listing:" msgstr "" "A következő link egy olyan oldalra viszi, ahol szerkesztheti a listázást." -#: frontend/templates/email-send-ad-access-key.tpl.php:3 +#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#, fuzzy msgid "" -"Below you will find the access key for your Ad \"%s\" associated to the " +"Below you will find the access key for your Ad \"%s\" associated with the " "email address %s." msgstr "" "Ebben az emailben taláható a \"%s\" hirdetés hozzáférési kulcsa a " "hozzárendelt %s email címhez." -#: frontend/templates/email-send-ad-access-key.tpl.php:6 +#: frontend/templates/email-send-ad-access-key.tpl.php:10 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:13 #: templates/admin/view-listing-admin-page.tpl.php:11 msgid "Access Key" msgstr "Hozzáférési kulcs" -#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#: frontend/templates/email-send-ad-access-key.tpl.php:11 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:14 msgid "Edit Link:" msgstr "" @@ -2052,6 +2136,12 @@ msgstr "Elfelejtett jelszó?" msgid "Classifieds Menu" msgstr "Hirdetések menü" +#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 +#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 +#, fuzzy +msgid "Complete Payment" +msgstr "Fizetés befejezése" + #: frontend/templates/page-buy-credits-final-step.tpl.php:7 msgid "" "The credit in your account can be used to pay for posting your Ads. You can " @@ -2068,9 +2158,9 @@ msgstr "Petákcsomag válaszása" #: frontend/templates/page-buy-credits-select-credit-plan-step.tpl.php:18 #: frontend/templates/page-renew-ad-order-step.tpl.php:27 -#: frontend/templates/page-reply-to-ad.tpl.php:43 +#: frontend/templates/page-reply-to-ad.tpl.php:48 #: frontend/templates/payments-billing-form.tpl.php:124 -#: frontend/templates/payments-checkout-page.tpl.php:28 +#: frontend/templates/payments-checkout-page.tpl.php:27 #: frontend/templates/payments-payment-completed-page.tpl.php:18 msgid "Continue" msgstr "Folytatás" @@ -2100,27 +2190,27 @@ msgstr "Hozzáférési kulcs újraküldése" msgid "Enter Ad Details" msgstr "Adja meg a hirdetés részleteit" -#: frontend/templates/page-place-ad-details-step.tpl.php:35 +#: frontend/templates/page-place-ad-details-step.tpl.php:36 #: includes/admin/import/class-csv-importer-columns.php:79 #: includes/admin/listings/class-listing-owner-metabox.php:59 msgid "Ad Owner" msgstr "Hirdetéstulajdonos" -#: frontend/templates/page-place-ad-details-step.tpl.php:41 -#: frontend/templates/page-place-ad-order-step.tpl.php:60 +#: frontend/templates/page-place-ad-details-step.tpl.php:43 +#: frontend/templates/page-place-ad-order-step.tpl.php:61 msgid "User" msgstr "Felhasználó" -#: frontend/templates/page-place-ad-details-step.tpl.php:42 -#: frontend/templates/page-place-ad-order-step.tpl.php:61 +#: frontend/templates/page-place-ad-details-step.tpl.php:44 +#: frontend/templates/page-place-ad-order-step.tpl.php:62 msgid "Select an User owner for this Ad" msgstr "Válasszon hirdetéstulajdonost" -#: frontend/templates/page-place-ad-details-step.tpl.php:77 +#: frontend/templates/page-place-ad-details-step.tpl.php:81 msgid "Add Details and Contact Information" msgstr "Kapcsolati Információk és részletek hozzáadása" -#: frontend/templates/page-place-ad-order-step.tpl.php:73 +#: frontend/templates/page-place-ad-order-step.tpl.php:75 msgid "Please select a payment term for your Ad" msgstr "Válasszon fizetési feltételt a hirdetéséhez" @@ -2163,7 +2253,12 @@ msgstr "" msgid "Your Ad has been renewed" msgstr " A hirdetése sikeresen megújítva." -#: frontend/templates/page-renew-ad.tpl.php:15 +#: frontend/templates/page-renew-ad-order-step.tpl.php:6 +#, fuzzy +msgid "Select Payment Term" +msgstr "Fizetési feltétel választása" + +#: frontend/templates/page-renew-ad.tpl.php:13 msgid "" "Please click the payment button below to proceed with Payment for your Ad " "renewal. You will be asked to pay %s." @@ -2171,19 +2266,19 @@ msgstr "" "Kattintson az alább található fizetés gombra, hogy befizethesse hirdetésének " "megújítását. Ár %s" -#: frontend/templates/page-reply-to-ad.tpl.php:7 +#: frontend/templates/page-reply-to-ad.tpl.php:10 msgid "You are responding to Ad: %s." msgstr "Ön a %s hirdetésre válaszol" -#: frontend/templates/page-reply-to-ad.tpl.php:18 +#: frontend/templates/page-reply-to-ad.tpl.php:24 msgid "Your name" msgstr "név" -#: frontend/templates/page-reply-to-ad.tpl.php:24 +#: frontend/templates/page-reply-to-ad.tpl.php:30 msgid "Your email address" msgstr "email cím" -#: frontend/templates/page-reply-to-ad.tpl.php:30 +#: frontend/templates/page-reply-to-ad.tpl.php:36 msgid "Your message" msgstr "üzenet" @@ -2191,19 +2286,19 @@ msgstr "üzenet" msgid "Search for ads containing this word or phrase" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:37 +#: frontend/templates/page-search-ads.tpl.php:41 msgid "For ads posted by" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:39 +#: frontend/templates/page-search-ads.tpl.php:43 msgid "All Users" msgstr "Összes felhasználó" -#: frontend/templates/page-search-ads.tpl.php:48 +#: frontend/templates/page-search-ads.tpl.php:55 msgid "Min price" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:52 +#: frontend/templates/page-search-ads.tpl.php:59 msgid "Max price" msgstr "" @@ -2211,9 +2306,17 @@ msgstr "" msgid "Pay With 2Checkout" msgstr "Fizetés 2Checkouttal" -#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:791 -#: includes/admin/class-listings-personal-data-provider.php:115 -#: includes/admin/class-listings-personal-data-provider.php:125 +#: frontend/templates/payments-billing-form.tpl.php:1 +#, fuzzy +msgid "" +"Please fill in the billing information in the form below to place your " +"payment." +msgstr "" +"Kérjük töltse ki a számlázási információkat hogy elhelyezhesse kifizetését" + +#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:797 +#: includes/admin/class-listings-personal-data-provider.php:117 +#: includes/admin/class-listings-personal-data-provider.php:127 #: includes/admin/import/class-csv-importer-columns.php:230 msgid "Country" msgstr "Ország" @@ -2251,15 +2354,15 @@ msgid "Address Line 2" msgstr "Cím 2" #: frontend/templates/payments-billing-form.tpl.php:92 -#: includes/admin/class-listings-personal-data-provider.php:116 -#: includes/admin/class-listings-personal-data-provider.php:126 +#: includes/admin/class-listings-personal-data-provider.php:118 +#: includes/admin/class-listings-personal-data-provider.php:128 #: includes/admin/import/class-csv-importer-columns.php:238 msgid "State" msgstr "Állam/megye" -#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:811 -#: includes/admin/class-listings-personal-data-provider.php:117 -#: includes/admin/class-listings-personal-data-provider.php:127 +#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:817 +#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:129 #: includes/admin/import/class-csv-importer-columns.php:260 msgid "City" msgstr "Város" @@ -2273,14 +2376,55 @@ msgstr "Irányítószám" msgid "Email" msgstr "E-mail" +#: frontend/templates/payments-credit-plans-table.tpl.php:7 +#, fuzzy +msgid "" +"You can additionally purchase a Credit Plan to add credit to your account. " +"If you select to pay using credits, the price of the selected payment term " +"will be deducted from your account balance after you have completed payment." +msgstr "" +"Emellett kredit-csomagot is vásárolhat. Amennyiben kredittel fizet, az " +"levonásra kerül fiókjából fizetés után." + #: frontend/templates/payments-credit-plans-table.tpl.php:22 msgid "No credit plans available." msgstr "Nincs elérhető kredit csomag." +#: frontend/templates/payments-credit-plans-table.tpl.php:51 +#, fuzzy +msgid "clear selection" +msgstr "kiválasztás törlése" + +#: frontend/templates/payments-payment-completed-page.tpl.php:2 +#, fuzzy +msgid "Transaction Details" +msgstr "Tranzakció részletek" + +#: frontend/templates/payments-payment-page.tpl.php:3 +#, fuzzy +msgid "You are about to pay for the following items." +msgstr "Az alábbi termékeket fizeti ki." + +#: frontend/templates/payments-payment-page.tpl.php:5 +#, fuzzy +msgid "Payment Terms" +msgstr "Fizetési feltételek" + #: frontend/templates/payments-paypal-payment-button.tpl.php:30 msgid "Make payments with PayPal - it's fast, free and secure!" msgstr "Fizessen PayPallal - gyors, ingyenes és biztonságos!" +#: frontend/templates/payments-transaction-items-table.tpl.php:4 +#: frontend/templates/payments-transaction-items-table.tpl.php:13 +#, fuzzy +msgid "Item" +msgstr "Termék" + +#: frontend/templates/payments-transaction-items-table.tpl.php:34 +#, fuzzy +msgid "Total Amount (credit)" +msgstr "Teljes összeg (kredit)" + #: frontend/templates/widget-categories-form.tpl.php:9 msgid "Hide empty categories." msgstr "Üres kategóriák elrejtése" @@ -2352,7 +2496,7 @@ msgstr "Kulcsszó mező megjelenítése?" msgid "Show Posted By field?" msgstr "Feladó mező megjelenítése?" -#: frontend/templates/widget-search-form.tpl.php:28 +#: frontend/templates/widget-search-form.tpl.php:32 msgid "Show Category field?" msgstr "Kategória mező megjelenítése?" @@ -2368,23 +2512,23 @@ msgstr "AWPCP kategóriák" msgid "Ad Categories" msgstr "Hirdetéskategóriák" -#: frontend/widget-latest-ads.php:13 +#: frontend/widget-latest-ads.php:17 msgid "AWPCP Latest Ads" msgstr "AWPCP legutóbbi hirdetések" -#: frontend/widget-latest-ads.php:14 +#: frontend/widget-latest-ads.php:18 msgid "Displays a list of latest Ads" msgstr "Legutóbbi hirdetések megjelenítése" -#: frontend/widget-latest-ads.php:30 +#: frontend/widget-latest-ads.php:34 msgid "Latest Ads" msgstr "Legutóbbi hirdetések" -#: frontend/widget-latest-ads.php:72 +#: frontend/widget-latest-ads.php:76 msgid "There are currently no ads to show." msgstr "" -#: frontend/widget-latest-ads.php:114 +#: frontend/widget-latest-ads.php:118 msgid "Read more" msgstr "Több" @@ -2416,67 +2560,67 @@ msgstr "Minden kapcsolat-név" msgid "Select Option" msgstr "Lehetőség választása" -#: frontend/widget-search.php:105 +#: frontend/widget-search.php:106 msgid "Search by keyword" msgstr "Kulcsszó szerinti keresés" -#: frontend/widget-search.php:119 +#: frontend/widget-search.php:121 msgid "Search by Category" msgstr "Kategória szerinti keresés" -#: frontend/widget-search.php:137 +#: frontend/widget-search.php:141 msgid "Search" msgstr "Keresés" -#: functions.php:427 +#: functions.php:431 msgid "%s ago" msgstr "%s telt el" -#: functions.php:604 +#: functions.php:610 msgid "Ads per page:" msgstr "" -#: functions.php:621 +#: functions.php:627 msgid "Page {current_page_number} of {number_of_pages}" msgstr "" -#: functions.php:732 +#: functions.php:738 msgid "None" msgstr "Egyik sem" -#: functions.php:792 +#: functions.php:798 msgid "separate countries by commas" msgstr "Országok elválasztása vesszővel" -#: functions.php:801 +#: functions.php:807 msgid "State/Province" msgstr "Állam/Tartomány" -#: functions.php:802 +#: functions.php:808 msgid "separate states by commas" msgstr "államok elválasztása vesszővel" -#: functions.php:812 +#: functions.php:818 msgid "separate cities by commas" msgstr "városok elválasztása vesszővel" -#: functions.php:821 +#: functions.php:827 msgid "County/Village/Other" msgstr "Megye/Település/Egyéb" -#: functions.php:822 +#: functions.php:828 msgid "separate counties by commas" msgstr "megyék elválasztása vesszővel" -#: functions.php:1036 +#: functions.php:1050 msgid "-- Choose a Country --" msgstr "-- Válasszon egy Országot" -#: functions.php:1507 templates/admin/main-classifieds-admin-page.tpl.php:58 +#: functions.php:1537 templates/admin/main-classifieds-admin-page.tpl.php:58 msgid "Free" msgstr "Ingyenes" -#: functions.php:1852 templates/components/media-center.tpl.php:14 +#: functions.php:1893 templates/components/media-center.tpl.php:14 msgid "" "The images or files with pale red background have been rejected by an " "administrator user. Likewise, files with a pale yellow background are " @@ -2488,7 +2632,7 @@ msgstr "" "elfogadásra várnak vagy elutasításra kerültek, nem jelenhetnek meg a " "hirdetésben." -#: functions.php:1871 +#: functions.php:1912 msgid "" "This version of AWPCP %1$s module is not compatible with AWPCP version %2$s. " "Please get AWPCP %1$s %3$s or newer!" @@ -2496,55 +2640,55 @@ msgstr "" "Az AWPCP %1$s modul ez a verziója nem kompatibilis az AWPCP verzió %2$s-sel. " "Kérjük szerezze be az AWPCP %1$s %3$s vagy újabbat." -#: functions.php:1873 +#: functions.php:1914 msgid "Error" msgstr "Hiba" -#: functions.php:2231 +#: functions.php:2287 msgid "No errors." msgstr "Nincsenek hibák." -#: functions.php:2232 +#: functions.php:2288 msgid "The file is larger than upload_max_filesize." msgstr "A fájl nagyobb mint az upload_max_filesize." -#: functions.php:2233 +#: functions.php:2289 msgid "The file is larger than form MAX_FILE_SIZE." msgstr " fájl nagyom mint a MAX_FILE_SIZE." -#: functions.php:2234 +#: functions.php:2290 msgid "The file was only partially uploaded." msgstr "A fájlnak csak egy részét sikerült feltölteni." -#: functions.php:2235 +#: functions.php:2291 msgid "No file was uploaded." msgstr "Nincs feltöltött fájl." -#: functions.php:2236 +#: functions.php:2292 msgid "Missing temporary directory." msgstr "Hiányzó átmeneti könyvtár." -#: functions.php:2237 +#: functions.php:2293 msgid "Can't write file to disk." msgstr "Nem írható a fájl a lemezre." -#: functions.php:2238 +#: functions.php:2294 msgid "The file upload was stopped by extension." msgstr "Egy bővítmény megszakította a fájl feltöltést." -#: functions.php:2476 +#: functions.php:2536 msgid "Your Ad \"%s\" has been approved" msgstr "Az \"%s\" hirdetése elfogadva " -#: functions.php:2499 +#: functions.php:2559 msgid "Your Ad \"%s\" has been successfully updated" msgstr "Az Ön hirdetése \"%s\" sikeresen frissítve" -#: functions.php:2521 +#: functions.php:2581 msgid "Images on Ad \"%s\" are awaiting approval" msgstr "Képek az ön \"%s\" hirdetésében elbírálásra várnak" -#: functions.php:2523 +#: functions.php:2583 msgid "" "Images on Ad \"%s\" are awaiting approval. You can approve the images going " "to the Manage Images section for that Ad and clicking the \"Enable\" button " @@ -2554,13 +2698,13 @@ msgstr "" "Kezelése szekcióban, minden képen az \"Bekapcsolás\" gombra kattintva. " "Kattintson ide a folytatáshoz: %s." -#: functions.php:2526 +#: functions.php:2586 msgid "The Ad \"%s\" is awaiting approval" msgstr "\"%s\" hirdetés elbírálásra vár." #. translators: %1$s is the listing title. %2$s is the URL for managing #. listing. -#: functions.php:2529 includes/functions/notifications.php:157 +#: functions.php:2589 includes/functions/notifications.php:156 msgid "" "The Ad \"%1$s\" is awaiting approval. You can approve the Ad going to the " "Classified edit section and clicking the \"Publish\" button. Click here to " @@ -2568,7 +2712,7 @@ msgid "" msgstr "" #. translators: %s is the URL for managing listing images. -#: functions.php:2536 includes/functions/notifications.php:165 +#: functions.php:2596 includes/functions/notifications.php:164 msgid "" "Additionally, You can approve the images going to the Manage Images section " "for that Ad and clicking the \"Enable\" button below each image. Click here " @@ -2577,27 +2721,27 @@ msgstr "" "Elfogadhatja a képeket a Képek Kezelése szekcióban, minden kép alatt a " "\"Bekapcsolás\" gombra kattintva. Kattintson ide a folytatáshoz: %s." -#: functions.php:3068 +#: functions.php:3123 msgid "Email sent %s." msgstr "Email elküldve %s." -#: functions.php:3199 +#: functions.php:3254 msgid "Not Installed" msgstr "Nem telepített" -#: functions.php:3203 +#: functions.php:3258 msgid "Installed" msgstr "Telepítve" -#: functions.php:3211 +#: functions.php:3266 msgid "SSL Support: Yes." msgstr "" -#: functions.php:3213 +#: functions.php:3268 msgid "SSL Support: No." msgstr "" -#: functions.php:3216 +#: functions.php:3271 msgid "OpenSSL version:" msgstr "" @@ -2617,58 +2761,58 @@ msgstr "" msgid "Search for listings matching" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:110 +#: includes/admin/class-listings-personal-data-provider.php:112 msgid "Classified ID" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:111 +#: includes/admin/class-listings-personal-data-provider.php:113 msgid "Contact Name" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:112 +#: includes/admin/class-listings-personal-data-provider.php:114 msgid "Contact Phone Number" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:113 +#: includes/admin/class-listings-personal-data-provider.php:115 msgid "Contact Phone Number Digits" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:114 +#: includes/admin/class-listings-personal-data-provider.php:116 msgid "Contact Email" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:118 -#: includes/admin/class-listings-personal-data-provider.php:128 +#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:130 #: includes/admin/import/class-csv-importer-columns.php:249 msgid "County" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:121 msgid "Website URL" msgstr "Weboldal URL" -#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:122 #: includes/admin/class-payment-personal-data-provider.php:47 msgid "Payer Email" msgstr "Fizető E-mail" -#: includes/admin/class-listings-personal-data-provider.php:121 +#: includes/admin/class-listings-personal-data-provider.php:123 msgid "Author IP" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:132 +#: includes/admin/class-listings-personal-data-provider.php:134 msgid "URL" msgstr "URL" -#: includes/admin/class-listings-personal-data-provider.php:146 +#: includes/admin/class-listings-personal-data-provider.php:148 msgid "Classifieds Listings" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:157 +#: includes/admin/class-listings-personal-data-provider.php:159 msgid "Classifieds Media" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:218 +#: includes/admin/class-listings-personal-data-provider.php:220 msgid "" "An unknown error occurred while trying to delete information for classified " "{listing_id}." @@ -2689,7 +2833,7 @@ msgid "Contact Address" msgstr "" #: includes/admin/class-user-personal-data-provider.php:55 -#: includes/settings/class-display-settings.php:476 +#: includes/settings/class-display-settings.php:475 msgid "Contact Phone" msgstr "" @@ -2787,8 +2931,8 @@ msgid "" msgstr "" #: includes/admin/import/class-importer-form-steps.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:17 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:88 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:14 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:80 msgid "Upload Source Files" msgstr "" @@ -2797,12 +2941,12 @@ msgid "Configuration" msgstr "" #: includes/admin/import/class-importer-form-steps.php:29 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:173 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:176 msgid "Import" msgstr "Importálás" #: includes/admin/import/class-importer-form-steps.php:32 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:172 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:175 msgid "Test Import" msgstr "Importálás tesztelése" @@ -2849,7 +2993,7 @@ msgstr[0] "" msgstr[1] "" #: includes/admin/listings/class-listing-owner-metabox.php:62 -#: templates/frontend/order-submit-listing-section.tpl.php:45 +#: templates/frontend/order-submit-listing-section.tpl.php:42 msgid "Please select a user" msgstr "Kérem, válasszon felhasználót" @@ -3282,44 +3426,44 @@ msgstr "XML oldaltérkép" msgid "ZIP Code Search Module" msgstr "ZIP kód kereső modul" -#: includes/class-awpcp.php:1445 +#: includes/class-awpcp.php:1436 msgid "This field is required." msgstr "A mező kitöltése szükséges" -#: includes/class-awpcp.php:1446 +#: includes/class-awpcp.php:1437 #: includes/form-fields/class-form-fields-validator.php:101 #: includes/frontend/class-edit-listing-page.php:273 #: includes/frontend/class-edit-listing-page.php:350 -#: includes/settings/class-payment-general-settings.php:158 +#: includes/settings/class-payment-general-settings.php:157 msgid "Please enter a valid email address." msgstr "Adjunk meg egy valós email címet." -#: includes/class-awpcp.php:1447 includes/class-awpcp.php:1448 +#: includes/class-awpcp.php:1438 includes/class-awpcp.php:1439 msgid "Please enter a valid URL." msgstr "Kérjük írjon be egy érvényes URL-t." -#: includes/class-awpcp.php:1449 +#: includes/class-awpcp.php:1440 msgid "Please enter a valid number." msgstr "Kérjük érvényes számot írjon be." -#: includes/class-awpcp.php:1450 +#: includes/class-awpcp.php:1441 msgid "Please enter a valid amount." msgstr "Kérjük érvényes mennyiséget adjon meg." -#: includes/class-awpcp.php:1451 +#: includes/class-awpcp.php:1442 msgid "" "You have reached the maximum allowed categories for the selected fee plan." msgstr "" -#: includes/class-awpcp.php:1470 +#: includes/class-awpcp.php:1461 msgid "There are files currently being uploaded." msgstr "Folyamatban lévő fájlfeltöltés." -#: includes/class-awpcp.php:1471 +#: includes/class-awpcp.php:1462 msgid "There are files pending to be uploaded." msgstr "Fájlok várnak feltöltésre." -#: includes/class-awpcp.php:1472 +#: includes/class-awpcp.php:1463 msgid "You haven't uploaded any images or files." msgstr "Nem töltöttél fel semmit." @@ -3373,23 +3517,23 @@ msgstr "" "A licenc érvényes de már aktív egy másik oldalon.További " "segítségért lépjen kapcsolatba az ügyfélszolgálattal " -#: includes/class-listings-api.php:106 includes/class-listings-api.php:306 +#: includes/class-listings-api.php:106 includes/class-listings-api.php:310 msgid "" "There was an unexpected error trying to save the listing details. Please try " "again or contact an administrator." msgstr "" -#: includes/class-listings-api.php:197 +#: includes/class-listings-api.php:199 msgid "" "To avoid overwritting existing metadata, use fill_default_listing_metadata() " "instead." msgstr "" -#: includes/class-listings-api.php:302 +#: includes/class-listings-api.php:306 msgid "There was an error trying to save the listing details:" msgstr "" -#: includes/class-listings-api.php:730 +#: includes/class-listings-api.php:734 msgid "" "If you have uploaded images your images will not show up until an admin has " "approved them." @@ -3431,19 +3575,19 @@ msgid "" "customer support with a copy of your file." msgstr "" -#: includes/credit-plan.php:109 includes/payment-term.php:133 +#: includes/credit-plan.php:114 includes/payment-term.php:133 msgid "The name of the plan is required." msgstr "A terv nevének megadása kötelező." -#: includes/credit-plan.php:112 includes/payment-term.php:151 +#: includes/credit-plan.php:117 includes/payment-term.php:151 msgid "The number of credits must be greater than zero." msgstr "A kreditek számának nagyobbnak kell lennie mint nulla." -#: includes/credit-plan.php:115 +#: includes/credit-plan.php:120 msgid "The price must be greater or equal than zero." msgstr "Az árnak nagyobbnak, vagy egyenlőnek kell lennie nullával." -#: includes/credit-plan.php:153 +#: includes/credit-plan.php:158 msgid "The Credit Plan doesn't exist." msgstr "A Kredit Terv nem létezik." @@ -3529,7 +3673,7 @@ msgstr "" msgid "Please read and accept the Terms of Service." msgstr "" -#: includes/frontend/class-captcha.php:70 +#: includes/frontend/class-captcha.php:77 msgid "" "An unknown error ocurred trying to validate the answer to the CAPTCHA " "challenge." @@ -3547,13 +3691,13 @@ msgid "" "allowed to submit classifieds." msgstr "" -#: includes/frontend/class-default-captcha-provider.php:59 +#: includes/frontend/class-default-captcha-provider.php:76 msgid "" "You did not solve the math problem. Please solve the math problem to proceed." msgstr "" "Nem oldotta meg a matematikai feladatot. Kérjük oldja meg a folytatáshoz." -#: includes/frontend/class-default-captcha-provider.php:64 +#: includes/frontend/class-default-captcha-provider.php:81 msgid "Your solution to the math problem was incorrect. Please try again." msgstr "Az ön matematikai megoldása helytelen. Kérjük próbálja meg újra." @@ -3702,15 +3846,15 @@ msgstr "" #. translators: %s will become an A HTML tag pointing to reCAPTCHA admin #. console. -#: includes/frontend/class-recaptcha-provider.php:47 +#: includes/frontend/class-recaptcha-provider.php:68 msgid "To use reCAPTCHA you must get an API key from %s." msgstr "reCAPTCHA használatához API kulcsra lesz szükséges innen: %s." -#: includes/frontend/class-recaptcha-provider.php:85 +#: includes/frontend/class-recaptcha-provider.php:106 msgid "Your answers couldn't be verified by the reCAPTCHA server." msgstr "Az ön válaszait nem tudta leellenőrizni a reCAPTCHA szerver." -#: includes/frontend/class-recaptcha-v2.php:51 +#: includes/frontend/class-recaptcha-v2.php:78 msgid "" "There was an error trying to verify the reCAPTCHA answer. " msgstr "Hiba történt a reCAPTCHA válasz ellenőrzésekor. " @@ -3724,8 +3868,8 @@ msgid "Login/Registration" msgstr "Belépés/Regisztráció" #: includes/frontend/class-submit-listing-form-steps.php:48 -#: includes/ui/class-category-selector.php:125 -#: templates/components/category-selector.tpl.php:16 +#: includes/ui/class-category-selector.php:147 +#: templates/components/category-selector.tpl.php:15 msgid "Select a Category" msgstr "Kategória kiválasztása" @@ -3871,12 +4015,12 @@ msgstr "%s fájl nem mozgatható a célkönyvtárba." msgid "Could not create resized versions of image %s." msgstr "%s képnek nem lehet átméretezett verzióit létrehozni." -#: includes/functions/format.php:67 +#: includes/functions/format.php:50 msgid "Classifieds Management System" msgstr "Hirdetés Kezelő Rendszer" #. translators: example: and -#: includes/functions/format.php:84 +#: includes/functions/format.php:67 msgid " and " msgstr " és " @@ -3928,22 +4072,22 @@ msgstr "" msgid "Top Level Category" msgstr "Fő Kategória" -#: includes/functions/listings.php:278 -#: includes/listings/class-listings-content-renderer.php:169 +#: includes/functions/listings.php:288 +#: includes/listings/class-listings-content-renderer.php:182 msgid "Are you sure you want to flag this ad?" msgstr "Biztos megjelöli ezt a hirdetést?" -#: includes/functions/listings.php:279 -#: includes/listings/class-listings-content-renderer.php:170 +#: includes/functions/listings.php:289 +#: includes/listings/class-listings-content-renderer.php:183 msgid "This Ad has been flagged." msgstr "a HIRDETÉST MEGJELÖLTÜK." -#: includes/functions/listings.php:280 -#: includes/listings/class-listings-content-renderer.php:171 +#: includes/functions/listings.php:290 +#: includes/listings/class-listings-content-renderer.php:184 msgid "An error occurred while trying to flag the Ad." msgstr "A hirdetés megjelölése során hiba történt." -#: includes/functions/listings.php:317 +#: includes/functions/listings.php:327 msgid "" "Sorry, that listing is not available. Please try browsing or searching " "existing listings." @@ -3951,7 +4095,7 @@ msgstr "" "Ez a listázás sajnos nem elérhető. Próbálkozzon létező listázásokat keresni " "vagy böngészni." -#: includes/functions/listings.php:334 +#: includes/functions/listings.php:344 msgid "" "The Ad you are trying to view is pending approval. Once the Administrator " "approves it, it will be active and visible." @@ -3959,12 +4103,12 @@ msgstr "" "Az ön által megtekinteni kívánt hirdetés jóváhagyása folyamatban van. Miután " "az adminisztrátor jóváhagyja, látható és aktív lesz." -#: includes/functions/listings.php:340 +#: includes/functions/listings.php:350 #: includes/listings/class-listings-content-renderer.php:106 msgid "Your email address was successfully verified." msgstr "Email címét megerősítettük." -#: includes/functions/listings.php:344 +#: includes/functions/listings.php:354 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the Administrator) and the author can see it." @@ -3972,7 +4116,7 @@ msgstr "" "Ez a hirdetés nem aktív, amíg az adminisztrátor jóvá nem hagyja. Csak ön (az " "adminisztrátor) és a hirdetés létrehozója láthatja." -#: includes/functions/listings.php:347 +#: includes/functions/listings.php:357 msgid "" "This Ad is currently disabled until you verify the email address used for " "the contact information. Only you (the author) can see it." @@ -3980,7 +4124,7 @@ msgstr "" "Ez a hirdetés nem aktív, amíg meg nem erősíti az email címét. Csak ön (a " "hirdetés létrehozója) láthatja." -#: includes/functions/listings.php:350 +#: includes/functions/listings.php:360 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the author) can see it." @@ -3998,13 +4142,13 @@ msgid "Listing \"%s\" was updated" msgstr "\"%s\" listázás frissítésre került" #. translators: %s is the listing title. -#: includes/functions/notifications.php:147 +#: includes/functions/notifications.php:146 msgid "Images on listing \"%s\" are awaiting approval" msgstr "\"%s\" listázás képei elfogadásra várnak" #. translators: %1$s is the listing title. %2$s is the URL for managing listing #. images. -#: includes/functions/notifications.php:150 +#: includes/functions/notifications.php:149 msgid "" "Images on Ad \"%1$s\" are awaiting approval. You can approve the images " "going to the Manage Images section for that Ad and clicking the \"Enable\" " @@ -4012,11 +4156,11 @@ msgid "" msgstr "" #. translators: %s is the listing title. -#: includes/functions/notifications.php:154 +#: includes/functions/notifications.php:153 msgid "Listing \"%s\" is awaiting approval" msgstr "\"%s\" listázás elfogadásra vár" -#: includes/functions/notifications.php:202 +#: includes/functions/notifications.php:201 msgid "Listing was flagged" msgstr " listázást megjelölték" @@ -4034,7 +4178,7 @@ msgid "Missing License Status parameter" msgstr "" #: includes/helpers/class-easy-digital-downloads.php:53 -msgid "License Status parameter was set to Failed" +msgid "License Status parameter was set to Failed" msgstr "" #: includes/helpers/class-easy-digital-downloads.php:57 @@ -4122,7 +4266,7 @@ msgstr[1] "" "verzió. vagy egy újabb AWPCP verzióra van szükség a használatához. Lépjen " "kapcsolatba ügyfélszolgálatunkkal és kérjen frissítést." -#: includes/helpers/class-modules-manager.php:217 +#: includes/helpers/class-modules-manager.php:220 msgid "" "The version of AWPCP {modules_names} is not compatible with version " "{awpcp_version}." @@ -4132,11 +4276,11 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:219 +#: includes/helpers/class-modules-manager.php:222 msgid "Please get AWPCP {required_modules_versions} or newer!" msgstr "" -#: includes/helpers/class-modules-manager.php:250 +#: includes/helpers/class-modules-manager.php:256 msgid "" "The license for AWPCP is inactive. All features will remain " "disabled until you activate the license. Please go to the Licenses Settings szekcióba vagy frissítse a " "licencét." -#: includes/helpers/class-modules-manager.php:264 +#: includes/helpers/class-modules-manager.php:276 msgid "" "The AWPCP requires a license to be used. All features will " "remain disabled until a valid license is entered. Please go to the Licenses Settings " "szekcióba vagy frissítse a licencét." -#: includes/helpers/class-modules-manager.php:269 +#: includes/helpers/class-modules-manager.php:284 msgid "" "The license for AWPCP expired. The module will continue to " "work but you will not receive automatic updates when a new version is " @@ -4192,7 +4336,7 @@ msgstr[1] "" "Az AWPCP licenced lejárt. Továbbra is működni fognak, de új " "verziónál nem kapnak automatikus frissítést." -#: includes/helpers/class-modules-manager.php:281 +#: includes/helpers/class-modules-manager.php:299 msgid "" "The AWPCP is currently disabled because it requires you to " "perform a manual upgrade before continuing. Please go to the " @@ -4204,17 +4348,17 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:294 +#: includes/helpers/class-modules-manager.php:312 msgid "The specified module does not exists!." msgstr "A meghatározott modul nem létezik!" -#: includes/helpers/class-recaptcha-v3.php:56 +#: includes/helpers/class-recaptcha-v3.php:78 msgid "" "There was an error trying to analyze the current interaction with reCAPTCHA. " "" msgstr "" -#: includes/helpers/class-recaptcha-v3.php:98 +#: includes/helpers/class-recaptcha-v3.php:120 msgid "" "The current interaction was not approved by reCAPTCHA. Please try again." msgstr "" @@ -4275,11 +4419,11 @@ msgstr "" "Hiba történt a Befizetési Kérése során. Kérjük próbálja újra, vagy lépjen " "kapcsolatba az adminnal." -#: includes/helpers/widgets/class-user-field.php:32 +#: includes/helpers/widgets/class-user-field.php:48 msgid "Select an User" msgstr "Felhasználó kiválasztása" -#: includes/helpers/widgets/multiple-region-selector.php:123 +#: includes/helpers/widgets/multiple-region-selector.php:143 msgid "" "This particular region is already selected in another field. Please choose " "one or more sub-regions, to make the selection more specific, or change the " @@ -4289,19 +4433,19 @@ msgstr "" "vagy több al-régiót, hogy pontosabb legyen a helyszín, vagy változtasson a " "kiválasztott régión." -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Search Region" msgstr "Régió keresés hozzáadása" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Region" msgstr "Régió hozzáadása" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Delete Search Region" msgstr "Keresési Régió törlése" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Remove Region" msgstr "Régió eltávolítása" @@ -4363,6 +4507,11 @@ msgstr "" msgid "There was an error trying to update the database." msgstr "Hiba történt az adatbázis frissítése során." +#: includes/media/class-attachment-action-ajax-handler.php:53 +#, fuzzy +msgid "You are not allowed to perform this action." +msgstr "Ennek végrehajtására önnek nincs felhatalmazása" + #: includes/media/class-attachment-action-ajax-handler.php:57 msgid "The specified file is not associated with Listing with ID %d." msgstr "A meghatározott fájl nem kapcsolódik %d ID-vel rendelkező listázáshoz." @@ -4457,7 +4606,7 @@ msgstr "" "A fájl nem lehet kisebb a megengedett bájt " "méretnél. A fájlt nem lehet feltölteni." -#: includes/media/class-listings-media-uploader-component.php:51 +#: includes/media/class-listings-media-uploader-component.php:56 msgid "" "You can upload images of up to each, " " videos of up to each and " @@ -4467,7 +4616,7 @@ msgstr "" "left> videókat méretig és egyéb fájlokat " " méretig." -#: includes/media/class-listings-media-uploader-component.php:52 +#: includes/media/class-listings-media-uploader-component.php:57 msgid "" "You can upload images of up to each and " " other files (no videos) of up to each." @@ -4476,7 +4625,7 @@ msgstr "" "left> egyéb fájlokat (videók nem engedélyezettek) " "méretig." -#: includes/media/class-listings-media-uploader-component.php:53 +#: includes/media/class-listings-media-uploader-component.php:58 msgid "" "You can upload images of up to each and " " videos of up to each." @@ -4484,7 +4633,7 @@ msgstr "" "Feltölheti képeit méretig és videóit méretig." -#: includes/media/class-listings-media-uploader-component.php:54 +#: includes/media/class-listings-media-uploader-component.php:59 msgid "" "You can upload videos of up to each and " " other files (no images) of up to each." @@ -4493,12 +4642,12 @@ msgstr "" "left> egyéb fájlokat (képek nem engedélyezettek) " "méretig." -#: includes/media/class-listings-media-uploader-component.php:55 +#: includes/media/class-listings-media-uploader-component.php:60 msgid "" "You can upload images of up to each." msgstr "Feltöltheti képeit méretig." -#: includes/media/class-listings-media-uploader-component.php:56 +#: includes/media/class-listings-media-uploader-component.php:61 msgid "" "You can upload files (no videos or images) of up to each." @@ -4506,7 +4655,7 @@ msgstr "" "Feltölthet fájlokat (nem képeket vagy videókat) méretig" -#: includes/media/class-listings-media-uploader-component.php:57 +#: includes/media/class-listings-media-uploader-component.php:62 msgid "" "You can upload videos of up to each." msgstr "Feltöltheti videóit méretig." @@ -4600,15 +4749,15 @@ msgstr "" msgid "General" msgstr "Általános" -#: includes/models/payment-transaction.php:225 +#: includes/models/payment-transaction.php:232 msgid "The transaction must be assigned to a WordPress user." msgstr "A tranzakciókat WordPress felhasználóhoz kell rendelni" -#: includes/models/payment-transaction.php:238 +#: includes/models/payment-transaction.php:245 msgid "The transaction has no items." msgstr "A tranzakcióban nem szerepelnek termékek" -#: includes/models/payment-transaction.php:250 +#: includes/models/payment-transaction.php:257 msgid "" "The amount of credit in your account is not enough to pay for the selected " "items. Please choose one of the available Credit Plans in addition to the " @@ -4619,7 +4768,7 @@ msgstr "" "Kérjük válasszon egy másik rendelkezésére álló kredittervet, vagy adjon " "hozzá kreditet a fiókjához Profiloldaláról
. Még %d kreditre van szüksége" -#: includes/models/payment-transaction.php:252 +#: includes/models/payment-transaction.php:259 msgid "" "The selected Credit Plan is not enough to pay for the selected items. Please " "choose a bigger Credit Plan or add credit to your account from your Profile " @@ -4629,11 +4778,11 @@ msgstr "" "kifizetéséhez. Válasszon nagyobb kredittervet, vagy adjon hozzá kreditet a " "fiókjához profiljában
.Még %d kreditre van szüksége" -#: includes/models/payment-transaction.php:282 +#: includes/models/payment-transaction.php:289 msgid "You must select a payment method." msgstr "Fizetési mód választása kötelező" -#: includes/models/payment-transaction.php:294 +#: includes/models/payment-transaction.php:301 msgid "The payment status for this transaction hasn't been defined." msgstr "Ehhez a tranzakcióhoz kapcsolódó befizetés állapota nincs meghatározva" @@ -4650,7 +4799,7 @@ msgstr "" "Amennyiben nem próbált fizetni, hagyja figyelmen kívül ezt az üzenetet" #: includes/payment-gateway-2checkout.php:101 -#: includes/payment-gateway-paypal-standard.php:140 +#: includes/payment-gateway-paypal-standard.php:142 msgid "" "The amount you have paid does not match the required amount for this " "transaction. Please contact us to clarify the problem." @@ -4660,7 +4809,7 @@ msgstr "" "érdekében." #: includes/payment-gateway-2checkout.php:109 -#: includes/payment-gateway-paypal-standard.php:148 +#: includes/payment-gateway-paypal-standard.php:150 msgid "" "There was an error processing your transaction. If funds have been deducted " "from your account, they have not been processed to our account. You will " @@ -4671,7 +4820,7 @@ msgstr "" "lépnie a probléma megoldásához." #: includes/payment-gateway-2checkout.php:119 -#: includes/payment-gateway-paypal-standard.php:158 +#: includes/payment-gateway-paypal-standard.php:160 msgid "" "It appears this transaction has already been processed. If you do not see " "your ad in the system please contact the site adminstrator for assistance." @@ -4681,7 +4830,7 @@ msgstr "" "adminisztrátorával segítségért." #. translators: %s link url. -#: includes/payment-gateway-paypal-standard.php:58 +#: includes/payment-gateway-paypal-standard.php:60 msgid "" "We haven't received your payment information from PayPal yet and we are " "unable to verify your transaction. Please reload this page or visit admin section to change the order in which " "the fields mentioned below are shown to users in the Ad Details form." @@ -5493,33 +5642,33 @@ msgstr "" "sorrendet, mely mezők jelenlenjenek meg a felhasználók számára a Hirdetés " "Részletei űrlapon." -#: includes/settings/class-display-settings.php:452 +#: includes/settings/class-display-settings.php:451 msgid "Form Fields Behavior" msgstr "" -#: includes/settings/class-display-settings.php:461 +#: includes/settings/class-display-settings.php:460 #: templates/admin/import/supported-csv-headers.tpl.php:18 msgid "Field" msgstr "" -#: includes/settings/class-display-settings.php:462 +#: includes/settings/class-display-settings.php:461 msgid "Show field on form" msgstr "" -#: includes/settings/class-display-settings.php:463 +#: includes/settings/class-display-settings.php:462 msgid "Show field on search form" msgstr "" -#: includes/settings/class-display-settings.php:464 +#: includes/settings/class-display-settings.php:463 #: templates/admin/import/supported-csv-headers.tpl.php:19 msgid "Required" msgstr "Kívánt" -#: includes/settings/class-display-settings.php:465 +#: includes/settings/class-display-settings.php:464 msgid "Show value to registered users only" msgstr "" -#: includes/settings/class-display-settings.php:469 +#: includes/settings/class-display-settings.php:468 msgid "Website" msgstr "Honlap" @@ -5607,26 +5756,25 @@ msgstr "" "fut a weboldala, hagyja kipipálatlanul ezt a mezőt, és győződjön meg róla, " "hogy a WP adminisztrátori email cím hozzá van kapcsolva a tárhelyfiókjához." -#. translators: full-email-address=John Doe , -#. short-email-address=john.doe@example.com -#: includes/settings/class-email-settings.php:84 +#. translators: %1$s=John Doe , %2$s=john.doe@example.com +#: includes/settings/class-email-settings.php:85 msgid "" "If checked, whenever the name of the recipient is available, emails will be " -"sent to instead of just . Some " -"email servers, however, have problems handling email address that include " -"the name of the recipient. If emails sent by the plugin are not being " -"delivered properly, try unchecking this settting." +"sent to %1$s instead of just %2$s. Some email servers, however, have " +"problems handling email address that include the name of the recipient. If " +"emails sent by the plugin are not being delivered properly, try unchecking " +"this settting." msgstr "" -#: includes/settings/class-email-settings.php:91 +#: includes/settings/class-email-settings.php:93 msgid "Include the name of the recipient in the email address" msgstr "" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "Include Ad access key in email messages" msgstr "Mellékelje a hirdetés hozzáférési kulcsot az email üzenetekben." -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "" "Include Ad access key in email notifications. You may want to uncheck this " "option if you are using the Ad Management panel, but is not necessary." @@ -5635,98 +5783,98 @@ msgstr "" "a pipát a mezőből, ha a Hirdetés Kezelése panelt használja, de nem " "feltétlenül szükséges." -#: includes/settings/class-email-settings.php:106 +#: includes/settings/class-email-settings.php:108 msgid "Messages" msgstr "Üzenetek" -#: includes/settings/class-email-settings.php:118 +#: includes/settings/class-email-settings.php:120 msgid "Ad Posted Message" msgstr "Hirdetés Feladva Üzenet" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject for Ad posted notification email" msgstr "Tárgy a Hirdetés Feladva emailértesítéshez." -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Your Classified Ad listing has been submitted" msgstr "Az ön hirdetése sikeresen beküldve." -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject line for email sent out when someone posts an Ad" msgstr "" "Üzenet tárgy az emailhez, amely akkor kerül kiküldésre, ha valaki hirdetést " "ad fel." -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Body for Ad posted notification email" msgstr "Szövegtörzs a Hirdetés feladva email értesítéshez" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "" "Thank you for submitting your Classified Ad. The details of your ad are " "shown below." msgstr "Köszönjük a hirdetésfeladást. Hirdetésének részletei itt találhatók:" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Message body text for email sent out when someone posts an Ad" msgstr "" "Üzenet törzs emailhez, ami akkor kerül kiküldésre, ha valaki új hirdetést ad " "fel." -#: includes/settings/class-email-settings.php:127 +#: includes/settings/class-email-settings.php:129 msgid "Reply to Ad Message" msgstr "Válasz a Hirdetésre Üzenet" -#: includes/settings/class-email-settings.php:132 +#: includes/settings/class-email-settings.php:134 msgid "Response notification for listing owners" msgstr "" -#: includes/settings/class-email-settings.php:139 +#: includes/settings/class-email-settings.php:141 msgid "" "Subject and body template for email sent out when someone replies to an ad." msgstr "" -#: includes/settings/class-email-settings.php:141 -#: includes/settings/class-email-settings.php:167 -msgid "The name of the person who replied." -msgstr "" - -#: includes/settings/class-email-settings.php:142 -#: includes/settings/class-email-settings.php:168 -msgid "The email adderss of the person who replied." -msgstr "" - #: includes/settings/class-email-settings.php:143 #: includes/settings/class-email-settings.php:169 -#: includes/settings/class-email-settings.php:206 -msgid "The title of the ad where the reply was posted." +msgid "The name of the person who replied." msgstr "" #: includes/settings/class-email-settings.php:144 #: includes/settings/class-email-settings.php:170 -msgid "The URL for the ad where the reply was posted." +msgid "The email adderss of the person who replied." msgstr "" #: includes/settings/class-email-settings.php:145 #: includes/settings/class-email-settings.php:171 -msgid "The content of the reply." +#: includes/settings/class-email-settings.php:208 +msgid "The title of the ad where the reply was posted." msgstr "" #: includes/settings/class-email-settings.php:146 #: includes/settings/class-email-settings.php:172 -msgid "The title of this website" +msgid "The URL for the ad where the reply was posted." msgstr "" #: includes/settings/class-email-settings.php:147 #: includes/settings/class-email-settings.php:173 +msgid "The content of the reply." +msgstr "" + +#: includes/settings/class-email-settings.php:148 +#: includes/settings/class-email-settings.php:174 +msgid "The title of this website" +msgstr "" + +#: includes/settings/class-email-settings.php:149 +#: includes/settings/class-email-settings.php:175 msgid "The URL of this website's homepage" msgstr "" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "Notify admin about contact message" msgstr "Adminisztrátor értesítése a kapcsolatfelvételről." -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "" "An email will be sent to the administrator every time a visitor sends a " "message to one of the Ad posters through the Reply to Ad page." @@ -5735,29 +5883,29 @@ msgstr "" "egy látogató üzenetet küld az egyik hirdetőnek a \"Válasz a Hirdetésre\" " "oldalon keresztül." -#: includes/settings/class-email-settings.php:158 +#: includes/settings/class-email-settings.php:160 msgid "Response notification for administrators" msgstr "" -#: includes/settings/class-email-settings.php:165 +#: includes/settings/class-email-settings.php:167 msgid "" "Subject and body template for email sent out to administrators when someone " "replies to an ad." msgstr "" -#: includes/settings/class-email-settings.php:183 +#: includes/settings/class-email-settings.php:185 msgid "Resend Access Key Message" msgstr "Hozzáférési Kulcs Üzenet újraküldése" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "Subject for Request Ad Access Key email" msgstr "Tárgy A Hirdetési Hozzáférési Kulcs lekérdezése emailhez" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "The Classified Ad's ad access key you requested" msgstr "Az hirdetéshez tartozó hozzáférési kulcs" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "" "Subject line for email sent out when someone requests their ad access key " "resent" @@ -5765,11 +5913,11 @@ msgstr "" "Üzenet tárgy az emailhez, amely akkor kerül kiküldésre, ha valaki a " "hirdetésének hozzáférési kulcsának újraküldését kéri." -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "Body for Request Ad Access Key email" msgstr "Szövegtörzs a Hirdetési Hozzáférési Kulcs lekérdezése emailhez" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "You asked to have your Classified Ad's access key resent. Below are all the " "Ad access keys in the system that are tied to the email address you provided" @@ -5778,7 +5926,7 @@ msgstr "" "megtalálhatja az összes hozzáférési kulcsot, ami a rendszerünkben található, " "és az ön által megadott email címhez van kapcsolva." -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "Message body text for email sent out when someone requests their ad access " "key resent" @@ -5786,63 +5934,84 @@ msgstr "" "Üzenet törzs az emailhez, amely akkor kerül kiküldésre, ha valaki a " "hirdetésének hozzáférési kulcsának újraküldését kéri." -#: includes/settings/class-email-settings.php:192 +#: includes/settings/class-email-settings.php:194 msgid "Verify Email Message" msgstr "Email üzenet igazolása" -#: includes/settings/class-email-settings.php:197 +#: includes/settings/class-email-settings.php:199 msgid "Subject and body for verify email message" msgstr "" -#: includes/settings/class-email-settings.php:200 +#: includes/settings/class-email-settings.php:202 msgid "Verify the email address used for Ad {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:204 +#: includes/settings/class-email-settings.php:203 +msgid "" +"Hello {author_name} \n" +"\n" +"You recently posted the Ad {listing_title} to {website_title}. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"{verification_link} \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"{website_title}\n" +"\n" +"{website_url}" +msgstr "" + +#: includes/settings/class-email-settings.php:206 msgid "" "Subject and body template for email sent out to verify the email address." msgstr "" -#: includes/settings/class-email-settings.php:207 +#: includes/settings/class-email-settings.php:209 msgid "The name of the owner of the listing." msgstr "" -#: includes/settings/class-email-settings.php:208 +#: includes/settings/class-email-settings.php:210 msgid "Verification link." msgstr "" -#: includes/settings/class-email-settings.php:209 +#: includes/settings/class-email-settings.php:211 msgid "The title of this website." msgstr "" -#: includes/settings/class-email-settings.php:210 +#: includes/settings/class-email-settings.php:212 msgid "The URL of this webiste's homepage." msgstr "" -#: includes/settings/class-email-settings.php:220 +#: includes/settings/class-email-settings.php:222 msgid "Incomplete Payment Message" msgstr "Befejezetlen Befizetési Üzenet" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "Subject for Incomplete Payment email" msgstr "Tárgy a befejezetlen befizetés emailhez" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "There was a problem processing your payment" msgstr "Hiba történt a befizetése feldolgozása során." -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "" "Subject line for email sent out when the payment processing does not complete" msgstr "" "Üzenet tárgy az emailhez, mely akkor kerül kiküldésre, ha a befizetési " "folyamat nem sikerült." -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "Body for Incomplete Payment email" msgstr "Szövegtörzs a befejezetlen befizetés emailhez" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "There was a problem encountered during your attempt to submit payment. If " "funds were removed from the account you tried to use to make a payment " @@ -5853,7 +6022,7 @@ msgstr "" "számlájáról, de a pénz nem jelent meg a rendszerben, forduljon az oldal " "adminisztrátorához, vagy a befizetési weboldal vevőszolgálatához segítségért." -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "Message body text for email sent out when the payment processing does not " "complete" @@ -5861,31 +6030,31 @@ msgstr "" "Üzenet törzs az emailhez, amely akkor kerül kiküldésre, ha a befizetési " "folyamat nem sikerült.." -#: includes/settings/class-email-settings.php:229 +#: includes/settings/class-email-settings.php:231 msgid "Renew Ad Message" msgstr "Hirdetés Meghosszabbítása Üzenet" -#: includes/settings/class-email-settings.php:234 +#: includes/settings/class-email-settings.php:236 msgid "Subject for Renew Ad email" msgstr "Tárgy a Hirdetés meghosszabbítása emailhez" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:237 +#: includes/settings/class-email-settings.php:239 msgid "Your ad will expire in %d days." msgstr "" -#: includes/settings/class-email-settings.php:238 +#: includes/settings/class-email-settings.php:240 msgid "Subject line for email sent out when an Ad is about to expire." msgstr "" "Üzenet Tárgy az emailhez, mely akkor kerül kiküldésre, ha a hirdetés lejár." -#: includes/settings/class-email-settings.php:244 -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:246 +#: includes/settings/class-email-settings.php:270 msgid "Body for Renew Ad email" msgstr "Szövegtörzs a Meghosszabbított hirdetés emailhez" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:247 +#: includes/settings/class-email-settings.php:249 msgid "" "This is an automated notification that your Classified Ad will expire in %d " "days." @@ -5896,7 +6065,7 @@ msgstr "" #. translators: %d in this case is used to remind the user they can enter '%d' #. in the textarea where they want the plugin to replace the number of days #. until the ad expires. -#: includes/settings/class-email-settings.php:249 +#: includes/settings/class-email-settings.php:251 msgid "" "Message body text for email sent out when an Ad is about to expire. Use %d " "as placeholder for the number of days before the Ad expires." @@ -5905,125 +6074,125 @@ msgstr "" "hamarosan lejár. Használja a %d -t mint helykitöltőt a lejáratig hátralévő " "napok számának megjelenítésére." -#: includes/settings/class-email-settings.php:256 +#: includes/settings/class-email-settings.php:258 msgid "Ad Renewed Message" msgstr "Meghosszabbított Hirdetés Üzenet" -#: includes/settings/class-email-settings.php:261 +#: includes/settings/class-email-settings.php:263 msgid "Subject for Ad Renewed email" msgstr "Tárgy a Meghosszabbított hirdetés emailhez" #. translators: %s is the title of the ad. -#: includes/settings/class-email-settings.php:264 +#: includes/settings/class-email-settings.php:266 msgid "Your ad \"%s\" has been successfully renewed." msgstr "" -#: includes/settings/class-email-settings.php:265 +#: includes/settings/class-email-settings.php:267 msgid "Subject line for email sent out when an Ad is successfully renewed." msgstr "" "Üzenet Tárgy az emailhez, amely akkor kerül kiküldésre, ha a hirdetést " "sikeresen meghosszabbították." -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "Your ad has been successfully renewed. More information below:" msgstr "" -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "" "Message body text for email sent out when an Ad is successfully renewed. " msgstr "" "Üzenet törzs az emailhez, amely akkor kerül kiküldésre, ha a hirdetést " "sikeresen meghosszabbították." -#: includes/settings/class-email-settings.php:274 +#: includes/settings/class-email-settings.php:276 msgid "Ad Expired Message" msgstr "Lejárt Hirdetés Üzenet" -#: includes/settings/class-email-settings.php:279 +#: includes/settings/class-email-settings.php:281 msgid "Subject for Ad Expired email" msgstr "Tárgy a Lejárt hirdetés emailhez" #. translators: %s is the name of the website. -#: includes/settings/class-email-settings.php:282 +#: includes/settings/class-email-settings.php:284 msgid "Your ad at %s has expired" msgstr "" -#: includes/settings/class-email-settings.php:283 +#: includes/settings/class-email-settings.php:285 msgid "Subject line for email sent out when an ad has auto-expired" msgstr "" "Üzenet Tárgy az emailhez, amely akkor kerül kiküldésre, ha a hirdetés lejár." -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Body for Ad Expired email" msgstr "Szövegtörzs a Lejárt hirdetés emailhez" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "This is an automated notification that your ad has expired." msgstr "" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Message body text for email sent out when an ad has auto-expired" msgstr "" "Üzenet törzs az emailhez, mely akkor kerül elküldésre, ha a hirdetés lejár." -#: includes/settings/class-email-settings.php:295 +#: includes/settings/class-email-settings.php:297 #: includes/settings/class-general-settings.php:599 msgid "Advanced" msgstr "Haladó" -#: includes/settings/class-email-settings.php:305 +#: includes/settings/class-email-settings.php:307 msgid "Advanced Email Configuration" msgstr "Részletes Email Beállítások" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enable external SMTP server" msgstr "Külső SMTP szerver Engedélyezése" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enabled external SMTP server (if emails not processing normally)." msgstr "" "Külső SMTP szerver engedélyezése (ha az emailek feldolgozása problémába " "ütközik)" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host" msgstr "SMTP host" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host (if emails not processing normally)." msgstr "SMTP host (ha az emailek feldolgozása problémába ütközik)" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port" msgstr "SMTP port" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port (if emails not processing normally)." msgstr "SMTP port (ha az emailek feldolgozása problémába ütközik)" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username" msgstr "SMTP felhasználónév" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username (if emails not processing normally)." msgstr "SMTP felhasználónév (ha az emailek feldolgozása problémába ütközik)" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password" msgstr "SMTP jelszó" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password (if emails not processing normally)." msgstr "SMTP jelszó (ha az emailek feldolgozása problémába ütközik)" -#: includes/settings/class-email-settings.php:316 +#: includes/settings/class-email-settings.php:318 msgid "" " is not a valid email address. Please check the value you entered " "to use as the FROM email address for outgoing messages." msgstr "" -#: includes/settings/class-email-settings.php:317 +#: includes/settings/class-email-settings.php:319 msgid "" " is not a valid email address. Please check the value you entered " "to use as recipient email address for admin notifications." @@ -6981,15 +7150,18 @@ msgid "" "the Webhooks URL and Event Name you define." msgstr "" -#: includes/settings/class-general-settings.php:919 +#. translators: %1$s is the link to Facebook Developer Apps page. %2$s is the +#. closing anchor tag. +#: includes/settings/class-general-settings.php:921 +#, fuzzy msgid "" -"You can find your application information in the Facebook Developer Apps page." +"You can find your application information in the %1$sFacebook Developer " +"Apps%2$s page." msgstr "" "Megtalálhatja az alkalmazása információit a Facebook Developer - " "Alkalmazások oldalon." -#: includes/settings/class-general-settings.php:935 +#: includes/settings/class-general-settings.php:936 msgid "" "AWPCP needs to get an authorization token from Facebook to work correctly. " "You'll be redirected to Facebook to login. AWPCP does not store or obtain " @@ -6999,7 +7171,7 @@ msgstr "" "működéshez. Át lesz irányítva a Facebook bejelentkezési felületére. Az AWPCP " "nem ment és tárol bármilyen személyes információt." -#: includes/settings/class-general-settings.php:936 +#: includes/settings/class-general-settings.php:937 msgid "" "Please choose Public as the audience for posts made by the application, even " "if you are just testing the integration. Facebook won't allow us to post " @@ -7008,51 +7180,48 @@ msgstr "" "Közönségnek válaszd a Public-ot közzétételi csoportként, már az integrációs " "teszt alatt is, máskülönben a Fb nem engedélyezi egyes esetekben a postázást." -#: includes/settings/class-general-settings.php:945 +#: includes/settings/class-general-settings.php:947 msgid "Click here to obtain an access token from Facebook" msgstr "" -#: includes/settings/class-general-settings.php:947 +#: includes/settings/class-general-settings.php:951 msgid "" "Please provide a value for the App Id and App Secret settings before trying " "to get an access token from Facebook." msgstr "" -#: includes/settings/class-general-settings.php:958 +#: includes/settings/class-general-settings.php:960 msgid "" "Available Facebook Pages and Groups will be displayed after you enter a " "valid User Access Token." msgstr "" -#: includes/settings/class-general-settings.php:959 +#. translators: %1$s opening anchor tag, %2$s closing anchor tag, %3$s opening +#. anchor tag, %4$s closing anchor tag, %5$s opening anchor tag, %6$s closing +#. anchor tag, %7$s opening anchor tag, %8$s closing anchor tag +#: includes/settings/class-general-settings.php:964 msgid "" -"As of April 4, 2018, all applications need to go through App Review " -"in order to get access to the Page API and Groups API. That means that you may need to submit your app for review (ask for the " -"manage_pages, publish_pages, " -"publish_to_groups permissions), before AWPCP can display the " +"All applications need to go through %1$sApp Review%2$s in order to get " +"access to the %3$sPage API%4$s and %5$sGroups API%6$s. That means that you " +"may need to %7$ssubmit your app for review%8$s (ask for the manage_pages, " +"publish_pages, publish_to_groups permissions), before AWPCP can display the " "list of pages and groups you manage and be able to post classifieds ads to " "those groups and pages." msgstr "" -#: includes/settings/class-general-settings.php:977 +#: includes/settings/class-general-settings.php:989 msgid "None (Do not sent ads to a Facebook Page)" msgstr "" -#: includes/settings/class-general-settings.php:984 +#: includes/settings/class-general-settings.php:996 msgid "(Your own profile page)" msgstr "(Az ön saját profil oldala)" -#: includes/settings/class-general-settings.php:1008 +#: includes/settings/class-general-settings.php:1020 msgid "None (Do not sent ads to a Facebook Group)" msgstr "" -#: includes/settings/class-general-settings.php:1064 +#: includes/settings/class-general-settings.php:1076 msgid "" "Akismet SPAM control cannot be enabled because Akismet plugin is not " "installed or activated." @@ -7060,7 +7229,7 @@ msgstr "" "Akismet SPAM szűrő nem engedélyezhető, mert az Akismet plugin nincs " "telepítve, vagy ki van kapcsolva." -#: includes/settings/class-general-settings.php:1068 +#: includes/settings/class-general-settings.php:1080 msgid "" "Akismet SPAM control cannot be enabled because Akismet is not properly " "configured." @@ -7068,7 +7237,7 @@ msgstr "" "Akismet SPAM szűrő nem engedélyezhető, mert az Akismet helytelenül van " "konfigurálva." -#: includes/settings/class-general-settings.php:1094 +#: includes/settings/class-general-settings.php:1106 msgid "" "reCAPTCHA can't be used because the public key and private key settings are " "required for reCAPTCHA to work properly." @@ -7076,7 +7245,7 @@ msgstr "" "reCAPTCHA nem használható, mert privát és publikus kulcs beállítása " "szükséges a reCAPTCHA helyes működéséhez." -#: includes/settings/class-general-settings.php:1096 +#: includes/settings/class-general-settings.php:1108 msgid "" "reCAPTCHA can't be used because the public key setting is required for " "reCAPTCHA to work properly." @@ -7084,7 +7253,7 @@ msgstr "" "reCAPTCHA nem használható, mert publikus kulcs beállítása szükséges a " "reCAPTCHA helyes működéséhez." -#: includes/settings/class-general-settings.php:1098 +#: includes/settings/class-general-settings.php:1110 msgid "" "reCAPTCHA can't be used because the private key setting is required for " "reCAPTCHA to work properly." @@ -7092,11 +7261,11 @@ msgstr "" "reCAPTCHA nem használható, mert privát kulcs beállítása szükséges a " "reCAPTCHA helyes működéséhez." -#: includes/settings/class-general-settings.php:1145 +#: includes/settings/class-general-settings.php:1157 msgid "Thousands separator and decimal separator cant be the same." msgstr "" -#: includes/settings/class-general-settings.php:1159 +#: includes/settings/class-general-settings.php:1171 msgid "" "Credit System was automatically disabled because you disabled Require " "Registration setting." @@ -7114,10 +7283,17 @@ msgid "Licenses" msgstr "Liszenszek" #: includes/settings/class-licenses-settings.php:64 -#: templates/admin/debug/plugin-info-debug-section.tpl.php:18 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:24 msgid "Premium Modules" msgstr "Prémium Modulok" +#: includes/settings/class-licenses-settings.php:82 +msgid "" +"The IP address of your server is %s. Please make sure to include that " +"information if you need to contact support about problems trying to activate " +"your licenses." +msgstr "" + #: includes/settings/class-listings-moderation-settings.php:22 msgid "" "Email verification was disabled because you enabled Require Registration. " @@ -7521,97 +7697,97 @@ msgstr "" "Kategória megjelenítése a böngésző címsorában, amikor egy egyedi hirdetés " "van megnyitva." -#: includes/settings/class-listings-settings.php:472 +#: includes/settings/class-listings-settings.php:473 msgid "" "Enable this setting to display each listing on its own page, instead of " -"showing the listing's content inside the page." +"showing the listing's content inside the %s page." msgstr "" -#: includes/settings/class-listings-settings.php:478 +#: includes/settings/class-listings-settings.php:480 msgid "Display listings on their own page" msgstr "" -#: includes/settings/class-listings-settings.php:486 +#: includes/settings/class-listings-settings.php:488 msgid "" "Portion of the URL that appears between the website's domain and the " "listing's information. Example: in ." msgstr "" -#: includes/settings/class-listings-settings.php:496 +#: includes/settings/class-listings-settings.php:498 msgid "Listings slug" msgstr "" -#: includes/settings/class-listings-settings.php:509 +#: includes/settings/class-listings-settings.php:511 msgid "" "Include the slug of the plugin's main page () in the URL " "that points to the page of an individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:512 +#: includes/settings/class-listings-settings.php:514 msgid "" "Include the slug of the plugin's main page in the URL that points to the " "page of an individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:518 +#: includes/settings/class-listings-settings.php:520 msgid "Include the slug of the plugin's main page in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:532 +#: includes/settings/class-listings-settings.php:534 msgid "Include the title in the listing URL" msgstr "Hirdetés címe jelenjen meg a listázás URL-jében" -#: includes/settings/class-listings-settings.php:535 +#: includes/settings/class-listings-settings.php:537 msgid "" "Include the title in the URL that points to the page of an individual " "listing." msgstr "Hirdetés címe jelenjen meg az URL-ben ami egy hirdetésre mutat." -#: includes/settings/class-listings-settings.php:541 +#: includes/settings/class-listings-settings.php:543 msgid "Include the name of the category in the listing URL" msgstr "Kategória neve jelenjen meg a listázás URL-jében" -#: includes/settings/class-listings-settings.php:544 +#: includes/settings/class-listings-settings.php:546 msgid "" "Include the name of the category in the URL that points to the page of an " "individual listing." msgstr "Kategória neve jelenjen meg az URL-ben ami egy hirdetésre mutat." -#: includes/settings/class-listings-settings.php:550 +#: includes/settings/class-listings-settings.php:552 msgid "Include the name of the country in the listing URL" msgstr "Ország neve jelenjen meg a listázás URL-jében" -#: includes/settings/class-listings-settings.php:553 +#: includes/settings/class-listings-settings.php:555 msgid "" "Include the name of the country in the URL that points to the page of an " "individual listing." msgstr "Ország neve jelenjen meg az URL-ben ami egy hirdetésre mutat." -#: includes/settings/class-listings-settings.php:559 +#: includes/settings/class-listings-settings.php:561 msgid "Include the name of the state in the listing URL" msgstr "Állam neve jelenjen meg a listázás URL-jében " -#: includes/settings/class-listings-settings.php:562 +#: includes/settings/class-listings-settings.php:564 msgid "" "Include the name of the state in the URL that points to the page of an " "individual listing." msgstr "Állam neve jelenjen meg az URL-ben ami egy hirdetésre mutat." -#: includes/settings/class-listings-settings.php:568 +#: includes/settings/class-listings-settings.php:570 msgid "Include the name of the city in the listing URL" msgstr "Település neve jelenjen meg a listázás URL-jében" -#: includes/settings/class-listings-settings.php:571 +#: includes/settings/class-listings-settings.php:573 msgid "" "Include the name of the city in the URL that points to the page of an " "individual listing." msgstr "Település neve jelenjen meg az URL-ben ami egy hirdetésre mutat." -#: includes/settings/class-listings-settings.php:577 +#: includes/settings/class-listings-settings.php:579 msgid "Include the name of the county in the listing URL" msgstr "Megye neve jelenjen meg a listázás URL-jében" -#: includes/settings/class-listings-settings.php:580 +#: includes/settings/class-listings-settings.php:582 msgid "" "Include the name of the county in the URL that points to the page of an " "individual listing." @@ -7784,7 +7960,7 @@ msgstr "" "biztonságos (HTTPS) URL-en keresztül érhetőek el. Ne engedélyezze ezt a " "funkciót, ha a szervere nem rendelkezik HTTPS támogatással." -#: includes/settings/class-payment-general-settings.php:109 +#: includes/settings/class-payment-general-settings.php:108 msgid "" "Force Secure URLs was not enabled because your website couldn't be accessed " "using a secure connection." @@ -7792,23 +7968,19 @@ msgstr "" "Biztonságos URL kényszerítése nem engedélyezhető, mert az ön weboldalát nem " "lehet elérni biztonságos kapcsolaton keresztül." -#: includes/settings/class-payment-general-settings.php:135 -msgid "PayPal" -msgstr "PayPal" - -#: includes/settings/class-payment-general-settings.php:140 +#: includes/settings/class-payment-general-settings.php:139 msgid "PayPal Settings" msgstr "PayPal beállítások" -#: includes/settings/class-payment-general-settings.php:142 +#: includes/settings/class-payment-general-settings.php:141 msgid "Activate PayPal?" msgstr "PayPal aktiválása?" -#: includes/settings/class-payment-general-settings.php:146 +#: includes/settings/class-payment-general-settings.php:145 msgid "PayPal receiver email" msgstr "PayPal fogadó email cím" -#: includes/settings/class-payment-general-settings.php:149 +#: includes/settings/class-payment-general-settings.php:148 msgid "" "Email address for PayPal payments (if running in pay mode and if PayPal is " "activated)." @@ -7816,94 +7988,92 @@ msgstr "" "Email cím a PayPal befizetésekhez (ha fizetős módban fut a rendszer, és a " "PayPal aktiválva van)" -#: includes/settings/class-payment-general-settings.php:167 +#: includes/settings/class-payment-general-settings.php:166 msgid "PayPal Merchant ID" msgstr "" #: includes/settings/class-payment-general-settings.php:170 msgid "" "Merchant ID associated with the PayPal account that will receive the " -"payments. Go to https://www.paypal.com/myaccount/settings/ to obtain " -"your Merchant ID." +"payments. Go to %s to obtain your Merchant ID." msgstr "" -#: includes/settings/class-payment-general-settings.php:178 +#: includes/settings/class-payment-general-settings.php:180 msgid "The PayPal Currency Code must be one of ." msgstr "Elérhető PayPal Pénzem Kódok ." -#: includes/settings/class-payment-general-settings.php:183 +#: includes/settings/class-payment-general-settings.php:185 msgid "PayPal currency code" msgstr "PayPal Pénznem Kód" -#: includes/settings/class-payment-general-settings.php:186 +#: includes/settings/class-payment-general-settings.php:188 msgid "The currency in which you would like to receive your PayPal payments" msgstr "A pénznem, amiben a PayPal befizetéseket szeretné megkapni" -#: includes/settings/class-payment-general-settings.php:209 +#: includes/settings/class-payment-general-settings.php:211 msgid "2Checkout" msgstr "2Checkout" -#: includes/settings/class-payment-general-settings.php:214 +#: includes/settings/class-payment-general-settings.php:216 msgid "2Checkout Settings" msgstr "2Checkout Beállítások" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout" msgstr "2Checkout Aktiválása" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout?" msgstr "2Checkout Aktiválása?" -#: includes/settings/class-payment-general-settings.php:220 +#: includes/settings/class-payment-general-settings.php:222 msgid "2Checkout account" msgstr "2Checkout fiók" -#: includes/settings/class-payment-general-settings.php:223 +#: includes/settings/class-payment-general-settings.php:225 msgid "Account for 2Checkout payments." msgstr "Fiók a 2Checkout befizetésekhez" -#: includes/settings/class-payment-general-settings.php:238 +#: includes/settings/class-payment-general-settings.php:240 msgid "2Checkout Currency Code" msgstr "2Checkout Pénznem Kód" -#: includes/settings/class-payment-general-settings.php:249 +#: includes/settings/class-payment-general-settings.php:251 msgid "The currency in which you would like to receive your 2Checkout payments" msgstr "A pénznem, amiben a 2Checkout befizetéseket szeretné megkapni." -#: includes/settings/class-payment-general-settings.php:261 -#: includes/settings/class-payment-general-settings.php:266 +#: includes/settings/class-payment-general-settings.php:263 +#: includes/settings/class-payment-general-settings.php:268 msgid "Credit System" msgstr "Kredit Rendszer" -#: includes/settings/class-payment-general-settings.php:269 +#: includes/settings/class-payment-general-settings.php:271 msgid "Currency" msgstr "Pénznem" -#: includes/settings/class-payment-general-settings.php:271 +#: includes/settings/class-payment-general-settings.php:273 msgid "Currency & Credits" msgstr "Pénznem és Kreditek" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "Enable Credit System" msgstr "Kredit Rendszer engedélyezése" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "" "The Credit System allows users to purchase credit that can later be used to " "pay for placing Ads." msgstr "" -#: includes/settings/class-payment-general-settings.php:279 +#: includes/settings/class-payment-general-settings.php:281 msgid "Accepted payment type" msgstr "Elfogadott fizetési típusok" -#: includes/settings/class-payment-general-settings.php:282 +#: includes/settings/class-payment-general-settings.php:284 msgid "Select the type of payment that can be used to purchase Ads." msgstr " Válassza ki a hirdetések fizetésére alkalmazható fizetési formákat." -#: includes/settings/class-payment-general-settings.php:294 +#: includes/settings/class-payment-general-settings.php:296 msgid "" "You cannot configure Credits as the only accepted payment type unless you " "enable the Credit System as well. The setting was set to accept both " @@ -7913,7 +8083,7 @@ msgstr "" "Kredit Rendszer nincs engedélyezve. A beállítások a pénzes és kredites " "fizetést egyaránt lehetővé teszik." -#: includes/settings/class-payment-general-settings.php:311 +#: includes/settings/class-payment-general-settings.php:313 msgid "" "There is a problem with the PayPal Currency Code you have entered. It does " "not match any of the codes in our list of curencies supported by PayPal." @@ -7921,11 +8091,11 @@ msgstr "" "Porbléma lépett fel a beütött PayPal Pénznem Kóddal. Nem egyezik egyik " "Pénznem kóddal sem, amit a PayPal és a mi rendszerünk is támogat." -#: includes/settings/class-payment-general-settings.php:312 +#: includes/settings/class-payment-general-settings.php:314 msgid "The available currency codes are" msgstr "Az elérhető pénznemek kódjai:" -#: includes/settings/class-payment-general-settings.php:321 +#: includes/settings/class-payment-general-settings.php:323 msgid "" "Require Registration setting was enabled automatically because you activated " "the Credit System." @@ -7933,7 +8103,7 @@ msgstr "" "Kötelező Regisztráció beállítás automatikusan engedélyezésre került, mert " "aktiválta a Kredit Rendszert." -#: includes/settings/class-payment-general-settings.php:326 +#: includes/settings/class-payment-general-settings.php:328 msgid "" "Charge Listing Fee setting was enabled automatically because you activated " "the Credit System." @@ -7941,7 +8111,7 @@ msgstr "" "Listázási Díjak Terhelése beállíítás automatikusan engedélyezésre került, " "mert aktiválta a Kredit Rendszert" -#: includes/settings/class-payment-general-settings.php:332 +#: includes/settings/class-payment-general-settings.php:334 msgid "" "Credit System was disabled automatically because you disabled Charge Listing " "Fee." @@ -7949,13 +8119,13 @@ msgstr "" "Kredit Rendszer automatikusan kikapcsolásra került, mert kikapcsolta a " "Listázási Díjak Terhelése funkciót." -#: includes/settings/renderers/class-button-settings-renderer.php:39 +#: includes/settings/renderers/class-button-settings-renderer.php:40 msgid "" "Resetting to the default layout will cause any custom HTML layout changes " "you've made to be lost. Are you sure?" msgstr "" -#: includes/settings/renderers/class-button-settings-renderer.php:42 +#: includes/settings/renderers/class-button-settings-renderer.php:47 msgid "Reset" msgstr "Reset" @@ -7963,55 +8133,54 @@ msgstr "Reset" msgid "Deactivate" msgstr "Kikapcsolás" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -msgid "active" -msgstr "aktív" - -#: includes/settings/renderers/class-license-settings-renderer.php:43 #: includes/settings/renderers/class-license-settings-renderer.php:46 -#: includes/settings/renderers/class-license-settings-renderer.php:56 -#: includes/settings/renderers/class-license-settings-renderer.php:58 -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "Status: " -msgstr "Státusz: " - -#: includes/settings/renderers/class-license-settings-renderer.php:45 -#: includes/settings/renderers/class-license-settings-renderer.php:48 +#: includes/settings/renderers/class-license-settings-renderer.php:50 msgid "Activate" msgstr "Bekapcsolás" -#: includes/settings/renderers/class-license-settings-renderer.php:46 -msgid "inactive" -msgstr "Inaktív" - -#: includes/settings/renderers/class-license-settings-renderer.php:51 +#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag +#: includes/settings/renderers/class-license-settings-renderer.php:55 +#, fuzzy msgid "" -"Click the button above to check the status of your license. Please contact customer support if you think the reported status is wrong." +"Click the button above to check the status of your license. Please " +"%1$scontact customer support%2$s if you think the reported status is wrong." msgstr "" "Kattints a fenti gombra, hogy ellenőrizd a licenced státuszát. Kérlek " " keresd ügyfélszolgálatunkat ha a státuszt hibásnak " "gondolod." -#: includes/settings/renderers/class-license-settings-renderer.php:56 -msgid "expired" -msgstr "lejárt" - -#: includes/settings/renderers/class-license-settings-renderer.php:58 +#: includes/settings/renderers/class-license-settings-renderer.php:75 msgid "disabled" msgstr "letiltva" -#: includes/settings/renderers/class-license-settings-renderer.php:60 +#: includes/settings/renderers/class-license-settings-renderer.php:76 +msgid "inactive" +msgstr "Inaktív" + +#: includes/settings/renderers/class-license-settings-renderer.php:77 +msgid "active" +msgstr "aktív" + +#: includes/settings/renderers/class-license-settings-renderer.php:78 +msgid "expired" +msgstr "lejárt" + +#: includes/settings/renderers/class-license-settings-renderer.php:79 msgid "unknown" msgstr "ismeretlen" +#: includes/settings/renderers/class-license-settings-renderer.php:84 +#, fuzzy +msgid "Status: %s" +msgstr "Állapot:" + #. translators: screen reader text label for individual settings on a settings #. grid -#: includes/settings/renderers/class-settings-grid-renderer.php:75 +#: includes/settings/renderers/class-settings-grid-renderer.php:80 msgid " setting for field" msgstr "" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:35 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:38 msgid "Create Page" msgstr "" @@ -8019,80 +8188,80 @@ msgstr "" msgid "Ad Category" msgstr "Hirdetés Kategória" -#: includes/ui/class-category-selector.php:122 +#: includes/ui/class-category-selector.php:144 msgid "All Categories" msgstr "Összes kategória" -#: includes/ui/class-category-selector.php:171 +#: includes/ui/class-category-selector.php:193 msgid "Select a Sub-category" msgstr "Alkategória kiválasztása" -#: includes/ui/class-payment-terms-list.php:86 +#: includes/ui/class-payment-terms-list.php:103 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" msgstr "" -#: includes/ui/class-payment-terms-list.php:91 +#: includes/ui/class-payment-terms-list.php:108 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" msgstr "" -#: includes/ui/class-payment-terms-list.php:152 +#: includes/ui/class-payment-terms-list.php:169 msgid " listing allowed." msgid_plural " listings allowed." msgstr[0] "" msgstr[1] "" -#: includes/ui/class-payment-terms-list.php:160 +#: includes/ui/class-payment-terms-list.php:177 msgid "No images allowed." msgstr "" -#: includes/ui/class-payment-terms-list.php:163 +#: includes/ui/class-payment-terms-list.php:180 msgid " image allowed." msgid_plural " images allowed." msgstr[0] "" msgstr[1] "" -#: includes/ui/class-payment-terms-list.php:170 +#: includes/ui/class-payment-terms-list.php:187 msgid "Unlimited characters in listing's title." msgstr "" -#: includes/ui/class-payment-terms-list.php:173 +#: includes/ui/class-payment-terms-list.php:190 msgid "Up to characters in listing's title." msgstr "" -#: includes/ui/class-payment-terms-list.php:180 +#: includes/ui/class-payment-terms-list.php:197 msgid "Up to categories allowed." msgstr "" -#: includes/ui/class-payment-terms-list.php:187 +#: includes/ui/class-payment-terms-list.php:204 msgid "Unlimited characters in listing's content." msgstr "" -#: includes/ui/class-payment-terms-list.php:190 +#: includes/ui/class-payment-terms-list.php:207 msgid "Up to characters in listing's content." msgstr "" -#: includes/ui/class-payment-terms-list.php:196 +#: includes/ui/class-payment-terms-list.php:213 msgid "Purchase this plan" msgstr "" -#: includes/ui/class-payment-terms-list.php:197 +#: includes/ui/class-payment-terms-list.php:214 msgid "Pay for this plan with credits" msgstr "" -#: includes/ui/class-payment-terms-list.php:200 -#: includes/ui/class-payment-terms-list.php:204 +#: includes/ui/class-payment-terms-list.php:217 +#: includes/ui/class-payment-terms-list.php:221 msgid "Use this plan for free!" msgstr "" -#: includes/ui/class-payment-terms-list.php:209 -#: includes/ui/class-payment-terms-list.php:214 +#: includes/ui/class-payment-terms-list.php:226 +#: includes/ui/class-payment-terms-list.php:231 msgid "Select" msgstr "Választás" -#: includes/ui/class-payment-terms-list.php:213 +#: includes/ui/class-payment-terms-list.php:230 msgid "credits" msgstr "" @@ -8229,13 +8398,13 @@ msgstr "" "állítsa át a weboldalt ingyenes módba." #. translators: %s the step name -#: includes/views/class-base-page.php:82 +#: includes/views/class-base-page.php:83 msgid "Unkown step \"%s\". Please contact the administrator about this error." msgstr "" "Ismeretlen lépés \"%s\". Kérjük lépjen kapcsolatba az adminisztrátorral a " "hibával kapcsolatban." -#: includes/views/class-base-page.php:135 +#: includes/views/class-base-page.php:136 msgid "" "Your request cannot be processed at this time. Please try again or contact " "the administrator about the incident." @@ -8245,7 +8414,7 @@ msgstr "" #. translators: %1$s back link, %2$s transaction id #: includes/views/class-payment-step-decorator.php:41 -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:74 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:76 #, fuzzy msgid "" "You are trying to buy credits using a transaction created for a different " @@ -8277,18 +8446,18 @@ msgstr "" msgid "Congratulations. You have successfully added credit to your account." msgstr "Gratulálunk. Sikeresen hozzáadott krediteket a fiókjához." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:12 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:14 msgid "Buy Credits" msgstr "Kreditek Vásárlása" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:87 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:89 msgid "" "The payment associated with this transaction failed (see reasons below)." msgstr "" "A tranzakcióhoz kapcsolódó befizetés sikertelen (az okokat tekintse meg " "lentebb)." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:118 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:120 msgid "You are not allowed to buy credits." msgstr "Nincs jogosultsága kreditek vásárlásához." @@ -8302,33 +8471,54 @@ msgstr "" msgid "The instance of WP_Scripts is not ready!" msgstr "" -#: installer.php:154 +#: installer.php:160 msgid "30 Day Listing" msgstr "30 napos Listázás" -#: installer.php:822 +#: installer.php:307 msgid "Response to your AWPCP Demo Ad" msgstr "Válasz az ön AWPCP Demo hirdetésére" -#: installer.php:823 +#: installer.php:308 msgid "Someone has responded to your AWPCP Demo Ad" msgstr "Valaki válaszolt az ön AWPCP demo hirdetésére." -#: installer.php:848 +#: installer.php:333 msgid "Verify the email address used for Ad $title" msgstr "A $title hirdetéshez tartozó email cím ellenörzése/igazolása." +#: installer.php:334 +msgid "" +"Hello $author_name \n" +"\n" +"You recently posted the Ad $title to $website_name. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"$verification_link \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" +msgstr "" + #: templates/admin/debug/environment-debug-section.tpl.php:19 msgid "" "Click the button below to contact and get a report about " "you server's SSL/TSL features." msgstr "" -#: templates/admin/debug/environment-debug-section.tpl.php:30 +#: templates/admin/debug/environment-debug-section.tpl.php:32 msgid "Test your SSL Client" msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:16 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:20 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -8336,7 +8526,7 @@ msgid "" "Settings page." msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:23 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:27 msgid "" "Opening that page in your browser will flush the Rewrite Rules in your site. " "WordPress will then ask all installed and active plugins to register their " @@ -8344,24 +8534,29 @@ msgid "" "please contact customer support." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:3 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#, fuzzy +msgid "Plugin Pages" +msgstr "AWPCP Oldalak" + +#: templates/admin/delete-browse-categories-page-notice.tpl.php:4 msgid "" -"The page is no longer necessary. From now on, " -"all listings will be displayed in the page, even " -"when they are filtered by a particular category." +"The %1$s page is no longer necessary. From now on, all listings will be " +"displayed in the %2$s page, even when they are filtered by a particular " +"category." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:9 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:11 msgid "" -"The plugin will start redirecting all traffic to the page to make sure no broken links are created." +"The plugin will start redirecting all traffic to the %s page to make sure no " +"broken links are created." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:13 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:15 msgid "Click the button below to delete the page." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:14 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:18 msgid "Delete Page" msgstr "" @@ -8384,22 +8579,32 @@ msgid "" "new parent of the children categories." msgstr "" -#: templates/admin/delete-category-admin-page.tpl.php:32 +#. translators: %1$s: Cancel button , %2$s: Submit button label +#: templates/admin/delete-category-admin-page.tpl.php:34 msgid "" -"Click to go back to the list of categories or click " -" to proceed." +"Click %1$s to go back to the list of categories or click %2$s to proceed." msgstr "" #: templates/admin/delete-category-admin-page.tpl.php:51 msgid "Selected Category" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:158 +#: templates/admin/export-listings-admin-page.tpl.php:137 +#, fuzzy +msgid "Export Complete" +msgstr "befejezett" + +#: templates/admin/export-listings-admin-page.tpl.php:153 msgid "" "Click \"Cleanup\" once the file has been downloaded in order to remove all " "temporary data created by AWP Classifieds Plugin during the export process." msgstr "" +#: templates/admin/export-listings-admin-page.tpl.php:160 +#, fuzzy +msgid "Export Canceled" +msgstr "Befizetés törölve" + #: templates/admin/form-fields-admin-page.tpl.php:7 msgid "" "The table below shows all the form fields that users may need to fill to " @@ -8412,28 +8617,30 @@ msgstr "" "űrlap mezőinek újrarendezéséhez, és hogy melyik mező jelenjen meg a Hirdetés " "Részletei űrlapon." -#: templates/admin/form-fields-admin-page.tpl.php:11 -msgid "Form" -msgstr "Űrlap" - +#. translators: %s is a link to the Form Fields settings page. #: templates/admin/form-fields-admin-page.tpl.php:13 +#, fuzzy msgid "" -"Go to the settings section to control which of " -"the standard fields appear and if the user is required to enter a value. If " -"you have the Extra Fields module, the rest of the fields can be configured " -"from the Extra Fields admin section." +"Go to the %s settings section to control which of the standard fields appear " +"and if the user is required to enter a value. If you have the Extra Fields " +"module, the rest of the fields can be configured from the Extra Fields admin " +"section." msgstr "" "A beállítási szekcióba szabályozhatja a " "megjelenő alapmezőket, valamint hogy a felhasználónak kötelező-e értéket " "megadni. Ha rendelkezik az Extra Mezők modullal, a többi mező az Extra Mezők " "admin szekciójában állítható be." +#: templates/admin/form-fields-admin-page.tpl.php:14 +msgid "Form" +msgstr "Űrlap" + #: templates/admin/import/example-csv-file.tpl.php:8 msgid "Import Listings: Example CSV File" msgstr "" #: templates/admin/import/example-csv-file.tpl.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:84 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:76 msgid "See Supported CSV Headers" msgstr "" @@ -8452,7 +8659,7 @@ msgid "Header" msgstr "Fejléc" #: templates/admin/import/supported-csv-headers.tpl.php:39 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:86 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:78 msgid "See Example CSV File" msgstr "" @@ -8555,7 +8762,7 @@ msgstr "" msgid "Default user" msgstr "Alapértelmezett felhasználó" -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:178 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 #: templates/admin/import-listings-admin-page-import-form.tpl.php:44 msgid "" "Press the button below to cancel the current import operation and discard " @@ -8586,36 +8793,36 @@ msgstr "" msgid "Pause" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:24 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:21 msgid "CSV file" msgstr "CSV fájl" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:37 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:31 msgid "Images source" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:40 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:34 msgid "Don't import images" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:42 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:36 msgid "ZIP file" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:44 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:38 msgid "Local directory" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:49 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:43 msgid "Zip file containing images" msgstr "ZIP fájl képeket tartalmaz" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:62 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:54 msgid "Local directory path" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:74 -msgid "The relative path to a directory inside ." +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:64 +msgid "The relative path to a directory inside %s." msgstr "" #: templates/admin/listings/listing-information-metabox.tpl.php:56 @@ -8699,27 +8906,27 @@ msgid "Payment Options" msgstr "Fizetési Beállítások" #. translators: %s is the link the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:84 +#: templates/admin/main-classifieds-admin-page.tpl.php:87 msgid "" "Go to the %s section to edit/delete current categories or add new categories." msgstr "" "Válassza a %s szekciót a jelenlegi kategóriák szerkesztéséhez/törléséhez, " "vagy új kategóriák hozzáadásához." -#: templates/admin/main-classifieds-admin-page.tpl.php:90 +#: templates/admin/main-classifieds-admin-page.tpl.php:95 msgid "Total number of categories in the system" msgstr "Összes kategória száma a rendszerben" -#: templates/admin/main-classifieds-admin-page.tpl.php:95 +#: templates/admin/main-classifieds-admin-page.tpl.php:100 msgid "Number of Top Level parent categories" msgstr "Felső szintű kategóriák száma" -#: templates/admin/main-classifieds-admin-page.tpl.php:100 +#: templates/admin/main-classifieds-admin-page.tpl.php:105 msgid "Number of sub level children categories" msgstr "Alkategóriák száma" #. translators: %s is the link to the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:109 +#: templates/admin/main-classifieds-admin-page.tpl.php:114 msgid "" "You have not categories defined. Go to the %s section to set up your " "categories." @@ -8727,86 +8934,85 @@ msgstr "" "Nincsenek kategóriák meghatározva. Menjen a %s szekcióhoz a kategóriák " "beállításához." -#: templates/admin/manage-categories-admin-page.tpl.php:43 +#: templates/admin/manage-categories-admin-page.tpl.php:44 msgid "Parent Category" msgstr "Szülő kategória" -#: templates/admin/manage-categories-admin-page.tpl.php:52 +#: templates/admin/manage-categories-admin-page.tpl.php:53 msgid "Category list order" msgstr "Kategória lista sorrend" -#: templates/admin/manage-categories-admin-page.tpl.php:75 +#: templates/admin/manage-categories-admin-page.tpl.php:76 msgid "Icon Meanings:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:85 +#: templates/admin/manage-categories-admin-page.tpl.php:89 msgid "Move categories or ads under:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:92 +#: templates/admin/manage-categories-admin-page.tpl.php:96 msgid "Delete categories should do this with existing ads:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:93 +#: templates/admin/manage-categories-admin-page.tpl.php:97 msgid "Move ads to new category" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:94 +#: templates/admin/manage-categories-admin-page.tpl.php:98 msgid "Delete ads too" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:101 +#: templates/admin/manage-categories-admin-page.tpl.php:108 msgid "Move Selected Categories" msgstr "Kiválasztott kategóriák mozgatása" -#: templates/admin/manage-categories-admin-page.tpl.php:102 +#: templates/admin/manage-categories-admin-page.tpl.php:109 msgid "Delete Selected Categories" msgstr "Kiválasztott kategóriák törlése" -#: templates/admin/manage-categories-admin-page.tpl.php:119 +#: templates/admin/manage-categories-admin-page.tpl.php:126 msgid "Select all categories" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:122 -#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:129 +#: templates/admin/manage-categories-admin-page.tpl.php:145 msgid "Category ID" msgstr "Kategória ID" -#: templates/admin/manage-categories-admin-page.tpl.php:124 -#: templates/admin/manage-categories-admin-page.tpl.php:136 +#: templates/admin/manage-categories-admin-page.tpl.php:131 +#: templates/admin/manage-categories-admin-page.tpl.php:146 msgid "Category Name (Total Ads)" msgstr "Kategória neve" -#: templates/admin/manage-categories-admin-page.tpl.php:126 -#: templates/admin/manage-categories-admin-page.tpl.php:137 +#: templates/admin/manage-categories-admin-page.tpl.php:133 +#: templates/admin/manage-categories-admin-page.tpl.php:147 msgid "Parent" msgstr "Szülő" -#: templates/admin/manage-categories-admin-page.tpl.php:127 -#: templates/admin/manage-categories-admin-page.tpl.php:138 +#: templates/admin/manage-categories-admin-page.tpl.php:134 +#: templates/admin/manage-categories-admin-page.tpl.php:148 msgid "Order" msgstr "Rendezés" -#: templates/admin/manage-categories-admin-page.tpl.php:128 -#: templates/admin/manage-categories-admin-page.tpl.php:139 +#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:149 msgid "Action" msgstr "Művelet" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:2 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 msgid "What's your PayPal Merchant ID?" msgstr "" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:3 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:10 msgid "" "In order to verify payments made through PayPal, AWP Classifieds Plugin " "needs to know your PayPal Merchant ID." msgstr "" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:13 msgid "" -"Go to to obtain the Merchant ID and then go to the Payment Settings page to enter the " -"value." +"Go to %1$s to obtain the Merchant ID and then go to the %2$sPayment " +"Settings%3$s page to enter the value." msgstr "" #: templates/admin/profile/contact-information-fields.tpl.php:1 @@ -8997,7 +9203,8 @@ msgstr "Közzétéve" msgid "Expires on" msgstr "Lejár" -#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:9 +#. translators: %s: URL to renew the ad +#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:12 msgid "You can renew your Ad visiting this link: %s" msgstr "Megújíthatja a hirdetését ezen a linken keresztül: %s" @@ -9006,12 +9213,36 @@ msgstr "Megújíthatja a hirdetését ezen a linken keresztül: %s" msgid "Hello" msgstr "Helló!" -#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:2 +#: templates/email/listing-media-upload-notification.plain.tpl.php:2 +#, fuzzy +msgid "Hello," +msgstr "Helló!" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:9 +#, fuzzy +msgid "The following media files were recently uploaded to listing \"%s\":" +msgstr "A következő oldalak visszaállításra kerültek: " + +#: templates/email/listing-media-upload-notification.plain.tpl.php:23 +#, fuzzy +msgid "" +"The following media files were recently uploaded to listing \"%s\" and are " +"awaiting approval:" +msgstr "\"%s\" listázás képei elfogadásra várnak" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:36 +msgid "Click here to manage media uploaded to the listing: %s." +msgstr "" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:44 +msgid "Click here to view the listing: %s." +msgstr "" + +#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:3 msgid "" -"The ad \"\" was modified. A copy of the details sent to the " -"customer can be found below. You can follow this link " -"to go to the Manage Ad Listing section to approve/reject/spam and see the " -"full version of the Ad." +"The ad \"%s\" was modified. A copy of the details sent to the customer can " +"be found below. You can follow this link %s to go to the Manage Ad Listing " +"section to approve/reject/spam and see the full version of the Ad." msgstr "" #: templates/email/listing-was-flagged.plain.tpl.php:4 @@ -9022,30 +9253,130 @@ msgstr "" "Ellenőrzésre váró listázások vannak: . Kérjük ellenőrizze őket " "itt:" -#: templates/frontend/listings.tpl.php:24 +#: templates/frontend/listings.tpl.php:37 msgid "There were no listings found." msgstr "Nem találhatóak listázások." +#: templates/frontend/order-submit-listing-section.tpl.php:41 +#, fuzzy +msgid "Who is the owner of this ad?" +msgstr "Válasszon hirdetéstulajdonost" + +#: templates/frontend/order-submit-listing-section.tpl.php:86 +#, fuzzy +msgid "Your ad will be posted on the following categories: %s." +msgstr "A Facebook API a következő hibával tért vissza: %s." + #: templates/privacy-policy.tpl.php:10 msgid "Suggested text:" msgstr "" -#. Author URI of the plugin/theme -msgid "https://awpcp.com/" +#: templates/privacy-policy.tpl.php:11 +msgid "" +"When you submit a classified listing, the content of the listing and its " +"metadata are retained indefinitely. All users can see, edit or delete the " +"personal information included on their listings at any time. Website " +"administrators can also see and edit that information." msgstr "" -#. Description of the plugin/theme -msgid "Run a free or paid classified ads service on your WordPress site." +#: templates/privacy-policy.tpl.php:14 +msgid "" +"Website visitors can see the contact name, website URL, phone number, " +"address and other information included in your submission to describe the " +"classified listing." msgstr "" -#. Author of the plugin/theme +#: templates/privacy-policy.tpl.php:18 +msgid "" +"Contact name, email address, website URL and content of submitted classified " +"listings may be checked through Akismet's spam detection service. The " +"Akismet service privacy policy is available %1$shere%2$s." +msgstr "" + +#: templates/privacy-policy.tpl.php:24 #, fuzzy -msgid "AWP Classifieds Team" -msgstr "Hirdetési Oldalak" +msgid "Payment Information" +msgstr "Több Információ" -#: admin/admin-panel-fees-table.php:254 -msgctxt "all categories" -msgid "All" +#: templates/privacy-policy.tpl.php:28 +msgid "" +"If you pay to post a classified listing entering your credit card and " +"billing information directly on %s, the credit card information won't be " +"stored but it will be shared through a secure connection with the following " +"payment gateways to process the payment:" +msgstr "" + +#: templates/privacy-policy.tpl.php:36 +#, fuzzy +msgid "PayPal - %1$s" +msgstr "PayPal" + +#: templates/privacy-policy.tpl.php:42 +#, fuzzy +msgid "Authorize.Net - %s" +msgstr "Authorize.Net" + +#: templates/privacy-policy.tpl.php:48 +msgid "Stripe - %s" +msgstr "" + +#: templates/privacy-policy.tpl.php:54 +#, fuzzy +msgid "Regions" +msgstr "Régiók" + +#: templates/privacy-policy.tpl.php:56 +msgid "" +"If you choose to see listings published on a specific region, a cookie will " +"be stored on your browser for the remainder of the session to remember the " +"selected region." +msgstr "" + +#: templates/privacy-policy.tpl.php:58 +#, fuzzy +msgid "Comments and Ratings" +msgstr "Kommentek & értékelések" + +#: templates/privacy-policy.tpl.php:60 +msgid "" +"When visitors leave comments and reviews for classified listings we collect " +"the data shown in the comments form, and also the visitor’s IP address to " +"help spam detection." +msgstr "" + +#: templates/privacy-policy.tpl.php:64 +msgid "" +"Visitor comments may be checked through Akismet's spam detection service. " +"The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" + +#: templates/privacy-policy.tpl.php:70 +msgid "Restricted Categories" +msgstr "Korlátozott kategóriák" + +#: templates/privacy-policy.tpl.php:72 +msgid "" +"When you agree to see listings or publish a listing on a restricted " +"category, a cookie will be stored in your browser to remember your decision. " +"The cookie will be stored on your browser for the remainder of that session." +msgstr "" + +#. Author URI of the plugin/theme +msgid "https://awpcp.com/" +msgstr "" + +#. Description of the plugin/theme +msgid "Run a free or paid classified ads service on your WordPress site." +msgstr "" + +#. Author of the plugin/theme +#, fuzzy +msgid "AWP Classifieds Team" +msgstr "Hirdetési Oldalak" + +#: admin/admin-panel-fees-table.php:254 +msgctxt "all categories" +msgid "All" msgstr "Mind" #: admin/admin-panel-users.php:42 @@ -9058,28 +9389,28 @@ msgctxt "awpcp admin menu" msgid "Classifieds" msgstr "Apróhirdetések" -#: admin/admin-panel.php:810 includes/settings/class-listings-settings.php:469 +#: admin/admin-panel.php:794 includes/settings/class-listings-settings.php:469 msgctxt "page name" msgid "Show Ad" msgstr "" -#: admin/admin-panel.php:818 +#: admin/admin-panel.php:802 msgctxt "page name" msgid "Edit Ad" msgstr "Hirdetés Szerkesztése" -#: admin/class-csv-exporter.php:82 +#: admin/class-csv-exporter.php:83 msgctxt "admin csv-export" msgid "Could not create a temporary directory for handling this CSV export." msgstr "" -#: admin/class-csv-exporter.php:85 +#: admin/class-csv-exporter.php:86 msgctxt "admin csv-export" msgid "Could not create awpcp-csv-exports directory." msgstr "" #. translators: %s the error. -#: admin/class-csv-exporter.php:91 +#: admin/class-csv-exporter.php:95 msgctxt "admin csv-export" msgid "Error while creating a temporary directory for CSV export: %s" msgstr "" @@ -9089,76 +9420,73 @@ msgctxt "admin csv-export" msgid "Could not decode export state information." msgstr "" -#: admin/class-debug-admin-page.php:136 +#: admin/class-debug-admin-page.php:137 msgctxt "debug page" msgid "Plugin Info" msgstr "" -#: admin/class-debug-admin-page.php:137 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:33 +#: admin/class-debug-admin-page.php:138 msgctxt "debug page" msgid "Plugin Pages" msgstr "" -#: admin/class-debug-admin-page.php:138 +#: admin/class-debug-admin-page.php:139 msgctxt "debug page" msgid "Plugin Settings" msgstr "" -#: admin/class-debug-admin-page.php:139 +#: admin/class-debug-admin-page.php:140 msgctxt "debug page" msgid "Environment" msgstr "" -#: admin/class-debug-admin-page.php:140 -#: admin/templates/admin-panel-debug.tpl.php:32 +#: admin/class-debug-admin-page.php:141 +#: admin/templates/admin-panel-debug.tpl.php:59 msgctxt "debug page" msgid "Rewrite Rules" msgstr "ReWrite szabályok" -#: admin/class-debug-admin-page.php:177 +#: admin/class-debug-admin-page.php:178 msgctxt "debug page" msgid "Plugin Version" msgstr "" -#: admin/class-debug-admin-page.php:283 -#: admin/templates/admin-panel-debug.tpl.php:126 +#: admin/class-debug-admin-page.php:284 msgctxt "debug page" msgid "cURL's alternate CA info (cacert.pem)" msgstr "cURL CA info (cacert.pem) alternatíva" -#: admin/class-debug-admin-page.php:287 -#: admin/templates/admin-panel-debug.tpl.php:130 +#: admin/class-debug-admin-page.php:288 msgctxt "debug page" msgid "PayPal Connection" msgstr "PayPal kapcsolat" -#: admin/class-debug-admin-page.php:359 +#: admin/class-debug-admin-page.php:360 msgctxt "debug page" msgid "Working" msgstr "Működik" -#: admin/class-debug-admin-page.php:362 -#: admin/templates/admin-panel-debug.tpl.php:136 +#: admin/class-debug-admin-page.php:363 msgctxt "debug page" msgid "Not Working" msgstr "Nem működik" -#: admin/templates/admin-panel-debug.tpl.php:22 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:31 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:34 msgctxt "debug page" msgid "Flush Rewrite Rules" msgstr "Újraírási szabályok törlése és újraírása, flush" -#: admin/templates/admin-panel-debug.tpl.php:26 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s Linked +#. URL in anchor link +#: admin/templates/admin-panel-debug.tpl.php:48 +#, fuzzy msgctxt "debug page" msgid "" -"This information can help AWPCP Developers to debug possible problems. If " -"you are submitting a bug report please Download the " -"Debug Information and attach it to your bug report or take a " -"minute to copy the information below to http://fpaste.org and provide the resulting URL in " -"your report." +"This information can help the AWP Team to debug possible problems. If you " +"are submitting a bug report please %1$sDownload the Debug Information%2$s " +"and attach it to your bug report or take a minute to copy the information " +"below to %3$s and provide the resulting URL in your report." msgstr "" "Ez az információ segíthet az AWPCP fejlesztőknek a lehetséges hibák " "felkutatásában. Ha ön problémát kíván bejelenteni, kérjük ide és a létrehozott URL címet küldje el a " "bejelentő űrlapon." -#: admin/templates/admin-panel-debug.tpl.php:29 +#: admin/templates/admin-panel-debug.tpl.php:56 msgctxt "debug page" msgid "AWPCP Pages" msgstr "AWPCP Oldalak" -#: admin/templates/admin-panel-debug.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:57 msgctxt "debug page" msgid "PHP Info" msgstr "PHP Info" -#: admin/templates/admin-panel-debug.tpl.php:31 +#: admin/templates/admin-panel-debug.tpl.php:58 msgctxt "debug page" msgid "AWPCP Settings" msgstr "AWPCP Beállítások" -#: admin/templates/admin-panel-debug.tpl.php:118 -msgctxt "debug page" -msgid "PHP Version" -msgstr "PHP verzió" - -#: admin/templates/admin-panel-debug.tpl.php:122 -msgctxt "debug page" -msgid "cURL" -msgstr "cURL" - #. translators: %s is the URL to download the debug information #: templates/admin/debug/debug-admin-page.tpl.php:17 msgctxt "debug page" @@ -9201,22 +9519,22 @@ msgid "" "Debug Information and attach it to your bug report." msgstr "" -#: templates/admin/debug/plugin-info-debug-section.tpl.php:29 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:38 msgctxt "debug page" msgid "There are no premium modules activated right now." msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:38 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:49 msgctxt "debug page" msgid "Reference" msgstr "Hivatkozások" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:39 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:50 msgctxt "debug page" msgid "Page Title" msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:51 msgctxt "debug page" msgid "Stored ID" msgstr "Tárolt ID" @@ -9231,96 +9549,45 @@ msgctxt "debug page" msgid "Setting Value" msgstr "" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Exists" msgstr "Létezik" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Missing" msgstr "Hiányzik" -#: admin/class-import-listings-admin-page.php:358 +#: admin/class-import-listings-admin-page.php:362 msgctxt "" "description for messages used to show feedback for the Import Listings " "operation" msgid " in line " msgstr "" -#: admin/class-import-listings-admin-page.php:369 +#: admin/class-import-listings-admin-page.php:373 msgctxt "text for page subtitle and submit button" msgid "Test Import" msgstr "Importálás tesztelése" -#: admin/class-import-listings-admin-page.php:371 +#: admin/class-import-listings-admin-page.php:375 msgctxt "text for page subtitle and submit button" msgid "Import" msgstr "Importálás" -#: admin/class-import-settings-admin-page.php:104 +#: admin/class-import-settings-admin-page.php:102 msgctxt "import settings" msgid "Are you sure you want to do this?" msgstr "Biztosan ezt szeretnénk?" -#: admin/class-import-settings-admin-page.php:116 +#: admin/class-import-settings-admin-page.php:115 msgctxt "import settings" msgid "" "There was a problem trying to read the settings file; it appears the file " "wasn't uploaded correctly. Please try again." msgstr "" -#: admin/class-import-settings-admin-page.php:122 -msgctxt "another-wordpress-classifieds-plugin" -msgid "Your settings have been successfully imported." -msgstr "" - -#: includes/settings/class-email-settings.php:201 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello {author_name} \n" -"\n" -"You recently posted the Ad {listing_title} to {website_title}. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"{verification_link} \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" -msgstr "" - -#: installer.php:849 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello $author_name \n" -"\n" -"You recently posted the Ad $title to $website_name. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"$verification_link \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" -msgstr "" - #: admin/credit-plans/class-delete-credit-plan-action-handler.php:30 #: admin/credit-plans/class-edit-credit-plan-action-handler.php:27 msgctxt "credit plans ajax" @@ -9342,17 +9609,17 @@ msgctxt "form field slug" msgid "Slug" msgstr "Slug" -#: admin/import/class-csv-importer-delegate.php:98 +#: admin/import/class-csv-importer-delegate.php:101 msgctxt "csv importer" msgid "Required value for column \"\" is missing." msgstr "" -#: admin/import/class-csv-importer-delegate.php:181 +#: admin/import/class-csv-importer-delegate.php:184 msgctxt "csv importer" msgid "A new user '%s' with email address '%s' and password '%s' was created." msgstr "" -#: admin/import/class-csv-importer-delegate.php:252 +#: admin/import/class-csv-importer-delegate.php:256 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9361,7 +9628,7 @@ msgid "" "user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:255 +#: admin/import/class-csv-importer-delegate.php:258 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9369,7 +9636,7 @@ msgid "" "a username or select a default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:258 +#: admin/import/class-csv-importer-delegate.php:260 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9377,65 +9644,65 @@ msgid "" "include a contact_email or select a default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:312 +#: admin/import/class-csv-importer-delegate.php:316 msgctxt "csv importer" msgid "No category with name \"\" was found." msgstr "" -#: admin/import/class-csv-importer-delegate.php:328 +#: admin/import/class-csv-importer-delegate.php:332 msgctxt "csv importer" msgid "There was an error trying to create category \"\"." msgstr "" -#: admin/import/class-csv-importer-delegate.php:337 +#: admin/import/class-csv-importer-delegate.php:342 msgctxt "csv importer" msgid "" "A category with name \"\" was created, but there was an error " "trying to retrieve its information from the database." msgstr "" -#: admin/import/class-csv-importer-delegate.php:349 +#: admin/import/class-csv-importer-delegate.php:355 msgctxt "csv importer" msgid "Item price must be a number." msgstr "" -#: admin/import/class-csv-importer-delegate.php:363 +#: admin/import/class-csv-importer-delegate.php:369 msgctxt "csv importer" msgid "The start date is missing and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:364 +#: admin/import/class-csv-importer-delegate.php:370 msgctxt "csv importer" msgid "The start date is invalid and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:365 +#: admin/import/class-csv-importer-delegate.php:371 msgctxt "csv importer" msgid "Invalid default start date." msgstr "" -#: admin/import/class-csv-importer-delegate.php:430 -#: admin/import/class-csv-importer-delegate.php:431 +#: admin/import/class-csv-importer-delegate.php:436 +#: admin/import/class-csv-importer-delegate.php:437 msgctxt "csv importer" msgid "The end date is missing and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:432 +#: admin/import/class-csv-importer-delegate.php:438 msgctxt "csv importer" msgid "Invalid default end date." msgstr "" -#: admin/import/class-csv-importer-delegate.php:499 +#: admin/import/class-csv-importer-delegate.php:505 msgctxt "csv importer" msgid "Image file with name not found." msgstr "" -#: admin/import/class-csv-importer-delegate.php:566 +#: admin/import/class-csv-importer-delegate.php:576 msgctxt "csv importer" msgid "There was an error trying to store imported data into the database." msgstr "" -#: admin/import/class-csv-importer-delegate.php:587 +#: admin/import/class-csv-importer-delegate.php:599 msgctxt "csv importer" msgid "" "There was an error trying to import one of the images: {image-validation-" @@ -9457,20 +9724,6 @@ msgctxt "drip-autoresponder" msgid "The email address entered is not valid." msgstr "A megadott email cím nem valós" -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 -msgctxt "drip-autoresponder" -msgid "Thank you for signing up!" -msgstr "Köszönjük a feliratkozást!" - -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 -msgctxt "drip-autoresponder" -msgid "" -"Please check your email and click the link provided to confirm your " -"subscription." -msgstr "" -"Kérjük menjen az email fiókjába, s klikkeljen az általunk küldött linkre, " -"hogy megerősítse feliratkozását" - #: admin/pointers/class-drip-autoresponder.php:22 msgctxt "drip-autoresponder" msgid "Yes, I'd like my course, please" @@ -9481,18 +9734,6 @@ msgctxt "drip-autoresponder" msgid "No, thanks" msgstr "Köszönöm, nem" -#: admin/pointers/class-drip-autoresponder.php:62 -msgctxt "drip-autoresponder" -msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" -msgstr "Tudni szeretné egy nagyszerű apróhirdető oldal építésének titkait? " - -#: admin/pointers/class-drip-autoresponder.php:63 -msgctxt "drip-autoresponder" -msgid "" -"Find out how to create a compelling, thriving classifieds site from scratch " -"in this ridiculously actionable (and free) 5-part email course." -msgstr "" - #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:6 msgctxt "credit plans form" msgid "Edit Credit Plan Details" @@ -9508,28 +9749,6 @@ msgctxt "Quick Start Guide" msgid "No Thanks" msgstr "Köszönöm, nem" -#: admin/templates/admin-quick-start-guide-notice.tpl.php:9 -msgctxt "Quick Start Guide" -msgid "I'll figure it out on my own." -msgstr "Rájövök magamtól." - -#: admin/templates/admin-quick-start-guide-notice.tpl.php:17 -msgctxt "Quick Start Guide" -msgid "Help me get my classifieds running quickly." -msgstr "Hogy lehet az apróhirdetéseimet gyorsan beindítani?" - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:75 -msgctxt "Browse the Quick Start Guide" -msgid "Browse the %s." -msgstr "%s böngészése" - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:85 -msgctxt "Read the full Documentation" -msgid "Read the full %s." -msgstr "Teljes %s elolvasása" - #: admin/templates/admin-widget-modification-notice.tpl.php:7 msgctxt "widget modification notice" msgid "Close this, I'll check my Widget configuration." @@ -9579,17 +9798,17 @@ msgctxt "404 HTTP status description" msgid "Listing not found" msgstr "" -#: frontend/page-place-ad.php:1417 +#: frontend/page-place-ad.php:1420 msgctxt "upload listing images form" msgid "Preview Ad" msgstr "Előnézet" -#: frontend/page-place-ad.php:1419 +#: frontend/page-place-ad.php:1422 msgctxt "upload listing images form" msgid "Place Ad" msgstr "Hirdetés feladása" -#: frontend/page-place-ad.php:1421 +#: frontend/page-place-ad.php:1424 msgctxt "upload listing images form" msgid "Checkout" msgstr "Fizetés" @@ -9670,7 +9889,7 @@ msgctxt "listing row action" msgid "Unflag" msgstr "Megjelölés visszavonása" -#: frontend/templates/email-send-ad-access-key.tpl.php:9 +#: frontend/templates/email-send-ad-access-key.tpl.php:13 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:18 #: templates/email/listing-edit-link-with-access-token.tpl.php:9 msgctxt "edit link email" @@ -9720,11 +9939,6 @@ msgctxt "loading region options" msgid "loading..." msgstr "betöltés" -#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 -msgctxt "add credit checkout step" -msgid "Complete Payment" -msgstr "Fizetés befejezése" - #: frontend/templates/page-edit-ad-email-key-step.tpl.php:34 msgctxt "enter email and access key form" msgid "Continue" @@ -9735,33 +9949,28 @@ msgctxt "send ad access key form" msgid "Continue" msgstr "Folytatás" -#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 -msgctxt "place ad checkout step" -msgid "Complete Payment" -msgstr "Fizetés befejezése" - -#: frontend/templates/page-place-ad-details-step.tpl.php:59 +#: frontend/templates/page-place-ad-details-step.tpl.php:63 msgctxt "ad details form" msgid "Start Date" msgstr "Kezdeti dátum" -#: frontend/templates/page-place-ad-details-step.tpl.php:69 +#: frontend/templates/page-place-ad-details-step.tpl.php:73 msgctxt "ad details form" msgid "End Date" msgstr "Befejezési dátum" -#: frontend/templates/page-place-ad-details-step.tpl.php:98 +#: frontend/templates/page-place-ad-details-step.tpl.php:104 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:9 msgctxt "ad details form" msgid "Read our Terms of Service" msgstr "Felhasználási feltételek" -#: frontend/templates/page-place-ad-details-step.tpl.php:100 +#: frontend/templates/page-place-ad-details-step.tpl.php:106 msgctxt "ad details form" msgid "Terms of service:" msgstr "Felhasználási feltételek" -#: frontend/templates/page-place-ad-details-step.tpl.php:105 +#: frontend/templates/page-place-ad-details-step.tpl.php:111 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:17 msgctxt "ad details form" msgid "I agree to the terms of service" @@ -9826,12 +10035,12 @@ msgctxt "ad details form" msgid "Terms of Service" msgstr "Használati Feltételek" -#: frontend/templates/page-place-ad-details-step.tpl.php:120 +#: frontend/templates/page-place-ad-details-step.tpl.php:126 msgctxt "listing details form" msgid "Preview Ad" msgstr "Előnézet" -#: frontend/templates/page-place-ad-details-step.tpl.php:122 +#: frontend/templates/page-place-ad-details-step.tpl.php:128 msgctxt "listing details form" msgid "Continue" msgstr "Folytatás" @@ -9861,7 +10070,7 @@ msgctxt "place ad order step" msgid "Please select the owner for this Ad" msgstr "Válasszon hirdetéstulajdonost" -#: frontend/templates/page-place-ad-order-step.tpl.php:82 +#: frontend/templates/page-place-ad-order-step.tpl.php:84 msgctxt "listing order form" msgid "Continue" msgstr "Folytatás" @@ -9872,25 +10081,12 @@ msgctxt "images upload step" msgid "Thumbnails of already uploaded images are shown below." msgstr "A feltöltött képek kicsiben lentebb láthatók" -#: frontend/templates/page-renew-ad-order-step.tpl.php:6 -msgctxt "renew ad order step" -msgid "Select Payment Term" -msgstr "Fizetési feltétel választása" - -#: frontend/templates/page-search-ads.tpl.php:88 +#: frontend/templates/page-search-ads.tpl.php:95 msgctxt "ad search form" msgid "Find Ads" msgstr "" -#: frontend/templates/payments-billing-form.tpl.php:1 -msgctxt "awpcp billing form" -msgid "" -"Please fill in the billing information in the form below to place your " -"payment." -msgstr "" -"Kérjük töltse ki a számlázási információkat hogy elhelyezhesse kifizetését" - -#: frontend/templates/payments-checkout-page.tpl.php:13 +#: frontend/templates/payments-checkout-page.tpl.php:12 msgctxt "checkout step" msgid "" "You are about to pay for the following items. Please review the order and " @@ -9899,106 +10095,47 @@ msgstr "" "Az alábbi termékeket fizeti ki. Kérjük ellenőrizze a rendelést, és válasszon " "fizetési módot." -#: frontend/templates/payments-checkout-page.tpl.php:17 +#: frontend/templates/payments-checkout-page.tpl.php:16 msgctxt "checkout step" msgid "Payment Terms" msgstr "Fizetési feltételek" -#: frontend/templates/payments-checkout-page.tpl.php:23 +#: frontend/templates/payments-checkout-page.tpl.php:22 msgctxt "checkout step" msgid "Payment Method" msgstr "Fizetési mód" #: frontend/templates/payments-checkout-payment-page.tpl.php:8 -#: frontend/templates/payments-payment-page.tpl.php:3 msgctxt "checkout-payment page" msgid "You are about to pay for the following items." msgstr "Az alábbi termékeket fizeti ki." #: frontend/templates/payments-checkout-payment-page.tpl.php:10 -#: frontend/templates/payments-payment-page.tpl.php:5 msgctxt "checkout-payment page" msgid "Payment Terms" msgstr "Fizetési feltételek" -#: includes/payments-api.php:802 +#: includes/payments-api.php:889 msgctxt "checkout-payment page" msgid "Please use the button below to complete your payment." msgstr "Kérjük nyomja meg az alábbi gombot a fizetés befejezéséhez." -#: frontend/templates/payments-credit-plans-table.tpl.php:7 -msgctxt "credit plans table" -msgid "" -"You can additionally purchase a Credit Plan to add credit to your account. " -"If you select to pay using credits, the price of the selected payment term " -"will be deducted from your account balance after you have completed payment." -msgstr "" -"Emellett kredit-csomagot is vásárolhat. Amennyiben kredittel fizet, az " -"levonásra kerül fiókjából fizetés után." - -#: frontend/templates/payments-credit-plans-table.tpl.php:51 -msgctxt "credit plans table" -msgid "clear selection" -msgstr "kiválasztás törlése" - -#: includes/payments-api.php:722 -msgctxt "credit plans table" -msgid "Plan" -msgstr "Terv" - -#: includes/payments-api.php:723 -msgctxt "credit plans table" -msgid "Description" -msgstr "Leírás" - -#: includes/payments-api.php:724 -msgctxt "credit plans table" -msgid "Credits" -msgstr "Kredit" - -#: includes/payments-api.php:725 -msgctxt "credit plans table" -msgid "Price" -msgstr "Ár" - -#: frontend/templates/payments-payment-completed-page.tpl.php:2 -msgctxt "payment completed page" -msgid "Transaction Details" -msgstr "Tranzakció részletek" - #: frontend/templates/payments-paypal-payment-button.tpl.php:27 msgctxt "paypal-checkout-form" msgid "Return to %s" msgstr "Vissza: %s" -#: frontend/templates/payments-transaction-items-table.tpl.php:4 -#: frontend/templates/payments-transaction-items-table.tpl.php:13 -msgctxt "transaction items" -msgid "Item" -msgstr "Termék" - -#: frontend/templates/payments-transaction-items-table.tpl.php:5 -#: frontend/templates/payments-transaction-items-table.tpl.php:17 -msgctxt "transaction items" -msgid "Amount" -msgstr "Összeg" - -#: frontend/templates/payments-transaction-items-table.tpl.php:34 -msgctxt "transaction items" -msgid "Total Amount (credit)" -msgstr "Teljes összeg (kredit)" - #: frontend/templates/payments-transaction-items-table.tpl.php:40 msgctxt "transaction items" msgid "Total Amount" msgstr "Teljes összeg" -#: functions.php:743 +#: functions.php:749 msgctxt "comma separated list of things" msgid "%s and %d more." msgstr "%s és %d több." -#: functions.php:1200 +#: functions.php:1222 msgctxt "default blog title" msgid "Classifieds Website" msgstr "Hirdetési Weboldal" @@ -10227,27 +10364,27 @@ msgctxt "listing status" msgid "Active" msgstr "Aktív" -#: includes/admin/listings/class-listings-table-columns-handler.php:211 +#: includes/admin/listings/class-listings-table-columns-handler.php:212 msgctxt "listing status" msgid "Pending Approval" msgstr "" -#: includes/admin/listings/class-listings-table-columns-handler.php:215 +#: includes/admin/listings/class-listings-table-columns-handler.php:217 msgctxt "listing status" msgid "Expired" msgstr "Lejárt" -#: includes/admin/listings/class-listings-table-columns-handler.php:219 +#: includes/admin/listings/class-listings-table-columns-handler.php:222 msgctxt "listing status" msgid "Disabled" msgstr "Letiltva" -#: includes/admin/listings/class-listings-table-columns-handler.php:223 +#: includes/admin/listings/class-listings-table-columns-handler.php:227 msgctxt "listing status" msgid "Pending Payment" msgstr "" -#: includes/admin/listings/class-listings-table-columns-handler.php:227 +#: includes/admin/listings/class-listings-table-columns-handler.php:232 msgctxt "listing status" msgid "Pending Verification" msgstr "" @@ -10262,17 +10399,17 @@ msgctxt "listings row action" msgid "Quick View" msgstr "" -#: includes/class-awpcp.php:1458 +#: includes/class-awpcp.php:1449 msgctxt "[UI Datepicker] Display text for previous month link" msgid "<Prev" msgstr "<Prev" -#: includes/class-awpcp.php:1459 +#: includes/class-awpcp.php:1450 msgctxt "[UI Datepicker] Display text for next month link" msgid "Next>" msgstr "Következő>" -#: includes/class-awpcp.php:1465 +#: includes/class-awpcp.php:1456 msgctxt "[UI Datepicker] The first day of the week, Sun = 0, Mon = 1, ..." msgid "0" msgstr "0" @@ -10324,7 +10461,7 @@ msgid "Regions" msgstr "Régiók" #. translators: the numbers that need to be added up for the math challenge. -#: includes/frontend/class-default-captcha-provider.php:34 +#: includes/frontend/class-default-captcha-provider.php:45 msgctxt "CAPTCHA" msgid "Enter the value of the following sum: %1$d + %2$d" msgstr "" @@ -10354,79 +10491,69 @@ msgctxt "order submit listing section" msgid "Please select a category for your ad" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:44 -msgctxt "order submit listing section" -msgid "Who is the owner of this ad?" -msgstr "" - -#: templates/frontend/order-submit-listing-section.tpl.php:59 +#: templates/frontend/order-submit-listing-section.tpl.php:57 msgctxt "order submit listing section" msgid "" "Please select the duration and features that will be available for this ad" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:81 +#: templates/frontend/order-submit-listing-section.tpl.php:77 msgctxt "order submit listing section" msgid "Continue" msgstr "Folytatás" -#: templates/frontend/order-submit-listing-section.tpl.php:87 -msgctxt "order submit listing section" -msgid "Your ad will be posted on the following categories: {categories}." -msgstr "" - -#: templates/frontend/order-submit-listing-section.tpl.php:95 +#: templates/frontend/order-submit-listing-section.tpl.php:98 msgctxt "order submit listing section" msgid "Credit Plan:" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:96 +#: templates/frontend/order-submit-listing-section.tpl.php:99 msgctxt "order submit listing section" msgid "Owner:" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:99 +#: templates/frontend/order-submit-listing-section.tpl.php:102 msgctxt "order submit listing section" msgid "Loading ad fields" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:100 +#: templates/frontend/order-submit-listing-section.tpl.php:103 msgctxt "order submit listing section" msgid "Change selection" msgstr "" -#: includes/frontend/class-recaptcha-v2.php:66 +#: includes/frontend/class-recaptcha-v2.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing" msgstr "A titkos paraméter hiányzik" -#: includes/frontend/class-recaptcha-v2.php:69 -#: includes/helpers/class-recaptcha-v3.php:74 +#: includes/frontend/class-recaptcha-v2.php:96 +#: includes/helpers/class-recaptcha-v3.php:96 msgctxt "recaptcha-error" msgid "The secret parameter is invalid or malformed." msgstr "A titkos paraméter érvénytelen vagy torzított." -#: includes/frontend/class-recaptcha-v2.php:72 +#: includes/frontend/class-recaptcha-v2.php:99 msgctxt "recaptcha-error" msgid "The response parameter is missing." msgstr "A válasz paraméter hiányzik." -#: includes/frontend/class-recaptcha-v2.php:76 +#: includes/frontend/class-recaptcha-v2.php:103 msgctxt "recaptcha-error" msgid "The response parameter is invalid or malformed." msgstr "A válasz paraméter érvénytelen vagy torzított." -#: includes/helpers/class-recaptcha-v3.php:71 +#: includes/helpers/class-recaptcha-v3.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:77 +#: includes/helpers/class-recaptcha-v3.php:99 msgctxt "recaptcha-error" msgid "reCAPTCHA score was not included." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:81 +#: includes/helpers/class-recaptcha-v3.php:103 msgctxt "recaptcha-error" msgid "reCAPTCHA couldn't analyze the current interaction." msgstr "" @@ -10562,7 +10689,7 @@ msgid "remaining" msgstr "hátralévő" #. translators: %s is the type of region. -#: includes/helpers/widgets/multiple-region-selector.php:122 +#: includes/helpers/widgets/multiple-region-selector.php:142 msgctxt "Select in Multiple Region Selector" msgid "Select %s" msgstr "%s kiválasztása" @@ -10584,7 +10711,7 @@ msgid "Add New" msgstr "Új hozzáadása" #: includes/models/class-custom-post-types.php:157 -#: includes/settings/class-listings-settings.php:595 +#: includes/settings/class-listings-settings.php:597 msgctxt "listing post type slug" msgid "classifieds" msgstr "" @@ -10604,7 +10731,7 @@ msgctxt "payment gateways" msgid "2Checkout" msgstr "2Checkout" -#: includes/payment-gateway-paypal-standard.php:24 +#: includes/payment-gateway-paypal-standard.php:26 msgctxt "payment gateways" msgid "PayPal" msgstr "PayPal" @@ -10642,57 +10769,77 @@ msgid_plural "Years" msgstr[0] "Év" msgstr[1] "Évek" -#: includes/payment-terms-table.php:33 +#: includes/payment-terms-table.php:38 msgctxt "place ad payment terms column headers" msgid "Payment Term" msgstr "Fizetési feltétel" -#: includes/payment-terms-table.php:34 +#: includes/payment-terms-table.php:39 msgctxt "place ad payment terms column headers" msgid "Ads Allowed" msgstr "Engedélyezett Hirdetések" -#: includes/payment-terms-table.php:35 +#: includes/payment-terms-table.php:40 msgctxt "place ad payment terms column headers" msgid "Images Allowed" msgstr "Engedélyezett képek" -#: includes/payment-terms-table.php:36 +#: includes/payment-terms-table.php:41 msgctxt "place ad payment terms column headers" msgid "Characters in Title" msgstr "Karakterek a címben" -#: includes/payment-terms-table.php:37 +#: includes/payment-terms-table.php:42 msgctxt "place ad payment terms column headers" msgid "Chars in Description" msgstr "Karakterek a Leírásban" -#: includes/payment-terms-table.php:38 +#: includes/payment-terms-table.php:43 msgctxt "place ad payment terms column headers" msgid "Duration" msgstr "Időtartam" -#: includes/payment-terms-table.php:44 +#: includes/payment-terms-table.php:49 msgctxt "place ad payment terms column headers" msgid "Price (currency)" msgstr "Ár (valuta)" -#: includes/payment-terms-table.php:49 +#: includes/payment-terms-table.php:54 msgctxt "place ad payment terms column headers" msgid "Price (credits)" msgstr "Ár (kredit)" -#: includes/payment-terms-table.php:106 includes/payment-terms-table.php:111 +#: includes/payment-terms-table.php:139 includes/payment-terms-table.php:145 msgctxt "payment term duration" msgid "No Limit" msgstr "Nincs Korlát" -#: includes/settings/class-email-settings.php:135 +#: includes/payments-api.php:757 +msgctxt "credit plans table" +msgid "Plan" +msgstr "Terv" + +#: includes/payments-api.php:758 +msgctxt "credit plans table" +msgid "Description" +msgstr "Leírás" + +#: includes/payments-api.php:759 +msgctxt "credit plans table" +msgid "Credits" +msgstr "Kredit" + +#: includes/payments-api.php:760 +msgctxt "credit plans table" +msgid "Price" +msgstr "Ár" + +#: includes/settings/class-email-settings.php:137 msgctxt "reply to ad email" msgid "Response to your classified ad: {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:136 +#: includes/settings/class-email-settings.php:138 msgctxt "reply to ad email" msgid "" "Someone has responded to your classified ad.\n" @@ -10711,12 +10858,12 @@ msgid "" "{website_url}" msgstr "" -#: includes/settings/class-email-settings.php:161 +#: includes/settings/class-email-settings.php:163 msgctxt "reply to ad email" msgid "Notification about a response regarding ad: {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:162 +#: includes/settings/class-email-settings.php:164 msgctxt "reply to ad email" msgid "" "Someone has responded to one of the classified ads on your website.\n" @@ -10735,12 +10882,12 @@ msgid "" "{website_url}" msgstr "" -#: installer.php:833 +#: installer.php:318 msgctxt "reply to ad email" msgid "{__previous_subject__} regarding: {listing_title}" msgstr "" -#: installer.php:834 +#: installer.php:319 msgctxt "reply to ad email" msgid "" "{__previous_body__}\n" @@ -10824,14 +10971,6 @@ msgstr "" "Vegye ki a pipát, ha nem kíván tizedes értékeket megjeleníteni. Az értékek " "kerekítve lesznek." -#: includes/settings/class-licenses-settings.php:81 -msgctxt "settings" -msgid "" -"The IP address of your server is . Please make sure to include " -"that information if you need to contact support about problems trying to " -"activate your licenses." -msgstr "" - #: includes/settings/class-payment-general-settings.php:100 msgctxt "settings" msgid "Pay before entering Ad details" @@ -10871,26 +11010,30 @@ msgstr "" "Ezek a beállítások böngésző címsorában megjelenő szövegre hatnak ki " "Hozzáadhat és eltávolíthat bizonyos elemeket, ha szükségesnek találja." -#: includes/settings/class-listings-settings.php:599 +#: includes/settings/class-listings-settings.php:601 msgctxt "listing url settings section" msgid "" "These settings affect the URL path shown for listings. You can include or " "remove elements for SEO purposes." msgstr "" -#: includes/settings/class-listings-settings.php:605 +#. translators: %s: example URL +#: includes/settings/class-listings-settings.php:610 +#, fuzzy msgctxt "listing url settings section" -msgid "Example path: ." -msgstr "" +msgid "Example path: %s." +msgstr "Példa kijelzés" #: includes/settings/renderers/class-wordpress-page-settings-renderer.php:27 msgctxt "page settings" msgid "— Select —" msgstr "" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:40 +#. translators: %1$s is a dropdown with existing pages, %2$s is a link to +#. create a new page +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:34 msgctxt "page settings" -msgid "Select existing page {dropdown} -or- {create_page_button}" +msgid "Select existing page %1$s -or- %2$s" msgstr "" #. translators: %1$s the success message, %2$s the error message @@ -10908,142 +11051,138 @@ msgid "" "for details." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:25 +#. translators: %1$s: memory_limit link, %2$s: max_execution_time link +#: templates/admin/export-listings-admin-page.tpl.php:27 msgctxt "listings-csv-export" msgid "" "Please note that the export process is a resource intensive task. If your " "export does not succeed try disabling other plugins first and/or increasing " -"the values of the 'memory_limit' and 'max_execution_time' directives in your " -"server's php.ini configuration file." +"the values of the %1$s and %2$s directives in your server php.ini " +"configuration file." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:44 +#: templates/admin/export-listings-admin-page.tpl.php:39 msgctxt "listings-csv-export" msgid "Export Configuration" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:47 +#: templates/admin/export-listings-admin-page.tpl.php:42 msgctxt "listings-csv-export" msgid "Export settings" msgstr "Beállítások exportálása" -#: templates/admin/export-listings-admin-page.tpl.php:51 +#: templates/admin/export-listings-admin-page.tpl.php:46 msgctxt "listings-csv-export" msgid "Which listings to export?" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:55 +#: templates/admin/export-listings-admin-page.tpl.php:50 msgctxt "listings-csv-export" msgid "All" msgstr "Összes" -#: templates/admin/export-listings-admin-page.tpl.php:56 +#: templates/admin/export-listings-admin-page.tpl.php:51 msgctxt "listings-csv-export" msgid "Active Only" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:57 +#: templates/admin/export-listings-admin-page.tpl.php:52 msgctxt "listings-csv-export" msgid "Active + Pending Renewal" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:63 +#: templates/admin/export-listings-admin-page.tpl.php:58 msgctxt "listings-csv-export" msgid "Export images?" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:68 +#: templates/admin/export-listings-admin-page.tpl.php:63 msgctxt "listings-csv-export" msgid "Export images" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:71 +#: templates/admin/export-listings-admin-page.tpl.php:66 msgctxt "listings-csv-export" msgid "" "When checked, instead of just a CSV file a ZIP file will be generated with " "both a CSV file and listing images." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:77 +#: templates/admin/export-listings-admin-page.tpl.php:72 msgctxt "listings-csv-export" msgid "Additional metadata to export:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:82 +#: templates/admin/export-listings-admin-page.tpl.php:77 msgctxt "listings-csv-export" msgid "Include unique IDs for each listing (sequence_id column)." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:85 +#: templates/admin/export-listings-admin-page.tpl.php:80 msgctxt "listings-csv-export" msgid "" "If you plan to re-import the listings into AWPCP and don't want new ones " "created, select this option!" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:90 +#: templates/admin/export-listings-admin-page.tpl.php:85 msgctxt "listings-csv-export" msgid "Author information (username)" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:96 +#: templates/admin/export-listings-admin-page.tpl.php:91 msgctxt "listings-csv-export" msgid "CSV File Settings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:100 +#: templates/admin/export-listings-admin-page.tpl.php:95 msgctxt "listings-csv-export" msgid "Image Separator" msgstr "Kép elválasztó" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "Category Separator" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "required" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:118 +#: templates/admin/export-listings-admin-page.tpl.php:113 msgctxt "listings-csv-export" msgid "Export Listings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:124 +#: templates/admin/export-listings-admin-page.tpl.php:119 msgctxt "listings-csv-export" msgid "Export in Progress..." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:125 +#: templates/admin/export-listings-admin-page.tpl.php:120 msgctxt "listings-csv-export" msgid "" "Your export file is being prepared. Please do not leave this page until the " "export finishes." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:128 +#: templates/admin/export-listings-admin-page.tpl.php:123 msgctxt "listings-csv-export" msgid "No. of listings:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:130 +#: templates/admin/export-listings-admin-page.tpl.php:125 msgctxt "listings-csv-export" msgid "Approximate export file size:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:137 +#: templates/admin/export-listings-admin-page.tpl.php:132 msgctxt "listings-csv-export" msgid "Cancel Export" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:142 -msgctxt "listings-csv-export" -msgid "Export Complete" -msgstr "" - -#: templates/admin/export-listings-admin-page.tpl.php:143 +#: templates/admin/export-listings-admin-page.tpl.php:138 msgctxt "listings-csv-export" msgid "" "Your export file has been successfully created and it is now ready for " @@ -11051,32 +11190,27 @@ msgid "" msgstr "" #. translators: %1$s filename %2$s filesize. -#: templates/admin/export-listings-admin-page.tpl.php:149 +#: templates/admin/export-listings-admin-page.tpl.php:144 msgctxt "listings-csv-export" msgid "Download %1$s (%2$s)" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:160 +#: templates/admin/export-listings-admin-page.tpl.php:155 msgctxt "listings-csv-export" msgid "Cleanup" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:165 -msgctxt "listings-csv-export" -msgid "Export Canceled" -msgstr "" - -#: templates/admin/export-listings-admin-page.tpl.php:166 +#: templates/admin/export-listings-admin-page.tpl.php:161 msgctxt "listings-csv-export" msgid "The export has been canceled." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:167 +#: templates/admin/export-listings-admin-page.tpl.php:162 msgctxt "listings-csv-export" msgid "← Return to CSV Export" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:101 +#: templates/admin/export-listings-admin-page.tpl.php:96 msgctxt "admin forms" msgid "required" msgstr "" @@ -11124,37 +11258,6 @@ msgctxt "The 'or' after 'Drop files here to upload' in Media Uploader" msgid "or" msgstr " vagy" -#: templates/email/listing-media-upload-notification.plain.tpl.php:1 -msgctxt "listing media uploaded notification" -msgid "Hello," -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:5 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\":" -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:16 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\" and are awaiting approval:" -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:26 -msgctxt "listing media uploaded notification" -msgid "" -"Click here to manage media uploaded to the listing: ." -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:31 -msgctxt "listing media uploaded notification" -msgid "Click here to view the listing: ." -msgstr "" - #: templates/frontend/actions-submit-listing-section.tpl.php:7 msgctxt "actions submit listing section" msgid "Actions" @@ -11190,113 +11293,35 @@ msgctxt "upload media submit listing section" msgid "Loading..." msgstr "Töltés..." -#: templates/privacy-policy.tpl.php:10 -msgctxt "privacy policy" -msgid "" -"When you submit a classified listing, the content of the listing and its " -"metadata are retained indefinitely. All users can see, edit or delete the " -"personal information included on their listings at any time. Website " -"administrators can also see and edit that information." -msgstr "" - -#: templates/privacy-policy.tpl.php:12 -msgctxt "privacy policy" -msgid "" -"Website visitors can see the contact name, website URL, phone number, " -"address and other information included in your submission to describe the " -"classified listing." -msgstr "" - -#: templates/privacy-policy.tpl.php:14 -msgctxt "privacy policy" -msgid "" -"Contact name, email address, website URL and content of submitted classified " -"listings may be checked through Akismet's spam detection service. The " -"Akismet service privacy policy is available here." -msgstr "" - -#: templates/privacy-policy.tpl.php:16 -msgctxt "privacy policy" -msgid "Payment Information" -msgstr "" - -#: templates/privacy-policy.tpl.php:18 -msgctxt "privacy policy" -msgid "" -"If you pay to post a classified listing entering your credit card and " -"billing information directly on {home_url}, the " -"credit card information won't be stored but it will be shared through a " -"secure connection with the following payment gateways to process the payment:" -msgstr "" - -#: templates/privacy-policy.tpl.php:21 -msgctxt "privacy policy" -msgid "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -msgstr "" - -#: templates/privacy-policy.tpl.php:22 -msgctxt "privacy policy" -msgid "" -"Authorize.Net — https://www.authorize.net/company/privacy/" -msgstr "" - -#: templates/privacy-policy.tpl.php:23 -msgctxt "privacy policy" -msgid "" -"Stripe — https://stripe.com/" -"us/privacy/" -msgstr "" +#~ msgid "Documentation" +#~ msgstr "Dokumentáció" -#: templates/privacy-policy.tpl.php:26 -msgctxt "privacy policy" -msgid "Regions" -msgstr "Régiók" +#~ msgid "Status: " +#~ msgstr "Státusz: " -#: templates/privacy-policy.tpl.php:28 -msgctxt "privacy policy" -msgid "" -"If you choose to see listings published on a specific region, a cookie will " -"be stored on your browser for the remainder of the session to remember the " -"selected region." -msgstr "" +#~ msgctxt "debug page" +#~ msgid "PHP Version" +#~ msgstr "PHP verzió" -#: templates/privacy-policy.tpl.php:30 -msgctxt "privacy policy" -msgid "Comments and Ratings" -msgstr "" +#~ msgctxt "Browse the Quick Start Guide" +#~ msgid "Browse the %s." +#~ msgstr "%s böngészése" -#: templates/privacy-policy.tpl.php:32 -msgctxt "privacy policy" -msgid "" -"When visitors leave comments and reviews for classified listings we collect " -"the data shown in the comments form, and also the visitor’s IP address to " -"help spam detection." -msgstr "" +#~ msgctxt "place ad checkout step" +#~ msgid "Complete Payment" +#~ msgstr "Fizetés befejezése" -#: templates/privacy-policy.tpl.php:34 -msgctxt "privacy policy" -msgid "" -"Visitor comments may be checked through Akismet's spam detection service. " -"The Akismet service privacy policy is available here." -msgstr "" +#~ msgctxt "transaction items" +#~ msgid "Amount" +#~ msgstr "Összeg" -#: templates/privacy-policy.tpl.php:36 -msgctxt "privacy policy" -msgid "Restricted Categories" -msgstr "Korlátozott kategóriák" +#~ msgctxt "privacy policy" +#~ msgid "Regions" +#~ msgstr "Régiók" -#: templates/privacy-policy.tpl.php:38 -msgctxt "privacy policy" -msgid "" -"When you agree to see listings or publish a listing on a restricted " -"category, a cookie will be stored in your browser to remember your decision. " -"The cookie will be stored on your browser for the remainder of that session." -msgstr "" +#~ msgctxt "privacy policy" +#~ msgid "Restricted Categories" +#~ msgstr "Korlátozott kategóriák" #~ msgid "AWPCP" #~ msgstr "AWPCP" @@ -11338,9 +11363,6 @@ msgstr "" #~ msgid "D" #~ msgstr "ID" -#~ msgid "Restricted Categories" -#~ msgstr "Korlátozott kategóriák" - #~ msgid "The number of regions allowed must be equal or greater than zero." #~ msgstr "" #~ "A régiók számának egyenlőnek, vagy nagyobbnak kell lennie mint nulla." @@ -11372,8 +11394,5 @@ msgstr "" #~ msgid "Search Ads" #~ msgstr "Hirdetések keresése" -#~ msgid "You are not authorizred to perform this action." -#~ msgstr "Ennek végrehajtására önnek nincs felhatalmazása" - #~ msgid "Buy a Premium Module" #~ msgstr "Vegyen Prémium Modult" diff --git a/languages/another-wordpress-classifieds-plugin-it_IT.mo b/languages/another-wordpress-classifieds-plugin-it_IT.mo index 563ec5074..be070a561 100644 Binary files a/languages/another-wordpress-classifieds-plugin-it_IT.mo and b/languages/another-wordpress-classifieds-plugin-it_IT.mo differ diff --git a/languages/another-wordpress-classifieds-plugin-it_IT.po b/languages/another-wordpress-classifieds-plugin-it_IT.po index 00ea11d21..e0762eaca 100644 --- a/languages/another-wordpress-classifieds-plugin-it_IT.po +++ b/languages/another-wordpress-classifieds-plugin-it_IT.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: Another WordPress Classifieds Plugin\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/another-wordpress-" "classifieds-plugin\n" -"POT-Creation-Date: 2024-03-20 20:22:37+00:00\n" +"POT-Creation-Date: 2024-06-13 20:37:03+00:00\n" "PO-Revision-Date: 2020-10-15 19:51+0000\n" "Last-Translator: Diego Giraldo \n" "Language-Team: Italian (Italy) (http://www.transifex.com/wp-translations/" @@ -28,21 +28,21 @@ msgstr "" #: admin/fees/class-fee-details-form.php:39 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:9 #: includes/settings/class-payment-general-settings.php:60 -#: templates/admin/manage-categories-admin-page.tpl.php:31 +#: templates/admin/manage-categories-admin-page.tpl.php:32 msgid "Name" msgstr "Nome" #: admin/admin-panel-credit-plans-table.php:80 #: admin/fees/class-fee-details-form.php:45 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:25 -#: templates/admin/manage-categories-admin-page.tpl.php:36 +#: templates/admin/manage-categories-admin-page.tpl.php:37 msgid "Description" msgstr "Descrizione" #: admin/admin-panel-credit-plans-table.php:81 #: admin/admin-panel-fees-table.php:121 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:14 -#: includes/settings/class-payment-general-settings.php:270 +#: includes/settings/class-payment-general-settings.php:272 msgid "Credits" msgstr "Credits" @@ -51,7 +51,7 @@ msgstr "Credits" #: admin/fees/class-fee-details-form.php:222 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:19 #: frontend/placeholders.php:514 -#: includes/settings/class-display-settings.php:483 +#: includes/settings/class-display-settings.php:482 #: includes/settings/class-payment-general-settings.php:61 msgid "Price" msgstr "Prezzo" @@ -77,25 +77,28 @@ msgstr "Privato" msgid " " msgstr "" -#: admin/admin-panel-fees-table.php:196 -msgid "Duration: " -msgstr "" +#: admin/admin-panel-fees-table.php:197 +#, fuzzy +msgid "Duration: %s" +msgstr "Durata" -#: admin/admin-panel-fees-table.php:206 -msgid "# of images: " +#: admin/admin-panel-fees-table.php:207 +msgid "# of images: %s" msgstr "" #: admin/admin-panel-fees-table.php:219 admin/admin-panel-fees-table.php:235 msgid "unlimited" msgstr "Inlimitato" -#: admin/admin-panel-fees-table.php:222 -msgid "Chars in title: " -msgstr "" +#: admin/admin-panel-fees-table.php:223 +#, fuzzy +msgid "Chars in title: %s" +msgstr "Caratteri nel titolo" -#: admin/admin-panel-fees-table.php:238 -msgid "Chars in description: " -msgstr "" +#: admin/admin-panel-fees-table.php:239 +#, fuzzy +msgid "Chars in description: %s" +msgstr "Caratteri nella descrizione" #: admin/admin-panel-fees-table.php:265 admin/admin-panel-fees-table.php:269 #: templates/admin/import/supported-csv-headers.tpl.php:31 @@ -127,7 +130,7 @@ msgstr "L'utente specificato non esiste." msgid "Manual Upgrade" msgstr "Aggiornamento a mano" -#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:799 +#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:783 #: includes/models/class-custom-post-types.php:97 #: includes/models/class-custom-post-types.php:99 #: includes/settings/class-listings-settings.php:30 @@ -143,20 +146,20 @@ msgid "Dashboard" msgstr "Bacheca" #: admin/admin-panel.php:140 admin/admin-panel.php:141 -#: admin/admin-panel.php:509 +#: admin/admin-panel.php:492 msgid "Settings" msgstr "Impostazioni" #: admin/admin-panel.php:154 -#: templates/admin/main-classifieds-admin-page.tpl.php:86 -#: templates/admin/main-classifieds-admin-page.tpl.php:111 +#: templates/admin/main-classifieds-admin-page.tpl.php:88 +#: templates/admin/main-classifieds-admin-page.tpl.php:116 msgid "Manage Categories" msgstr "Gestione Categorie" #: admin/admin-panel.php:203 admin/admin-panel.php:204 #: admin/form-fields/class-form-fields-admin-page.php:12 -#: includes/settings/class-display-settings.php:298 -#: includes/settings/class-display-settings.php:438 +#: includes/settings/class-display-settings.php:297 +#: includes/settings/class-display-settings.php:437 msgid "Form Fields" msgstr "Campi del modulo" @@ -189,7 +192,7 @@ msgstr "" msgid "Debug" msgstr "Debug" -#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:24 +#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:38 msgid "Debug Information" msgstr "" @@ -198,24 +201,24 @@ msgid "Uninstall" msgstr "Rimuovi" #: admin/admin-panel.php:354 admin/admin-panel.php:355 -#: admin/admin-panel.php:826 frontend/templates/page-renew-ad.tpl.php:3 +#: admin/admin-panel.php:810 frontend/templates/page-renew-ad.tpl.php:3 #: includes/admin/class-admin-container-configuration.php:175 msgid "Renew Ad" msgstr "Rinnova Annuncio" -#: admin/admin-panel.php:427 +#: admin/admin-panel.php:417 msgid "" "Use the Account Balance column on the table below to manage credit balance " "for users." msgstr "" -#: admin/admin-panel.php:446 +#: admin/admin-panel.php:436 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing." msgstr "" -#: admin/admin-panel.php:447 +#: admin/admin-panel.php:437 msgid "" "The duration for this upgrade operation varies between several minutes and a " "few hours, depending on the size of your database, the current network " @@ -227,7 +230,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the page explaining how #. to downgrade to a previous version of the plugin, %2$s is the closing tag #. for the link. -#: admin/admin-panel.php:450 +#: admin/admin-panel.php:440 msgid "" "If this is not a good time to go through the upgrade process, we recommend " "you to %1$sinstall the previous version again%2$s and plan to upgrade " @@ -236,7 +239,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:456 +#: admin/admin-panel.php:446 msgid "" "To upgrade, please %1$sgo to the Classifieds admin section%2$s or click the " "button below." @@ -244,7 +247,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:466 +#: admin/admin-panel.php:456 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing. Please %1$sgo to the Classifieds " @@ -253,7 +256,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:488 +#: admin/admin-panel.php:471 msgid "" "AWPCP needs you to perform a manual upgrade to update the database schema " "and the information stored there. All plugin features will continue to work " @@ -261,7 +264,7 @@ msgid "" "admin section to Upgrade%2$s or click the button below." msgstr "" -#: admin/admin-panel.php:562 +#: admin/admin-panel.php:545 msgid "" "Page %1$s has the same URL as the %2$s from AWPCP. The WordPress page %1$s " "is going to be unreachable until this changes." @@ -271,7 +274,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: admin/admin-panel.php:570 +#: admin/admin-panel.php:553 msgid "" "The %1$s is dynamic; you don't need to create a real WordPress page to show " "the list of categories, the plugin will generate it for you. If the " @@ -287,143 +290,143 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: admin/admin-panel.php:765 admin/class-categories-admin-page.php:60 +#: admin/admin-panel.php:749 admin/class-categories-admin-page.php:60 #: admin/class-categories-admin-page.php:64 msgid "Manage Category Icon" msgstr "Gestione della icona della categoria" -#: admin/admin-panel.php:770 admin/class-categories-admin-page.php:35 +#: admin/admin-panel.php:754 admin/class-categories-admin-page.php:35 #: admin/class-categories-admin-page.php:39 #: admin/class-categories-admin-page.php:133 msgid "Edit Category" msgstr "Modifica Categoria" -#: admin/admin-panel.php:771 admin/class-categories-admin-page.php:46 +#: admin/admin-panel.php:755 admin/class-categories-admin-page.php:46 #: admin/class-categories-admin-page.php:50 msgid "Delete Category" msgstr "Elimina Categoria" -#: admin/admin-panel.php:776 +#: admin/admin-panel.php:760 msgid "Select {category_name}" msgstr "" -#: admin/admin-panel.php:814 frontend/page-reply-to-ad.php:11 +#: admin/admin-panel.php:798 frontend/page-reply-to-ad.php:11 msgid "Reply to Ad" msgstr "Rispondi all'annuncio" -#: admin/admin-panel.php:822 admin/templates/admin-panel-listings.tpl.php:5 +#: admin/admin-panel.php:806 admin/templates/admin-panel-listings.tpl.php:5 msgid "Place Ad" msgstr "Aggiungi Annuncio" -#: admin/admin-panel.php:830 frontend/page-browse-ads.php:9 +#: admin/admin-panel.php:814 frontend/page-browse-ads.php:9 msgid "Browse Ads" msgstr "Sfoglia Annunci" -#: admin/admin-panel.php:834 admin/templates/admin-panel-listings.tpl.php:11 +#: admin/admin-panel.php:818 admin/templates/admin-panel-listings.tpl.php:20 #: frontend/page-search-ads.php:9 msgid "Search Ads" msgstr "Cerca annunci" -#: admin/categories/class-create-category-admin-page.php:38 -#: admin/categories/class-delete-categories-admin-page.php:55 -#: admin/categories/class-delete-category-admin-page.php:68 -#: admin/categories/class-move-categories-admin-page.php:54 -#: admin/categories/class-update-category-admin-page.php:50 +#: admin/categories/class-create-category-admin-page.php:39 +#: admin/categories/class-delete-categories-admin-page.php:57 +#: admin/categories/class-delete-category-admin-page.php:69 +#: admin/categories/class-move-categories-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:51 msgid "invalid nonce" msgstr "" -#: admin/categories/class-create-category-admin-page.php:42 +#: admin/categories/class-create-category-admin-page.php:43 msgid "The new category was successfully added." msgstr "La nuova categoria è stata aggiunta con successo." -#: admin/categories/class-delete-categories-admin-page.php:61 +#: admin/categories/class-delete-categories-admin-page.php:64 msgid "" "The categories couldn't be deleted because there was an error trying to load " -"the categoery that you selecetd to become the new category associated to " -"affected ads. " +"the categoery that you selected to become the new category associated to " +"affected ads. %s" msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:71 +#: admin/categories/class-delete-categories-admin-page.php:75 msgid "The selected categories have been deleted." msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:76 +#: admin/categories/class-delete-categories-admin-page.php:80 msgid "There was an error trying to delete the selected categories." msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:80 +#: admin/categories/class-delete-categories-admin-page.php:84 msgid "" " (out of ) categories were deleted. " "However, there was an error trying to delete the other categories." msgstr "" -#: admin/categories/class-delete-category-admin-page.php:41 +#: admin/categories/class-delete-category-admin-page.php:42 msgid "The category you are trying to delete doesn't exist." msgstr "" -#: admin/categories/class-delete-category-admin-page.php:53 +#: admin/categories/class-delete-category-admin-page.php:54 msgid "There was an error trying to delete the category. " msgstr "" -#: admin/categories/class-delete-category-admin-page.php:74 +#: admin/categories/class-delete-category-admin-page.php:75 msgid "" "There was an error trying to load the selected category. " msgstr "" -#: admin/categories/class-delete-category-admin-page.php:85 +#: admin/categories/class-delete-category-admin-page.php:86 msgid "The category was deleted successfully" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:103 +#: admin/categories/class-delete-category-admin-page.php:104 msgid "Are you sure you want to delete \"\" category?" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:116 +#: admin/categories/class-delete-category-admin-page.php:117 msgid "Delete category" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:117 +#: admin/categories/class-delete-category-admin-page.php:118 #: admin/fees/class-fee-details-form.php:80 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:31 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:12 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:23 #: admin/templates/admin-panel-fees-delete.tpl.php:12 #: admin/templates/admin-panel-users-balance-form.tpl.php:19 #: admin/templates/delete_form.tpl.php:16 #: frontend/templates/payments-billing-form.tpl.php:123 #: includes/listings/class-listing-action-with-confirmation.php:8 -#: includes/settings/renderers/class-button-settings-renderer.php:41 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 +#: includes/settings/renderers/class-button-settings-renderer.php:44 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:184 #: templates/admin/import-listings-admin-page-import-form.tpl.php:47 msgid "Cancel" msgstr "Cancella" -#: admin/categories/class-move-categories-admin-page.php:59 +#: admin/categories/class-move-categories-admin-page.php:60 msgid "" "The categories couldn't be moved because there was an error trying to load " "the target category. " msgstr "" -#: admin/categories/class-move-categories-admin-page.php:68 +#: admin/categories/class-move-categories-admin-page.php:69 msgid "The selected categories have been moved." msgstr "" -#: admin/categories/class-move-categories-admin-page.php:73 +#: admin/categories/class-move-categories-admin-page.php:74 msgid "There was an error trying to move the selected categories." msgstr "" -#: admin/categories/class-move-categories-admin-page.php:77 +#: admin/categories/class-move-categories-admin-page.php:78 msgid "" " (out of ) categories were moved. " "However, there was an error trying to move the other " "categories." msgstr "" -#: admin/categories/class-update-category-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:56 msgid "The category you're trying to update doesn't exist." msgstr "" -#: admin/categories/class-update-category-admin-page.php:66 +#: admin/categories/class-update-category-admin-page.php:67 msgid "The category was successfully updated." msgstr "" @@ -449,86 +452,92 @@ msgstr "Aggiungi nuova categoria" msgid "Update" msgstr "Aggiorna" -#: admin/class-debug-admin-page.php:255 +#: admin/class-debug-admin-page.php:256 msgid "WordPress version" msgstr "" -#: admin/class-debug-admin-page.php:259 +#: admin/class-debug-admin-page.php:260 msgid "OS" msgstr "" -#: admin/class-debug-admin-page.php:263 +#: admin/class-debug-admin-page.php:264 msgid "Apache Version" msgstr "" -#: admin/class-debug-admin-page.php:267 +#: admin/class-debug-admin-page.php:268 +#: admin/templates/admin-panel-debug.tpl.php:177 msgid "PHP Version" msgstr "Versione PHP" -#: admin/class-debug-admin-page.php:271 +#: admin/class-debug-admin-page.php:272 msgid "MySQL Version" msgstr "Versione MySQL" -#: admin/class-debug-admin-page.php:275 +#: admin/class-debug-admin-page.php:276 msgid "cURL Version" msgstr "" -#: admin/class-debug-admin-page.php:279 +#: admin/class-debug-admin-page.php:280 msgid "cURL SSL Version" msgstr "" -#: admin/class-debug-admin-page.php:332 admin/class-debug-admin-page.php:338 +#: admin/class-debug-admin-page.php:333 admin/class-debug-admin-page.php:339 msgid "N/A" msgstr "N/A" -#: admin/class-import-listings-admin-page.php:100 +#: admin/class-import-listings-admin-page.php:102 msgid "" "The uploaded file doesn't look like a CSV file. Please upload a valid CSV " "file." msgstr "" -#: admin/class-import-listings-admin-page.php:104 +#: admin/class-import-listings-admin-page.php:106 msgid "There was an error moving the uploaded CSV file to a proper location." msgstr "" -#: admin/class-import-listings-admin-page.php:121 +#: admin/class-import-listings-admin-page.php:125 msgid "" "The uploaded file doesn't look like a ZIP file. Please upload a valid ZIP " "file." msgstr "" -#: admin/class-import-listings-admin-page.php:125 +#: admin/class-import-listings-admin-page.php:129 msgid "There was an error moving the uploaded ZIP file to a proper location." msgstr "" -#: admin/class-import-listings-admin-page.php:137 +#: admin/class-import-listings-admin-page.php:141 msgid "Incompatible ZIP Archive" msgstr "Archivio ZIP non compatibile" -#: admin/class-import-listings-admin-page.php:139 +#: admin/class-import-listings-admin-page.php:143 msgid "Empty ZIP Archive" msgstr "Archivio ZIP vuoto" -#: admin/class-import-listings-admin-page.php:165 +#: admin/class-import-listings-admin-page.php:169 msgid "Could not write temporary file %s" msgstr "Impossibile scrivere il file temporaneo %s" -#: admin/class-import-listings-admin-page.php:174 +#: admin/class-import-listings-admin-page.php:178 msgid "The specified directory is not a valid path." msgstr "" -#: admin/class-import-listings-admin-page.php:176 +#: admin/class-import-listings-admin-page.php:180 msgid "The specified directory does not exists." msgstr "" -#: admin/class-import-listings-admin-page.php:357 +#: admin/class-import-listings-admin-page.php:361 msgid "" "() of rows " "processed. rows imported and rows rejected." msgstr "" -#: admin/class-settings-admin-page.php:230 +#: admin/class-import-settings-admin-page.php:121 +#, fuzzy +msgid "Your settings have been successfully imported." +msgstr "Il tuo annuncio \"%s\" è stato aggiornato con successo." + +#: admin/class-settings-admin-page.php:224 msgid "" "We could not obtain a valid access token from Facebook. The API returned the " "following error: %s" @@ -536,24 +545,25 @@ msgstr "" "Non possiamo ottenere una chiave valida di accesso da Facebook. La API ha " "dato il seguente errore: %s" -#: admin/class-settings-admin-page.php:235 +#: admin/class-settings-admin-page.php:229 msgid "" "We could not obtain a valid access token from Facebook. Please try again." msgstr "" "Non riusciamo ad ottenere da facebook un token di accesso valido. Si prega " "di riprovare." -#: admin/class-settings-admin-page.php:243 +#: admin/class-settings-admin-page.php:237 msgid "Facebook Config Diagnostics" msgstr "Diagnostica configurazione Facebook" -#: admin/class-settings-admin-page.php:250 +#: admin/class-settings-admin-page.php:244 msgid "Everything looks OK." msgstr "Sembra tutto OK." #: admin/class-table-entry-action-ajax-handler.php:16 +#: admin/class-uninstall-admin-page.php:52 #: admin/pointers/class-drip-autoresponder-ajax-handler.php:23 -#: functions.php:531 +#: functions.php:537 #: includes/frontend/class-create-empty-listing-ajax-handler.php:104 #: includes/frontend/class-execute-listing-action-ajax-handler.php:58 #: includes/frontend/class-save-listing-information-ajax-handler.php:117 @@ -574,7 +584,7 @@ msgstr "Modifica" #: admin/credit-plans/class-credit-plans-admin-page.php:23 #: admin/fees/class-fees-admin-page.php:65 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:13 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:24 #: admin/templates/delete_form.tpl.php:17 msgid "Delete" msgstr "Cancella" @@ -683,33 +693,33 @@ msgstr "" "ritentare l'eliminazione. AWPCP ti aiuterà ad impostare le nuove Commissioni " "sugli annunci esistenti." -#: admin/import/class-csv-importer-delegate.php:271 +#: admin/import/class-csv-importer-delegate.php:275 msgid "" "No user could be assigned to this listing. Our attempt to create a new user " "failed with the following error: ." msgstr "" -#: admin/import/class-csv-importer-delegate.php:470 +#: admin/import/class-csv-importer-delegate.php:476 msgid "The payment term type must be 'fee' or 'subscription'." msgstr "" -#: admin/import/class-csv-importer-delegate.php:476 +#: admin/import/class-csv-importer-delegate.php:482 msgid "" "There is no payment term with type {payment_term_type} and ID " "{payment_term_id}." msgstr "" -#: admin/import/class-csv-importer-delegate.php:490 +#: admin/import/class-csv-importer-delegate.php:496 msgid "" "No images directory was configured. Are you sure you uploaded a ZIP file or " "defined a local directory?" msgstr "" -#: admin/import/class-csv-importer-delegate.php:676 +#: admin/import/class-csv-importer-delegate.php:690 msgid "The value for Extra Field %s's is not allowed. Allowed values are: %%s" msgstr "" -#: admin/import/class-csv-importer-delegate.php:686 +#: admin/import/class-csv-importer-delegate.php:700 msgid "" "The value for Extra Field %s's is not allowed. Allowed value is one of: %%s" msgstr "" @@ -729,10 +739,35 @@ msgstr "" msgid "That Ad failed to delete." msgstr "L'annuncio è stato eliminato." +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 +#, fuzzy +msgid "Thank you for signing up!" +msgstr "Grazie per esserti registrato!" + +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 +#, fuzzy +msgid "" +"Please check your email and click the link provided to confirm your " +"subscription." +msgstr "" +"Si prega di verificare l'indirizzo email e cliccare sul collegamento fornito " +"per confermare la sottoscrizione." + #: admin/pointers/class-drip-autoresponder-ajax-handler.php:149 msgid "An unexpected error ocurred." msgstr "Si è verificato un errore non identificato." +#: admin/pointers/class-drip-autoresponder.php:62 +#, fuzzy +msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" +msgstr "Vuoi conoscere i Segreti per Costruire un Fantastico Sito di Annunci?" + +#: admin/pointers/class-drip-autoresponder.php:63 +msgid "" +"Find out how to create a compelling, thriving classifieds site from scratch " +"in this ridiculously actionable (and free) 5-part email course." +msgstr "" + #: admin/pointers/class-drip-autoresponder.php:67 msgid "Email Address" msgstr "Indirizzo email" @@ -741,28 +776,28 @@ msgstr "Indirizzo email" msgid "Add" msgstr "Aggiungi" -#: admin/templates/admin-panel-credit-plans.tpl.php:10 +#: admin/templates/admin-panel-credit-plans.tpl.php:11 msgid "Credit System Settings" msgstr "Settaggi del sistema crediti" -#: admin/templates/admin-panel-credit-plans.tpl.php:21 +#: admin/templates/admin-panel-credit-plans.tpl.php:25 #: templates/admin/settings-admin-page.tpl.php:50 -#: templates/admin/settings-admin-page.tpl.php:64 +#: templates/admin/settings-admin-page.tpl.php:67 msgid "Save Changes" msgstr "Registra modifiche" -#: admin/templates/admin-panel-credit-plans.tpl.php:34 +#: admin/templates/admin-panel-credit-plans.tpl.php:38 msgid "Add Credit Plan" msgstr "Aggiungi un piano crediti" -#: admin/templates/admin-panel-debug.tpl.php:8 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:6 +#: admin/templates/admin-panel-debug.tpl.php:11 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:8 msgid "Are you seeing 404 Not Found errors?" msgstr "" #. translators: %1$s: Start link HTML, %2$s: end link HTML, %3$s: Start link #. HTML -#: admin/templates/admin-panel-debug.tpl.php:14 +#: admin/templates/admin-panel-debug.tpl.php:21 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -773,54 +808,84 @@ msgid "" "please contact %3$scustomer support%1$s." msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:49 +#: admin/templates/admin-panel-debug.tpl.php:84 msgid "Stored ID" msgstr "ID Memorizzato" -#: admin/templates/admin-panel-debug.tpl.php:50 +#: admin/templates/admin-panel-debug.tpl.php:85 msgid "Reference" msgstr "Riferimento" -#: admin/templates/admin-panel-debug.tpl.php:51 +#: admin/templates/admin-panel-debug.tpl.php:86 #: frontend/templates/widget-categories-form.tpl.php:2 #: frontend/templates/widget-latest-ads-form.tpl.php:2 #: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:5 msgid "Title" msgstr "Titolo" -#: admin/templates/admin-panel-debug.tpl.php:60 +#: admin/templates/admin-panel-debug.tpl.php:95 msgid "Page not found" msgstr "Pagina non trovata." -#: admin/templates/admin-panel-debug.tpl.php:74 +#: admin/templates/admin-panel-debug.tpl.php:117 msgid "Option Name" msgstr "Nome Opzione" -#: admin/templates/admin-panel-debug.tpl.php:75 +#: admin/templates/admin-panel-debug.tpl.php:118 msgid "Option Value" msgstr "Valore dell'Opzione" -#: admin/templates/admin-panel-debug.tpl.php:96 +#: admin/templates/admin-panel-debug.tpl.php:147 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:9 msgid "Pattern" msgstr "Pattern" -#: admin/templates/admin-panel-debug.tpl.php:97 +#: admin/templates/admin-panel-debug.tpl.php:148 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:10 msgid "Replacement" msgstr "Sostituto" -#: admin/templates/admin-panel-debug.tpl.php:133 +#: admin/templates/admin-panel-debug.tpl.php:181 +#, fuzzy +msgid "cURL" +msgstr "cURL" + +#: admin/templates/admin-panel-debug.tpl.php:185 +#, fuzzy +msgid "cURL's alternate CA info (cacert.pem)" +msgstr "Informazioni CA (cacert.pem) alternative per cURL" + +#: admin/templates/admin-panel-debug.tpl.php:189 +#, fuzzy +msgid "Exists" +msgstr "Esiste" + +#: admin/templates/admin-panel-debug.tpl.php:190 +#, fuzzy +msgid "Missing" +msgstr "Mancanti" + +#: admin/templates/admin-panel-debug.tpl.php:195 +#: includes/settings/class-payment-general-settings.php:134 +msgid "PayPal" +msgstr "PayPal" + +#: admin/templates/admin-panel-debug.tpl.php:198 #, fuzzy msgid "Working" msgstr "Funziona" -#: admin/templates/admin-panel-debug.tpl.php:148 -#: templates/admin/debug/debug-admin-page.tpl.php:36 +#: admin/templates/admin-panel-debug.tpl.php:201 +#, fuzzy +msgid "Not Working" +msgstr "Non funziona" + +#: admin/templates/admin-panel-debug.tpl.php:216 +#: templates/admin/debug/debug-admin-page.tpl.php:42 msgid "Debug & Development Tools" msgstr "" -#: admin/templates/admin-panel-fees-delete-form.tpl.php:6 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:7 #: admin/templates/delete_form.tpl.php:11 msgid "Are you sure you want to delete this item?" msgstr "Sei sicuro di voler cancellare questo oggetto?" @@ -837,44 +902,44 @@ msgstr "" msgid "Switch" msgstr "Cambia" -#: admin/templates/admin-panel-fees.tpl.php:7 -msgid "Payment Settings page" -msgstr "" - -#: admin/templates/admin-panel-fees.tpl.php:9 +#: admin/templates/admin-panel-fees.tpl.php:8 msgid "" "Currently your classifieds are in Free mode. Fee plans are not available or " -"used during free mode.

To change this, visit the and enable Charge Listing Fee setting." +"used during free mode.%1$s To change this, visit the %2$s and enable Charge " +"Listing Fee setting." msgstr "" -#: admin/templates/admin-panel-fees.tpl.php:20 +#: admin/templates/admin-panel-fees.tpl.php:11 +msgid "Payment Settings page" +msgstr "" + +#: admin/templates/admin-panel-fees.tpl.php:22 msgid "Add Fee Plan" msgstr "Aggiungi Piano Commissioni" -#: admin/templates/admin-panel-fees.tpl.php:24 -msgid "Fee Plan sort order and sort direction Settings" -msgstr "" - #: admin/templates/admin-panel-fees.tpl.php:26 +#, fuzzy msgid "" -"If you wish to change the sorting of your fee plans, you can change the ." +"If you wish to change the sorting of your fee plans, you can change the %s." msgstr "" "Se desidere cambiare l'ordinamento dei Piani Commissioni puoi farlo variando " "il ." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:14 +#: admin/templates/admin-panel-fees.tpl.php:30 +msgid "Fee Plan sort order and sort direction Settings" +msgstr "" + +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:17 msgid "Facebook Integration" msgstr "Integrazione Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:16 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:23 msgid "" "We currently support two methods for posting new ads to Facebook: Facebook " "API and Zapier/IFTTT Webhooks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:18 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:25 msgid "" "Support for Facebook API will be removed in the future. Facebook " "significantly reduced access to their APIs across all apps on Apr, 2018. Now " @@ -885,45 +950,44 @@ msgid "" "integration method." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:22 -msgid "You can read more about Facebook changes here: {facebook_post_link}" +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:30 +msgid "You can read more about Facebook changes here: %s" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:29 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:38 msgid "" "If you are currently using the Facebook API integration method and not " "having any issues, you don't have to do anything right now. If you are " "having issues, please read the Diagnostics section below to try to fix them." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:40 #: includes/settings/class-general-settings.php:735 msgid "Facebook API" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:35 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:46 msgid "" "This integration method allows you to post ads to Facebook using a Facebook " -"Application. Please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"Application. Please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:45 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:79 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 msgid "" "Add the following URL to the list of Valid OAuth Redirect URIs for the " "configuration of the Facebook Application:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:59 #: includes/settings/class-general-settings.php:736 msgid "Zapier/IFTTT Webhooks" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:51 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:61 msgid "" "Webhooks allow the plugin to send a request to one of the configured webhook " "URLs the first time an ad becomes publicly available on the website. That " @@ -933,109 +997,108 @@ msgid "" "control." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:67 msgid "" -"Follow the instructiones to create the tasks on " -"{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} or " -"{webhook_instructions_for_ifttt}IFTTT{/webhook_instructions_for_ifttt}. Then " -"update the settings at the bottom of this page to enter the webhook URLs " -"associated with those tasks." +"Follow the instructiones to create the tasks on %1$sZapier or IFTTT%2$s. " +"Then update the settings at the bottom of this page to enter the webhook " +"URLs associated with those tasks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:65 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:74 msgid "Facebook Cache" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:69 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:80 msgid "" "If you are using Webhooks to send ads to Facebook, a Facebook Application " "can still be used to ask Facebook to clear the cache it has stored for ads " "pages. This is useful to ensure users always see the latest version when the " "ad is shared on Facebook Pages, Groups and user feeds. If you decide to use " -"this feature, please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"this feature, please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:83 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:93 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:120 msgid "Diagnostics" msgstr "Diagnostica" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:95 msgid "" "If you see the following error after trying to get a valid User Access Token:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:99 msgid "" "You have to submit your Facebook Application for Review and ask for those " "permissions or use the Webhooks integration method to send ads to Facebook " "using Zapier or IFTTT Webhooks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:91 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:101 msgid "If you see the following error trying to send ads to a Facebook Group:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:97 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 msgid "" -"Please make sure the Facebook Application " -"{link_to_how_to_add_apps_to_a_group}was added to the group{/" -"link_to_how_to_add_apps_to_a_group}." +"Please make sure the Facebook Application %1$swas added to the group%2$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:108 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:119 msgid "" "If you are having additional problems with Facebook API, click " "\"Diagnostics\" to check your settings." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:3 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:4 msgid "Restore AWPCP Pages" msgstr "Ripristina le pagine AWPCP" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:8 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:10 msgid "The following pages were restored: ." msgstr "Le seguenti pagine sono state ripristinate: ." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:19 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:21 msgid "" "The pages listed below are missing. The plugin is looking for a page with a " "particular ID but it seems that the page was permanently deleted. Please a " "select a new one." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:23 -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:71 -msgid "%s (Default name: %s)." -msgstr "" +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:28 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:97 +#, fuzzy +msgid "%1$s (Default name: %2$s)." +msgstr "%s e %s." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:39 msgid "" "The following pages are not published. Did you move them to the Trash by " "accident or saved them as Draft?" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:41 -msgid "%s — Selected page: %s (%s)" +#. translators: %1$s page label, %2$s link to the page, %3$s the page status. +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:57 +msgid "%1$s Selected page: %2$s (%3$s)" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:69 msgid "" "The following pages are not currently assigned. Please select an existing " "page or create a new one to use as the following plugin pages:" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:64 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 msgid "" -" — You can select one of these pages that already include " -"the necessary shortcode: or create a new one." +"%1$s You can select one of these pages that already include the necessary " +"shortcode: %2$s or %3$screate a new one%4$s." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:115 msgid "" "Use the button below to have the plugin attempt to find the necessary pages. " "If you continue to have problems or seeing page related warnings above, you " @@ -1043,29 +1106,29 @@ msgid "" "the plugin create them again." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:86 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:116 msgid "Restore Pages" msgstr "Ripristina Pagine" -#: admin/templates/admin-panel-uninstall.tpl.php:13 +#: admin/templates/admin-panel-uninstall.tpl.php:10 msgid "" "Thank you for using AWPCP. You have arrived at this page by clicking the " "Uninstall link. If you are certain you wish to uninstall the plugin, please " "click the button at the bottom to proceed." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "" "PLEASE NOTE: When you click the button below, ALL your data related to the " "plugin including your classifieds, images and everything else created by the " "plugin will be permanently deleted." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "We cannot recover the data after you click this." msgstr "Dopo aver cliccato non sarà possibile ripristinare i dati." -#: admin/templates/admin-panel-uninstall.tpl.php:18 +#: admin/templates/admin-panel-uninstall.tpl.php:15 msgid "" "BEFORE YOU CLICK THE BUTTON BELOW — read carefully in case you want to " "extract your data first!" @@ -1073,7 +1136,7 @@ msgstr "" "PRIMA DI CLICCARE SUL PULSANTE — leggere attentamente nel caso si " "vogliano estrarre prima i dati!" -#: admin/templates/admin-panel-uninstall.tpl.php:21 +#: admin/templates/admin-panel-uninstall.tpl.php:18 msgid "" "If you plan to use the data created by the plugin please export the data " "from your mysql database before clicking the uninstall link." @@ -1081,45 +1144,49 @@ msgstr "" "Se si intende utilizzare i dati creati dal plugin si prega di esportarli dal " "database mysql prima di procedere con la disinstallazione." -#: admin/templates/admin-panel-uninstall.tpl.php:22 +#: admin/templates/admin-panel-uninstall.tpl.php:21 +#, fuzzy msgid "" -"If you want to keep your user uploaded images, please download to " -"your local drive for later use or rename the folder to something else so the " +"If you want to keep your user uploaded images, please download %s to your " +"local drive for later use or rename the folder to something else so the " "uninstaller can bypass it." msgstr "" "Se vuoi mantenere le immagini caricate scarica sul tuo disco " "locale o rinomina la cartella affinché la disinstallazione ignori " "l'eliminazione dei file." -#: admin/templates/admin-panel-uninstall.tpl.php:28 +#: admin/templates/admin-panel-uninstall.tpl.php:29 msgid "Proceed with Uninstalling AWP Classifieds Plugin" msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:33 +#: admin/templates/admin-panel-uninstall.tpl.php:35 msgid "Almost done... one more step!" msgstr "Quasi finito è rimasto un passaggio!" -#: admin/templates/admin-panel-uninstall.tpl.php:36 -msgid "Please click here to complete the uninstallation process" +#: admin/templates/admin-panel-uninstall.tpl.php:39 +#, fuzzy +msgid "Please click here to deactivate plugins." msgstr "Cliccare qui per completare la disinstallazione" #: admin/templates/admin-panel-users-balance-form.tpl.php:12 +#: frontend/templates/payments-transaction-items-table.tpl.php:5 +#: frontend/templates/payments-transaction-items-table.tpl.php:17 msgid "Amount" msgstr "Importo" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:12 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:14 msgid "Manual Upgrade Required" msgstr "E' necessario un aggiornamento manuale" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:17 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:26 msgid "Upgrade" msgstr "Aggiornamento" #: admin/templates/admin-quick-start-guide-notice.tpl.php:2 #, fuzzy msgid "" -"Hello and welcome to AWP Classifieds. This plugin is super " -"easy to use AND highly configurable." +"Hello and welcome to AWP Classifieds. This plugin is super easy to use AND " +"highly configurable." msgstr "" "Benvenuto in Another Wordpress Classifieds Questo plugin è " "estremamente facile da utilizzare E ampiamente configurabile." @@ -1129,38 +1196,52 @@ msgid "Would you like some help getting started?" msgstr "Hai bisogno di aiuto per iniziare?" #: admin/templates/admin-quick-start-guide-notice.tpl.php:12 +#, fuzzy +msgid "I'll figure it out on my own." +msgstr "Farò da solo." + +#: admin/templates/admin-quick-start-guide-notice.tpl.php:15 msgid "Yes Please!" msgstr "Si grazie!" -#: admin/templates/admin-sidebar.tpl.php:14 +#: admin/templates/admin-quick-start-guide-notice.tpl.php:20 +#, fuzzy +msgid "Help me get my classifieds running quickly." +msgstr "Aiutami a gestire velocemente i miei Annunci" + +#: admin/templates/admin-sidebar.tpl.php:15 msgid "Like this plugin?" msgstr "Ti piace questo plugin?" -#: admin/templates/admin-sidebar.tpl.php:20 +#: admin/templates/admin-sidebar.tpl.php:24 msgid "Give a 5 star rating on WordPress.org." msgstr "" -#: admin/templates/admin-sidebar.tpl.php:36 +#: admin/templates/admin-sidebar.tpl.php:42 msgid "Get more features!" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:67 msgid "Found a bug?" msgstr "Hai trovato un bug?" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:68 msgid "Need Support?" msgstr "Bisogno di aiuto?" -#: admin/templates/admin-sidebar.tpl.php:70 -msgid "Quick Start Guide" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:80 +#, fuzzy +msgid "Browse the %1$sQuick Start Guide%2$s" msgstr "Guida rapida per iniziare" -#: admin/templates/admin-sidebar.tpl.php:80 -msgid "Documentation" -msgstr "Documentazione" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:90 +#, fuzzy +msgid "Read the full %1$sDocumentation%2$s." +msgstr "Leggi il completo %s." -#: admin/templates/admin-sidebar.tpl.php:91 +#: admin/templates/admin-sidebar.tpl.php:98 msgid "Get Help" msgstr "" @@ -1170,11 +1251,11 @@ msgid "Thank you for using AWP Classifieds Plugin." msgstr "Grazie per aver utilizzato Another WordPress Classifieds Plugin." #: admin/templates/admin-widget-modification-notice.tpl.php:3 +#, fuzzy msgid "" -"AWPCP 3.0 includes several modifications to the Search Ads, " -"Featured Ads and Latest Ads widgets. For " -"example, the Latest Ads widget can now be used in multiple sidebars. Also, " -"there is a new Widget to show Random Ads." +"AWPCP 3.0 includes several modifications to the Search Ads, Featured Ads and " +"Latest Ads widgets. For example, the Latest Ads widget can now be used in " +"multiple sidebars. Also, there is a new Widget to show Random Ads." msgstr "" "AWPCP 3.0 include diverse modifiche ai widget Ricerca Annunci, Annunci In Evidenza e Annunci Recenti to understand more about PHP and how to upgrade." msgstr "" -#: awpcp.php:200 +#: awpcp.php:198 msgid "" "AWP Classifieds Plugin installation is incomplete. Please {support_link}" "contact support{/support_link}." msgstr "" #. translators: %s is the title of the listing. -#: frontend/ad-functions.php:155 +#: frontend/ad-functions.php:159 #: includes/listings/class-listing-renewed-email-notifications.php:85 msgid "The ad \"%s\" has been successfully renewed." msgstr "" -#: frontend/ad-functions.php:189 frontend/page-renew-ad.php:160 +#: frontend/ad-functions.php:193 frontend/page-renew-ad.php:160 msgid "The Ad has been successfully renewed. New expiration date is %s." msgstr "" -#: frontend/ad-functions.php:194 frontend/page-renew-ad.php:152 +#: frontend/ad-functions.php:198 frontend/page-renew-ad.php:151 #: templates/admin/listings/quick-view-listing-admin-page.tpl.php:18 #: templates/admin/listings-media-center.tpl.php:6 #: templates/admin/view-listing-admin-page.tpl.php:14 msgid "Return to Listings" msgstr "Ritorna agli annunci" -#: frontend/ad-functions.php:212 frontend/page-place-ad.php:151 +#: frontend/ad-functions.php:216 frontend/page-place-ad.php:154 msgid "" "You do not have permission to perform the function you are trying to " "perform. Access to this page has been denied" msgstr "" "Non si hanno i permessi per questa operazione. L'accesso è stato negato" -#: frontend/ad-functions.php:227 +#: frontend/ad-functions.php:231 msgid "The Ad has been deleted" msgstr "L'annuncio è stato eliminato." -#: frontend/ad-functions.php:230 +#: frontend/ad-functions.php:234 msgid "" "Your Ad details and any photos you have uploaded have been deleted from the " "system" @@ -1329,18 +1410,18 @@ msgstr "" "I dettagli dell'Annuncio e qualsiasi foto caricata sono stati eliminati dal " "sistema" -#: frontend/ad-functions.php:234 +#: frontend/ad-functions.php:238 #: includes/frontend/class-edit-listing-page.php:188 msgid "The specified Ad doesn't exists." msgstr "L'annuncio specificato non esiste" -#: frontend/ad-functions.php:236 +#: frontend/ad-functions.php:240 msgid "There was an error trying to delete the Ad. The Ad was not deleted." msgstr "" "C'è stato un errore nel tentativo di eliminare l'annuncio, quindi non è " "stato cancellato." -#: frontend/ad-functions.php:239 +#: frontend/ad-functions.php:243 msgid "Problem encountered. Cannot complete request" msgstr "Errore riscontrato. Impossibile completare la richiesta" @@ -1360,7 +1441,7 @@ msgstr "" "Non è stata scelta una categoria specifica e verranno mostrate le " "pubblicazioni da tutte le categorie." -#: frontend/page-place-ad.php:74 +#: frontend/page-place-ad.php:75 #: includes/views/class-verify-transaction-exists-step-decorator.php:17 msgid "" "There was an error processing your Payment Request. Please try again or " @@ -1369,19 +1450,20 @@ msgstr "" "C'è stato un errore nella richiesta di pagamento. Si prega di riprovare o " "contattare un amministratore." -#: frontend/page-place-ad.php:132 +#: frontend/page-place-ad.php:133 msgid "Please select a category." msgstr "Seleziona una categoria." -#: frontend/page-place-ad.php:133 -msgid "Please select the Ad's owner." +#: frontend/page-place-ad.php:134 +#, fuzzy +msgid "Please select the Ad owner." msgstr "Seleziona il proprietario dell'annuncio" -#: frontend/page-place-ad.php:134 +#: frontend/page-place-ad.php:135 msgid "Please select a payment term." msgstr "Seleziona un metodo di pagamento" -#: frontend/page-place-ad.php:165 frontend/page-renew-ad.php:87 +#: frontend/page-place-ad.php:168 frontend/page-renew-ad.php:86 msgid "" "You are trying to post an Ad using a transaction created for a different " "purpose. Please go back to the %s page.
If you think " @@ -1389,7 +1471,7 @@ msgid "" "transaction ID: %s" msgstr "" -#: frontend/page-place-ad.php:174 +#: frontend/page-place-ad.php:177 #: includes/frontend/class-submit-listing-page.php:291 msgid "" "You can't post an Ad at this time because the payment associated with this " @@ -1398,18 +1480,18 @@ msgstr "" "Non puoi pubblicare un Annuncio in questo momento in quanto il pagamento " "associato a questa transazione non è andato a buon fine (vedere motivazioni)." -#: frontend/page-place-ad.php:256 +#: frontend/page-place-ad.php:259 #: includes/listings/class-payment-information-validator.php:88 msgid "You should select an owner for this Ad." msgstr "Devi selezionare un proprietario per questo annuncio." -#: frontend/page-place-ad.php:260 frontend/page-renew-ad.php:197 +#: frontend/page-place-ad.php:263 frontend/page-renew-ad.php:199 #: includes/listings/class-payment-information-validator.php:64 #: includes/listings/class-payment-information-validator.php:73 msgid "You should choose one of the available Payment Terms." msgstr "Devi selezionare uno dei Metodi di Pagamento disponibili." -#: frontend/page-place-ad.php:264 +#: frontend/page-place-ad.php:267 #: includes/listings/class-payment-information-validator.php:75 msgid "" "The Payment Term you selected is not available for non-administrator users." @@ -1417,17 +1499,17 @@ msgstr "" "Il Metodo di Pagamento scelto non è disponibile per utenti non " "amministratori." -#: frontend/page-place-ad.php:280 +#: frontend/page-place-ad.php:283 #: includes/listings/class-payment-information-validator.php:108 msgid "Ad Category field is required" msgstr "Categoria è un campo obbligatorio" -#: frontend/page-place-ad.php:285 +#: frontend/page-place-ad.php:288 #: includes/listings/class-payment-information-validator.php:119 msgid "You cannot list your Ad in top level categories." msgstr "" -#: frontend/page-place-ad.php:291 +#: frontend/page-place-ad.php:294 #: includes/frontend/class-submit-listing-page.php:190 msgid "" "Hi, You need to be a registered user to post Ads in this website. Please use " @@ -1436,7 +1518,7 @@ msgstr "" "Devi essere registrato per inserire Annunci nel sito. Iscriviti o accedi " "dal modulo sottostante." -#: frontend/page-place-ad.php:429 frontend/page-place-ad.php:836 +#: frontend/page-place-ad.php:432 frontend/page-place-ad.php:839 #: frontend/page-renew-ad.php:297 #: includes/frontend/class-order-submit-listing-section.php:119 msgid "" @@ -1448,7 +1530,7 @@ msgstr "" #. translators: %s is an alphanumeric string that identifies a payment #. transaction. #. translators: %s the transaction id -#: frontend/page-place-ad.php:511 frontend/page-renew-ad.php:347 +#: frontend/page-place-ad.php:514 frontend/page-renew-ad.php:347 #: includes/frontend/class-submit-listing-page.php:333 #: includes/views/class-verify-payment-can-be-processed-step-decorator.php:18 msgid "" @@ -1459,7 +1541,7 @@ msgstr "" "Non possiamo processare i pagamenti per questa Transazione Pagamento. " "Contattare l'amministratore e fornire il seguente ID transazione: %s" -#: frontend/page-place-ad.php:834 +#: frontend/page-place-ad.php:837 msgid "" "Your Ad details have been filled out in the form below. Make any changes " "needed and then resubmit the Ad to update it." @@ -1467,11 +1549,11 @@ msgstr "" "I dettagli dell'Annuncio sono stati riempiti nel modulo seguente. Effettua " "le modifiche necessarie e reinvia l'Annuncio per aggiornarlo." -#: frontend/page-place-ad.php:838 +#: frontend/page-place-ad.php:841 msgid "Fill out the form below to post your classified ad." msgstr "" -#: frontend/page-place-ad.php:842 +#: frontend/page-place-ad.php:845 msgid "" "We found errors in the details you submitted. A detailed error message is " "shown in front or below each invalid field. Please fix the errors and submit " @@ -1481,11 +1563,11 @@ msgstr "" "errore dettagliato viene mostrato al fianco di ogni campo non valido. " "Correggi gli errori e invia nuovamente il modulo." -#: frontend/page-place-ad.php:861 +#: frontend/page-place-ad.php:864 msgid "Start & End Date" msgstr "Data di inizio e fine" -#: frontend/page-place-ad.php:863 +#: frontend/page-place-ad.php:866 #: includes/admin/import/class-csv-importer-columns.php:185 #: includes/admin/listings/class-listings-table-nav-handler.php:151 #: includes/form-fields/class-listing-form-fields.php:127 @@ -1493,7 +1575,7 @@ msgstr "Data di inizio e fine" msgid "Start Date" msgstr "Data di Inizio" -#: frontend/page-place-ad.php:865 +#: frontend/page-place-ad.php:868 #: includes/admin/import/class-csv-importer-columns.php:196 #: includes/admin/listings/class-listings-table-nav-handler.php:152 #: includes/form-fields/class-listing-form-fields.php:131 @@ -1501,50 +1583,50 @@ msgstr "Data di Inizio" msgid "End Date" msgstr "Data finale" -#: frontend/page-place-ad.php:973 +#: frontend/page-place-ad.php:976 msgid "" "Hi, Payment is required for posting Ads in this website and we couldn't find " "a Payment Transaction assigned to you. You can't post Ads this time. If you " "think this is an error please contact the website Administrator." msgstr "" -#: frontend/page-place-ad.php:1000 +#: frontend/page-place-ad.php:1003 msgid "" "You did not select a Payment Term. Please select a Payment Term for this Ad." msgstr "" "Non è stato selezionato un Metodo di Pagamento. Scegli un Metodo di " "Pagamento per questo Annuncio." -#: frontend/page-place-ad.php:1005 +#: frontend/page-place-ad.php:1008 msgid "Please enter a start date for the Ad." msgstr "Inserire una data di inizio per l'Annuncio." -#: frontend/page-place-ad.php:1010 +#: frontend/page-place-ad.php:1013 msgid "Please enter an end date for the Ad." msgstr "Inserire una data di fine per l'Annuncio." -#: frontend/page-place-ad.php:1014 +#: frontend/page-place-ad.php:1017 #: includes/form-fields/class-form-fields-validator.php:71 msgid "The start date must occur before the end date." msgstr "La data di inizio deve essere precedente alla data di fine." -#: frontend/page-place-ad.php:1019 +#: frontend/page-place-ad.php:1022 msgid "You did not enter a title for your Ad" msgstr "Non hai inserito un titolo per l'Annuncio" -#: frontend/page-place-ad.php:1024 +#: frontend/page-place-ad.php:1027 msgid "" "You did not enter any text for your Ad. Please enter some text for your Ad." msgstr "" "Non hai inserito testo per il tuo Annuncio. Sei pregato di aggiungere del " "contenuto per l'Annuncio." -#: frontend/page-place-ad.php:1037 +#: frontend/page-place-ad.php:1040 msgid "" "You did not enter your website address. Your website address is required." msgstr "Non hai inserito un indirizzo web. L'indirizzo web è obbligatorio." -#: frontend/page-place-ad.php:1043 +#: frontend/page-place-ad.php:1046 msgid "" "Your website address is not properly formatted. Please make sure you have " "included the http:// part of your website address" @@ -1552,21 +1634,21 @@ msgstr "" "Il tuo indirizzo web non è corretto. Assicurati di aver inserito anche la " "parte http:// nel tuo indirizzo." -#: frontend/page-place-ad.php:1048 +#: frontend/page-place-ad.php:1051 msgid "You did not enter your name. Your name is required." msgstr "Non hai inserito il tuo nome. Il nome è obbligatorio." -#: frontend/page-place-ad.php:1053 +#: frontend/page-place-ad.php:1056 msgid "You did not enter your email. Your email is required." msgstr "Non hai inserito una email. La mail è obbligatoria." -#: frontend/page-place-ad.php:1058 frontend/page-reply-to-ad.php:160 +#: frontend/page-place-ad.php:1061 frontend/page-reply-to-ad.php:160 msgid "" "The email address you entered was not a valid email address. Please check " "for errors and try again." msgstr "L'indirizzo email inserito non è valido. Verifica e riprova." -#: frontend/page-place-ad.php:1060 +#: frontend/page-place-ad.php:1063 msgid "" "The email address you entered is not allowed in this website. Please use an " "email address from one of the following domains: %s." @@ -1574,37 +1656,37 @@ msgstr "" "L'indirizzo email inserito non è permesso in questo sito web. Utilizza un " "indirizzo che comprende uno dei seguenti domini: %s." -#: frontend/page-place-ad.php:1071 +#: frontend/page-place-ad.php:1074 msgid "You did not enter your phone number. Your phone number is required." msgstr "" "Non hai inserito un numero di telefono. Il nr di telefono è obbligatorio." -#: frontend/page-place-ad.php:1089 -#: includes/helpers/widgets/multiple-region-selector.php:124 +#: frontend/page-place-ad.php:1092 +#: includes/helpers/widgets/multiple-region-selector.php:144 msgid "You did not enter your country. Your country is required." msgstr "Non hai inserito la nazione. La nazione è obbligatoria." -#: frontend/page-place-ad.php:1098 -#: includes/helpers/widgets/multiple-region-selector.php:125 +#: frontend/page-place-ad.php:1101 +#: includes/helpers/widgets/multiple-region-selector.php:145 msgid "You did not enter your state. Your state is required." msgstr "Non hai inserito uno stato. Lo stato è obbligatorio." -#: frontend/page-place-ad.php:1107 -#: includes/helpers/widgets/multiple-region-selector.php:127 +#: frontend/page-place-ad.php:1110 +#: includes/helpers/widgets/multiple-region-selector.php:147 msgid "You did not enter your city. Your city is required." msgstr "Non hai inserito una città. La città è obbligatoria." -#: frontend/page-place-ad.php:1116 -#: includes/helpers/widgets/multiple-region-selector.php:126 +#: frontend/page-place-ad.php:1119 +#: includes/helpers/widgets/multiple-region-selector.php:146 msgid "You did not enter your county/village. Your county/village is required." msgstr "" "Non hai inserito la regione/provincia. regione/provincia obbligatorio." -#: frontend/page-place-ad.php:1123 +#: frontend/page-place-ad.php:1126 msgid "You did not enter the price of your item. The item price is required." msgstr "Non hai inserito il prezzo del tuo articolo. Il Prezzo è obbligatorio." -#: frontend/page-place-ad.php:1129 +#: frontend/page-place-ad.php:1132 msgid "" "You have entered an invalid item price. Make sure your price contains " "numbers only. Please do not include currency symbols." @@ -1612,18 +1694,18 @@ msgstr "" "Prezzo dell'Articolo non valido Assicurati che siano presenti solo numeri " "senza il simbolo della valuta." -#: frontend/page-place-ad.php:1147 +#: frontend/page-place-ad.php:1150 msgid "You did not accept the terms of service" msgstr "Non hai accettato i termini di servizi" -#: frontend/page-place-ad.php:1163 +#: frontend/page-place-ad.php:1166 msgid "" "Your Ad was flagged as spam. Please contact the administrator of this site." msgstr "" "Il tuo annuncio è stato segnalato come spam. Contatta l'amministratore del " "sito." -#: frontend/page-place-ad.php:1354 +#: frontend/page-place-ad.php:1357 msgid "" "We were unable to find a Payment Transaction assigned to this operation. No " "images can be added at this time." @@ -1631,13 +1713,13 @@ msgstr "" "Impossibile trovare una transazione di pagamento assegnata a questa " "operazione. Non è possibile aggiungere Immagini." -#: frontend/page-place-ad.php:1361 +#: frontend/page-place-ad.php:1364 msgid "The specified Ad doesn't exists. No images can be added at this time." msgstr "" "L'annuncio specificato non esiste. Nessuna immagine può essere aggiunta al " "momento." -#: frontend/page-place-ad.php:1440 frontend/page-place-ad.php:1492 +#: frontend/page-place-ad.php:1443 frontend/page-place-ad.php:1495 #: includes/frontend/class-submit-listing-page.php:393 msgid "" "We were unable to find a Payment Transaction assigned to this operation." @@ -1645,18 +1727,18 @@ msgstr "" "Impossibile trovare una transazione di pagamento assegnata a questa " "operazione." -#: frontend/page-place-ad.php:1447 frontend/page-place-ad.php:1499 +#: frontend/page-place-ad.php:1450 frontend/page-place-ad.php:1502 #: frontend/page-renew-ad.php:408 #: includes/frontend/class-submit-listing-page.php:400 msgid "The Ad associated with this transaction doesn't exists." msgstr "L'Annuncio associato a questa transazione non esiste." -#: frontend/page-renew-ad.php:73 +#: frontend/page-renew-ad.php:72 #, fuzzy msgid "That Ad doesn't need to be renewed." msgstr "L'annuncio specificato non necessita rinnovo." -#: frontend/page-renew-ad.php:78 +#: frontend/page-renew-ad.php:77 msgid "" "There was an error trying to renew your Ad. The URL is not valid. Please " "contact the Administrator of this site for further assistance." @@ -1664,7 +1746,7 @@ msgstr "" "Errore nel rinnovo dell'Annuncio. Indirizzo non valido. Contattare " "l'amministratore per assistenza." -#: frontend/page-renew-ad.php:94 +#: frontend/page-renew-ad.php:93 msgid "" "You can't renew your Ad at this time because the payment associated with " "this transaction failed (see reasons below)." @@ -1672,7 +1754,7 @@ msgstr "" "Non puoi rinnovare l'Annuncio in questo momento in quanto il pagamento " "associato a questa transazione non è andato a buon fine (vedere motivazioni)." -#: frontend/page-renew-ad.php:117 +#: frontend/page-renew-ad.php:116 msgid "" "The Ad was posted under a Payment Term that no longer exists or is disabled. " "The Ad can't be renewed." @@ -1680,11 +1762,11 @@ msgstr "" "L'Annuncio era stato inserito con un metodo di pagamento non più disponibile " "o disabilitato. L'Annuncio non può essere rinnovato." -#: frontend/page-renew-ad.php:154 +#: frontend/page-renew-ad.php:153 msgid "You can see your Ad here" msgstr "Guarda il tuo annuncio qui" -#: frontend/page-renew-ad.php:200 +#: frontend/page-renew-ad.php:201 msgid "" "You are trying to renew your Ad using a different Payment Term. That's not " "allowed." @@ -1798,7 +1880,7 @@ msgstr "Venditore" msgid "Visit Website" msgstr "Vai al sito internet" -#: frontend/placeholders.php:655 includes/functions/listings.php:405 +#: frontend/placeholders.php:655 includes/functions/listings.php:415 msgid "Location" msgstr "Posizione" @@ -1870,30 +1952,30 @@ msgstr "" "C'è stato un errore durante il tentativo di pagamento da parte del cliente. " "Seguono i dettagli della Transazione." -#: frontend/templates/email-abort-payment-admin.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:12 msgid "User Name" msgstr "Nome utente" -#: frontend/templates/email-abort-payment-admin.tpl.php:10 +#: frontend/templates/email-abort-payment-admin.tpl.php:13 msgid "User Login" msgstr "Login" -#: frontend/templates/email-abort-payment-admin.tpl.php:11 +#: frontend/templates/email-abort-payment-admin.tpl.php:14 msgid "User Email" msgstr "Email" -#: frontend/templates/email-abort-payment-admin.tpl.php:15 +#: frontend/templates/email-abort-payment-admin.tpl.php:18 #: includes/admin/import/class-csv-importer-columns.php:219 msgid "Payment Term Type" msgstr "Tipo di Metodo di Pagamento" -#: frontend/templates/email-abort-payment-admin.tpl.php:16 +#: frontend/templates/email-abort-payment-admin.tpl.php:19 #: includes/admin/import/class-csv-importer-columns.php:207 msgid "Payment Term ID" msgstr "ID Metodo di Pagamento" -#: frontend/templates/email-abort-payment-admin.tpl.php:17 -#: frontend/templates/email-abort-payment-user.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:20 +#: frontend/templates/email-abort-payment-user.tpl.php:12 msgid "Payment transaction ID" msgstr "ID Transazione di Pagamento" @@ -1903,11 +1985,11 @@ msgid "Additional Details" msgstr "Altre informazioni" #: frontend/templates/email-ad-enabled-user.tpl.php:3 -#: frontend/templates/email-send-ad-access-key.tpl.php:1 +#: frontend/templates/email-send-ad-access-key.tpl.php:3 msgid "Hello %s," msgstr "Bentornato %s," -#: frontend/templates/email-ad-enabled-user.tpl.php:6 +#: frontend/templates/email-ad-enabled-user.tpl.php:8 msgid "" "Your Ad \"%1$s\" was recently approved by the admin. You should be able to " "see the Ad published here: %2$s." @@ -1972,8 +2054,8 @@ msgstr "L'annuncio è stato aggiornato con successo. I dettagli dell'annuncio:" msgid "Ad Information" msgstr "Informazioni Annuncio" -#: frontend/templates/email-ad-updated-user.tpl.php:18 -#: frontend/templates/email-place-ad-success-user.tpl.php:45 +#: frontend/templates/email-ad-updated-user.tpl.php:20 +#: frontend/templates/email-place-ad-success-user.tpl.php:47 msgid "" "If you have questions about your listing contact %s. Thank you for your " "business." @@ -2011,21 +2093,22 @@ msgid "The next link will take you to a page where you can edit the listing:" msgstr "" "Il collegamento seguente porta alla pagina di modifica dell'inserzione:" -#: frontend/templates/email-send-ad-access-key.tpl.php:3 +#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#, fuzzy msgid "" -"Below you will find the access key for your Ad \"%s\" associated to the " +"Below you will find the access key for your Ad \"%s\" associated with the " "email address %s." msgstr "" "Sotto troverari la chiave di accesso per il tuo Annuncio \"%s\" associata al " "tuo indirizzo email %s." -#: frontend/templates/email-send-ad-access-key.tpl.php:6 +#: frontend/templates/email-send-ad-access-key.tpl.php:10 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:13 #: templates/admin/view-listing-admin-page.tpl.php:11 msgid "Access Key" msgstr "Chiave d'accesso" -#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#: frontend/templates/email-send-ad-access-key.tpl.php:11 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:14 msgid "Edit Link:" msgstr "" @@ -2060,6 +2143,12 @@ msgstr "È stata persa la password?" msgid "Classifieds Menu" msgstr "Menu Annunci" +#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 +#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 +#, fuzzy +msgid "Complete Payment" +msgstr "Completa il pagamento" + #: frontend/templates/page-buy-credits-final-step.tpl.php:7 msgid "" "The credit in your account can be used to pay for posting your Ads. You can " @@ -2076,9 +2165,9 @@ msgstr "" #: frontend/templates/page-buy-credits-select-credit-plan-step.tpl.php:18 #: frontend/templates/page-renew-ad-order-step.tpl.php:27 -#: frontend/templates/page-reply-to-ad.tpl.php:43 +#: frontend/templates/page-reply-to-ad.tpl.php:48 #: frontend/templates/payments-billing-form.tpl.php:124 -#: frontend/templates/payments-checkout-page.tpl.php:28 +#: frontend/templates/payments-checkout-page.tpl.php:27 #: frontend/templates/payments-payment-completed-page.tpl.php:18 msgid "Continue" msgstr "Continua" @@ -2108,27 +2197,27 @@ msgstr "Recupera la password dell'annuncio" msgid "Enter Ad Details" msgstr "Inserisci i dettagli degli annunci" -#: frontend/templates/page-place-ad-details-step.tpl.php:35 +#: frontend/templates/page-place-ad-details-step.tpl.php:36 #: includes/admin/import/class-csv-importer-columns.php:79 #: includes/admin/listings/class-listing-owner-metabox.php:59 msgid "Ad Owner" msgstr "Proprietario Annuncio" -#: frontend/templates/page-place-ad-details-step.tpl.php:41 -#: frontend/templates/page-place-ad-order-step.tpl.php:60 +#: frontend/templates/page-place-ad-details-step.tpl.php:43 +#: frontend/templates/page-place-ad-order-step.tpl.php:61 msgid "User" msgstr "Utente" -#: frontend/templates/page-place-ad-details-step.tpl.php:42 -#: frontend/templates/page-place-ad-order-step.tpl.php:61 +#: frontend/templates/page-place-ad-details-step.tpl.php:44 +#: frontend/templates/page-place-ad-order-step.tpl.php:62 msgid "Select an User owner for this Ad" msgstr "Scegli l'utente proprietario dell'Annuncio" -#: frontend/templates/page-place-ad-details-step.tpl.php:77 +#: frontend/templates/page-place-ad-details-step.tpl.php:81 msgid "Add Details and Contact Information" msgstr "Inserisci i dettagli dell'annuncio e le informazioni per contattarti" -#: frontend/templates/page-place-ad-order-step.tpl.php:73 +#: frontend/templates/page-place-ad-order-step.tpl.php:75 msgid "Please select a payment term for your Ad" msgstr "Scegliere il Metodo di pagamento per l'Annuncio" @@ -2172,7 +2261,12 @@ msgstr "" msgid "Your Ad has been renewed" msgstr "Il tuo annuncio è stato rinnovato" -#: frontend/templates/page-renew-ad.tpl.php:15 +#: frontend/templates/page-renew-ad-order-step.tpl.php:6 +#, fuzzy +msgid "Select Payment Term" +msgstr "Scegli Metodo di Pagamento" + +#: frontend/templates/page-renew-ad.tpl.php:13 msgid "" "Please click the payment button below to proceed with Payment for your Ad " "renewal. You will be asked to pay %s." @@ -2180,19 +2274,19 @@ msgstr "" "Clicca il pulsante sottostante per procedere con il Pagamento per il rinnovo " "dell'Annuncio. Ti verrà chiesto di pagare %s." -#: frontend/templates/page-reply-to-ad.tpl.php:7 +#: frontend/templates/page-reply-to-ad.tpl.php:10 msgid "You are responding to Ad: %s." msgstr "Stai rispondendo all'Annuncio: %s." -#: frontend/templates/page-reply-to-ad.tpl.php:18 +#: frontend/templates/page-reply-to-ad.tpl.php:24 msgid "Your name" msgstr "Tuo Nome" -#: frontend/templates/page-reply-to-ad.tpl.php:24 +#: frontend/templates/page-reply-to-ad.tpl.php:30 msgid "Your email address" msgstr "Indirizzo email." -#: frontend/templates/page-reply-to-ad.tpl.php:30 +#: frontend/templates/page-reply-to-ad.tpl.php:36 msgid "Your message" msgstr "Testo del messaggio" @@ -2200,19 +2294,19 @@ msgstr "Testo del messaggio" msgid "Search for ads containing this word or phrase" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:37 +#: frontend/templates/page-search-ads.tpl.php:41 msgid "For ads posted by" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:39 +#: frontend/templates/page-search-ads.tpl.php:43 msgid "All Users" msgstr "Tutti gli utenti" -#: frontend/templates/page-search-ads.tpl.php:48 +#: frontend/templates/page-search-ads.tpl.php:55 msgid "Min price" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:52 +#: frontend/templates/page-search-ads.tpl.php:59 msgid "Max price" msgstr "" @@ -2220,9 +2314,18 @@ msgstr "" msgid "Pay With 2Checkout" msgstr "Paga con 2Checkout" -#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:791 -#: includes/admin/class-listings-personal-data-provider.php:115 -#: includes/admin/class-listings-personal-data-provider.php:125 +#: frontend/templates/payments-billing-form.tpl.php:1 +#, fuzzy +msgid "" +"Please fill in the billing information in the form below to place your " +"payment." +msgstr "" +"Compila le informazioni di fatturazione nel modulo seguente per poter " +"effettuare il pagamento." + +#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:797 +#: includes/admin/class-listings-personal-data-provider.php:117 +#: includes/admin/class-listings-personal-data-provider.php:127 #: includes/admin/import/class-csv-importer-columns.php:230 msgid "Country" msgstr "Nazione" @@ -2260,15 +2363,15 @@ msgid "Address Line 2" msgstr "Indirizzo (linea 2)" #: frontend/templates/payments-billing-form.tpl.php:92 -#: includes/admin/class-listings-personal-data-provider.php:116 -#: includes/admin/class-listings-personal-data-provider.php:126 +#: includes/admin/class-listings-personal-data-provider.php:118 +#: includes/admin/class-listings-personal-data-provider.php:128 #: includes/admin/import/class-csv-importer-columns.php:238 msgid "State" msgstr "Stato" -#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:811 -#: includes/admin/class-listings-personal-data-provider.php:117 -#: includes/admin/class-listings-personal-data-provider.php:127 +#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:817 +#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:129 #: includes/admin/import/class-csv-importer-columns.php:260 msgid "City" msgstr "Città" @@ -2282,14 +2385,56 @@ msgstr "CAP" msgid "Email" msgstr "Email" +#: frontend/templates/payments-credit-plans-table.tpl.php:7 +#, fuzzy +msgid "" +"You can additionally purchase a Credit Plan to add credit to your account. " +"If you select to pay using credits, the price of the selected payment term " +"will be deducted from your account balance after you have completed payment." +msgstr "" +"Puoi acquistare anche un Piano Crediti per aggiungere crediti al tuo conto. " +"Se scegli di pagare usando i crediti l'importo verrà scalato dal tuo " +"bilancio del tuo conto dopo aver effettuato la procedura di pagamento." + #: frontend/templates/payments-credit-plans-table.tpl.php:22 msgid "No credit plans available." msgstr "Nessun Piano Crediti disponibile." +#: frontend/templates/payments-credit-plans-table.tpl.php:51 +#, fuzzy +msgid "clear selection" +msgstr "pulisci selezione" + +#: frontend/templates/payments-payment-completed-page.tpl.php:2 +#, fuzzy +msgid "Transaction Details" +msgstr "Dettagli transazione" + +#: frontend/templates/payments-payment-page.tpl.php:3 +#, fuzzy +msgid "You are about to pay for the following items." +msgstr "Stai per effettuare un pagamento per i seguenti articoli." + +#: frontend/templates/payments-payment-page.tpl.php:5 +#, fuzzy +msgid "Payment Terms" +msgstr "Termini di pagamento" + #: frontend/templates/payments-paypal-payment-button.tpl.php:30 msgid "Make payments with PayPal - it's fast, free and secure!" msgstr "Fai un pagamento con PayPal - E' veloce, gratuito e sicuro!" +#: frontend/templates/payments-transaction-items-table.tpl.php:4 +#: frontend/templates/payments-transaction-items-table.tpl.php:13 +#, fuzzy +msgid "Item" +msgstr "Articolo" + +#: frontend/templates/payments-transaction-items-table.tpl.php:34 +#, fuzzy +msgid "Total Amount (credit)" +msgstr "Importo totale (credito)" + #: frontend/templates/widget-categories-form.tpl.php:9 msgid "Hide empty categories." msgstr "Nascondi Categorie vuote." @@ -2363,7 +2508,7 @@ msgstr "Mostra campo keyword?" msgid "Show Posted By field?" msgstr "Mostra campo Inserito Da?" -#: frontend/templates/widget-search-form.tpl.php:28 +#: frontend/templates/widget-search-form.tpl.php:32 msgid "Show Category field?" msgstr "Mostra campo Categoria?" @@ -2379,23 +2524,23 @@ msgstr "Categorie di AWPCP" msgid "Ad Categories" msgstr "Categorie Annuncio" -#: frontend/widget-latest-ads.php:13 +#: frontend/widget-latest-ads.php:17 msgid "AWPCP Latest Ads" msgstr "Ultimi annunci AWPCP" -#: frontend/widget-latest-ads.php:14 +#: frontend/widget-latest-ads.php:18 msgid "Displays a list of latest Ads" msgstr "Mostra lista degli Annunci Recenti" -#: frontend/widget-latest-ads.php:30 +#: frontend/widget-latest-ads.php:34 msgid "Latest Ads" msgstr "Annunci Recenti" -#: frontend/widget-latest-ads.php:72 +#: frontend/widget-latest-ads.php:76 msgid "There are currently no ads to show." msgstr "" -#: frontend/widget-latest-ads.php:114 +#: frontend/widget-latest-ads.php:118 msgid "Read more" msgstr "Leggi tutto" @@ -2427,67 +2572,67 @@ msgstr "Tutti i nomi di Contatto" msgid "Select Option" msgstr "Opzione di Selezione " -#: frontend/widget-search.php:105 +#: frontend/widget-search.php:106 msgid "Search by keyword" msgstr "Ricerca per parole chiave" -#: frontend/widget-search.php:119 +#: frontend/widget-search.php:121 msgid "Search by Category" msgstr "Cerca per categoria" -#: frontend/widget-search.php:137 +#: frontend/widget-search.php:141 msgid "Search" msgstr "Cerca" -#: functions.php:427 +#: functions.php:431 msgid "%s ago" msgstr "%s età" -#: functions.php:604 +#: functions.php:610 msgid "Ads per page:" msgstr "" -#: functions.php:621 +#: functions.php:627 msgid "Page {current_page_number} of {number_of_pages}" msgstr "" -#: functions.php:732 +#: functions.php:738 msgid "None" msgstr "Nessuno" -#: functions.php:792 +#: functions.php:798 msgid "separate countries by commas" msgstr "separa le nazioni con la virgola" -#: functions.php:801 +#: functions.php:807 msgid "State/Province" msgstr "Stato/Provincia" -#: functions.php:802 +#: functions.php:808 msgid "separate states by commas" msgstr "separata gli stati con la virgola" -#: functions.php:812 +#: functions.php:818 msgid "separate cities by commas" msgstr "separata le città con la virgola" -#: functions.php:821 +#: functions.php:827 msgid "County/Village/Other" msgstr "Circoscrizione/Villaggio/Altro" -#: functions.php:822 +#: functions.php:828 msgid "separate counties by commas" msgstr "separata circoscrizioni con la virgola" -#: functions.php:1036 +#: functions.php:1050 msgid "-- Choose a Country --" msgstr "-- Scegli una Nazione --" -#: functions.php:1507 templates/admin/main-classifieds-admin-page.tpl.php:58 +#: functions.php:1537 templates/admin/main-classifieds-admin-page.tpl.php:58 msgid "Free" msgstr "Gratuito" -#: functions.php:1852 templates/components/media-center.tpl.php:14 +#: functions.php:1893 templates/components/media-center.tpl.php:14 msgid "" "The images or files with pale red background have been rejected by an " "administrator user. Likewise, files with a pale yellow background are " @@ -2499,7 +2644,7 @@ msgstr "" "attesa di approvazione. I file rifiutati e in attesa di approvazione non " "vengono mostrati nel frontend." -#: functions.php:1871 +#: functions.php:1912 msgid "" "This version of AWPCP %1$s module is not compatible with AWPCP version %2$s. " "Please get AWPCP %1$s %3$s or newer!" @@ -2507,55 +2652,55 @@ msgstr "" "La versione del modulo AWPCP %1$s non è compatibile con la versione %2$s. " "Passa a AWPCP %1$s %3$s o a una versione successiva." -#: functions.php:1873 +#: functions.php:1914 msgid "Error" msgstr "Errore" -#: functions.php:2231 +#: functions.php:2287 msgid "No errors." msgstr "Nessun errore." -#: functions.php:2232 +#: functions.php:2288 msgid "The file is larger than upload_max_filesize." msgstr "Il file è più grande di upload_max_filesize." -#: functions.php:2233 +#: functions.php:2289 msgid "The file is larger than form MAX_FILE_SIZE." msgstr "Il file è più grande di MAX_FILE_SIZE." -#: functions.php:2234 +#: functions.php:2290 msgid "The file was only partially uploaded." msgstr "Il file è stato caricato parzialmente." -#: functions.php:2235 +#: functions.php:2291 msgid "No file was uploaded." msgstr "Non è stato caricato alcun file." -#: functions.php:2236 +#: functions.php:2292 msgid "Missing temporary directory." msgstr "Cartella temporanea non disponibile." -#: functions.php:2237 +#: functions.php:2293 msgid "Can't write file to disk." msgstr "Impossibile scrivere sul disco." -#: functions.php:2238 +#: functions.php:2294 msgid "The file upload was stopped by extension." msgstr "Il caricamento del file è stato interrotto in base all'estensione." -#: functions.php:2476 +#: functions.php:2536 msgid "Your Ad \"%s\" has been approved" msgstr "Il tuo annuncio \"%s\" è stato approvato" -#: functions.php:2499 +#: functions.php:2559 msgid "Your Ad \"%s\" has been successfully updated" msgstr "Il tuo annuncio \"%s\" è stato aggiornato con successo." -#: functions.php:2521 +#: functions.php:2581 msgid "Images on Ad \"%s\" are awaiting approval" msgstr "Le immagini dell'Annuncio \"%s\" sono in attesa di approvazione" -#: functions.php:2523 +#: functions.php:2583 msgid "" "Images on Ad \"%s\" are awaiting approval. You can approve the images going " "to the Manage Images section for that Ad and clicking the \"Enable\" button " @@ -2566,13 +2711,13 @@ msgstr "" "specifico cliccando sul pulsante \"Abilita\" presente al di sotto di ogni " "immagine. Clicca qui per continuare: %s." -#: functions.php:2526 +#: functions.php:2586 msgid "The Ad \"%s\" is awaiting approval" msgstr "L'Annuncio \"%s\" è in attesa di approvazione" #. translators: %1$s is the listing title. %2$s is the URL for managing #. listing. -#: functions.php:2529 includes/functions/notifications.php:157 +#: functions.php:2589 includes/functions/notifications.php:156 msgid "" "The Ad \"%1$s\" is awaiting approval. You can approve the Ad going to the " "Classified edit section and clicking the \"Publish\" button. Click here to " @@ -2580,7 +2725,7 @@ msgid "" msgstr "" #. translators: %s is the URL for managing listing images. -#: functions.php:2536 includes/functions/notifications.php:165 +#: functions.php:2596 includes/functions/notifications.php:164 msgid "" "Additionally, You can approve the images going to the Manage Images section " "for that Ad and clicking the \"Enable\" button below each image. Click here " @@ -2590,27 +2735,27 @@ msgstr "" "Immagini cliccando su \"Abilita\" al di sotto di ogni singola Immagine. " "Clicca qui per continuare: %s." -#: functions.php:3068 +#: functions.php:3123 msgid "Email sent %s." msgstr "Email inviata il %s." -#: functions.php:3199 +#: functions.php:3254 msgid "Not Installed" msgstr "Non installato" -#: functions.php:3203 +#: functions.php:3258 msgid "Installed" msgstr "Installato" -#: functions.php:3211 +#: functions.php:3266 msgid "SSL Support: Yes." msgstr "" -#: functions.php:3213 +#: functions.php:3268 msgid "SSL Support: No." msgstr "" -#: functions.php:3216 +#: functions.php:3271 msgid "OpenSSL version:" msgstr "" @@ -2630,58 +2775,58 @@ msgstr "" msgid "Search for listings matching" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:110 +#: includes/admin/class-listings-personal-data-provider.php:112 msgid "Classified ID" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:111 +#: includes/admin/class-listings-personal-data-provider.php:113 msgid "Contact Name" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:112 +#: includes/admin/class-listings-personal-data-provider.php:114 msgid "Contact Phone Number" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:113 +#: includes/admin/class-listings-personal-data-provider.php:115 msgid "Contact Phone Number Digits" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:114 +#: includes/admin/class-listings-personal-data-provider.php:116 msgid "Contact Email" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:118 -#: includes/admin/class-listings-personal-data-provider.php:128 +#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:130 #: includes/admin/import/class-csv-importer-columns.php:249 msgid "County" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:121 msgid "Website URL" msgstr "Indirizzo internet (eventuale)" -#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:122 #: includes/admin/class-payment-personal-data-provider.php:47 msgid "Payer Email" msgstr "Email" -#: includes/admin/class-listings-personal-data-provider.php:121 +#: includes/admin/class-listings-personal-data-provider.php:123 msgid "Author IP" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:132 +#: includes/admin/class-listings-personal-data-provider.php:134 msgid "URL" msgstr "URL" -#: includes/admin/class-listings-personal-data-provider.php:146 +#: includes/admin/class-listings-personal-data-provider.php:148 msgid "Classifieds Listings" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:157 +#: includes/admin/class-listings-personal-data-provider.php:159 msgid "Classifieds Media" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:218 +#: includes/admin/class-listings-personal-data-provider.php:220 msgid "" "An unknown error occurred while trying to delete information for classified " "{listing_id}." @@ -2702,7 +2847,7 @@ msgid "Contact Address" msgstr "" #: includes/admin/class-user-personal-data-provider.php:55 -#: includes/settings/class-display-settings.php:476 +#: includes/settings/class-display-settings.php:475 msgid "Contact Phone" msgstr "" @@ -2800,8 +2945,8 @@ msgid "" msgstr "" #: includes/admin/import/class-importer-form-steps.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:17 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:88 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:14 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:80 msgid "Upload Source Files" msgstr "" @@ -2810,12 +2955,12 @@ msgid "Configuration" msgstr "Configurazione" #: includes/admin/import/class-importer-form-steps.php:29 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:173 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:176 msgid "Import" msgstr "Importa" #: includes/admin/import/class-importer-form-steps.php:32 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:172 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:175 msgid "Test Import" msgstr "Importazione Test" @@ -2862,7 +3007,7 @@ msgstr[0] "" msgstr[1] "" #: includes/admin/listings/class-listing-owner-metabox.php:62 -#: templates/frontend/order-submit-listing-section.tpl.php:45 +#: templates/frontend/order-submit-listing-section.tpl.php:42 msgid "Please select a user" msgstr "" @@ -3295,44 +3440,44 @@ msgstr "Sitemap XML" msgid "ZIP Code Search Module" msgstr "Modulo di ricerca Codici Postali" -#: includes/class-awpcp.php:1445 +#: includes/class-awpcp.php:1436 msgid "This field is required." msgstr "Il campo è obbligatorio." -#: includes/class-awpcp.php:1446 +#: includes/class-awpcp.php:1437 #: includes/form-fields/class-form-fields-validator.php:101 #: includes/frontend/class-edit-listing-page.php:273 #: includes/frontend/class-edit-listing-page.php:350 -#: includes/settings/class-payment-general-settings.php:158 +#: includes/settings/class-payment-general-settings.php:157 msgid "Please enter a valid email address." msgstr "Immettere un indirizzo email valido." -#: includes/class-awpcp.php:1447 includes/class-awpcp.php:1448 +#: includes/class-awpcp.php:1438 includes/class-awpcp.php:1439 msgid "Please enter a valid URL." msgstr "Inserisci una URL valida." -#: includes/class-awpcp.php:1449 +#: includes/class-awpcp.php:1440 msgid "Please enter a valid number." msgstr "Inserisci un numero valido." -#: includes/class-awpcp.php:1450 +#: includes/class-awpcp.php:1441 msgid "Please enter a valid amount." msgstr "Inserisci un importo valido" -#: includes/class-awpcp.php:1451 +#: includes/class-awpcp.php:1442 msgid "" "You have reached the maximum allowed categories for the selected fee plan." msgstr "" -#: includes/class-awpcp.php:1470 +#: includes/class-awpcp.php:1461 msgid "There are files currently being uploaded." msgstr "Sono presenti file in caricamento." -#: includes/class-awpcp.php:1471 +#: includes/class-awpcp.php:1462 msgid "There are files pending to be uploaded." msgstr "Sono presenti file in attesa di caricamento." -#: includes/class-awpcp.php:1472 +#: includes/class-awpcp.php:1463 msgid "You haven't uploaded any images or files." msgstr "Non hai caricato immagini o file." @@ -3382,23 +3527,23 @@ msgid "" "site. Contact customer support for further assistance." msgstr "" -#: includes/class-listings-api.php:106 includes/class-listings-api.php:306 +#: includes/class-listings-api.php:106 includes/class-listings-api.php:310 msgid "" "There was an unexpected error trying to save the listing details. Please try " "again or contact an administrator." msgstr "" -#: includes/class-listings-api.php:197 +#: includes/class-listings-api.php:199 msgid "" "To avoid overwritting existing metadata, use fill_default_listing_metadata() " "instead." msgstr "" -#: includes/class-listings-api.php:302 +#: includes/class-listings-api.php:306 msgid "There was an error trying to save the listing details:" msgstr "" -#: includes/class-listings-api.php:730 +#: includes/class-listings-api.php:734 msgid "" "If you have uploaded images your images will not show up until an admin has " "approved them." @@ -3440,19 +3585,19 @@ msgid "" "customer support with a copy of your file." msgstr "" -#: includes/credit-plan.php:109 includes/payment-term.php:133 +#: includes/credit-plan.php:114 includes/payment-term.php:133 msgid "The name of the plan is required." msgstr "Il nome del Piano è obbligatorio." -#: includes/credit-plan.php:112 includes/payment-term.php:151 +#: includes/credit-plan.php:117 includes/payment-term.php:151 msgid "The number of credits must be greater than zero." msgstr "Il numero di crediti deve essere superiore a zero." -#: includes/credit-plan.php:115 +#: includes/credit-plan.php:120 msgid "The price must be greater or equal than zero." msgstr "Il prezzo deve essere superiore o uguale a zero." -#: includes/credit-plan.php:153 +#: includes/credit-plan.php:158 msgid "The Credit Plan doesn't exist." msgstr "Il Piano di Credito non esiste." @@ -3538,7 +3683,7 @@ msgstr "" msgid "Please read and accept the Terms of Service." msgstr "" -#: includes/frontend/class-captcha.php:70 +#: includes/frontend/class-captcha.php:77 msgid "" "An unknown error ocurred trying to validate the answer to the CAPTCHA " "challenge." @@ -3556,14 +3701,14 @@ msgid "" "allowed to submit classifieds." msgstr "" -#: includes/frontend/class-default-captcha-provider.php:59 +#: includes/frontend/class-default-captcha-provider.php:76 msgid "" "You did not solve the math problem. Please solve the math problem to proceed." msgstr "" "Non hai risolto il problema matematico. Si prega di risolverlo per poter " "procedere." -#: includes/frontend/class-default-captcha-provider.php:64 +#: includes/frontend/class-default-captcha-provider.php:81 msgid "Your solution to the math problem was incorrect. Please try again." msgstr "Soluzione al problema matematico non corretta. Si prega di riprovare." @@ -3708,15 +3853,15 @@ msgstr "" #. translators: %s will become an A HTML tag pointing to reCAPTCHA admin #. console. -#: includes/frontend/class-recaptcha-provider.php:47 +#: includes/frontend/class-recaptcha-provider.php:68 msgid "To use reCAPTCHA you must get an API key from %s." msgstr "Per usare reCAPTCHA si deve richiedere una chiave API da %s." -#: includes/frontend/class-recaptcha-provider.php:85 +#: includes/frontend/class-recaptcha-provider.php:106 msgid "Your answers couldn't be verified by the reCAPTCHA server." msgstr "Impossibile verificare la risposta tramite il server reCAPTCHA." -#: includes/frontend/class-recaptcha-v2.php:51 +#: includes/frontend/class-recaptcha-v2.php:78 msgid "" "There was an error trying to verify the reCAPTCHA answer. " msgstr "" @@ -3732,8 +3877,8 @@ msgid "Login/Registration" msgstr "Accesso / Registrazione" #: includes/frontend/class-submit-listing-form-steps.php:48 -#: includes/ui/class-category-selector.php:125 -#: templates/components/category-selector.tpl.php:16 +#: includes/ui/class-category-selector.php:147 +#: templates/components/category-selector.tpl.php:15 msgid "Select a Category" msgstr "Seleziona una categoria" @@ -3876,12 +4021,12 @@ msgstr "Il file %s non può essere spostato dalla cartella di destinazione." msgid "Could not create resized versions of image %s." msgstr "Impossibile creare la versione ridimensionata dell'immagine %s." -#: includes/functions/format.php:67 +#: includes/functions/format.php:50 msgid "Classifieds Management System" msgstr "Sistema di Gestione Annunci" #. translators: example: and -#: includes/functions/format.php:84 +#: includes/functions/format.php:67 msgid " and " msgstr "" @@ -3933,22 +4078,22 @@ msgstr "" msgid "Top Level Category" msgstr "Categoria di Livello Superiore" -#: includes/functions/listings.php:278 -#: includes/listings/class-listings-content-renderer.php:169 +#: includes/functions/listings.php:288 +#: includes/listings/class-listings-content-renderer.php:182 msgid "Are you sure you want to flag this ad?" msgstr "Sei sicuro di voler segnalare questo annuncio?" -#: includes/functions/listings.php:279 -#: includes/listings/class-listings-content-renderer.php:170 +#: includes/functions/listings.php:289 +#: includes/listings/class-listings-content-renderer.php:183 msgid "This Ad has been flagged." msgstr "Questo annuncio è stato segnalato." -#: includes/functions/listings.php:280 -#: includes/listings/class-listings-content-renderer.php:171 +#: includes/functions/listings.php:290 +#: includes/listings/class-listings-content-renderer.php:184 msgid "An error occurred while trying to flag the Ad." msgstr "C'è stato un annuncio mentre si segnalava un annuncio." -#: includes/functions/listings.php:317 +#: includes/functions/listings.php:327 msgid "" "Sorry, that listing is not available. Please try browsing or searching " "existing listings." @@ -3956,7 +4101,7 @@ msgstr "" "Questo elenco non è disponibile. Si prega di cercare tra gli elenchi " "disponibili." -#: includes/functions/listings.php:334 +#: includes/functions/listings.php:344 msgid "" "The Ad you are trying to view is pending approval. Once the Administrator " "approves it, it will be active and visible." @@ -3965,12 +4110,12 @@ msgstr "" "della Redazione. Diventerà visibile e attivo non appena l'amministratore lo " "approverà." -#: includes/functions/listings.php:340 +#: includes/functions/listings.php:350 #: includes/listings/class-listings-content-renderer.php:106 msgid "Your email address was successfully verified." msgstr "Indirizzo email verificato con successo." -#: includes/functions/listings.php:344 +#: includes/functions/listings.php:354 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the Administrator) and the author can see it." @@ -3978,7 +4123,7 @@ msgstr "" "Questo Annuncio è disabilitato fino all'approvazione da parte " "dell'Amministratore. Solo tu (amministratore) e l'autore potete vederlo." -#: includes/functions/listings.php:347 +#: includes/functions/listings.php:357 msgid "" "This Ad is currently disabled until you verify the email address used for " "the contact information. Only you (the author) can see it." @@ -3986,7 +4131,7 @@ msgstr "" "Questo annuncio è disattivato fino alla convalida dell'indirizzo email usato " "per l'inserimento. Solo tu (autore) lo puoi vedere al momento." -#: includes/functions/listings.php:350 +#: includes/functions/listings.php:360 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the author) can see it." @@ -4004,13 +4149,13 @@ msgid "Listing \"%s\" was updated" msgstr "Annuncio \"%s\" aggiornato" #. translators: %s is the listing title. -#: includes/functions/notifications.php:147 +#: includes/functions/notifications.php:146 msgid "Images on listing \"%s\" are awaiting approval" msgstr "Le immagini dell'annuncio \"%s\" sono in attesa di approvazione" #. translators: %1$s is the listing title. %2$s is the URL for managing listing #. images. -#: includes/functions/notifications.php:150 +#: includes/functions/notifications.php:149 msgid "" "Images on Ad \"%1$s\" are awaiting approval. You can approve the images " "going to the Manage Images section for that Ad and clicking the \"Enable\" " @@ -4018,11 +4163,11 @@ msgid "" msgstr "" #. translators: %s is the listing title. -#: includes/functions/notifications.php:154 +#: includes/functions/notifications.php:153 msgid "Listing \"%s\" is awaiting approval" msgstr "L'annuncio \"%s\" è in attesa di approvazione" -#: includes/functions/notifications.php:202 +#: includes/functions/notifications.php:201 msgid "Listing was flagged" msgstr "L'inserzione è stata segnata" @@ -4041,7 +4186,7 @@ msgid "Missing License Status parameter" msgstr "" #: includes/helpers/class-easy-digital-downloads.php:53 -msgid "License Status parameter was set to Failed" +msgid "License Status parameter was set to Failed" msgstr "" #: includes/helpers/class-easy-digital-downloads.php:57 @@ -4125,7 +4270,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:217 +#: includes/helpers/class-modules-manager.php:220 msgid "" "The version of AWPCP {modules_names} is not compatible with version " "{awpcp_version}." @@ -4135,11 +4280,11 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:219 +#: includes/helpers/class-modules-manager.php:222 msgid "Please get AWPCP {required_modules_versions} or newer!" msgstr "" -#: includes/helpers/class-modules-manager.php:250 +#: includes/helpers/class-modules-manager.php:256 msgid "" "The license for AWPCP is inactive. All features will remain " "disabled until you activate the license. Please go to the requires a license to be used. All features will " "remain disabled until a valid license is entered. Please go to the expired. The module will continue to " "work but you will not receive automatic updates when a new version is " @@ -4176,7 +4321,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:281 +#: includes/helpers/class-modules-manager.php:299 msgid "" "The AWPCP is currently disabled because it requires you to " "perform a manual upgrade before continuing. Please go to the " @@ -4188,17 +4333,17 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:294 +#: includes/helpers/class-modules-manager.php:312 msgid "The specified module does not exists!." msgstr "Il modulo specificato non esiste!." -#: includes/helpers/class-recaptcha-v3.php:56 +#: includes/helpers/class-recaptcha-v3.php:78 msgid "" "There was an error trying to analyze the current interaction with reCAPTCHA. " "" msgstr "" -#: includes/helpers/class-recaptcha-v3.php:98 +#: includes/helpers/class-recaptcha-v3.php:120 msgid "" "The current interaction was not approved by reCAPTCHA. Please try again." msgstr "" @@ -4260,11 +4405,11 @@ msgstr "" "C'è stato un errore nella richiesta di pagamento. Si prega di riprovare o " "contattare un amministratore." -#: includes/helpers/widgets/class-user-field.php:32 +#: includes/helpers/widgets/class-user-field.php:48 msgid "Select an User" msgstr "Seleziona un Utente" -#: includes/helpers/widgets/multiple-region-selector.php:123 +#: includes/helpers/widgets/multiple-region-selector.php:143 msgid "" "This particular region is already selected in another field. Please choose " "one or more sub-regions, to make the selection more specific, or change the " @@ -4274,19 +4419,19 @@ msgstr "" "una o più sottoregioni per rendere più particolareggiata la selezione o " "cambia la regione selezionata." -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Search Region" msgstr "Aggiungi Regione di Ricerca" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Region" msgstr "Aggiungi Region" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Delete Search Region" msgstr "Elimina Regione di Ricerca" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Remove Region" msgstr "Rimuovi Regione" @@ -4348,6 +4493,11 @@ msgstr "" msgid "There was an error trying to update the database." msgstr "" +#: includes/media/class-attachment-action-ajax-handler.php:53 +#, fuzzy +msgid "You are not allowed to perform this action." +msgstr "Non sei autorizzato a fare questa azione" + #: includes/media/class-attachment-action-ajax-handler.php:57 msgid "The specified file is not associated with Listing with ID %d." msgstr "" @@ -4453,7 +4603,7 @@ msgstr "" "Il file è inferiore alla grandezza minima di byte. " "Il file non può essere caricato." -#: includes/media/class-listings-media-uploader-component.php:51 +#: includes/media/class-listings-media-uploader-component.php:56 msgid "" "You can upload images of up to each, " " videos of up to each and " @@ -4463,32 +4613,32 @@ msgstr "" " video fino a ognuno e " "altri file fino a ." -#: includes/media/class-listings-media-uploader-component.php:52 +#: includes/media/class-listings-media-uploader-component.php:57 msgid "" "You can upload images of up to each and " " other files (no videos) of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:53 +#: includes/media/class-listings-media-uploader-component.php:58 msgid "" "You can upload images of up to each and " " videos of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:54 +#: includes/media/class-listings-media-uploader-component.php:59 msgid "" "You can upload videos of up to each and " " other files (no images) of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:55 +#: includes/media/class-listings-media-uploader-component.php:60 msgid "" "You can upload images of up to each." msgstr "" "Puoi caricare immagini grandi al massimo ciascuna" -#: includes/media/class-listings-media-uploader-component.php:56 +#: includes/media/class-listings-media-uploader-component.php:61 msgid "" "You can upload files (no videos or images) of up to each." @@ -4496,7 +4646,7 @@ msgstr "" "Puoi caricare file (no video o foto) grandi al massimo ciascuno" -#: includes/media/class-listings-media-uploader-component.php:57 +#: includes/media/class-listings-media-uploader-component.php:62 msgid "" "You can upload videos of up to each." msgstr "" @@ -4592,15 +4742,15 @@ msgstr "" msgid "General" msgstr "Generale" -#: includes/models/payment-transaction.php:225 +#: includes/models/payment-transaction.php:232 msgid "The transaction must be assigned to a WordPress user." msgstr "La transazione deve essere assegnata ad un utente Wordpress" -#: includes/models/payment-transaction.php:238 +#: includes/models/payment-transaction.php:245 msgid "The transaction has no items." msgstr "" -#: includes/models/payment-transaction.php:250 +#: includes/models/payment-transaction.php:257 msgid "" "The amount of credit in your account is not enough to pay for the selected " "items. Please choose one of the available Credit Plans in addition to the " @@ -4608,18 +4758,18 @@ msgid "" "Profile Page.
You need %d extra credit." msgstr "" -#: includes/models/payment-transaction.php:252 +#: includes/models/payment-transaction.php:259 msgid "" "The selected Credit Plan is not enough to pay for the selected items. Please " "choose a bigger Credit Plan or add credit to your account from your Profile " "Page.
You need %d extra credit." msgstr "" -#: includes/models/payment-transaction.php:282 +#: includes/models/payment-transaction.php:289 msgid "You must select a payment method." msgstr "Devi Selezionare un metodo di pagamento." -#: includes/models/payment-transaction.php:294 +#: includes/models/payment-transaction.php:301 msgid "The payment status for this transaction hasn't been defined." msgstr "Lo stato di pagamento per questa transazione non è stato definito." @@ -4633,7 +4783,7 @@ msgid "" msgstr "" #: includes/payment-gateway-2checkout.php:101 -#: includes/payment-gateway-paypal-standard.php:140 +#: includes/payment-gateway-paypal-standard.php:142 msgid "" "The amount you have paid does not match the required amount for this " "transaction. Please contact us to clarify the problem." @@ -4642,7 +4792,7 @@ msgstr "" "prega di contattarci per chiarire il disguido." #: includes/payment-gateway-2checkout.php:109 -#: includes/payment-gateway-paypal-standard.php:148 +#: includes/payment-gateway-paypal-standard.php:150 msgid "" "There was an error processing your transaction. If funds have been deducted " "from your account, they have not been processed to our account. You will " @@ -4650,14 +4800,14 @@ msgid "" msgstr "" #: includes/payment-gateway-2checkout.php:119 -#: includes/payment-gateway-paypal-standard.php:158 +#: includes/payment-gateway-paypal-standard.php:160 msgid "" "It appears this transaction has already been processed. If you do not see " "your ad in the system please contact the site adminstrator for assistance." msgstr "" #. translators: %s link url. -#: includes/payment-gateway-paypal-standard.php:58 +#: includes/payment-gateway-paypal-standard.php:60 msgid "" "We haven't received your payment information from PayPal yet and we are " "unable to verify your transaction. Please reload this page or visit ERRORE PAGAMENTO
: %s" -#: includes/payments-api.php:847 +#: includes/payments-api.php:951 msgid "" "There was an error processing your payment. The payment status couldn't be " "found. Please contact the website admin to solve this issue." msgstr "" -#: includes/payments-api.php:873 +#: includes/payments-api.php:991 msgid "Payment Not Verified" msgstr "" @@ -5161,73 +5311,73 @@ msgstr "" msgid "Add no follow to links in Ads" msgstr "" -#: includes/settings/class-display-settings.php:220 -#: includes/settings/class-display-settings.php:225 +#: includes/settings/class-display-settings.php:219 +#: includes/settings/class-display-settings.php:224 msgid "Classifieds Bar" msgstr "" -#: includes/settings/class-display-settings.php:230 +#: includes/settings/class-display-settings.php:229 msgid "Show Classifieds Bar" msgstr "" -#: includes/settings/class-display-settings.php:233 +#: includes/settings/class-display-settings.php:232 msgid "" "The Classifieds Bar is a section shown at the top of the plugin pages, " "displaying a Search Bar and multiple menu items. Each element of the bar can " "be enabled or disabled using the settings below." msgstr "" -#: includes/settings/class-display-settings.php:238 +#: includes/settings/class-display-settings.php:237 msgid "Show Search Bar" msgstr "" -#: includes/settings/class-display-settings.php:249 +#: includes/settings/class-display-settings.php:248 msgid "Show Place Ad menu item" msgstr "" -#: includes/settings/class-display-settings.php:260 +#: includes/settings/class-display-settings.php:259 msgid "Show Edit Ad menu item" msgstr "" -#: includes/settings/class-display-settings.php:271 +#: includes/settings/class-display-settings.php:270 msgid "Show Browse Ads menu item" msgstr "" -#: includes/settings/class-display-settings.php:282 +#: includes/settings/class-display-settings.php:281 msgid "Show Search Ads menu item" msgstr "" -#: includes/settings/class-display-settings.php:308 +#: includes/settings/class-display-settings.php:307 msgid "Form Steps" msgstr "" -#: includes/settings/class-display-settings.php:317 +#: includes/settings/class-display-settings.php:316 msgid "Show Form Steps" msgstr "" -#: includes/settings/class-display-settings.php:320 +#: includes/settings/class-display-settings.php:319 msgid "" "If checked, when a user is creating a new listing, a list of steps will be " "shown at the top of the forms." msgstr "" -#: includes/settings/class-display-settings.php:328 +#: includes/settings/class-display-settings.php:327 msgid "User Field" msgstr "Campo utente" -#: includes/settings/class-display-settings.php:330 +#: includes/settings/class-display-settings.php:329 msgid "Dropdown" msgstr "Dropdown" -#: includes/settings/class-display-settings.php:330 +#: includes/settings/class-display-settings.php:329 msgid "Autocomplete" msgstr "Autocompletamento" -#: includes/settings/class-display-settings.php:332 +#: includes/settings/class-display-settings.php:331 msgid "HTML Widget for User field" msgstr "" -#: includes/settings/class-display-settings.php:332 +#: includes/settings/class-display-settings.php:331 msgid "" "The user field can be represented with an HTML dropdown or a text field with " "autocomplete capabilities. Using the dropdown is faster if you have a small " @@ -5236,21 +5386,21 @@ msgid "" "be a better idea." msgstr "" -#: includes/settings/class-display-settings.php:333 +#: includes/settings/class-display-settings.php:332 msgid "Show User Field on Search" msgstr "" -#: includes/settings/class-display-settings.php:333 +#: includes/settings/class-display-settings.php:332 msgid "Show as \"Posted By\" in search form?" msgstr "" -#: includes/settings/class-display-settings.php:338 +#: includes/settings/class-display-settings.php:337 msgid "" "Overwrite information in contact fields when a different listing owner is " "selected" msgstr "" -#: includes/settings/class-display-settings.php:341 +#: includes/settings/class-display-settings.php:340 msgid "" "If this setting is enabled, when an administrator is editing a listing and " "he changes the selected value in the User/Owner field, the information in " @@ -5260,25 +5410,25 @@ msgid "" "will not be persisted until you click the Continue button." msgstr "" -#: includes/settings/class-display-settings.php:347 +#: includes/settings/class-display-settings.php:346 msgid "User's name format" msgstr "" -#: includes/settings/class-display-settings.php:350 +#: includes/settings/class-display-settings.php:349 msgid "" "The selected format will be used to show a user's name in dropdown fields, " "text fields and templates." msgstr "" -#: includes/settings/class-display-settings.php:365 +#: includes/settings/class-display-settings.php:364 msgid "Contact Fields" msgstr "Contatti" -#: includes/settings/class-display-settings.php:370 +#: includes/settings/class-display-settings.php:369 msgid "Allow logged in users to overwrite Contact Name and Contact Email" msgstr "" -#: includes/settings/class-display-settings.php:373 +#: includes/settings/class-display-settings.php:372 msgid "" "Normally registered users who are not administrators are not allowed to " "change the email address or contact name. The fields are rendered as read-" @@ -5287,121 +5437,121 @@ msgid "" "fields." msgstr "" -#: includes/settings/class-display-settings.php:380 +#: includes/settings/class-display-settings.php:379 msgid "Show Phone field" msgstr "Mostra campo Telefono" -#: includes/settings/class-display-settings.php:380 +#: includes/settings/class-display-settings.php:379 msgid "Show phone field?" msgstr "Mostra campo Telefono?" -#: includes/settings/class-display-settings.php:382 +#: includes/settings/class-display-settings.php:381 msgid "Require Phone" msgstr "" -#: includes/settings/class-display-settings.php:382 +#: includes/settings/class-display-settings.php:381 msgid "Require phone on Place Ad and Edit Ad forms?" msgstr "" -#: includes/settings/class-display-settings.php:387 +#: includes/settings/class-display-settings.php:386 msgid "Show Phone Field only to registered users" msgstr "" -#: includes/settings/class-display-settings.php:390 -#: includes/settings/class-display-settings.php:405 -#: includes/settings/class-display-settings.php:430 +#: includes/settings/class-display-settings.php:389 +#: includes/settings/class-display-settings.php:404 +#: includes/settings/class-display-settings.php:429 msgid "" "This setting restricts viewing of this field so that only registered users " "that are logged in can see it." msgstr "" -#: includes/settings/class-display-settings.php:395 +#: includes/settings/class-display-settings.php:394 msgid "Show Website field" msgstr "" -#: includes/settings/class-display-settings.php:395 +#: includes/settings/class-display-settings.php:394 msgid "Show website field?" msgstr "" -#: includes/settings/class-display-settings.php:397 +#: includes/settings/class-display-settings.php:396 msgid "Require Website" msgstr "" -#: includes/settings/class-display-settings.php:397 +#: includes/settings/class-display-settings.php:396 msgid "Require website on Place Ad and Edit Ad forms?" msgstr "" -#: includes/settings/class-display-settings.php:402 +#: includes/settings/class-display-settings.php:401 msgid "Show Website Field only to registered users" msgstr "" -#: includes/settings/class-display-settings.php:410 +#: includes/settings/class-display-settings.php:409 msgid "Show Price field" msgstr "" -#: includes/settings/class-display-settings.php:410 +#: includes/settings/class-display-settings.php:409 msgid "Show price field?" msgstr "" -#: includes/settings/class-display-settings.php:415 +#: includes/settings/class-display-settings.php:414 msgid "Show price field on search form" msgstr "" -#: includes/settings/class-display-settings.php:422 +#: includes/settings/class-display-settings.php:421 msgid "Require Price" msgstr "" -#: includes/settings/class-display-settings.php:422 +#: includes/settings/class-display-settings.php:421 msgid "Require price on Place Ad and Edit Ad forms?" msgstr "" -#: includes/settings/class-display-settings.php:427 +#: includes/settings/class-display-settings.php:426 msgid "Show Price Field only to registered users" msgstr "" -#: includes/settings/class-display-settings.php:433 +#: includes/settings/class-display-settings.php:432 msgid "Hide Price field if empty or zero" msgstr "" -#: includes/settings/class-display-settings.php:433 +#: includes/settings/class-display-settings.php:432 msgid "" "If checked all price placeholders will be replaced with an empty string when " "the price of the Ad is zero or was not set." msgstr "" -#: includes/settings/class-display-settings.php:440 +#: includes/settings/class-display-settings.php:439 msgid "" "Go to the admin section to change the order in which " "the fields mentioned below are shown to users in the Ad Details form." msgstr "" -#: includes/settings/class-display-settings.php:452 +#: includes/settings/class-display-settings.php:451 msgid "Form Fields Behavior" msgstr "" -#: includes/settings/class-display-settings.php:461 +#: includes/settings/class-display-settings.php:460 #: templates/admin/import/supported-csv-headers.tpl.php:18 msgid "Field" msgstr "Campo" -#: includes/settings/class-display-settings.php:462 +#: includes/settings/class-display-settings.php:461 msgid "Show field on form" msgstr "" -#: includes/settings/class-display-settings.php:463 +#: includes/settings/class-display-settings.php:462 msgid "Show field on search form" msgstr "" -#: includes/settings/class-display-settings.php:464 +#: includes/settings/class-display-settings.php:463 #: templates/admin/import/supported-csv-headers.tpl.php:19 msgid "Required" msgstr "Obbligatorio" -#: includes/settings/class-display-settings.php:465 +#: includes/settings/class-display-settings.php:464 msgid "Show value to registered users only" msgstr "" -#: includes/settings/class-display-settings.php:469 +#: includes/settings/class-display-settings.php:468 msgid "Website" msgstr "Sito web" @@ -5466,223 +5616,243 @@ msgid "" "sure your WordPress admin email address is tied to your hosting account." msgstr "" -#. translators: full-email-address=John Doe , -#. short-email-address=john.doe@example.com -#: includes/settings/class-email-settings.php:84 +#. translators: %1$s=John Doe , %2$s=john.doe@example.com +#: includes/settings/class-email-settings.php:85 msgid "" "If checked, whenever the name of the recipient is available, emails will be " -"sent to instead of just . Some " -"email servers, however, have problems handling email address that include " -"the name of the recipient. If emails sent by the plugin are not being " -"delivered properly, try unchecking this settting." +"sent to %1$s instead of just %2$s. Some email servers, however, have " +"problems handling email address that include the name of the recipient. If " +"emails sent by the plugin are not being delivered properly, try unchecking " +"this settting." msgstr "" -#: includes/settings/class-email-settings.php:91 +#: includes/settings/class-email-settings.php:93 msgid "Include the name of the recipient in the email address" msgstr "" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "Include Ad access key in email messages" msgstr "" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "" "Include Ad access key in email notifications. You may want to uncheck this " "option if you are using the Ad Management panel, but is not necessary." msgstr "" -#: includes/settings/class-email-settings.php:106 +#: includes/settings/class-email-settings.php:108 msgid "Messages" msgstr "Messaggi" -#: includes/settings/class-email-settings.php:118 +#: includes/settings/class-email-settings.php:120 msgid "Ad Posted Message" msgstr "" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject for Ad posted notification email" msgstr "" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Your Classified Ad listing has been submitted" msgstr "" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject line for email sent out when someone posts an Ad" msgstr "" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Body for Ad posted notification email" msgstr "" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "" "Thank you for submitting your Classified Ad. The details of your ad are " "shown below." msgstr "" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Message body text for email sent out when someone posts an Ad" msgstr "" -#: includes/settings/class-email-settings.php:127 +#: includes/settings/class-email-settings.php:129 msgid "Reply to Ad Message" msgstr "" -#: includes/settings/class-email-settings.php:132 +#: includes/settings/class-email-settings.php:134 msgid "Response notification for listing owners" msgstr "" -#: includes/settings/class-email-settings.php:139 +#: includes/settings/class-email-settings.php:141 msgid "" "Subject and body template for email sent out when someone replies to an ad." msgstr "" -#: includes/settings/class-email-settings.php:141 -#: includes/settings/class-email-settings.php:167 -msgid "The name of the person who replied." -msgstr "" - -#: includes/settings/class-email-settings.php:142 -#: includes/settings/class-email-settings.php:168 -msgid "The email adderss of the person who replied." -msgstr "" - #: includes/settings/class-email-settings.php:143 #: includes/settings/class-email-settings.php:169 -#: includes/settings/class-email-settings.php:206 -msgid "The title of the ad where the reply was posted." +msgid "The name of the person who replied." msgstr "" #: includes/settings/class-email-settings.php:144 #: includes/settings/class-email-settings.php:170 -msgid "The URL for the ad where the reply was posted." +msgid "The email adderss of the person who replied." msgstr "" #: includes/settings/class-email-settings.php:145 #: includes/settings/class-email-settings.php:171 -msgid "The content of the reply." +#: includes/settings/class-email-settings.php:208 +msgid "The title of the ad where the reply was posted." msgstr "" #: includes/settings/class-email-settings.php:146 #: includes/settings/class-email-settings.php:172 -msgid "The title of this website" +msgid "The URL for the ad where the reply was posted." msgstr "" #: includes/settings/class-email-settings.php:147 #: includes/settings/class-email-settings.php:173 +msgid "The content of the reply." +msgstr "" + +#: includes/settings/class-email-settings.php:148 +#: includes/settings/class-email-settings.php:174 +msgid "The title of this website" +msgstr "" + +#: includes/settings/class-email-settings.php:149 +#: includes/settings/class-email-settings.php:175 msgid "The URL of this website's homepage" msgstr "" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "Notify admin about contact message" msgstr "" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "" "An email will be sent to the administrator every time a visitor sends a " "message to one of the Ad posters through the Reply to Ad page." msgstr "" -#: includes/settings/class-email-settings.php:158 +#: includes/settings/class-email-settings.php:160 msgid "Response notification for administrators" msgstr "" -#: includes/settings/class-email-settings.php:165 +#: includes/settings/class-email-settings.php:167 msgid "" "Subject and body template for email sent out to administrators when someone " "replies to an ad." msgstr "" -#: includes/settings/class-email-settings.php:183 +#: includes/settings/class-email-settings.php:185 msgid "Resend Access Key Message" msgstr "" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "Subject for Request Ad Access Key email" msgstr "" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "The Classified Ad's ad access key you requested" msgstr "" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "" "Subject line for email sent out when someone requests their ad access key " "resent" msgstr "" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "Body for Request Ad Access Key email" msgstr "" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "You asked to have your Classified Ad's access key resent. Below are all the " "Ad access keys in the system that are tied to the email address you provided" msgstr "" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "Message body text for email sent out when someone requests their ad access " "key resent" msgstr "" -#: includes/settings/class-email-settings.php:192 +#: includes/settings/class-email-settings.php:194 msgid "Verify Email Message" msgstr "" -#: includes/settings/class-email-settings.php:197 +#: includes/settings/class-email-settings.php:199 msgid "Subject and body for verify email message" msgstr "" -#: includes/settings/class-email-settings.php:200 +#: includes/settings/class-email-settings.php:202 msgid "Verify the email address used for Ad {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:204 +#: includes/settings/class-email-settings.php:203 +msgid "" +"Hello {author_name} \n" +"\n" +"You recently posted the Ad {listing_title} to {website_title}. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"{verification_link} \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"{website_title}\n" +"\n" +"{website_url}" +msgstr "" + +#: includes/settings/class-email-settings.php:206 msgid "" "Subject and body template for email sent out to verify the email address." msgstr "" -#: includes/settings/class-email-settings.php:207 +#: includes/settings/class-email-settings.php:209 msgid "The name of the owner of the listing." msgstr "" -#: includes/settings/class-email-settings.php:208 +#: includes/settings/class-email-settings.php:210 msgid "Verification link." msgstr "" -#: includes/settings/class-email-settings.php:209 +#: includes/settings/class-email-settings.php:211 msgid "The title of this website." msgstr "" -#: includes/settings/class-email-settings.php:210 +#: includes/settings/class-email-settings.php:212 msgid "The URL of this webiste's homepage." msgstr "" -#: includes/settings/class-email-settings.php:220 +#: includes/settings/class-email-settings.php:222 msgid "Incomplete Payment Message" msgstr "" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "Subject for Incomplete Payment email" msgstr "" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "There was a problem processing your payment" msgstr "" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "" "Subject line for email sent out when the payment processing does not complete" msgstr "" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "Body for Incomplete Payment email" msgstr "" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "There was a problem encountered during your attempt to submit payment. If " "funds were removed from the account you tried to use to make a payment " @@ -5690,36 +5860,36 @@ msgid "" "assistance." msgstr "" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "Message body text for email sent out when the payment processing does not " "complete" msgstr "" -#: includes/settings/class-email-settings.php:229 +#: includes/settings/class-email-settings.php:231 msgid "Renew Ad Message" msgstr "" -#: includes/settings/class-email-settings.php:234 +#: includes/settings/class-email-settings.php:236 msgid "Subject for Renew Ad email" msgstr "" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:237 +#: includes/settings/class-email-settings.php:239 msgid "Your ad will expire in %d days." msgstr "" -#: includes/settings/class-email-settings.php:238 +#: includes/settings/class-email-settings.php:240 msgid "Subject line for email sent out when an Ad is about to expire." msgstr "" -#: includes/settings/class-email-settings.php:244 -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:246 +#: includes/settings/class-email-settings.php:270 msgid "Body for Renew Ad email" msgstr "" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:247 +#: includes/settings/class-email-settings.php:249 msgid "" "This is an automated notification that your Classified Ad will expire in %d " "days." @@ -5728,123 +5898,123 @@ msgstr "" #. translators: %d in this case is used to remind the user they can enter '%d' #. in the textarea where they want the plugin to replace the number of days #. until the ad expires. -#: includes/settings/class-email-settings.php:249 +#: includes/settings/class-email-settings.php:251 msgid "" "Message body text for email sent out when an Ad is about to expire. Use %d " "as placeholder for the number of days before the Ad expires." msgstr "" -#: includes/settings/class-email-settings.php:256 +#: includes/settings/class-email-settings.php:258 msgid "Ad Renewed Message" msgstr "" -#: includes/settings/class-email-settings.php:261 +#: includes/settings/class-email-settings.php:263 msgid "Subject for Ad Renewed email" msgstr "" #. translators: %s is the title of the ad. -#: includes/settings/class-email-settings.php:264 +#: includes/settings/class-email-settings.php:266 msgid "Your ad \"%s\" has been successfully renewed." msgstr "" -#: includes/settings/class-email-settings.php:265 +#: includes/settings/class-email-settings.php:267 msgid "Subject line for email sent out when an Ad is successfully renewed." msgstr "" -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "Your ad has been successfully renewed. More information below:" msgstr "" -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "" "Message body text for email sent out when an Ad is successfully renewed. " msgstr "" -#: includes/settings/class-email-settings.php:274 +#: includes/settings/class-email-settings.php:276 msgid "Ad Expired Message" msgstr "" -#: includes/settings/class-email-settings.php:279 +#: includes/settings/class-email-settings.php:281 msgid "Subject for Ad Expired email" msgstr "" #. translators: %s is the name of the website. -#: includes/settings/class-email-settings.php:282 +#: includes/settings/class-email-settings.php:284 msgid "Your ad at %s has expired" msgstr "" -#: includes/settings/class-email-settings.php:283 +#: includes/settings/class-email-settings.php:285 msgid "Subject line for email sent out when an ad has auto-expired" msgstr "" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Body for Ad Expired email" msgstr "" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "This is an automated notification that your ad has expired." msgstr "" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Message body text for email sent out when an ad has auto-expired" msgstr "" -#: includes/settings/class-email-settings.php:295 +#: includes/settings/class-email-settings.php:297 #: includes/settings/class-general-settings.php:599 msgid "Advanced" msgstr "Avanzate" -#: includes/settings/class-email-settings.php:305 +#: includes/settings/class-email-settings.php:307 msgid "Advanced Email Configuration" msgstr "" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enable external SMTP server" msgstr "" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enabled external SMTP server (if emails not processing normally)." msgstr "" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host" msgstr "" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host (if emails not processing normally)." msgstr "" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port" msgstr "" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port (if emails not processing normally)." msgstr "" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username" msgstr "" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username (if emails not processing normally)." msgstr "" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password" msgstr "" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password (if emails not processing normally)." msgstr "" -#: includes/settings/class-email-settings.php:316 +#: includes/settings/class-email-settings.php:318 msgid "" " is not a valid email address. Please check the value you entered " "to use as the FROM email address for outgoing messages." msgstr "" -#: includes/settings/class-email-settings.php:317 +#: includes/settings/class-email-settings.php:319 msgid "" " is not a valid email address. Please check the value you entered " "to use as recipient email address for admin notifications." @@ -6745,15 +6915,18 @@ msgid "" "the Webhooks URL and Event Name you define." msgstr "" -#: includes/settings/class-general-settings.php:919 +#. translators: %1$s is the link to Facebook Developer Apps page. %2$s is the +#. closing anchor tag. +#: includes/settings/class-general-settings.php:921 +#, fuzzy msgid "" -"You can find your application information in the Facebook Developer Apps page." +"You can find your application information in the %1$sFacebook Developer " +"Apps%2$s page." msgstr "" "Puoi trovare le informazioni dell'applicazione nella pagina Facebook " "Developer Apps." -#: includes/settings/class-general-settings.php:935 +#: includes/settings/class-general-settings.php:936 msgid "" "AWPCP needs to get an authorization token from Facebook to work correctly. " "You'll be redirected to Facebook to login. AWPCP does not store or obtain " @@ -6763,7 +6936,7 @@ msgstr "" "Verrai rimandato ad una pagina di accesso a Facebook. AWPCP non salva o " "richiede informazioni personali dal tuo profilo." -#: includes/settings/class-general-settings.php:936 +#: includes/settings/class-general-settings.php:937 msgid "" "Please choose Public as the audience for posts made by the application, even " "if you are just testing the integration. Facebook won't allow us to post " @@ -6774,85 +6947,82 @@ msgstr "" "l'integrazione. Scegliendo diversamente Facebook potrebbe non permettere la " "pubblicazione dei contenuti." -#: includes/settings/class-general-settings.php:945 +#: includes/settings/class-general-settings.php:947 msgid "Click here to obtain an access token from Facebook" msgstr "" -#: includes/settings/class-general-settings.php:947 +#: includes/settings/class-general-settings.php:951 msgid "" "Please provide a value for the App Id and App Secret settings before trying " "to get an access token from Facebook." msgstr "" -#: includes/settings/class-general-settings.php:958 +#: includes/settings/class-general-settings.php:960 msgid "" "Available Facebook Pages and Groups will be displayed after you enter a " "valid User Access Token." msgstr "" -#: includes/settings/class-general-settings.php:959 +#. translators: %1$s opening anchor tag, %2$s closing anchor tag, %3$s opening +#. anchor tag, %4$s closing anchor tag, %5$s opening anchor tag, %6$s closing +#. anchor tag, %7$s opening anchor tag, %8$s closing anchor tag +#: includes/settings/class-general-settings.php:964 msgid "" -"As of April 4, 2018, all applications need to go through App Review " -"in order to get access to the Page API and Groups API. That means that you may need to submit your app for review (ask for the " -"manage_pages, publish_pages, " -"publish_to_groups permissions), before AWPCP can display the " +"All applications need to go through %1$sApp Review%2$s in order to get " +"access to the %3$sPage API%4$s and %5$sGroups API%6$s. That means that you " +"may need to %7$ssubmit your app for review%8$s (ask for the manage_pages, " +"publish_pages, publish_to_groups permissions), before AWPCP can display the " "list of pages and groups you manage and be able to post classifieds ads to " "those groups and pages." msgstr "" -#: includes/settings/class-general-settings.php:977 +#: includes/settings/class-general-settings.php:989 msgid "None (Do not sent ads to a Facebook Page)" msgstr "" -#: includes/settings/class-general-settings.php:984 +#: includes/settings/class-general-settings.php:996 msgid "(Your own profile page)" msgstr "(Sulla pagina del tuo Profilo)" -#: includes/settings/class-general-settings.php:1008 +#: includes/settings/class-general-settings.php:1020 msgid "None (Do not sent ads to a Facebook Group)" msgstr "" -#: includes/settings/class-general-settings.php:1064 +#: includes/settings/class-general-settings.php:1076 msgid "" "Akismet SPAM control cannot be enabled because Akismet plugin is not " "installed or activated." msgstr "" -#: includes/settings/class-general-settings.php:1068 +#: includes/settings/class-general-settings.php:1080 msgid "" "Akismet SPAM control cannot be enabled because Akismet is not properly " "configured." msgstr "" -#: includes/settings/class-general-settings.php:1094 +#: includes/settings/class-general-settings.php:1106 msgid "" "reCAPTCHA can't be used because the public key and private key settings are " "required for reCAPTCHA to work properly." msgstr "" -#: includes/settings/class-general-settings.php:1096 +#: includes/settings/class-general-settings.php:1108 msgid "" "reCAPTCHA can't be used because the public key setting is required for " "reCAPTCHA to work properly." msgstr "" -#: includes/settings/class-general-settings.php:1098 +#: includes/settings/class-general-settings.php:1110 msgid "" "reCAPTCHA can't be used because the private key setting is required for " "reCAPTCHA to work properly." msgstr "" -#: includes/settings/class-general-settings.php:1145 +#: includes/settings/class-general-settings.php:1157 msgid "Thousands separator and decimal separator cant be the same." msgstr "" -#: includes/settings/class-general-settings.php:1159 +#: includes/settings/class-general-settings.php:1171 msgid "" "Credit System was automatically disabled because you disabled Require " "Registration setting." @@ -6868,10 +7038,17 @@ msgid "Licenses" msgstr "Licenze" #: includes/settings/class-licenses-settings.php:64 -#: templates/admin/debug/plugin-info-debug-section.tpl.php:18 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:24 msgid "Premium Modules" msgstr "Moduli Premium" +#: includes/settings/class-licenses-settings.php:82 +msgid "" +"The IP address of your server is %s. Please make sure to include that " +"information if you need to contact support about problems trying to activate " +"your licenses." +msgstr "" + #: includes/settings/class-listings-moderation-settings.php:22 msgid "" "Email verification was disabled because you enabled Require Registration. " @@ -7225,97 +7402,97 @@ msgstr "" msgid "Show category in browser page title when viewing individual Ad" msgstr "" -#: includes/settings/class-listings-settings.php:472 +#: includes/settings/class-listings-settings.php:473 msgid "" "Enable this setting to display each listing on its own page, instead of " -"showing the listing's content inside the page." +"showing the listing's content inside the %s page." msgstr "" -#: includes/settings/class-listings-settings.php:478 +#: includes/settings/class-listings-settings.php:480 msgid "Display listings on their own page" msgstr "" -#: includes/settings/class-listings-settings.php:486 +#: includes/settings/class-listings-settings.php:488 msgid "" "Portion of the URL that appears between the website's domain and the " "listing's information. Example: in ." msgstr "" -#: includes/settings/class-listings-settings.php:496 +#: includes/settings/class-listings-settings.php:498 msgid "Listings slug" msgstr "" -#: includes/settings/class-listings-settings.php:509 +#: includes/settings/class-listings-settings.php:511 msgid "" "Include the slug of the plugin's main page () in the URL " "that points to the page of an individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:512 +#: includes/settings/class-listings-settings.php:514 msgid "" "Include the slug of the plugin's main page in the URL that points to the " "page of an individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:518 +#: includes/settings/class-listings-settings.php:520 msgid "Include the slug of the plugin's main page in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:532 +#: includes/settings/class-listings-settings.php:534 msgid "Include the title in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:535 +#: includes/settings/class-listings-settings.php:537 msgid "" "Include the title in the URL that points to the page of an individual " "listing." msgstr "" -#: includes/settings/class-listings-settings.php:541 +#: includes/settings/class-listings-settings.php:543 msgid "Include the name of the category in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:544 +#: includes/settings/class-listings-settings.php:546 msgid "" "Include the name of the category in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:550 +#: includes/settings/class-listings-settings.php:552 msgid "Include the name of the country in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:553 +#: includes/settings/class-listings-settings.php:555 msgid "" "Include the name of the country in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:559 +#: includes/settings/class-listings-settings.php:561 msgid "Include the name of the state in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:562 +#: includes/settings/class-listings-settings.php:564 msgid "" "Include the name of the state in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:568 +#: includes/settings/class-listings-settings.php:570 msgid "Include the name of the city in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:571 +#: includes/settings/class-listings-settings.php:573 msgid "" "Include the name of the city in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:577 +#: includes/settings/class-listings-settings.php:579 msgid "Include the name of the county in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:580 +#: includes/settings/class-listings-settings.php:582 msgid "" "Include the name of the county in the URL that points to the page of an " "individual listing." @@ -7477,123 +7654,117 @@ msgid "" "not support HTTPS." msgstr "" -#: includes/settings/class-payment-general-settings.php:109 +#: includes/settings/class-payment-general-settings.php:108 msgid "" "Force Secure URLs was not enabled because your website couldn't be accessed " "using a secure connection." msgstr "" -#: includes/settings/class-payment-general-settings.php:135 -msgid "PayPal" -msgstr "PayPal" - -#: includes/settings/class-payment-general-settings.php:140 +#: includes/settings/class-payment-general-settings.php:139 msgid "PayPal Settings" msgstr "Impostazioni Paypal" -#: includes/settings/class-payment-general-settings.php:142 +#: includes/settings/class-payment-general-settings.php:141 msgid "Activate PayPal?" msgstr "" -#: includes/settings/class-payment-general-settings.php:146 +#: includes/settings/class-payment-general-settings.php:145 msgid "PayPal receiver email" msgstr "" -#: includes/settings/class-payment-general-settings.php:149 +#: includes/settings/class-payment-general-settings.php:148 msgid "" "Email address for PayPal payments (if running in pay mode and if PayPal is " "activated)." msgstr "" -#: includes/settings/class-payment-general-settings.php:167 +#: includes/settings/class-payment-general-settings.php:166 msgid "PayPal Merchant ID" msgstr "" #: includes/settings/class-payment-general-settings.php:170 msgid "" "Merchant ID associated with the PayPal account that will receive the " -"payments. Go to https://www.paypal.com/myaccount/settings/ to obtain " -"your Merchant ID." +"payments. Go to %s to obtain your Merchant ID." msgstr "" -#: includes/settings/class-payment-general-settings.php:178 +#: includes/settings/class-payment-general-settings.php:180 msgid "The PayPal Currency Code must be one of ." msgstr "" -#: includes/settings/class-payment-general-settings.php:183 +#: includes/settings/class-payment-general-settings.php:185 msgid "PayPal currency code" msgstr "" -#: includes/settings/class-payment-general-settings.php:186 +#: includes/settings/class-payment-general-settings.php:188 msgid "The currency in which you would like to receive your PayPal payments" msgstr "" -#: includes/settings/class-payment-general-settings.php:209 +#: includes/settings/class-payment-general-settings.php:211 msgid "2Checkout" msgstr "2Checkout" -#: includes/settings/class-payment-general-settings.php:214 +#: includes/settings/class-payment-general-settings.php:216 msgid "2Checkout Settings" msgstr "" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout" msgstr "" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout?" msgstr "" -#: includes/settings/class-payment-general-settings.php:220 +#: includes/settings/class-payment-general-settings.php:222 msgid "2Checkout account" msgstr "" -#: includes/settings/class-payment-general-settings.php:223 +#: includes/settings/class-payment-general-settings.php:225 msgid "Account for 2Checkout payments." msgstr "" -#: includes/settings/class-payment-general-settings.php:238 +#: includes/settings/class-payment-general-settings.php:240 msgid "2Checkout Currency Code" msgstr "" -#: includes/settings/class-payment-general-settings.php:249 +#: includes/settings/class-payment-general-settings.php:251 msgid "The currency in which you would like to receive your 2Checkout payments" msgstr "" -#: includes/settings/class-payment-general-settings.php:261 -#: includes/settings/class-payment-general-settings.php:266 +#: includes/settings/class-payment-general-settings.php:263 +#: includes/settings/class-payment-general-settings.php:268 msgid "Credit System" msgstr "Sistema di Credito" -#: includes/settings/class-payment-general-settings.php:269 +#: includes/settings/class-payment-general-settings.php:271 msgid "Currency" msgstr "Valuta (moneta)" -#: includes/settings/class-payment-general-settings.php:271 +#: includes/settings/class-payment-general-settings.php:273 msgid "Currency & Credits" msgstr "Valuta e Crediti" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "Enable Credit System" msgstr "Abilita Sistema di Credito" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "" "The Credit System allows users to purchase credit that can later be used to " "pay for placing Ads." msgstr "" -#: includes/settings/class-payment-general-settings.php:279 +#: includes/settings/class-payment-general-settings.php:281 msgid "Accepted payment type" msgstr "Tipologie di Pagamento Accettate." -#: includes/settings/class-payment-general-settings.php:282 +#: includes/settings/class-payment-general-settings.php:284 msgid "Select the type of payment that can be used to purchase Ads." msgstr "" "Scegli il tipo di pagamento che può essere utilizzato per pagare gli Annunci." -#: includes/settings/class-payment-general-settings.php:294 +#: includes/settings/class-payment-general-settings.php:296 msgid "" "You cannot configure Credits as the only accepted payment type unless you " "enable the Credit System as well. The setting was set to accept both " @@ -7603,41 +7774,41 @@ msgstr "" "abiliti anche il Sistema di Credito. Le impostazioni prevedono " "l'accettazione di Valuta e Crediti." -#: includes/settings/class-payment-general-settings.php:311 +#: includes/settings/class-payment-general-settings.php:313 msgid "" "There is a problem with the PayPal Currency Code you have entered. It does " "not match any of the codes in our list of curencies supported by PayPal." msgstr "" -#: includes/settings/class-payment-general-settings.php:312 +#: includes/settings/class-payment-general-settings.php:314 msgid "The available currency codes are" msgstr "" -#: includes/settings/class-payment-general-settings.php:321 +#: includes/settings/class-payment-general-settings.php:323 msgid "" "Require Registration setting was enabled automatically because you activated " "the Credit System." msgstr "" -#: includes/settings/class-payment-general-settings.php:326 +#: includes/settings/class-payment-general-settings.php:328 msgid "" "Charge Listing Fee setting was enabled automatically because you activated " "the Credit System." msgstr "" -#: includes/settings/class-payment-general-settings.php:332 +#: includes/settings/class-payment-general-settings.php:334 msgid "" "Credit System was disabled automatically because you disabled Charge Listing " "Fee." msgstr "" -#: includes/settings/renderers/class-button-settings-renderer.php:39 +#: includes/settings/renderers/class-button-settings-renderer.php:40 msgid "" "Resetting to the default layout will cause any custom HTML layout changes " "you've made to be lost. Are you sure?" msgstr "" -#: includes/settings/renderers/class-button-settings-renderer.php:42 +#: includes/settings/renderers/class-button-settings-renderer.php:47 msgid "Reset" msgstr "Reset" @@ -7645,52 +7816,50 @@ msgstr "Reset" msgid "Deactivate" msgstr "Disattiva" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -msgid "active" -msgstr "attivo" - -#: includes/settings/renderers/class-license-settings-renderer.php:43 #: includes/settings/renderers/class-license-settings-renderer.php:46 -#: includes/settings/renderers/class-license-settings-renderer.php:56 -#: includes/settings/renderers/class-license-settings-renderer.php:58 -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "Status: " -msgstr "" - -#: includes/settings/renderers/class-license-settings-renderer.php:45 -#: includes/settings/renderers/class-license-settings-renderer.php:48 +#: includes/settings/renderers/class-license-settings-renderer.php:50 msgid "Activate" msgstr "Attiva" -#: includes/settings/renderers/class-license-settings-renderer.php:46 -msgid "inactive" +#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag +#: includes/settings/renderers/class-license-settings-renderer.php:55 +msgid "" +"Click the button above to check the status of your license. Please " +"%1$scontact customer support%2$s if you think the reported status is wrong." msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:51 -msgid "" -"Click the button above to check the status of your license. Please contact customer support if you think the reported status is wrong." +#: includes/settings/renderers/class-license-settings-renderer.php:75 +msgid "disabled" +msgstr "disabilitato" + +#: includes/settings/renderers/class-license-settings-renderer.php:76 +msgid "inactive" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:56 +#: includes/settings/renderers/class-license-settings-renderer.php:77 +msgid "active" +msgstr "attivo" + +#: includes/settings/renderers/class-license-settings-renderer.php:78 msgid "expired" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:58 -msgid "disabled" -msgstr "disabilitato" - -#: includes/settings/renderers/class-license-settings-renderer.php:60 +#: includes/settings/renderers/class-license-settings-renderer.php:79 msgid "unknown" msgstr "Sconosciuta" +#: includes/settings/renderers/class-license-settings-renderer.php:84 +#, fuzzy +msgid "Status: %s" +msgstr "Stato:" + #. translators: screen reader text label for individual settings on a settings #. grid -#: includes/settings/renderers/class-settings-grid-renderer.php:75 +#: includes/settings/renderers/class-settings-grid-renderer.php:80 msgid " setting for field" msgstr "" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:35 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:38 msgid "Create Page" msgstr "" @@ -7698,80 +7867,80 @@ msgstr "" msgid "Ad Category" msgstr "Categoria dell'annuncio" -#: includes/ui/class-category-selector.php:122 +#: includes/ui/class-category-selector.php:144 msgid "All Categories" msgstr "Tutte le Categorie" -#: includes/ui/class-category-selector.php:171 +#: includes/ui/class-category-selector.php:193 msgid "Select a Sub-category" msgstr "Seleziona una sotto categoria" -#: includes/ui/class-payment-terms-list.php:86 +#: includes/ui/class-payment-terms-list.php:103 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" msgstr "" -#: includes/ui/class-payment-terms-list.php:91 +#: includes/ui/class-payment-terms-list.php:108 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" msgstr "" -#: includes/ui/class-payment-terms-list.php:152 +#: includes/ui/class-payment-terms-list.php:169 msgid " listing allowed." msgid_plural " listings allowed." msgstr[0] "" msgstr[1] "" -#: includes/ui/class-payment-terms-list.php:160 +#: includes/ui/class-payment-terms-list.php:177 msgid "No images allowed." msgstr "" -#: includes/ui/class-payment-terms-list.php:163 +#: includes/ui/class-payment-terms-list.php:180 msgid " image allowed." msgid_plural " images allowed." msgstr[0] "" msgstr[1] "" -#: includes/ui/class-payment-terms-list.php:170 +#: includes/ui/class-payment-terms-list.php:187 msgid "Unlimited characters in listing's title." msgstr "" -#: includes/ui/class-payment-terms-list.php:173 +#: includes/ui/class-payment-terms-list.php:190 msgid "Up to characters in listing's title." msgstr "" -#: includes/ui/class-payment-terms-list.php:180 +#: includes/ui/class-payment-terms-list.php:197 msgid "Up to categories allowed." msgstr "" -#: includes/ui/class-payment-terms-list.php:187 +#: includes/ui/class-payment-terms-list.php:204 msgid "Unlimited characters in listing's content." msgstr "" -#: includes/ui/class-payment-terms-list.php:190 +#: includes/ui/class-payment-terms-list.php:207 msgid "Up to characters in listing's content." msgstr "" -#: includes/ui/class-payment-terms-list.php:196 +#: includes/ui/class-payment-terms-list.php:213 msgid "Purchase this plan" msgstr "" -#: includes/ui/class-payment-terms-list.php:197 +#: includes/ui/class-payment-terms-list.php:214 msgid "Pay for this plan with credits" msgstr "" -#: includes/ui/class-payment-terms-list.php:200 -#: includes/ui/class-payment-terms-list.php:204 +#: includes/ui/class-payment-terms-list.php:217 +#: includes/ui/class-payment-terms-list.php:221 msgid "Use this plan for free!" msgstr "" -#: includes/ui/class-payment-terms-list.php:209 -#: includes/ui/class-payment-terms-list.php:214 +#: includes/ui/class-payment-terms-list.php:226 +#: includes/ui/class-payment-terms-list.php:231 msgid "Select" msgstr "Seleziona" -#: includes/ui/class-payment-terms-list.php:213 +#: includes/ui/class-payment-terms-list.php:230 msgid "credits" msgstr "" @@ -7898,11 +8067,11 @@ msgid "" msgstr "" #. translators: %s the step name -#: includes/views/class-base-page.php:82 +#: includes/views/class-base-page.php:83 msgid "Unkown step \"%s\". Please contact the administrator about this error." msgstr "" -#: includes/views/class-base-page.php:135 +#: includes/views/class-base-page.php:136 msgid "" "Your request cannot be processed at this time. Please try again or contact " "the administrator about the incident." @@ -7910,7 +8079,7 @@ msgstr "" #. translators: %1$s back link, %2$s transaction id #: includes/views/class-payment-step-decorator.php:41 -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:74 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:76 #, fuzzy msgid "" "You are trying to buy credits using a transaction created for a different " @@ -7936,16 +8105,16 @@ msgstr "" msgid "Congratulations. You have successfully added credit to your account." msgstr "" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:12 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:14 msgid "Buy Credits" msgstr "" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:87 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:89 msgid "" "The payment associated with this transaction failed (see reasons below)." msgstr "" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:118 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:120 msgid "You are not allowed to buy credits." msgstr "" @@ -7959,33 +8128,54 @@ msgstr "" msgid "The instance of WP_Scripts is not ready!" msgstr "" -#: installer.php:154 +#: installer.php:160 msgid "30 Day Listing" msgstr "" -#: installer.php:822 +#: installer.php:307 msgid "Response to your AWPCP Demo Ad" msgstr "Rispondi alla demo AWPCP degli annunci" -#: installer.php:823 +#: installer.php:308 msgid "Someone has responded to your AWPCP Demo Ad" msgstr "" -#: installer.php:848 +#: installer.php:333 msgid "Verify the email address used for Ad $title" msgstr "" +#: installer.php:334 +msgid "" +"Hello $author_name \n" +"\n" +"You recently posted the Ad $title to $website_name. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"$verification_link \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" +msgstr "" + #: templates/admin/debug/environment-debug-section.tpl.php:19 msgid "" "Click the button below to contact and get a report about " "you server's SSL/TSL features." msgstr "" -#: templates/admin/debug/environment-debug-section.tpl.php:30 +#: templates/admin/debug/environment-debug-section.tpl.php:32 msgid "Test your SSL Client" msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:16 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:20 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -7993,7 +8183,7 @@ msgid "" "Settings page." msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:23 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:27 msgid "" "Opening that page in your browser will flush the Rewrite Rules in your site. " "WordPress will then ask all installed and active plugins to register their " @@ -8001,24 +8191,29 @@ msgid "" "please contact customer support." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:3 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#, fuzzy +msgid "Plugin Pages" +msgstr "Pagine di AWPCP" + +#: templates/admin/delete-browse-categories-page-notice.tpl.php:4 msgid "" -"The page is no longer necessary. From now on, " -"all listings will be displayed in the page, even " -"when they are filtered by a particular category." +"The %1$s page is no longer necessary. From now on, all listings will be " +"displayed in the %2$s page, even when they are filtered by a particular " +"category." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:9 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:11 msgid "" -"The plugin will start redirecting all traffic to the page to make sure no broken links are created." +"The plugin will start redirecting all traffic to the %s page to make sure no " +"broken links are created." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:13 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:15 msgid "Click the button below to delete the page." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:14 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:18 msgid "Delete Page" msgstr "" @@ -8041,22 +8236,32 @@ msgid "" "new parent of the children categories." msgstr "" -#: templates/admin/delete-category-admin-page.tpl.php:32 +#. translators: %1$s: Cancel button , %2$s: Submit button label +#: templates/admin/delete-category-admin-page.tpl.php:34 msgid "" -"Click to go back to the list of categories or click " -" to proceed." +"Click %1$s to go back to the list of categories or click %2$s to proceed." msgstr "" #: templates/admin/delete-category-admin-page.tpl.php:51 msgid "Selected Category" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:158 +#: templates/admin/export-listings-admin-page.tpl.php:137 +#, fuzzy +msgid "Export Complete" +msgstr "Completo" + +#: templates/admin/export-listings-admin-page.tpl.php:153 msgid "" "Click \"Cleanup\" once the file has been downloaded in order to remove all " "temporary data created by AWP Classifieds Plugin during the export process." msgstr "" +#: templates/admin/export-listings-admin-page.tpl.php:160 +#, fuzzy +msgid "Export Canceled" +msgstr "Pagamento Annullato" + #: templates/admin/form-fields-admin-page.tpl.php:7 msgid "" "The table below shows all the form fields that users may need to fill to " @@ -8065,24 +8270,25 @@ msgid "" "Ad Details form." msgstr "" -#: templates/admin/form-fields-admin-page.tpl.php:11 -msgid "Form" -msgstr "Modulo" - +#. translators: %s is a link to the Form Fields settings page. #: templates/admin/form-fields-admin-page.tpl.php:13 msgid "" -"Go to the settings section to control which of " -"the standard fields appear and if the user is required to enter a value. If " -"you have the Extra Fields module, the rest of the fields can be configured " -"from the Extra Fields admin section." +"Go to the %s settings section to control which of the standard fields appear " +"and if the user is required to enter a value. If you have the Extra Fields " +"module, the rest of the fields can be configured from the Extra Fields admin " +"section." msgstr "" +#: templates/admin/form-fields-admin-page.tpl.php:14 +msgid "Form" +msgstr "Modulo" + #: templates/admin/import/example-csv-file.tpl.php:8 msgid "Import Listings: Example CSV File" msgstr "" #: templates/admin/import/example-csv-file.tpl.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:84 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:76 msgid "See Supported CSV Headers" msgstr "" @@ -8101,7 +8307,7 @@ msgid "Header" msgstr "Testata" #: templates/admin/import/supported-csv-headers.tpl.php:39 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:86 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:78 msgid "See Example CSV File" msgstr "" @@ -8204,7 +8410,7 @@ msgstr "" msgid "Default user" msgstr "Utente di default" -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:178 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 #: templates/admin/import-listings-admin-page-import-form.tpl.php:44 msgid "" "Press the button below to cancel the current import operation and discard " @@ -8235,36 +8441,36 @@ msgstr "" msgid "Pause" msgstr "Pausa" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:24 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:21 msgid "CSV file" msgstr "File CSV" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:37 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:31 msgid "Images source" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:40 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:34 msgid "Don't import images" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:42 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:36 msgid "ZIP file" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:44 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:38 msgid "Local directory" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:49 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:43 msgid "Zip file containing images" msgstr "File zip contenenti immagini" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:62 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:54 msgid "Local directory path" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:74 -msgid "The relative path to a directory inside ." +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:64 +msgid "The relative path to a directory inside %s." msgstr "" #: templates/admin/listings/listing-information-metabox.tpl.php:56 @@ -8349,27 +8555,27 @@ msgid "Payment Options" msgstr "Opzioni di pagamento" #. translators: %s is the link the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:84 +#: templates/admin/main-classifieds-admin-page.tpl.php:87 msgid "" "Go to the %s section to edit/delete current categories or add new categories." msgstr "" "Vai alla sezione %s per modificare/eliminare le attuali categorie o per " "aggiungerne di nuove." -#: templates/admin/main-classifieds-admin-page.tpl.php:90 +#: templates/admin/main-classifieds-admin-page.tpl.php:95 msgid "Total number of categories in the system" msgstr "Numero totale di categorie" -#: templates/admin/main-classifieds-admin-page.tpl.php:95 +#: templates/admin/main-classifieds-admin-page.tpl.php:100 msgid "Number of Top Level parent categories" msgstr "Numero di Categorie padre di Livello Superiore" -#: templates/admin/main-classifieds-admin-page.tpl.php:100 +#: templates/admin/main-classifieds-admin-page.tpl.php:105 msgid "Number of sub level children categories" msgstr "Numero di sottocategorie" #. translators: %s is the link to the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:109 +#: templates/admin/main-classifieds-admin-page.tpl.php:114 msgid "" "You have not categories defined. Go to the %s section to set up your " "categories." @@ -8377,86 +8583,85 @@ msgstr "" "Non sono state definite categorie. Andare nella sezione %s per impostare le " "categorie." -#: templates/admin/manage-categories-admin-page.tpl.php:43 +#: templates/admin/manage-categories-admin-page.tpl.php:44 msgid "Parent Category" msgstr "Categoria Principale" -#: templates/admin/manage-categories-admin-page.tpl.php:52 +#: templates/admin/manage-categories-admin-page.tpl.php:53 msgid "Category list order" msgstr "Ordinamento Categorie" -#: templates/admin/manage-categories-admin-page.tpl.php:75 +#: templates/admin/manage-categories-admin-page.tpl.php:76 msgid "Icon Meanings:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:85 +#: templates/admin/manage-categories-admin-page.tpl.php:89 msgid "Move categories or ads under:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:92 +#: templates/admin/manage-categories-admin-page.tpl.php:96 msgid "Delete categories should do this with existing ads:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:93 +#: templates/admin/manage-categories-admin-page.tpl.php:97 msgid "Move ads to new category" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:94 +#: templates/admin/manage-categories-admin-page.tpl.php:98 msgid "Delete ads too" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:101 +#: templates/admin/manage-categories-admin-page.tpl.php:108 msgid "Move Selected Categories" msgstr "Sposta le categorie selezionata" -#: templates/admin/manage-categories-admin-page.tpl.php:102 +#: templates/admin/manage-categories-admin-page.tpl.php:109 msgid "Delete Selected Categories" msgstr "Elimina la categoria selezionata" -#: templates/admin/manage-categories-admin-page.tpl.php:119 +#: templates/admin/manage-categories-admin-page.tpl.php:126 msgid "Select all categories" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:122 -#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:129 +#: templates/admin/manage-categories-admin-page.tpl.php:145 msgid "Category ID" msgstr "ID Categoria" -#: templates/admin/manage-categories-admin-page.tpl.php:124 -#: templates/admin/manage-categories-admin-page.tpl.php:136 +#: templates/admin/manage-categories-admin-page.tpl.php:131 +#: templates/admin/manage-categories-admin-page.tpl.php:146 msgid "Category Name (Total Ads)" msgstr "Nome Categoia (Annunci Totali)" -#: templates/admin/manage-categories-admin-page.tpl.php:126 -#: templates/admin/manage-categories-admin-page.tpl.php:137 +#: templates/admin/manage-categories-admin-page.tpl.php:133 +#: templates/admin/manage-categories-admin-page.tpl.php:147 msgid "Parent" msgstr "Genitore" -#: templates/admin/manage-categories-admin-page.tpl.php:127 -#: templates/admin/manage-categories-admin-page.tpl.php:138 +#: templates/admin/manage-categories-admin-page.tpl.php:134 +#: templates/admin/manage-categories-admin-page.tpl.php:148 msgid "Order" msgstr "Ordinamento" -#: templates/admin/manage-categories-admin-page.tpl.php:128 -#: templates/admin/manage-categories-admin-page.tpl.php:139 +#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:149 msgid "Action" msgstr "Azione" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:2 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 msgid "What's your PayPal Merchant ID?" msgstr "" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:3 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:10 msgid "" "In order to verify payments made through PayPal, AWP Classifieds Plugin " "needs to know your PayPal Merchant ID." msgstr "" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:13 msgid "" -"Go to to obtain the Merchant ID and then go to the Payment Settings page to enter the " -"value." +"Go to %1$s to obtain the Merchant ID and then go to the %2$sPayment " +"Settings%3$s page to enter the value." msgstr "" #: templates/admin/profile/contact-information-fields.tpl.php:1 @@ -8646,7 +8851,8 @@ msgstr "Scritto il" msgid "Expires on" msgstr "Scade il" -#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:9 +#. translators: %s: URL to renew the ad +#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:12 msgid "You can renew your Ad visiting this link: %s" msgstr "" @@ -8655,12 +8861,36 @@ msgstr "" msgid "Hello" msgstr "Ciao" -#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:2 +#: templates/email/listing-media-upload-notification.plain.tpl.php:2 +#, fuzzy +msgid "Hello," +msgstr "Ciao" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:9 +#, fuzzy +msgid "The following media files were recently uploaded to listing \"%s\":" +msgstr "Le seguenti pagine sono state ripristinate: ." + +#: templates/email/listing-media-upload-notification.plain.tpl.php:23 +#, fuzzy +msgid "" +"The following media files were recently uploaded to listing \"%s\" and are " +"awaiting approval:" +msgstr "Le immagini dell'annuncio \"%s\" sono in attesa di approvazione" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:36 +msgid "Click here to manage media uploaded to the listing: %s." +msgstr "" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:44 +msgid "Click here to view the listing: %s." +msgstr "" + +#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:3 msgid "" -"The ad \"\" was modified. A copy of the details sent to the " -"customer can be found below. You can follow this link " -"to go to the Manage Ad Listing section to approve/reject/spam and see the " -"full version of the Ad." +"The ad \"%s\" was modified. A copy of the details sent to the customer can " +"be found below. You can follow this link %s to go to the Manage Ad Listing " +"section to approve/reject/spam and see the full version of the Ad." msgstr "" #: templates/email/listing-was-flagged.plain.tpl.php:4 @@ -8669,64 +8899,165 @@ msgid "" "them out here ." msgstr "" -#: templates/frontend/listings.tpl.php:24 +#: templates/frontend/listings.tpl.php:37 msgid "There were no listings found." msgstr "Non ci sono annunci." +#: templates/frontend/order-submit-listing-section.tpl.php:41 +#, fuzzy +msgid "Who is the owner of this ad?" +msgstr "Seleziona l'utente proprietario di questo annuncio" + +#: templates/frontend/order-submit-listing-section.tpl.php:86 +#, fuzzy +msgid "Your ad will be posted on the following categories: %s." +msgstr "L'API di facebook ha restituito i seguenti errori: %s." + #: templates/privacy-policy.tpl.php:10 msgid "Suggested text:" msgstr "" -#. Author URI of the plugin/theme -msgid "https://awpcp.com/" +#: templates/privacy-policy.tpl.php:11 +msgid "" +"When you submit a classified listing, the content of the listing and its " +"metadata are retained indefinitely. All users can see, edit or delete the " +"personal information included on their listings at any time. Website " +"administrators can also see and edit that information." msgstr "" -#. Description of the plugin/theme -msgid "Run a free or paid classified ads service on your WordPress site." +#: templates/privacy-policy.tpl.php:14 +msgid "" +"Website visitors can see the contact name, website URL, phone number, " +"address and other information included in your submission to describe the " +"classified listing." msgstr "" -#. Author of the plugin/theme +#: templates/privacy-policy.tpl.php:18 +msgid "" +"Contact name, email address, website URL and content of submitted classified " +"listings may be checked through Akismet's spam detection service. The " +"Akismet service privacy policy is available %1$shere%2$s." +msgstr "" + +#: templates/privacy-policy.tpl.php:24 #, fuzzy -msgid "AWP Classifieds Team" -msgstr "Pagine annunci" +msgid "Payment Information" +msgstr "Testo dell'annuncio" -#: admin/admin-panel-fees-table.php:254 -msgctxt "all categories" -msgid "All" -msgstr "Tutti" +#: templates/privacy-policy.tpl.php:28 +msgid "" +"If you pay to post a classified listing entering your credit card and " +"billing information directly on %s, the credit card information won't be " +"stored but it will be shared through a secure connection with the following " +"payment gateways to process the payment:" +msgstr "" -#: admin/admin-panel-users.php:42 -msgctxt "credit system on users table" -msgid "Account Balance" -msgstr "Bilancio dell'account" +#: templates/privacy-policy.tpl.php:36 +#, fuzzy +msgid "PayPal - %1$s" +msgstr "PayPal" + +#: templates/privacy-policy.tpl.php:42 +#, fuzzy +msgid "Authorize.Net - %s" +msgstr "Authorize.Net" + +#: templates/privacy-policy.tpl.php:48 +#, fuzzy +msgid "Stripe - %s" +msgstr "Stripe" + +#: templates/privacy-policy.tpl.php:54 +#, fuzzy +msgid "Regions" +msgstr "Regioni" + +#: templates/privacy-policy.tpl.php:56 +msgid "" +"If you choose to see listings published on a specific region, a cookie will " +"be stored on your browser for the remainder of the session to remember the " +"selected region." +msgstr "" + +#: templates/privacy-policy.tpl.php:58 +#, fuzzy +msgid "Comments and Ratings" +msgstr "Commenti e Valutazioni" + +#: templates/privacy-policy.tpl.php:60 +msgid "" +"When visitors leave comments and reviews for classified listings we collect " +"the data shown in the comments form, and also the visitor’s IP address to " +"help spam detection." +msgstr "" + +#: templates/privacy-policy.tpl.php:64 +msgid "" +"Visitor comments may be checked through Akismet's spam detection service. " +"The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" + +#: templates/privacy-policy.tpl.php:70 +msgid "Restricted Categories" +msgstr "Categorie con Restrizioni" + +#: templates/privacy-policy.tpl.php:72 +msgid "" +"When you agree to see listings or publish a listing on a restricted " +"category, a cookie will be stored in your browser to remember your decision. " +"The cookie will be stored on your browser for the remainder of that session." +msgstr "" + +#. Author URI of the plugin/theme +msgid "https://awpcp.com/" +msgstr "" + +#. Description of the plugin/theme +msgid "Run a free or paid classified ads service on your WordPress site." +msgstr "" + +#. Author of the plugin/theme +#, fuzzy +msgid "AWP Classifieds Team" +msgstr "Pagine annunci" + +#: admin/admin-panel-fees-table.php:254 +msgctxt "all categories" +msgid "All" +msgstr "Tutti" + +#: admin/admin-panel-users.php:42 +msgctxt "credit system on users table" +msgid "Account Balance" +msgstr "Bilancio dell'account" #: admin/admin-panel.php:28 msgctxt "awpcp admin menu" msgid "Classifieds" msgstr "Annunci" -#: admin/admin-panel.php:810 includes/settings/class-listings-settings.php:469 +#: admin/admin-panel.php:794 includes/settings/class-listings-settings.php:469 msgctxt "page name" msgid "Show Ad" msgstr "" -#: admin/admin-panel.php:818 +#: admin/admin-panel.php:802 msgctxt "page name" msgid "Edit Ad" msgstr "Modifica annuncio" -#: admin/class-csv-exporter.php:82 +#: admin/class-csv-exporter.php:83 msgctxt "admin csv-export" msgid "Could not create a temporary directory for handling this CSV export." msgstr "" -#: admin/class-csv-exporter.php:85 +#: admin/class-csv-exporter.php:86 msgctxt "admin csv-export" msgid "Could not create awpcp-csv-exports directory." msgstr "" #. translators: %s the error. -#: admin/class-csv-exporter.php:91 +#: admin/class-csv-exporter.php:95 msgctxt "admin csv-export" msgid "Error while creating a temporary directory for CSV export: %s" msgstr "" @@ -8736,76 +9067,73 @@ msgctxt "admin csv-export" msgid "Could not decode export state information." msgstr "" -#: admin/class-debug-admin-page.php:136 +#: admin/class-debug-admin-page.php:137 msgctxt "debug page" msgid "Plugin Info" msgstr "" -#: admin/class-debug-admin-page.php:137 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:33 +#: admin/class-debug-admin-page.php:138 msgctxt "debug page" msgid "Plugin Pages" msgstr "" -#: admin/class-debug-admin-page.php:138 +#: admin/class-debug-admin-page.php:139 msgctxt "debug page" msgid "Plugin Settings" msgstr "" -#: admin/class-debug-admin-page.php:139 +#: admin/class-debug-admin-page.php:140 msgctxt "debug page" msgid "Environment" msgstr "Ambiente" -#: admin/class-debug-admin-page.php:140 -#: admin/templates/admin-panel-debug.tpl.php:32 +#: admin/class-debug-admin-page.php:141 +#: admin/templates/admin-panel-debug.tpl.php:59 msgctxt "debug page" msgid "Rewrite Rules" msgstr "Regole di Rewrite" -#: admin/class-debug-admin-page.php:177 +#: admin/class-debug-admin-page.php:178 msgctxt "debug page" msgid "Plugin Version" msgstr "" -#: admin/class-debug-admin-page.php:283 -#: admin/templates/admin-panel-debug.tpl.php:126 +#: admin/class-debug-admin-page.php:284 msgctxt "debug page" msgid "cURL's alternate CA info (cacert.pem)" msgstr "Informazioni CA (cacert.pem) alternative per cURL" -#: admin/class-debug-admin-page.php:287 -#: admin/templates/admin-panel-debug.tpl.php:130 +#: admin/class-debug-admin-page.php:288 msgctxt "debug page" msgid "PayPal Connection" msgstr "Connessione PayPal" -#: admin/class-debug-admin-page.php:359 +#: admin/class-debug-admin-page.php:360 msgctxt "debug page" msgid "Working" msgstr "Funziona" -#: admin/class-debug-admin-page.php:362 -#: admin/templates/admin-panel-debug.tpl.php:136 +#: admin/class-debug-admin-page.php:363 msgctxt "debug page" msgid "Not Working" msgstr "Non funziona" -#: admin/templates/admin-panel-debug.tpl.php:22 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:31 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:34 msgctxt "debug page" msgid "Flush Rewrite Rules" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:26 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s Linked +#. URL in anchor link +#: admin/templates/admin-panel-debug.tpl.php:48 +#, fuzzy msgctxt "debug page" msgid "" -"This information can help AWPCP Developers to debug possible problems. If " -"you are submitting a bug report please Download the " -"Debug Information and attach it to your bug report or take a " -"minute to copy the information below to http://fpaste.org and provide the resulting URL in " -"your report." +"This information can help the AWP Team to debug possible problems. If you " +"are submitting a bug report please %1$sDownload the Debug Information%2$s " +"and attach it to your bug report or take a minute to copy the information " +"below to %3$s and provide the resulting URL in your report." msgstr "" "Questa informazione può aiutare gli sviluppatori di AWPCP a risolvere " "possibili problemi. Se state inviando un resoconto relativo ad un errore si " @@ -8814,31 +9142,21 @@ msgstr "" "http://fpaste.org " "inviando l'URL (risultante da fpaste) all'interno del resoconto." -#: admin/templates/admin-panel-debug.tpl.php:29 +#: admin/templates/admin-panel-debug.tpl.php:56 msgctxt "debug page" msgid "AWPCP Pages" msgstr "Pagine di AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:57 msgctxt "debug page" msgid "PHP Info" msgstr "Informazioni PHP" -#: admin/templates/admin-panel-debug.tpl.php:31 +#: admin/templates/admin-panel-debug.tpl.php:58 msgctxt "debug page" msgid "AWPCP Settings" msgstr "Impostazioni AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:118 -msgctxt "debug page" -msgid "PHP Version" -msgstr "Versione PHP" - -#: admin/templates/admin-panel-debug.tpl.php:122 -msgctxt "debug page" -msgid "cURL" -msgstr "cURL" - #. translators: %s is the URL to download the debug information #: templates/admin/debug/debug-admin-page.tpl.php:17 msgctxt "debug page" @@ -8848,22 +9166,22 @@ msgid "" "Debug Information
and attach it to your bug report." msgstr "" -#: templates/admin/debug/plugin-info-debug-section.tpl.php:29 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:38 msgctxt "debug page" msgid "There are no premium modules activated right now." msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:38 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:49 msgctxt "debug page" msgid "Reference" msgstr "Riferimento" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:39 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:50 msgctxt "debug page" msgid "Page Title" msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:51 msgctxt "debug page" msgid "Stored ID" msgstr "ID Memorizzato" @@ -8878,96 +9196,45 @@ msgctxt "debug page" msgid "Setting Value" msgstr "" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Exists" msgstr "Esiste" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Missing" msgstr "Mancanti" -#: admin/class-import-listings-admin-page.php:358 +#: admin/class-import-listings-admin-page.php:362 msgctxt "" "description for messages used to show feedback for the Import Listings " "operation" msgid " in line " msgstr "" -#: admin/class-import-listings-admin-page.php:369 +#: admin/class-import-listings-admin-page.php:373 msgctxt "text for page subtitle and submit button" msgid "Test Import" msgstr "Importazione Test" -#: admin/class-import-listings-admin-page.php:371 +#: admin/class-import-listings-admin-page.php:375 msgctxt "text for page subtitle and submit button" msgid "Import" msgstr "Importa" -#: admin/class-import-settings-admin-page.php:104 +#: admin/class-import-settings-admin-page.php:102 msgctxt "import settings" msgid "Are you sure you want to do this?" msgstr "Si è davvero sicuri di voler far questo?" -#: admin/class-import-settings-admin-page.php:116 +#: admin/class-import-settings-admin-page.php:115 msgctxt "import settings" msgid "" "There was a problem trying to read the settings file; it appears the file " "wasn't uploaded correctly. Please try again." msgstr "" -#: admin/class-import-settings-admin-page.php:122 -msgctxt "another-wordpress-classifieds-plugin" -msgid "Your settings have been successfully imported." -msgstr "" - -#: includes/settings/class-email-settings.php:201 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello {author_name} \n" -"\n" -"You recently posted the Ad {listing_title} to {website_title}. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"{verification_link} \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" -msgstr "" - -#: installer.php:849 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello $author_name \n" -"\n" -"You recently posted the Ad $title to $website_name. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"$verification_link \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" -msgstr "" - #: admin/credit-plans/class-delete-credit-plan-action-handler.php:30 #: admin/credit-plans/class-edit-credit-plan-action-handler.php:27 msgctxt "credit plans ajax" @@ -8989,17 +9256,17 @@ msgctxt "form field slug" msgid "Slug" msgstr "Abbreviazione" -#: admin/import/class-csv-importer-delegate.php:98 +#: admin/import/class-csv-importer-delegate.php:101 msgctxt "csv importer" msgid "Required value for column \"\" is missing." msgstr "" -#: admin/import/class-csv-importer-delegate.php:181 +#: admin/import/class-csv-importer-delegate.php:184 msgctxt "csv importer" msgid "A new user '%s' with email address '%s' and password '%s' was created." msgstr "" -#: admin/import/class-csv-importer-delegate.php:252 +#: admin/import/class-csv-importer-delegate.php:256 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9008,7 +9275,7 @@ msgid "" "user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:255 +#: admin/import/class-csv-importer-delegate.php:258 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9016,7 +9283,7 @@ msgid "" "a username or select a default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:258 +#: admin/import/class-csv-importer-delegate.php:260 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9024,65 +9291,65 @@ msgid "" "include a contact_email or select a default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:312 +#: admin/import/class-csv-importer-delegate.php:316 msgctxt "csv importer" msgid "No category with name \"\" was found." msgstr "" -#: admin/import/class-csv-importer-delegate.php:328 +#: admin/import/class-csv-importer-delegate.php:332 msgctxt "csv importer" msgid "There was an error trying to create category \"\"." msgstr "" -#: admin/import/class-csv-importer-delegate.php:337 +#: admin/import/class-csv-importer-delegate.php:342 msgctxt "csv importer" msgid "" "A category with name \"\" was created, but there was an error " "trying to retrieve its information from the database." msgstr "" -#: admin/import/class-csv-importer-delegate.php:349 +#: admin/import/class-csv-importer-delegate.php:355 msgctxt "csv importer" msgid "Item price must be a number." msgstr "" -#: admin/import/class-csv-importer-delegate.php:363 +#: admin/import/class-csv-importer-delegate.php:369 msgctxt "csv importer" msgid "The start date is missing and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:364 +#: admin/import/class-csv-importer-delegate.php:370 msgctxt "csv importer" msgid "The start date is invalid and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:365 +#: admin/import/class-csv-importer-delegate.php:371 msgctxt "csv importer" msgid "Invalid default start date." msgstr "" -#: admin/import/class-csv-importer-delegate.php:430 -#: admin/import/class-csv-importer-delegate.php:431 +#: admin/import/class-csv-importer-delegate.php:436 +#: admin/import/class-csv-importer-delegate.php:437 msgctxt "csv importer" msgid "The end date is missing and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:432 +#: admin/import/class-csv-importer-delegate.php:438 msgctxt "csv importer" msgid "Invalid default end date." msgstr "" -#: admin/import/class-csv-importer-delegate.php:499 +#: admin/import/class-csv-importer-delegate.php:505 msgctxt "csv importer" msgid "Image file with name not found." msgstr "" -#: admin/import/class-csv-importer-delegate.php:566 +#: admin/import/class-csv-importer-delegate.php:576 msgctxt "csv importer" msgid "There was an error trying to store imported data into the database." msgstr "" -#: admin/import/class-csv-importer-delegate.php:587 +#: admin/import/class-csv-importer-delegate.php:599 msgctxt "csv importer" msgid "" "There was an error trying to import one of the images: {image-validation-" @@ -9104,20 +9371,6 @@ msgctxt "drip-autoresponder" msgid "The email address entered is not valid." msgstr "L'indirizzo email inserito non è valido" -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 -msgctxt "drip-autoresponder" -msgid "Thank you for signing up!" -msgstr "Grazie per esserti registrato!" - -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 -msgctxt "drip-autoresponder" -msgid "" -"Please check your email and click the link provided to confirm your " -"subscription." -msgstr "" -"Si prega di verificare l'indirizzo email e cliccare sul collegamento fornito " -"per confermare la sottoscrizione." - #: admin/pointers/class-drip-autoresponder.php:22 msgctxt "drip-autoresponder" msgid "Yes, I'd like my course, please" @@ -9128,18 +9381,6 @@ msgctxt "drip-autoresponder" msgid "No, thanks" msgstr "No, grazie" -#: admin/pointers/class-drip-autoresponder.php:62 -msgctxt "drip-autoresponder" -msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" -msgstr "Vuoi conoscere i Segreti per Costruire un Fantastico Sito di Annunci?" - -#: admin/pointers/class-drip-autoresponder.php:63 -msgctxt "drip-autoresponder" -msgid "" -"Find out how to create a compelling, thriving classifieds site from scratch " -"in this ridiculously actionable (and free) 5-part email course." -msgstr "" - #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:6 msgctxt "credit plans form" msgid "Edit Credit Plan Details" @@ -9155,28 +9396,6 @@ msgctxt "Quick Start Guide" msgid "No Thanks" msgstr "No grazie" -#: admin/templates/admin-quick-start-guide-notice.tpl.php:9 -msgctxt "Quick Start Guide" -msgid "I'll figure it out on my own." -msgstr "Farò da solo." - -#: admin/templates/admin-quick-start-guide-notice.tpl.php:17 -msgctxt "Quick Start Guide" -msgid "Help me get my classifieds running quickly." -msgstr "Aiutami a gestire velocemente i miei Annunci" - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:75 -msgctxt "Browse the Quick Start Guide" -msgid "Browse the %s." -msgstr "Sfoglia gli %s." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:85 -msgctxt "Read the full Documentation" -msgid "Read the full %s." -msgstr "Leggi il completo %s." - #: admin/templates/admin-widget-modification-notice.tpl.php:7 msgctxt "widget modification notice" msgid "Close this, I'll check my Widget configuration." @@ -9226,17 +9445,17 @@ msgctxt "404 HTTP status description" msgid "Listing not found" msgstr "" -#: frontend/page-place-ad.php:1417 +#: frontend/page-place-ad.php:1420 msgctxt "upload listing images form" msgid "Preview Ad" msgstr "Anteprima Annuncio" -#: frontend/page-place-ad.php:1419 +#: frontend/page-place-ad.php:1422 msgctxt "upload listing images form" msgid "Place Ad" msgstr "Aggiungi Annuncio" -#: frontend/page-place-ad.php:1421 +#: frontend/page-place-ad.php:1424 msgctxt "upload listing images form" msgid "Checkout" msgstr "Cassa" @@ -9317,7 +9536,7 @@ msgctxt "listing row action" msgid "Unflag" msgstr "Togli la segnalazione" -#: frontend/templates/email-send-ad-access-key.tpl.php:9 +#: frontend/templates/email-send-ad-access-key.tpl.php:13 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:18 #: templates/email/listing-edit-link-with-access-token.tpl.php:9 msgctxt "edit link email" @@ -9367,11 +9586,6 @@ msgctxt "loading region options" msgid "loading..." msgstr "caricamento..." -#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 -msgctxt "add credit checkout step" -msgid "Complete Payment" -msgstr "Completa il pagamento" - #: frontend/templates/page-edit-ad-email-key-step.tpl.php:34 msgctxt "enter email and access key form" msgid "Continue" @@ -9382,33 +9596,28 @@ msgctxt "send ad access key form" msgid "Continue" msgstr "Continua" -#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 -msgctxt "place ad checkout step" -msgid "Complete Payment" -msgstr "Completa il pagamento" - -#: frontend/templates/page-place-ad-details-step.tpl.php:59 +#: frontend/templates/page-place-ad-details-step.tpl.php:63 msgctxt "ad details form" msgid "Start Date" msgstr "Data di Inizio" -#: frontend/templates/page-place-ad-details-step.tpl.php:69 +#: frontend/templates/page-place-ad-details-step.tpl.php:73 msgctxt "ad details form" msgid "End Date" msgstr "Data finale" -#: frontend/templates/page-place-ad-details-step.tpl.php:98 +#: frontend/templates/page-place-ad-details-step.tpl.php:104 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:9 msgctxt "ad details form" msgid "Read our Terms of Service" msgstr "Leggi i termini di servizio" -#: frontend/templates/page-place-ad-details-step.tpl.php:100 +#: frontend/templates/page-place-ad-details-step.tpl.php:106 msgctxt "ad details form" msgid "Terms of service:" msgstr "Termini di servizio:" -#: frontend/templates/page-place-ad-details-step.tpl.php:105 +#: frontend/templates/page-place-ad-details-step.tpl.php:111 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:17 msgctxt "ad details form" msgid "I agree to the terms of service" @@ -9473,12 +9682,12 @@ msgctxt "ad details form" msgid "Terms of Service" msgstr "Termini di servizio" -#: frontend/templates/page-place-ad-details-step.tpl.php:120 +#: frontend/templates/page-place-ad-details-step.tpl.php:126 msgctxt "listing details form" msgid "Preview Ad" msgstr "Anteprima Annuncio" -#: frontend/templates/page-place-ad-details-step.tpl.php:122 +#: frontend/templates/page-place-ad-details-step.tpl.php:128 msgctxt "listing details form" msgid "Continue" msgstr "Continua" @@ -9508,7 +9717,7 @@ msgctxt "place ad order step" msgid "Please select the owner for this Ad" msgstr "Seleziona l'utente proprietario di questo annuncio" -#: frontend/templates/page-place-ad-order-step.tpl.php:82 +#: frontend/templates/page-place-ad-order-step.tpl.php:84 msgctxt "listing order form" msgid "Continue" msgstr "Continua" @@ -9519,26 +9728,12 @@ msgctxt "images upload step" msgid "Thumbnails of already uploaded images are shown below." msgstr "Le anteprime delle immagini caricate vengono mostrate qui sotto." -#: frontend/templates/page-renew-ad-order-step.tpl.php:6 -msgctxt "renew ad order step" -msgid "Select Payment Term" -msgstr "Scegli Metodo di Pagamento" - -#: frontend/templates/page-search-ads.tpl.php:88 +#: frontend/templates/page-search-ads.tpl.php:95 msgctxt "ad search form" msgid "Find Ads" msgstr "" -#: frontend/templates/payments-billing-form.tpl.php:1 -msgctxt "awpcp billing form" -msgid "" -"Please fill in the billing information in the form below to place your " -"payment." -msgstr "" -"Compila le informazioni di fatturazione nel modulo seguente per poter " -"effettuare il pagamento." - -#: frontend/templates/payments-checkout-page.tpl.php:13 +#: frontend/templates/payments-checkout-page.tpl.php:12 msgctxt "checkout step" msgid "" "You are about to pay for the following items. Please review the order and " @@ -9547,107 +9742,47 @@ msgstr "" "Stai per pagare i seguenti articoli. Controlla l'ordine e scegli un Metodo " "di Pagamento." -#: frontend/templates/payments-checkout-page.tpl.php:17 +#: frontend/templates/payments-checkout-page.tpl.php:16 msgctxt "checkout step" msgid "Payment Terms" msgstr "Termini di pagamento" -#: frontend/templates/payments-checkout-page.tpl.php:23 +#: frontend/templates/payments-checkout-page.tpl.php:22 msgctxt "checkout step" msgid "Payment Method" msgstr "Metodo di Pagamento" #: frontend/templates/payments-checkout-payment-page.tpl.php:8 -#: frontend/templates/payments-payment-page.tpl.php:3 msgctxt "checkout-payment page" msgid "You are about to pay for the following items." msgstr "Stai per effettuare un pagamento per i seguenti articoli." #: frontend/templates/payments-checkout-payment-page.tpl.php:10 -#: frontend/templates/payments-payment-page.tpl.php:5 msgctxt "checkout-payment page" msgid "Payment Terms" msgstr "Termini di pagamento" -#: includes/payments-api.php:802 +#: includes/payments-api.php:889 msgctxt "checkout-payment page" msgid "Please use the button below to complete your payment." msgstr "Utilizza il pulsante sottostante per completare il pagamento." -#: frontend/templates/payments-credit-plans-table.tpl.php:7 -msgctxt "credit plans table" -msgid "" -"You can additionally purchase a Credit Plan to add credit to your account. " -"If you select to pay using credits, the price of the selected payment term " -"will be deducted from your account balance after you have completed payment." -msgstr "" -"Puoi acquistare anche un Piano Crediti per aggiungere crediti al tuo conto. " -"Se scegli di pagare usando i crediti l'importo verrà scalato dal tuo " -"bilancio del tuo conto dopo aver effettuato la procedura di pagamento." - -#: frontend/templates/payments-credit-plans-table.tpl.php:51 -msgctxt "credit plans table" -msgid "clear selection" -msgstr "pulisci selezione" - -#: includes/payments-api.php:722 -msgctxt "credit plans table" -msgid "Plan" -msgstr "Piano" - -#: includes/payments-api.php:723 -msgctxt "credit plans table" -msgid "Description" -msgstr "Descrizione" - -#: includes/payments-api.php:724 -msgctxt "credit plans table" -msgid "Credits" -msgstr "Credits" - -#: includes/payments-api.php:725 -msgctxt "credit plans table" -msgid "Price" -msgstr "Prezzo" - -#: frontend/templates/payments-payment-completed-page.tpl.php:2 -msgctxt "payment completed page" -msgid "Transaction Details" -msgstr "Dettagli transazione" - #: frontend/templates/payments-paypal-payment-button.tpl.php:27 msgctxt "paypal-checkout-form" msgid "Return to %s" msgstr "Ritorna a %s" -#: frontend/templates/payments-transaction-items-table.tpl.php:4 -#: frontend/templates/payments-transaction-items-table.tpl.php:13 -msgctxt "transaction items" -msgid "Item" -msgstr "Articolo" - -#: frontend/templates/payments-transaction-items-table.tpl.php:5 -#: frontend/templates/payments-transaction-items-table.tpl.php:17 -msgctxt "transaction items" -msgid "Amount" -msgstr "Importo" - -#: frontend/templates/payments-transaction-items-table.tpl.php:34 -msgctxt "transaction items" -msgid "Total Amount (credit)" -msgstr "Importo totale (credito)" - #: frontend/templates/payments-transaction-items-table.tpl.php:40 msgctxt "transaction items" msgid "Total Amount" msgstr "Importo Totale" -#: functions.php:743 +#: functions.php:749 msgctxt "comma separated list of things" msgid "%s and %d more." msgstr "%s e altri %d." -#: functions.php:1200 +#: functions.php:1222 msgctxt "default blog title" msgid "Classifieds Website" msgstr "Sito Web di Annunci" @@ -9876,27 +10011,27 @@ msgctxt "listing status" msgid "Active" msgstr "Attivo" -#: includes/admin/listings/class-listings-table-columns-handler.php:211 +#: includes/admin/listings/class-listings-table-columns-handler.php:212 msgctxt "listing status" msgid "Pending Approval" msgstr "" -#: includes/admin/listings/class-listings-table-columns-handler.php:215 +#: includes/admin/listings/class-listings-table-columns-handler.php:217 msgctxt "listing status" msgid "Expired" msgstr "Scaduto" -#: includes/admin/listings/class-listings-table-columns-handler.php:219 +#: includes/admin/listings/class-listings-table-columns-handler.php:222 msgctxt "listing status" msgid "Disabled" msgstr "Disabilitato" -#: includes/admin/listings/class-listings-table-columns-handler.php:223 +#: includes/admin/listings/class-listings-table-columns-handler.php:227 msgctxt "listing status" msgid "Pending Payment" msgstr "Pagamento in sospeso" -#: includes/admin/listings/class-listings-table-columns-handler.php:227 +#: includes/admin/listings/class-listings-table-columns-handler.php:232 msgctxt "listing status" msgid "Pending Verification" msgstr "" @@ -9911,17 +10046,17 @@ msgctxt "listings row action" msgid "Quick View" msgstr "" -#: includes/class-awpcp.php:1458 +#: includes/class-awpcp.php:1449 msgctxt "[UI Datepicker] Display text for previous month link" msgid "<Prev" msgstr "<Prec" -#: includes/class-awpcp.php:1459 +#: includes/class-awpcp.php:1450 msgctxt "[UI Datepicker] Display text for next month link" msgid "Next>" msgstr "Succ>" -#: includes/class-awpcp.php:1465 +#: includes/class-awpcp.php:1456 msgctxt "[UI Datepicker] The first day of the week, Sun = 0, Mon = 1, ..." msgid "0" msgstr "Europe/Rome" @@ -9973,7 +10108,7 @@ msgid "Regions" msgstr "Regioni" #. translators: the numbers that need to be added up for the math challenge. -#: includes/frontend/class-default-captcha-provider.php:34 +#: includes/frontend/class-default-captcha-provider.php:45 msgctxt "CAPTCHA" msgid "Enter the value of the following sum: %1$d + %2$d" msgstr "" @@ -10003,79 +10138,69 @@ msgctxt "order submit listing section" msgid "Please select a category for your ad" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:44 -msgctxt "order submit listing section" -msgid "Who is the owner of this ad?" -msgstr "" - -#: templates/frontend/order-submit-listing-section.tpl.php:59 +#: templates/frontend/order-submit-listing-section.tpl.php:57 msgctxt "order submit listing section" msgid "" "Please select the duration and features that will be available for this ad" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:81 +#: templates/frontend/order-submit-listing-section.tpl.php:77 msgctxt "order submit listing section" msgid "Continue" msgstr "Continua" -#: templates/frontend/order-submit-listing-section.tpl.php:87 -msgctxt "order submit listing section" -msgid "Your ad will be posted on the following categories: {categories}." -msgstr "" - -#: templates/frontend/order-submit-listing-section.tpl.php:95 +#: templates/frontend/order-submit-listing-section.tpl.php:98 msgctxt "order submit listing section" msgid "Credit Plan:" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:96 +#: templates/frontend/order-submit-listing-section.tpl.php:99 msgctxt "order submit listing section" msgid "Owner:" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:99 +#: templates/frontend/order-submit-listing-section.tpl.php:102 msgctxt "order submit listing section" msgid "Loading ad fields" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:100 +#: templates/frontend/order-submit-listing-section.tpl.php:103 msgctxt "order submit listing section" msgid "Change selection" msgstr "" -#: includes/frontend/class-recaptcha-v2.php:66 +#: includes/frontend/class-recaptcha-v2.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing" msgstr "Manca il parametro secret" -#: includes/frontend/class-recaptcha-v2.php:69 -#: includes/helpers/class-recaptcha-v3.php:74 +#: includes/frontend/class-recaptcha-v2.php:96 +#: includes/helpers/class-recaptcha-v3.php:96 msgctxt "recaptcha-error" msgid "The secret parameter is invalid or malformed." msgstr "Parametro secret non valido." -#: includes/frontend/class-recaptcha-v2.php:72 +#: includes/frontend/class-recaptcha-v2.php:99 msgctxt "recaptcha-error" msgid "The response parameter is missing." msgstr "Parametro di risposta mancante" -#: includes/frontend/class-recaptcha-v2.php:76 +#: includes/frontend/class-recaptcha-v2.php:103 msgctxt "recaptcha-error" msgid "The response parameter is invalid or malformed." msgstr "Parametro di risposta non valido." -#: includes/helpers/class-recaptcha-v3.php:71 +#: includes/helpers/class-recaptcha-v3.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:77 +#: includes/helpers/class-recaptcha-v3.php:99 msgctxt "recaptcha-error" msgid "reCAPTCHA score was not included." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:81 +#: includes/helpers/class-recaptcha-v3.php:103 msgctxt "recaptcha-error" msgid "reCAPTCHA couldn't analyze the current interaction." msgstr "" @@ -10208,7 +10333,7 @@ msgid "remaining" msgstr "rimanente" #. translators: %s is the type of region. -#: includes/helpers/widgets/multiple-region-selector.php:122 +#: includes/helpers/widgets/multiple-region-selector.php:142 msgctxt "Select in Multiple Region Selector" msgid "Select %s" msgstr "Seleziona %s" @@ -10231,7 +10356,7 @@ msgid "Add New" msgstr "Aggiungi nuovo" #: includes/models/class-custom-post-types.php:157 -#: includes/settings/class-listings-settings.php:595 +#: includes/settings/class-listings-settings.php:597 msgctxt "listing post type slug" msgid "classifieds" msgstr "" @@ -10251,7 +10376,7 @@ msgctxt "payment gateways" msgid "2Checkout" msgstr "2Checkout" -#: includes/payment-gateway-paypal-standard.php:24 +#: includes/payment-gateway-paypal-standard.php:26 msgctxt "payment gateways" msgid "PayPal" msgstr "PayPal" @@ -10289,57 +10414,77 @@ msgid_plural "Years" msgstr[0] "Anno" msgstr[1] "Anni" -#: includes/payment-terms-table.php:33 +#: includes/payment-terms-table.php:38 msgctxt "place ad payment terms column headers" msgid "Payment Term" msgstr "Termini di pagamento" -#: includes/payment-terms-table.php:34 +#: includes/payment-terms-table.php:39 msgctxt "place ad payment terms column headers" msgid "Ads Allowed" msgstr "Annunci Permessi" -#: includes/payment-terms-table.php:35 +#: includes/payment-terms-table.php:40 msgctxt "place ad payment terms column headers" msgid "Images Allowed" msgstr "Immagini consentite" -#: includes/payment-terms-table.php:36 +#: includes/payment-terms-table.php:41 msgctxt "place ad payment terms column headers" msgid "Characters in Title" msgstr "Caratteri nel titolo" -#: includes/payment-terms-table.php:37 +#: includes/payment-terms-table.php:42 msgctxt "place ad payment terms column headers" msgid "Chars in Description" msgstr "Caratteri nella descrizione" -#: includes/payment-terms-table.php:38 +#: includes/payment-terms-table.php:43 msgctxt "place ad payment terms column headers" msgid "Duration" msgstr "Durata" -#: includes/payment-terms-table.php:44 +#: includes/payment-terms-table.php:49 msgctxt "place ad payment terms column headers" msgid "Price (currency)" msgstr "Prezzo (valuta)" -#: includes/payment-terms-table.php:49 +#: includes/payment-terms-table.php:54 msgctxt "place ad payment terms column headers" msgid "Price (credits)" msgstr "Prezzo (crediti)" -#: includes/payment-terms-table.php:106 includes/payment-terms-table.php:111 +#: includes/payment-terms-table.php:139 includes/payment-terms-table.php:145 msgctxt "payment term duration" msgid "No Limit" msgstr "Nessun Limite" -#: includes/settings/class-email-settings.php:135 +#: includes/payments-api.php:757 +msgctxt "credit plans table" +msgid "Plan" +msgstr "Piano" + +#: includes/payments-api.php:758 +msgctxt "credit plans table" +msgid "Description" +msgstr "Descrizione" + +#: includes/payments-api.php:759 +msgctxt "credit plans table" +msgid "Credits" +msgstr "Credits" + +#: includes/payments-api.php:760 +msgctxt "credit plans table" +msgid "Price" +msgstr "Prezzo" + +#: includes/settings/class-email-settings.php:137 msgctxt "reply to ad email" msgid "Response to your classified ad: {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:136 +#: includes/settings/class-email-settings.php:138 msgctxt "reply to ad email" msgid "" "Someone has responded to your classified ad.\n" @@ -10358,12 +10503,12 @@ msgid "" "{website_url}" msgstr "" -#: includes/settings/class-email-settings.php:161 +#: includes/settings/class-email-settings.php:163 msgctxt "reply to ad email" msgid "Notification about a response regarding ad: {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:162 +#: includes/settings/class-email-settings.php:164 msgctxt "reply to ad email" msgid "" "Someone has responded to one of the classified ads on your website.\n" @@ -10382,12 +10527,12 @@ msgid "" "{website_url}" msgstr "" -#: installer.php:833 +#: installer.php:318 msgctxt "reply to ad email" msgid "{__previous_subject__} regarding: {listing_title}" msgstr "" -#: installer.php:834 +#: installer.php:319 msgctxt "reply to ad email" msgid "" "{__previous_body__}\n" @@ -10461,14 +10606,6 @@ msgctxt "settings" msgid "Uncheck to show prices without decimals. The value will be rounded." msgstr "" -#: includes/settings/class-licenses-settings.php:81 -msgctxt "settings" -msgid "" -"The IP address of your server is . Please make sure to include " -"that information if you need to contact support about problems trying to " -"activate your licenses." -msgstr "" - #: includes/settings/class-payment-general-settings.php:100 msgctxt "settings" msgid "Pay before entering Ad details" @@ -10503,16 +10640,17 @@ msgid "" "the listing. You can include or remove certain elements if you wish." msgstr "" -#: includes/settings/class-listings-settings.php:599 +#: includes/settings/class-listings-settings.php:601 msgctxt "listing url settings section" msgid "" "These settings affect the URL path shown for listings. You can include or " "remove elements for SEO purposes." msgstr "" -#: includes/settings/class-listings-settings.php:605 +#. translators: %s: example URL +#: includes/settings/class-listings-settings.php:610 msgctxt "listing url settings section" -msgid "Example path: ." +msgid "Example path: %s." msgstr "" #: includes/settings/renderers/class-wordpress-page-settings-renderer.php:27 @@ -10520,9 +10658,11 @@ msgctxt "page settings" msgid "— Select —" msgstr "" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:40 +#. translators: %1$s is a dropdown with existing pages, %2$s is a link to +#. create a new page +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:34 msgctxt "page settings" -msgid "Select existing page {dropdown} -or- {create_page_button}" +msgid "Select existing page %1$s -or- %2$s" msgstr "" #. translators: %1$s the success message, %2$s the error message @@ -10540,142 +10680,138 @@ msgid "" "for details." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:25 +#. translators: %1$s: memory_limit link, %2$s: max_execution_time link +#: templates/admin/export-listings-admin-page.tpl.php:27 msgctxt "listings-csv-export" msgid "" "Please note that the export process is a resource intensive task. If your " "export does not succeed try disabling other plugins first and/or increasing " -"the values of the 'memory_limit' and 'max_execution_time' directives in your " -"server's php.ini configuration file." +"the values of the %1$s and %2$s directives in your server php.ini " +"configuration file." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:44 +#: templates/admin/export-listings-admin-page.tpl.php:39 msgctxt "listings-csv-export" msgid "Export Configuration" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:47 +#: templates/admin/export-listings-admin-page.tpl.php:42 msgctxt "listings-csv-export" msgid "Export settings" msgstr "Esporta Impostazioni" -#: templates/admin/export-listings-admin-page.tpl.php:51 +#: templates/admin/export-listings-admin-page.tpl.php:46 msgctxt "listings-csv-export" msgid "Which listings to export?" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:55 +#: templates/admin/export-listings-admin-page.tpl.php:50 msgctxt "listings-csv-export" msgid "All" msgstr "Tutti" -#: templates/admin/export-listings-admin-page.tpl.php:56 +#: templates/admin/export-listings-admin-page.tpl.php:51 msgctxt "listings-csv-export" msgid "Active Only" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:57 +#: templates/admin/export-listings-admin-page.tpl.php:52 msgctxt "listings-csv-export" msgid "Active + Pending Renewal" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:63 +#: templates/admin/export-listings-admin-page.tpl.php:58 msgctxt "listings-csv-export" msgid "Export images?" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:68 +#: templates/admin/export-listings-admin-page.tpl.php:63 msgctxt "listings-csv-export" msgid "Export images" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:71 +#: templates/admin/export-listings-admin-page.tpl.php:66 msgctxt "listings-csv-export" msgid "" "When checked, instead of just a CSV file a ZIP file will be generated with " "both a CSV file and listing images." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:77 +#: templates/admin/export-listings-admin-page.tpl.php:72 msgctxt "listings-csv-export" msgid "Additional metadata to export:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:82 +#: templates/admin/export-listings-admin-page.tpl.php:77 msgctxt "listings-csv-export" msgid "Include unique IDs for each listing (sequence_id column)." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:85 +#: templates/admin/export-listings-admin-page.tpl.php:80 msgctxt "listings-csv-export" msgid "" "If you plan to re-import the listings into AWPCP and don't want new ones " "created, select this option!" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:90 +#: templates/admin/export-listings-admin-page.tpl.php:85 msgctxt "listings-csv-export" msgid "Author information (username)" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:96 +#: templates/admin/export-listings-admin-page.tpl.php:91 msgctxt "listings-csv-export" msgid "CSV File Settings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:100 +#: templates/admin/export-listings-admin-page.tpl.php:95 msgctxt "listings-csv-export" msgid "Image Separator" msgstr "Separatore Immagine" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "Category Separator" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "required" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:118 +#: templates/admin/export-listings-admin-page.tpl.php:113 msgctxt "listings-csv-export" msgid "Export Listings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:124 +#: templates/admin/export-listings-admin-page.tpl.php:119 msgctxt "listings-csv-export" msgid "Export in Progress..." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:125 +#: templates/admin/export-listings-admin-page.tpl.php:120 msgctxt "listings-csv-export" msgid "" "Your export file is being prepared. Please do not leave this page until the " "export finishes." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:128 +#: templates/admin/export-listings-admin-page.tpl.php:123 msgctxt "listings-csv-export" msgid "No. of listings:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:130 +#: templates/admin/export-listings-admin-page.tpl.php:125 msgctxt "listings-csv-export" msgid "Approximate export file size:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:137 +#: templates/admin/export-listings-admin-page.tpl.php:132 msgctxt "listings-csv-export" msgid "Cancel Export" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:142 -msgctxt "listings-csv-export" -msgid "Export Complete" -msgstr "" - -#: templates/admin/export-listings-admin-page.tpl.php:143 +#: templates/admin/export-listings-admin-page.tpl.php:138 msgctxt "listings-csv-export" msgid "" "Your export file has been successfully created and it is now ready for " @@ -10683,32 +10819,27 @@ msgid "" msgstr "" #. translators: %1$s filename %2$s filesize. -#: templates/admin/export-listings-admin-page.tpl.php:149 +#: templates/admin/export-listings-admin-page.tpl.php:144 msgctxt "listings-csv-export" msgid "Download %1$s (%2$s)" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:160 +#: templates/admin/export-listings-admin-page.tpl.php:155 msgctxt "listings-csv-export" msgid "Cleanup" msgstr "Pulizia" -#: templates/admin/export-listings-admin-page.tpl.php:165 -msgctxt "listings-csv-export" -msgid "Export Canceled" -msgstr "" - -#: templates/admin/export-listings-admin-page.tpl.php:166 +#: templates/admin/export-listings-admin-page.tpl.php:161 msgctxt "listings-csv-export" msgid "The export has been canceled." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:167 +#: templates/admin/export-listings-admin-page.tpl.php:162 msgctxt "listings-csv-export" msgid "← Return to CSV Export" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:101 +#: templates/admin/export-listings-admin-page.tpl.php:96 msgctxt "admin forms" msgid "required" msgstr "" @@ -10756,37 +10887,6 @@ msgctxt "The 'or' after 'Drop files here to upload' in Media Uploader" msgid "or" msgstr "o" -#: templates/email/listing-media-upload-notification.plain.tpl.php:1 -msgctxt "listing media uploaded notification" -msgid "Hello," -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:5 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\":" -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:16 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\" and are awaiting approval:" -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:26 -msgctxt "listing media uploaded notification" -msgid "" -"Click here to manage media uploaded to the listing: ." -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:31 -msgctxt "listing media uploaded notification" -msgid "Click here to view the listing: ." -msgstr "" - #: templates/frontend/actions-submit-listing-section.tpl.php:7 msgctxt "actions submit listing section" msgid "Actions" @@ -10822,113 +10922,32 @@ msgctxt "upload media submit listing section" msgid "Loading..." msgstr "Caricamento in corso..." -#: templates/privacy-policy.tpl.php:10 -msgctxt "privacy policy" -msgid "" -"When you submit a classified listing, the content of the listing and its " -"metadata are retained indefinitely. All users can see, edit or delete the " -"personal information included on their listings at any time. Website " -"administrators can also see and edit that information." -msgstr "" +#~ msgid "Documentation" +#~ msgstr "Documentazione" -#: templates/privacy-policy.tpl.php:12 -msgctxt "privacy policy" -msgid "" -"Website visitors can see the contact name, website URL, phone number, " -"address and other information included in your submission to describe the " -"classified listing." -msgstr "" +#~ msgctxt "debug page" +#~ msgid "PHP Version" +#~ msgstr "Versione PHP" -#: templates/privacy-policy.tpl.php:14 -msgctxt "privacy policy" -msgid "" -"Contact name, email address, website URL and content of submitted classified " -"listings may be checked through Akismet's spam detection service. The " -"Akismet service privacy policy is available here." -msgstr "" +#~ msgctxt "Browse the Quick Start Guide" +#~ msgid "Browse the %s." +#~ msgstr "Sfoglia gli %s." -#: templates/privacy-policy.tpl.php:16 -msgctxt "privacy policy" -msgid "Payment Information" -msgstr "" +#~ msgctxt "place ad checkout step" +#~ msgid "Complete Payment" +#~ msgstr "Completa il pagamento" -#: templates/privacy-policy.tpl.php:18 -msgctxt "privacy policy" -msgid "" -"If you pay to post a classified listing entering your credit card and " -"billing information directly on {home_url}, the " -"credit card information won't be stored but it will be shared through a " -"secure connection with the following payment gateways to process the payment:" -msgstr "" - -#: templates/privacy-policy.tpl.php:21 -msgctxt "privacy policy" -msgid "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -msgstr "" - -#: templates/privacy-policy.tpl.php:22 -msgctxt "privacy policy" -msgid "" -"Authorize.Net — https://www.authorize.net/company/privacy/" -msgstr "" - -#: templates/privacy-policy.tpl.php:23 -msgctxt "privacy policy" -msgid "" -"Stripe — https://stripe.com/" -"us/privacy/" -msgstr "" - -#: templates/privacy-policy.tpl.php:26 -msgctxt "privacy policy" -msgid "Regions" -msgstr "Regioni" - -#: templates/privacy-policy.tpl.php:28 -msgctxt "privacy policy" -msgid "" -"If you choose to see listings published on a specific region, a cookie will " -"be stored on your browser for the remainder of the session to remember the " -"selected region." -msgstr "" - -#: templates/privacy-policy.tpl.php:30 -msgctxt "privacy policy" -msgid "Comments and Ratings" -msgstr "" +#~ msgctxt "transaction items" +#~ msgid "Amount" +#~ msgstr "Importo" -#: templates/privacy-policy.tpl.php:32 -msgctxt "privacy policy" -msgid "" -"When visitors leave comments and reviews for classified listings we collect " -"the data shown in the comments form, and also the visitor’s IP address to " -"help spam detection." -msgstr "" - -#: templates/privacy-policy.tpl.php:34 -msgctxt "privacy policy" -msgid "" -"Visitor comments may be checked through Akismet's spam detection service. " -"The Akismet service privacy policy is available here." -msgstr "" - -#: templates/privacy-policy.tpl.php:36 -msgctxt "privacy policy" -msgid "Restricted Categories" -msgstr "Categorie con Restrizioni" +#~ msgctxt "privacy policy" +#~ msgid "Regions" +#~ msgstr "Regioni" -#: templates/privacy-policy.tpl.php:38 -msgctxt "privacy policy" -msgid "" -"When you agree to see listings or publish a listing on a restricted " -"category, a cookie will be stored in your browser to remember your decision. " -"The cookie will be stored on your browser for the remainder of that session." -msgstr "" +#~ msgctxt "privacy policy" +#~ msgid "Restricted Categories" +#~ msgstr "Categorie con Restrizioni" #~ msgid "AWPCP" #~ msgstr "AWPCP" @@ -10964,9 +10983,6 @@ msgstr "" #~ msgid "D" #~ msgstr "ID" -#~ msgid "Restricted Categories" -#~ msgstr "Categorie con Restrizioni" - #~ msgid "" #~ "The specified Ad doesn't exist or you reached this page directly, without " #~ "specifying the Ad ID." @@ -10994,8 +11010,5 @@ msgstr "" #~ msgid "Search Ads" #~ msgstr "Cerca annunci" -#~ msgid "You are not authorizred to perform this action." -#~ msgstr "Non sei autorizzato a fare questa azione" - #~ msgid "Buy a Premium Module" #~ msgstr "Compra un Modulo Premium" diff --git a/languages/another-wordpress-classifieds-plugin-pt_BR.mo b/languages/another-wordpress-classifieds-plugin-pt_BR.mo index 56daf3620..82a19db7a 100644 Binary files a/languages/another-wordpress-classifieds-plugin-pt_BR.mo and b/languages/another-wordpress-classifieds-plugin-pt_BR.mo differ diff --git a/languages/another-wordpress-classifieds-plugin-pt_BR.po b/languages/another-wordpress-classifieds-plugin-pt_BR.po index 08a0b706c..816e787f7 100644 --- a/languages/another-wordpress-classifieds-plugin-pt_BR.po +++ b/languages/another-wordpress-classifieds-plugin-pt_BR.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Another WordPress Classifieds Plugin\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/another-wordpress-" "classifieds-plugin\n" -"POT-Creation-Date: 2024-03-20 20:22:37+00:00\n" +"POT-Creation-Date: 2024-06-13 20:37:03+00:00\n" "PO-Revision-Date: 2020-10-15 19:51+0000\n" "Last-Translator: Diego Giraldo \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/wp-translations/" @@ -26,21 +26,21 @@ msgstr "" #: admin/fees/class-fee-details-form.php:39 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:9 #: includes/settings/class-payment-general-settings.php:60 -#: templates/admin/manage-categories-admin-page.tpl.php:31 +#: templates/admin/manage-categories-admin-page.tpl.php:32 msgid "Name" msgstr "Nome" #: admin/admin-panel-credit-plans-table.php:80 #: admin/fees/class-fee-details-form.php:45 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:25 -#: templates/admin/manage-categories-admin-page.tpl.php:36 +#: templates/admin/manage-categories-admin-page.tpl.php:37 msgid "Description" msgstr "Descrição" #: admin/admin-panel-credit-plans-table.php:81 #: admin/admin-panel-fees-table.php:121 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:14 -#: includes/settings/class-payment-general-settings.php:270 +#: includes/settings/class-payment-general-settings.php:272 msgid "Credits" msgstr "Créditos" @@ -49,7 +49,7 @@ msgstr "Créditos" #: admin/fees/class-fee-details-form.php:222 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:19 #: frontend/placeholders.php:514 -#: includes/settings/class-display-settings.php:483 +#: includes/settings/class-display-settings.php:482 #: includes/settings/class-payment-general-settings.php:61 msgid "Price" msgstr "Preço" @@ -75,25 +75,29 @@ msgstr "Privado" msgid " " msgstr " " -#: admin/admin-panel-fees-table.php:196 -msgid "Duration: " -msgstr "Duração: " +#: admin/admin-panel-fees-table.php:197 +#, fuzzy +msgid "Duration: %s" +msgstr "Duração" -#: admin/admin-panel-fees-table.php:206 -msgid "# of images: " -msgstr "Nro. de imagens: " +#: admin/admin-panel-fees-table.php:207 +#, fuzzy +msgid "# of images: %s" +msgstr "# de imagens" #: admin/admin-panel-fees-table.php:219 admin/admin-panel-fees-table.php:235 msgid "unlimited" msgstr "ilimitado" -#: admin/admin-panel-fees-table.php:222 -msgid "Chars in title: " -msgstr "Caracteres no título: " +#: admin/admin-panel-fees-table.php:223 +#, fuzzy +msgid "Chars in title: %s" +msgstr "Carateres no título:" -#: admin/admin-panel-fees-table.php:238 -msgid "Chars in description: " -msgstr "Caracteres na descrição: " +#: admin/admin-panel-fees-table.php:239 +#, fuzzy +msgid "Chars in description: %s" +msgstr "Caracteres na descrição" #: admin/admin-panel-fees-table.php:265 admin/admin-panel-fees-table.php:269 #: templates/admin/import/supported-csv-headers.tpl.php:31 @@ -125,7 +129,7 @@ msgstr "O usuário especificado não existe." msgid "Manual Upgrade" msgstr "atualização manual" -#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:799 +#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:783 #: includes/models/class-custom-post-types.php:97 #: includes/models/class-custom-post-types.php:99 #: includes/settings/class-listings-settings.php:30 @@ -141,20 +145,20 @@ msgid "Dashboard" msgstr "Painel" #: admin/admin-panel.php:140 admin/admin-panel.php:141 -#: admin/admin-panel.php:509 +#: admin/admin-panel.php:492 msgid "Settings" msgstr "Configurações" #: admin/admin-panel.php:154 -#: templates/admin/main-classifieds-admin-page.tpl.php:86 -#: templates/admin/main-classifieds-admin-page.tpl.php:111 +#: templates/admin/main-classifieds-admin-page.tpl.php:88 +#: templates/admin/main-classifieds-admin-page.tpl.php:116 msgid "Manage Categories" msgstr "Gerenciar categorias" #: admin/admin-panel.php:203 admin/admin-panel.php:204 #: admin/form-fields/class-form-fields-admin-page.php:12 -#: includes/settings/class-display-settings.php:298 -#: includes/settings/class-display-settings.php:438 +#: includes/settings/class-display-settings.php:297 +#: includes/settings/class-display-settings.php:437 msgid "Form Fields" msgstr "Campos do formulário" @@ -187,7 +191,7 @@ msgstr "Importar & Exportar" msgid "Debug" msgstr "Depuração" -#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:24 +#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:38 msgid "Debug Information" msgstr "Informações de depuração" @@ -196,12 +200,12 @@ msgid "Uninstall" msgstr "Desinstalação" #: admin/admin-panel.php:354 admin/admin-panel.php:355 -#: admin/admin-panel.php:826 frontend/templates/page-renew-ad.tpl.php:3 +#: admin/admin-panel.php:810 frontend/templates/page-renew-ad.tpl.php:3 #: includes/admin/class-admin-container-configuration.php:175 msgid "Renew Ad" msgstr "Renove Anúncio" -#: admin/admin-panel.php:427 +#: admin/admin-panel.php:417 msgid "" "Use the Account Balance column on the table below to manage credit balance " "for users." @@ -209,7 +213,7 @@ msgstr "" "Usar a coluna Saldo em Conta na tabela abaixo para gerenciar créditos para " "usuários." -#: admin/admin-panel.php:446 +#: admin/admin-panel.php:436 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing." @@ -217,7 +221,7 @@ msgstr "" "Funções AWPCP estão desativadas pois o plugin precisa que você faça um " "upgrade manual antes de continuar." -#: admin/admin-panel.php:447 +#: admin/admin-panel.php:437 msgid "" "The duration for this upgrade operation varies between several minutes and a " "few hours, depending on the size of your database, the current network " @@ -234,7 +238,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the page explaining how #. to downgrade to a previous version of the plugin, %2$s is the closing tag #. for the link. -#: admin/admin-panel.php:450 +#: admin/admin-panel.php:440 msgid "" "If this is not a good time to go through the upgrade process, we recommend " "you to %1$sinstall the previous version again%2$s and plan to upgrade " @@ -247,7 +251,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:456 +#: admin/admin-panel.php:446 msgid "" "To upgrade, please %1$sgo to the Classifieds admin section%2$s or click the " "button below." @@ -257,7 +261,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:466 +#: admin/admin-panel.php:456 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing. Please %1$sgo to the Classifieds " @@ -270,7 +274,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:488 +#: admin/admin-panel.php:471 msgid "" "AWPCP needs you to perform a manual upgrade to update the database schema " "and the information stored there. All plugin features will continue to work " @@ -283,7 +287,7 @@ msgstr "" "(atualização?) são executadas. Por favor %1$s vá para a seção de Admin " "Classificados para Upgrade %2$s ou clique no botão abaixo." -#: admin/admin-panel.php:562 +#: admin/admin-panel.php:545 msgid "" "Page %1$s has the same URL as the %2$s from AWPCP. The WordPress page %1$s " "is going to be unreachable until this changes." @@ -293,7 +297,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: admin/admin-panel.php:570 +#: admin/admin-panel.php:553 msgid "" "The %1$s is dynamic; you don't need to create a real WordPress page to show " "the list of categories, the plugin will generate it for you. If the " @@ -309,74 +313,75 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: admin/admin-panel.php:765 admin/class-categories-admin-page.php:60 +#: admin/admin-panel.php:749 admin/class-categories-admin-page.php:60 #: admin/class-categories-admin-page.php:64 msgid "Manage Category Icon" msgstr "Gerenciar Categoria Ícone" -#: admin/admin-panel.php:770 admin/class-categories-admin-page.php:35 +#: admin/admin-panel.php:754 admin/class-categories-admin-page.php:35 #: admin/class-categories-admin-page.php:39 #: admin/class-categories-admin-page.php:133 msgid "Edit Category" msgstr "Editar Categoria" -#: admin/admin-panel.php:771 admin/class-categories-admin-page.php:46 +#: admin/admin-panel.php:755 admin/class-categories-admin-page.php:46 #: admin/class-categories-admin-page.php:50 msgid "Delete Category" msgstr "Excluir Categoria" -#: admin/admin-panel.php:776 +#: admin/admin-panel.php:760 msgid "Select {category_name}" msgstr "Selecione {category_name}" -#: admin/admin-panel.php:814 frontend/page-reply-to-ad.php:11 +#: admin/admin-panel.php:798 frontend/page-reply-to-ad.php:11 msgid "Reply to Ad" msgstr "Responder a este anúncio" -#: admin/admin-panel.php:822 admin/templates/admin-panel-listings.tpl.php:5 +#: admin/admin-panel.php:806 admin/templates/admin-panel-listings.tpl.php:5 msgid "Place Ad" msgstr "Colocar anúncio" -#: admin/admin-panel.php:830 frontend/page-browse-ads.php:9 +#: admin/admin-panel.php:814 frontend/page-browse-ads.php:9 msgid "Browse Ads" msgstr "Consulte os anúncios" -#: admin/admin-panel.php:834 admin/templates/admin-panel-listings.tpl.php:11 +#: admin/admin-panel.php:818 admin/templates/admin-panel-listings.tpl.php:20 #: frontend/page-search-ads.php:9 msgid "Search Ads" msgstr "Anúncios de pesquisa" -#: admin/categories/class-create-category-admin-page.php:38 -#: admin/categories/class-delete-categories-admin-page.php:55 -#: admin/categories/class-delete-category-admin-page.php:68 -#: admin/categories/class-move-categories-admin-page.php:54 -#: admin/categories/class-update-category-admin-page.php:50 +#: admin/categories/class-create-category-admin-page.php:39 +#: admin/categories/class-delete-categories-admin-page.php:57 +#: admin/categories/class-delete-category-admin-page.php:69 +#: admin/categories/class-move-categories-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:51 msgid "invalid nonce" msgstr "" -#: admin/categories/class-create-category-admin-page.php:42 +#: admin/categories/class-create-category-admin-page.php:43 msgid "The new category was successfully added." msgstr "A nova categoria foi adicionada com êxito." -#: admin/categories/class-delete-categories-admin-page.php:61 +#: admin/categories/class-delete-categories-admin-page.php:64 +#, fuzzy msgid "" "The categories couldn't be deleted because there was an error trying to load " -"the categoery that you selecetd to become the new category associated to " -"affected ads. " +"the categoery that you selected to become the new category associated to " +"affected ads. %s" msgstr "" "As categorias não podem ser apagadas porque houve um erro ao tentar carregar " "a categoria que você selecionou para ser a nova categoria associada aos " "anúncios afetados." -#: admin/categories/class-delete-categories-admin-page.php:71 +#: admin/categories/class-delete-categories-admin-page.php:75 msgid "The selected categories have been deleted." msgstr "As categorias selecionadas foram apagadas." -#: admin/categories/class-delete-categories-admin-page.php:76 +#: admin/categories/class-delete-categories-admin-page.php:80 msgid "There was an error trying to delete the selected categories." msgstr "Ocorreu um erro ao tentar deletar as categorias selecionadas." -#: admin/categories/class-delete-categories-admin-page.php:80 +#: admin/categories/class-delete-categories-admin-page.php:84 msgid "" " (out of ) categories were deleted. " "However, there was an error trying to delete the other categorias." -#: admin/categories/class-delete-category-admin-page.php:41 +#: admin/categories/class-delete-category-admin-page.php:42 msgid "The category you are trying to delete doesn't exist." msgstr "A categoria que você está tentando deletar não existe." -#: admin/categories/class-delete-category-admin-page.php:53 +#: admin/categories/class-delete-category-admin-page.php:54 msgid "There was an error trying to delete the category. " msgstr "Ocorreu um erro ao tentar apagar a categoria" -#: admin/categories/class-delete-category-admin-page.php:74 +#: admin/categories/class-delete-category-admin-page.php:75 msgid "" "There was an error trying to load the selected category. " msgstr "" "Ocorreu um erro ao tentar carregar a categoria selecionada. " -#: admin/categories/class-delete-category-admin-page.php:85 +#: admin/categories/class-delete-category-admin-page.php:86 msgid "The category was deleted successfully" msgstr "A categoria selecionada foi apagada com sucesso." -#: admin/categories/class-delete-category-admin-page.php:103 +#: admin/categories/class-delete-category-admin-page.php:104 msgid "Are you sure you want to delete \"\" category?" msgstr "Tem certeza que quer apagar a categoria \"\" ?" -#: admin/categories/class-delete-category-admin-page.php:116 +#: admin/categories/class-delete-category-admin-page.php:117 msgid "Delete category" msgstr "Apagar categoria" -#: admin/categories/class-delete-category-admin-page.php:117 +#: admin/categories/class-delete-category-admin-page.php:118 #: admin/fees/class-fee-details-form.php:80 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:31 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:12 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:23 #: admin/templates/admin-panel-fees-delete.tpl.php:12 #: admin/templates/admin-panel-users-balance-form.tpl.php:19 #: admin/templates/delete_form.tpl.php:16 #: frontend/templates/payments-billing-form.tpl.php:123 #: includes/listings/class-listing-action-with-confirmation.php:8 -#: includes/settings/renderers/class-button-settings-renderer.php:41 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 +#: includes/settings/renderers/class-button-settings-renderer.php:44 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:184 #: templates/admin/import-listings-admin-page-import-form.tpl.php:47 msgid "Cancel" msgstr "Cancelar" -#: admin/categories/class-move-categories-admin-page.php:59 +#: admin/categories/class-move-categories-admin-page.php:60 msgid "" "The categories couldn't be moved because there was an error trying to load " "the target category. " @@ -435,15 +440,15 @@ msgstr "" "As categorias não puderam ser movidas pois ocorreu um erro ao carregar a " "categoria selecionada. " -#: admin/categories/class-move-categories-admin-page.php:68 +#: admin/categories/class-move-categories-admin-page.php:69 msgid "The selected categories have been moved." msgstr "As categorias selecionadas foram movidas." -#: admin/categories/class-move-categories-admin-page.php:73 +#: admin/categories/class-move-categories-admin-page.php:74 msgid "There was an error trying to move the selected categories." msgstr "Ocorreu um erro ao tentar mover as categorias selecionadas." -#: admin/categories/class-move-categories-admin-page.php:77 +#: admin/categories/class-move-categories-admin-page.php:78 msgid "" " (out of ) categories were moved. " "However, there was an error trying to move the other " @@ -452,11 +457,11 @@ msgstr "" " (de ) categorias foram movidas. No " "entanto ocorreu um erro ao mover as outras categorias." -#: admin/categories/class-update-category-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:56 msgid "The category you're trying to update doesn't exist." msgstr "A categoria que você está tentando atualizar não existe." -#: admin/categories/class-update-category-admin-page.php:66 +#: admin/categories/class-update-category-admin-page.php:67 msgid "The category was successfully updated." msgstr "A categoria foi atualizada com sucesso." @@ -482,39 +487,40 @@ msgstr "Adicionar Nova Categoria" msgid "Update" msgstr "Atualizar" -#: admin/class-debug-admin-page.php:255 +#: admin/class-debug-admin-page.php:256 msgid "WordPress version" msgstr "Versão do WordPress" -#: admin/class-debug-admin-page.php:259 +#: admin/class-debug-admin-page.php:260 msgid "OS" msgstr "Sistema Operacional" -#: admin/class-debug-admin-page.php:263 +#: admin/class-debug-admin-page.php:264 msgid "Apache Version" msgstr "Versão do Apache" -#: admin/class-debug-admin-page.php:267 +#: admin/class-debug-admin-page.php:268 +#: admin/templates/admin-panel-debug.tpl.php:177 msgid "PHP Version" msgstr "Versão do PHP" -#: admin/class-debug-admin-page.php:271 +#: admin/class-debug-admin-page.php:272 msgid "MySQL Version" msgstr "Versão do MySQL " -#: admin/class-debug-admin-page.php:275 +#: admin/class-debug-admin-page.php:276 msgid "cURL Version" msgstr "Versão da cURL" -#: admin/class-debug-admin-page.php:279 +#: admin/class-debug-admin-page.php:280 msgid "cURL SSL Version" msgstr "Versão da cURL SSL" -#: admin/class-debug-admin-page.php:332 admin/class-debug-admin-page.php:338 +#: admin/class-debug-admin-page.php:333 admin/class-debug-admin-page.php:339 msgid "N/A" msgstr "N/D" -#: admin/class-import-listings-admin-page.php:100 +#: admin/class-import-listings-admin-page.php:102 msgid "" "The uploaded file doesn't look like a CSV file. Please upload a valid CSV " "file." @@ -522,12 +528,12 @@ msgstr "" "O Arquivo submetido não parece um arquivo CSV. Por favor envie um arquivo " "CSV válido." -#: admin/class-import-listings-admin-page.php:104 +#: admin/class-import-listings-admin-page.php:106 msgid "There was an error moving the uploaded CSV file to a proper location." msgstr "" "Ocorreu um erro ao mover o arquivo CSV enviado para um local apropriado." -#: admin/class-import-listings-admin-page.php:121 +#: admin/class-import-listings-admin-page.php:125 msgid "" "The uploaded file doesn't look like a ZIP file. Please upload a valid ZIP " "file." @@ -535,32 +541,32 @@ msgstr "" "O arquivo enviado não parece um arquivo ZIP. Por favor envie um arquivo ZIP " "válido." -#: admin/class-import-listings-admin-page.php:125 +#: admin/class-import-listings-admin-page.php:129 msgid "There was an error moving the uploaded ZIP file to a proper location." msgstr "" "Ocorreu um erro ao mover o arquivo ZIP enviado para um local apropriado." -#: admin/class-import-listings-admin-page.php:137 +#: admin/class-import-listings-admin-page.php:141 msgid "Incompatible ZIP Archive" msgstr "Incompatíveis ZIP Archive" -#: admin/class-import-listings-admin-page.php:139 +#: admin/class-import-listings-admin-page.php:143 msgid "Empty ZIP Archive" msgstr "Vazio ZIP Archive" -#: admin/class-import-listings-admin-page.php:165 +#: admin/class-import-listings-admin-page.php:169 msgid "Could not write temporary file %s" msgstr "Não foi possível gravar arquivo temporário %s" -#: admin/class-import-listings-admin-page.php:174 +#: admin/class-import-listings-admin-page.php:178 msgid "The specified directory is not a valid path." msgstr "O diretório especificado não é um caminho válido." -#: admin/class-import-listings-admin-page.php:176 +#: admin/class-import-listings-admin-page.php:180 msgid "The specified directory does not exists." msgstr "O diretório especificado não existe." -#: admin/class-import-listings-admin-page.php:357 +#: admin/class-import-listings-admin-page.php:361 msgid "" "() of rows " "processed. rows imported and linhas importadas e linhas rejeitadas." -#: admin/class-settings-admin-page.php:230 +#: admin/class-import-settings-admin-page.php:121 +#, fuzzy +msgid "Your settings have been successfully imported." +msgstr "Suas configurações foram importadas com sucesso." + +#: admin/class-settings-admin-page.php:224 msgid "" "We could not obtain a valid access token from Facebook. The API returned the " "following error: %s" @@ -578,24 +589,25 @@ msgstr "" "Não podíamos obter um token de acesso válido a partir do Facebook. A API " "retornou o seguinte erro: %s" -#: admin/class-settings-admin-page.php:235 +#: admin/class-settings-admin-page.php:229 msgid "" "We could not obtain a valid access token from Facebook. Please try again." msgstr "" "Não podíamos obter um token de acesso válido a partir do Facebook. Por " "favor, tente novamente." -#: admin/class-settings-admin-page.php:243 +#: admin/class-settings-admin-page.php:237 msgid "Facebook Config Diagnostics" msgstr "Facebook Configuração Diagnostico" -#: admin/class-settings-admin-page.php:250 +#: admin/class-settings-admin-page.php:244 msgid "Everything looks OK." msgstr "Tudo parece OK." #: admin/class-table-entry-action-ajax-handler.php:16 +#: admin/class-uninstall-admin-page.php:52 #: admin/pointers/class-drip-autoresponder-ajax-handler.php:23 -#: functions.php:531 +#: functions.php:537 #: includes/frontend/class-create-empty-listing-ajax-handler.php:104 #: includes/frontend/class-execute-listing-action-ajax-handler.php:58 #: includes/frontend/class-save-listing-information-ajax-handler.php:117 @@ -616,7 +628,7 @@ msgstr "Editar" #: admin/credit-plans/class-credit-plans-admin-page.php:23 #: admin/fees/class-fees-admin-page.php:65 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:13 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:24 #: admin/templates/delete_form.tpl.php:17 msgid "Delete" msgstr "Excluir" @@ -728,7 +740,7 @@ msgstr "" "de exclusão novamente. AWPCP irá ajudá-lo a mudar os anúncios existentes " "para a nova taxa." -#: admin/import/class-csv-importer-delegate.php:271 +#: admin/import/class-csv-importer-delegate.php:275 msgid "" "No user could be assigned to this listing. Our attempt to create a new user " "failed with the following error: ." @@ -736,11 +748,11 @@ msgstr "" "Nenhum usuário pôde ser designado a esta listagem. Nossa tentativa de criar " "um novo usuário falhou e apresentou o seguinte erro: ." -#: admin/import/class-csv-importer-delegate.php:470 +#: admin/import/class-csv-importer-delegate.php:476 msgid "The payment term type must be 'fee' or 'subscription'." msgstr "O tipo de termo de pagamento deve ser 'taxa' or 'subscrição'." -#: admin/import/class-csv-importer-delegate.php:476 +#: admin/import/class-csv-importer-delegate.php:482 msgid "" "There is no payment term with type {payment_term_type} and ID " "{payment_term_id}." @@ -748,7 +760,7 @@ msgstr "" "Não há têrmo de pagamento com tipo {payment_term_type} e ID " "{payment_term_id}." -#: admin/import/class-csv-importer-delegate.php:490 +#: admin/import/class-csv-importer-delegate.php:496 msgid "" "No images directory was configured. Are you sure you uploaded a ZIP file or " "defined a local directory?" @@ -756,12 +768,12 @@ msgstr "" "Nenhuma imagem de diretório foi configurada. Tem certeza que você carregou " "um arquivo .ZIP ou definido um diretório local?" -#: admin/import/class-csv-importer-delegate.php:676 +#: admin/import/class-csv-importer-delegate.php:690 msgid "The value for Extra Field %s's is not allowed. Allowed values are: %%s" msgstr "" "O valor para Campo Extra %s's não é permitido. O valores permitidos são: %%s" -#: admin/import/class-csv-importer-delegate.php:686 +#: admin/import/class-csv-importer-delegate.php:700 msgid "" "The value for Extra Field %s's is not allowed. Allowed value is one of: %%s" msgstr "" @@ -784,10 +796,37 @@ msgstr "" msgid "That Ad failed to delete." msgstr "O anúncio foi excluído" +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 +#, fuzzy +msgid "Thank you for signing up!" +msgstr "Obrigado por inscrever-se!" + +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 +#, fuzzy +msgid "" +"Please check your email and click the link provided to confirm your " +"subscription." +msgstr "" +"Por favor, verifique seu e-mail e clique no link fornecido para confirmar " +"sua inscrição." + #: admin/pointers/class-drip-autoresponder-ajax-handler.php:149 msgid "An unexpected error ocurred." msgstr "Um erro inesperado ocorreu." +#: admin/pointers/class-drip-autoresponder.php:62 +#, fuzzy +msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" +msgstr "" +"Quer saber os segredos de construção de um Web site de Classifieds " +"impressionante?" + +#: admin/pointers/class-drip-autoresponder.php:63 +msgid "" +"Find out how to create a compelling, thriving classifieds site from scratch " +"in this ridiculously actionable (and free) 5-part email course." +msgstr "" + #: admin/pointers/class-drip-autoresponder.php:67 msgid "Email Address" msgstr "Endereco de e-mail" @@ -796,28 +835,28 @@ msgstr "Endereco de e-mail" msgid "Add" msgstr "Adicionar" -#: admin/templates/admin-panel-credit-plans.tpl.php:10 +#: admin/templates/admin-panel-credit-plans.tpl.php:11 msgid "Credit System Settings" msgstr "Configurações do sistema de crédito" -#: admin/templates/admin-panel-credit-plans.tpl.php:21 +#: admin/templates/admin-panel-credit-plans.tpl.php:25 #: templates/admin/settings-admin-page.tpl.php:50 -#: templates/admin/settings-admin-page.tpl.php:64 +#: templates/admin/settings-admin-page.tpl.php:67 msgid "Save Changes" msgstr "Salvar alterações" -#: admin/templates/admin-panel-credit-plans.tpl.php:34 +#: admin/templates/admin-panel-credit-plans.tpl.php:38 msgid "Add Credit Plan" msgstr "Adicionar plano de crédito" -#: admin/templates/admin-panel-debug.tpl.php:8 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:6 +#: admin/templates/admin-panel-debug.tpl.php:11 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:8 msgid "Are you seeing 404 Not Found errors?" msgstr "Você está vendo erros 404 Não Encontrados?" #. translators: %1$s: Start link HTML, %2$s: end link HTML, %3$s: Start link #. HTML -#: admin/templates/admin-panel-debug.tpl.php:14 +#: admin/templates/admin-panel-debug.tpl.php:21 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -828,54 +867,84 @@ msgid "" "please contact %3$scustomer support%1$s." msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:49 +#: admin/templates/admin-panel-debug.tpl.php:84 msgid "Stored ID" msgstr "ID armazenada" -#: admin/templates/admin-panel-debug.tpl.php:50 +#: admin/templates/admin-panel-debug.tpl.php:85 msgid "Reference" msgstr "Referência" -#: admin/templates/admin-panel-debug.tpl.php:51 +#: admin/templates/admin-panel-debug.tpl.php:86 #: frontend/templates/widget-categories-form.tpl.php:2 #: frontend/templates/widget-latest-ads-form.tpl.php:2 #: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:5 msgid "Title" msgstr "Título" -#: admin/templates/admin-panel-debug.tpl.php:60 +#: admin/templates/admin-panel-debug.tpl.php:95 msgid "Page not found" msgstr "página não encontrada" -#: admin/templates/admin-panel-debug.tpl.php:74 +#: admin/templates/admin-panel-debug.tpl.php:117 msgid "Option Name" msgstr "Nome da opção" -#: admin/templates/admin-panel-debug.tpl.php:75 +#: admin/templates/admin-panel-debug.tpl.php:118 msgid "Option Value" msgstr "Valor da opção" -#: admin/templates/admin-panel-debug.tpl.php:96 +#: admin/templates/admin-panel-debug.tpl.php:147 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:9 msgid "Pattern" msgstr "Padrão" -#: admin/templates/admin-panel-debug.tpl.php:97 +#: admin/templates/admin-panel-debug.tpl.php:148 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:10 msgid "Replacement" msgstr "Substituição" -#: admin/templates/admin-panel-debug.tpl.php:133 +#: admin/templates/admin-panel-debug.tpl.php:181 +#, fuzzy +msgid "cURL" +msgstr "cURL" + +#: admin/templates/admin-panel-debug.tpl.php:185 +#, fuzzy +msgid "cURL's alternate CA info (cacert.pem)" +msgstr "do cURL Informação alternativo CA (cacert.pem)" + +#: admin/templates/admin-panel-debug.tpl.php:189 +#, fuzzy +msgid "Exists" +msgstr "existe." + +#: admin/templates/admin-panel-debug.tpl.php:190 +#, fuzzy +msgid "Missing" +msgstr "Valores" + +#: admin/templates/admin-panel-debug.tpl.php:195 +#: includes/settings/class-payment-general-settings.php:134 +msgid "PayPal" +msgstr "PayPal" + +#: admin/templates/admin-panel-debug.tpl.php:198 #, fuzzy msgid "Working" msgstr "Trabalhando" -#: admin/templates/admin-panel-debug.tpl.php:148 -#: templates/admin/debug/debug-admin-page.tpl.php:36 +#: admin/templates/admin-panel-debug.tpl.php:201 +#, fuzzy +msgid "Not Working" +msgstr "Não trabalho" + +#: admin/templates/admin-panel-debug.tpl.php:216 +#: templates/admin/debug/debug-admin-page.tpl.php:42 msgid "Debug & Development Tools" msgstr "Ferramentas de Depuração e Desenvolvimento" -#: admin/templates/admin-panel-fees-delete-form.tpl.php:6 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:7 #: admin/templates/delete_form.tpl.php:11 msgid "Are you sure you want to delete this item?" msgstr "Tem certeza de que deseja excluir este item?" @@ -892,42 +961,43 @@ msgstr "" msgid "Switch" msgstr "Interruptor" -#: admin/templates/admin-panel-fees.tpl.php:7 -msgid "Payment Settings page" -msgstr "A página Configurações de pagamento" - -#: admin/templates/admin-panel-fees.tpl.php:9 +#: admin/templates/admin-panel-fees.tpl.php:8 +#, fuzzy msgid "" "Currently your classifieds are in Free mode. Fee plans are not available or " -"used during free mode.

To change this, visit the and enable Charge Listing Fee setting." +"used during free mode.%1$s To change this, visit the %2$s and enable Charge " +"Listing Fee setting." msgstr "" "Atualmente seu classificados estão no modo Gratuito. planos de honorários " "não estão disponíveis ou utilizada durante o modo livre.
Para alterar " "isso, visite o e habilitar configuração de carga " "Lista Fee." -#: admin/templates/admin-panel-fees.tpl.php:20 +#: admin/templates/admin-panel-fees.tpl.php:11 +msgid "Payment Settings page" +msgstr "A página Configurações de pagamento" + +#: admin/templates/admin-panel-fees.tpl.php:22 msgid "Add Fee Plan" msgstr "Adicionar Plano Fee" -#: admin/templates/admin-panel-fees.tpl.php:24 -msgid "Fee Plan sort order and sort direction Settings" -msgstr "Ordem de classificação do Plano de Taxas e direção da classificação" - #: admin/templates/admin-panel-fees.tpl.php:26 +#, fuzzy msgid "" -"If you wish to change the sorting of your fee plans, you can change the ." +"If you wish to change the sorting of your fee plans, you can change the %s." msgstr "" "Se você deseja alterar a classificação de seus planos de taxas, você pode " "alterar o ." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:14 +#: admin/templates/admin-panel-fees.tpl.php:30 +msgid "Fee Plan sort order and sort direction Settings" +msgstr "Ordem de classificação do Plano de Taxas e direção da classificação" + +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:17 msgid "Facebook Integration" msgstr "Integração Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:16 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:23 msgid "" "We currently support two methods for posting new ads to Facebook: Facebook " "API and Zapier/IFTTT Webhooks." @@ -935,7 +1005,7 @@ msgstr "" "Nós atualmente suportamos dois métodos para postagens de novos anúncios para " "Facebook: Facebook API e Zapier/IFTTT Webhooks." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:18 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:25 msgid "" "Support for Facebook API will be removed in the future. Facebook " "significantly reduced access to their APIs across all apps on Apr, 2018. Now " @@ -953,12 +1023,13 @@ msgstr "" "introduzimos suporte para Zapier/IFTTT Webhooks como alternativa esperando " "clientes migrarem para este método de integração." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:22 -msgid "You can read more about Facebook changes here: {facebook_post_link}" +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:30 +#, fuzzy +msgid "You can read more about Facebook changes here: %s" msgstr "" "Você pode ler mais sobre mudanças no Facebok aqui: {facebook_post_link}" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:29 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:38 msgid "" "If you are currently using the Facebook API integration method and not " "having any issues, you don't have to do anything right now. If you are " @@ -968,19 +1039,19 @@ msgstr "" "teve qualquer problema, você não terá de fazer nada agora. Se você teve " "problemas, por favor leia a seção de Diagnósticos para tentar consertá-los." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:40 #: includes/settings/class-general-settings.php:735 msgid "Facebook API" msgstr "Facebook API" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:35 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:46 +#, fuzzy msgid "" "This integration method allows you to post ads to Facebook using a Facebook " -"Application. Please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"Application. Please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" "Este método de integração permite a você postar anúncios para o Facebook " "usando uma aplicação Facebook. Por favor leia " @@ -989,8 +1060,8 @@ msgstr "" "{link_to_facebook_integration_documentation} estas instruções {/" "link_to_facebook_integration_documentation}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:45 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:79 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 msgid "" "Add the following URL to the list of Valid OAuth Redirect URIs for the " "configuration of the Facebook Application:" @@ -998,12 +1069,12 @@ msgstr "" "Adicionar a seguinte URL para a lista Valid Author Redirect URIs para a " "configuração da aplicação Facebook: " -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:59 #: includes/settings/class-general-settings.php:736 msgid "Zapier/IFTTT Webhooks" msgstr "Zapier/IFTTT Webhooks" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:51 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:61 msgid "" "Webhooks allow the plugin to send a request to one of the configured webhook " "URLs the first time an ad becomes publicly available on the website. That " @@ -1019,13 +1090,13 @@ msgstr "" "para processar as informações enviadas (url, título e descrição) e criar uma " "postagem em uma página do Facebook que você controla." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:67 +#, fuzzy msgid "" -"Follow the instructiones to create the tasks on " -"{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} or " -"{webhook_instructions_for_ifttt}IFTTT{/webhook_instructions_for_ifttt}. Then " -"update the settings at the bottom of this page to enter the webhook URLs " -"associated with those tasks." +"Follow the instructiones to create the tasks on %1$sZapier or IFTTT%2$s. " +"Then update the settings at the bottom of this page to enter the webhook " +"URLs associated with those tasks." msgstr "" "Siga as instruções para criar as tarefas no " "{webhook_instructions_for_zapier} Zapier {/ webhook_instructions_for_zapier} " @@ -1033,21 +1104,21 @@ msgstr "" "webhook_instructions_for_ifttt}. Atualize as configurações na parte inferior " "desta página para inserir os URLs do webhook associados a essas tarefas." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:65 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:74 msgid "Facebook Cache" msgstr "Facebook Cache" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:69 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:80 +#, fuzzy msgid "" "If you are using Webhooks to send ads to Facebook, a Facebook Application " "can still be used to ask Facebook to clear the cache it has stored for ads " "pages. This is useful to ensure users always see the latest version when the " "ad is shared on Facebook Pages, Groups and user feeds. If you decide to use " -"this feature, please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"this feature, please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" "Se você estiver usando o Webhooks para enviar anúncios ao Facebook, um " "Aplicativo do Facebook ainda poderá ser usado para solicitar ao Facebook que " @@ -1060,19 +1131,19 @@ msgstr "" "{link_to_facebook_integration_documentation} estas instruções {/ " "link_to_facebook_integration_documentation}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:83 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:93 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:120 msgid "Diagnostics" msgstr "Diagnósticos" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:95 msgid "" "If you see the following error after trying to get a valid User Access Token:" msgstr "" "Se você vê o seguinte erro após tentar ter um válido Token de Acesso de " "Usuário:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:99 msgid "" "You have to submit your Facebook Application for Review and ask for those " "permissions or use the Webhooks integration method to send ads to Facebook " @@ -1082,23 +1153,23 @@ msgstr "" "permissões ou usar o método de integração do Webhooks para enviar anúncios " "ao Facebook usando o Zapier ou o IFTTT Webhooks." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:91 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:101 msgid "If you see the following error trying to send ads to a Facebook Group:" msgstr "" "Se você vir o seguinte erro ao tentar enviar anúncios para um grupo do " "Facebook:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:97 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#, fuzzy msgid "" -"Please make sure the Facebook Application " -"{link_to_how_to_add_apps_to_a_group}was added to the group{/" -"link_to_how_to_add_apps_to_a_group}." +"Please make sure the Facebook Application %1$swas added to the group%2$s." msgstr "" "Certifique-se de que o aplicativo do Facebook " "{link_to_how_to_add_apps_to_a_group} foi adicionado ao grupo {/ " "link_to_how_to_add_apps_to_a_group}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:108 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:119 msgid "" "If you are having additional problems with Facebook API, click " "\"Diagnostics\" to check your settings." @@ -1106,15 +1177,15 @@ msgstr "" "Se você está tendo problemas adicionais com a API do Facebook, clique em " "\"Diagnóstico\" para verificar suas configurações." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:3 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:4 msgid "Restore AWPCP Pages" msgstr "Restaurar AWPCP Páginas" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:8 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:10 msgid "The following pages were restored: ." msgstr "As páginas seguintes foram restaurados: ." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:19 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:21 msgid "" "The pages listed below are missing. The plugin is looking for a page with a " "particular ID but it seems that the page was permanently deleted. Please a " @@ -1124,12 +1195,13 @@ msgstr "" "página com um particular ID mas parece qua a página foi permanentemente " "apagada. Por favor selecione uma outra." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:23 -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:71 -msgid "%s (Default name: %s)." +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:28 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:97 +#, fuzzy +msgid "%1$s (Default name: %2$s)." msgstr "%s (Nome padrão: %s)." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:39 msgid "" "The following pages are not published. Did you move them to the Trash by " "accident or saved them as Draft?" @@ -1137,11 +1209,13 @@ msgstr "" "As seguintes páginas não estão publicadas. Você as moveu para a lixeira por " "engano ou as salvou como rascunho?" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:41 -msgid "%s — Selected page: %s (%s)" +#. translators: %1$s page label, %2$s link to the page, %3$s the page status. +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:57 +#, fuzzy +msgid "%1$s Selected page: %2$s (%3$s)" msgstr "%s — Página selecionada: %s (%s)" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:69 msgid "" "The following pages are not currently assigned. Please select an existing " "page or create a new one to use as the following plugin pages:" @@ -1150,15 +1224,16 @@ msgstr "" "selecionae uma página existente ou crie uma nova para usar como as seguintes " "páginas plugin:" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:64 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#, fuzzy msgid "" -" — You can select one of these pages that already include " -"the necessary shortcode: or create a new one." +"%1$s You can select one of these pages that already include the necessary " +"shortcode: %2$s or %3$screate a new one%4$s." msgstr "" " — Você pode selecionar uma das páginas que já incluem o " "necessário shortcode: ou criar uma nova." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:115 msgid "" "Use the button below to have the plugin attempt to find the necessary pages. " "If you continue to have problems or seeing page related warnings above, you " @@ -1170,11 +1245,11 @@ msgstr "" "advertências, você pode apagar as páginas afetadas pelo plugin e usar o " "botão Restaurar Páginas para criar o plugin novamente." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:86 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:116 msgid "Restore Pages" msgstr "restaurar Páginas" -#: admin/templates/admin-panel-uninstall.tpl.php:13 +#: admin/templates/admin-panel-uninstall.tpl.php:10 msgid "" "Thank you for using AWPCP. You have arrived at this page by clicking the " "Uninstall link. If you are certain you wish to uninstall the plugin, please " @@ -1184,7 +1259,7 @@ msgstr "" "Desinstalar. Se você tem certeza que deseja desinstalar o plugin por favor " "clique no botão abaixo para proceder isto." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "" "PLEASE NOTE: When you click the button below, ALL your data related to the " "plugin including your classifieds, images and everything else created by the " @@ -1194,11 +1269,11 @@ msgstr "" "relacionados com o plugin, incluindo seus anúncios classificados, imagens e " "tudo mais criados pelo plugin serão permanentemente apagados." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "We cannot recover the data after you click this." msgstr "Não podemos recuperar os dados depois de clicar isto." -#: admin/templates/admin-panel-uninstall.tpl.php:18 +#: admin/templates/admin-panel-uninstall.tpl.php:15 msgid "" "BEFORE YOU CLICK THE BUTTON BELOW — read carefully in case you want to " "extract your data first!" @@ -1206,7 +1281,7 @@ msgstr "" "Antes de clicar no botão abaixo & mdash; leia atentamente no caso de você " "deseja extrair os seus dados em primeiro lugar!" -#: admin/templates/admin-panel-uninstall.tpl.php:21 +#: admin/templates/admin-panel-uninstall.tpl.php:18 msgid "" "If you plan to use the data created by the plugin please export the data " "from your mysql database before clicking the uninstall link." @@ -1214,46 +1289,50 @@ msgstr "" "Se você planeja usar os dados criados pelo plugin favor exportar os dados do " "seu banco de dados mysql antes de clicar no link de desinstalação." -#: admin/templates/admin-panel-uninstall.tpl.php:22 +#: admin/templates/admin-panel-uninstall.tpl.php:21 +#, fuzzy msgid "" -"If you want to keep your user uploaded images, please download to " -"your local drive for later use or rename the folder to something else so the " +"If you want to keep your user uploaded images, please download %s to your " +"local drive for later use or rename the folder to something else so the " "uninstaller can bypass it." msgstr "" "Se você quiser manter imagens enviadas seu usuário, faça o download " " para a unidade local para uso posterior ou renomear a pasta para " "outra coisa para que o desinstalador pode ignorá-lo." -#: admin/templates/admin-panel-uninstall.tpl.php:28 +#: admin/templates/admin-panel-uninstall.tpl.php:29 #, fuzzy msgid "Proceed with Uninstalling AWP Classifieds Plugin" msgstr "Proceder com a desistalação do AWPCP." -#: admin/templates/admin-panel-uninstall.tpl.php:33 +#: admin/templates/admin-panel-uninstall.tpl.php:35 msgid "Almost done... one more step!" msgstr "Quase pronto ... mais um passo!" -#: admin/templates/admin-panel-uninstall.tpl.php:36 -msgid "Please click here to complete the uninstallation process" +#: admin/templates/admin-panel-uninstall.tpl.php:39 +#, fuzzy +msgid "Please click here to deactivate plugins." msgstr "Por favor clique aqui para completar o processo de desinstalação" #: admin/templates/admin-panel-users-balance-form.tpl.php:12 +#: frontend/templates/payments-transaction-items-table.tpl.php:5 +#: frontend/templates/payments-transaction-items-table.tpl.php:17 msgid "Amount" msgstr "Quantia" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:12 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:14 msgid "Manual Upgrade Required" msgstr "Atualização manual Necessário" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:17 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:26 msgid "Upgrade" msgstr "Melhorar" #: admin/templates/admin-quick-start-guide-notice.tpl.php:2 #, fuzzy msgid "" -"Hello and welcome to AWP Classifieds. This plugin is super " -"easy to use AND highly configurable." +"Hello and welcome to AWP Classifieds. This plugin is super easy to use AND " +"highly configurable." msgstr "" "Olá e bem-vindo ao Outra WordPress Classificados . Este " "plugin é super fácil de usar e altamente configurável." @@ -1263,38 +1342,52 @@ msgid "Would you like some help getting started?" msgstr "Quer um pouco de ajuda para começar?" #: admin/templates/admin-quick-start-guide-notice.tpl.php:12 +#, fuzzy +msgid "I'll figure it out on my own." +msgstr "Eu vou descobrir isso por conta própria." + +#: admin/templates/admin-quick-start-guide-notice.tpl.php:15 msgid "Yes Please!" msgstr "Sim, por favor. " -#: admin/templates/admin-sidebar.tpl.php:14 +#: admin/templates/admin-quick-start-guide-notice.tpl.php:20 +#, fuzzy +msgid "Help me get my classifieds running quickly." +msgstr "Me ajudar a conseguir meus Classificados funcionamento rapidamente." + +#: admin/templates/admin-sidebar.tpl.php:15 msgid "Like this plugin?" msgstr "Como este plugin?" -#: admin/templates/admin-sidebar.tpl.php:20 +#: admin/templates/admin-sidebar.tpl.php:24 msgid "Give a 5 star rating on WordPress.org." msgstr "" -#: admin/templates/admin-sidebar.tpl.php:36 +#: admin/templates/admin-sidebar.tpl.php:42 msgid "Get more features!" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:67 msgid "Found a bug?" msgstr "Encontrou um bug (defeito)?" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:68 msgid "Need Support?" msgstr "Precisa de suporte?" -#: admin/templates/admin-sidebar.tpl.php:70 -msgid "Quick Start Guide" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:80 +#, fuzzy +msgid "Browse the %1$sQuick Start Guide%2$s" msgstr "Guia Rápido de Início" -#: admin/templates/admin-sidebar.tpl.php:80 -msgid "Documentation" -msgstr "Documentação" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:90 +#, fuzzy +msgid "Read the full %1$sDocumentation%2$s." +msgstr "Leia a íntegra %s ." -#: admin/templates/admin-sidebar.tpl.php:91 +#: admin/templates/admin-sidebar.tpl.php:98 msgid "Get Help" msgstr "Obter Ajuda" @@ -1304,11 +1397,11 @@ msgid "Thank you for using AWP Classifieds Plugin." msgstr "Obrigado por usar Outra WordPress Plugin Classificados." #: admin/templates/admin-widget-modification-notice.tpl.php:3 +#, fuzzy msgid "" -"AWPCP 3.0 includes several modifications to the Search Ads, " -"Featured Ads and Latest Ads widgets. For " -"example, the Latest Ads widget can now be used in multiple sidebars. Also, " -"there is a new Widget to show Random Ads." +"AWPCP 3.0 includes several modifications to the Search Ads, Featured Ads and " +"Latest Ads widgets. For example, the Latest Ads widget can now be used in " +"multiple sidebars. Also, there is a new Widget to show Random Ads." msgstr "" "AWPCP 3.0 inclui várias modificações às Os anúncios de pesquisa , Anúncios em destaque e Últimos Anúncios " @@ -1446,7 +1539,7 @@ msgstr "" "Por favor leia Atualizando o PHP." -#: awpcp.php:200 +#: awpcp.php:198 #, fuzzy msgid "" "AWP Classifieds Plugin installation is incomplete. Please {support_link}" @@ -1456,23 +1549,23 @@ msgstr "" "favor, {support_link}contatar suporte{/support_link}." #. translators: %s is the title of the listing. -#: frontend/ad-functions.php:155 +#: frontend/ad-functions.php:159 #: includes/listings/class-listing-renewed-email-notifications.php:85 msgid "The ad \"%s\" has been successfully renewed." msgstr "O anúncio \"%s\" foi renovado com sucesso." -#: frontend/ad-functions.php:189 frontend/page-renew-ad.php:160 +#: frontend/ad-functions.php:193 frontend/page-renew-ad.php:160 msgid "The Ad has been successfully renewed. New expiration date is %s." msgstr "O anúncio foi renovado com sucesso. A nova data de expiração é %s." -#: frontend/ad-functions.php:194 frontend/page-renew-ad.php:152 +#: frontend/ad-functions.php:198 frontend/page-renew-ad.php:151 #: templates/admin/listings/quick-view-listing-admin-page.tpl.php:18 #: templates/admin/listings-media-center.tpl.php:6 #: templates/admin/view-listing-admin-page.tpl.php:14 msgid "Return to Listings" msgstr "Voltar para Empresas" -#: frontend/ad-functions.php:212 frontend/page-place-ad.php:151 +#: frontend/ad-functions.php:216 frontend/page-place-ad.php:154 msgid "" "You do not have permission to perform the function you are trying to " "perform. Access to this page has been denied" @@ -1480,27 +1573,27 @@ msgstr "" "Você não tem permissão para executar a função que você está tentando " "executar. O acesso a esta página foi negado" -#: frontend/ad-functions.php:227 +#: frontend/ad-functions.php:231 msgid "The Ad has been deleted" msgstr "O anúncio foi excluído" -#: frontend/ad-functions.php:230 +#: frontend/ad-functions.php:234 msgid "" "Your Ad details and any photos you have uploaded have been deleted from the " "system" msgstr "" "Seus detalhes de anúncios e fotos que você enviou foram excluídos do sistema" -#: frontend/ad-functions.php:234 +#: frontend/ad-functions.php:238 #: includes/frontend/class-edit-listing-page.php:188 msgid "The specified Ad doesn't exists." msgstr "O anúncio especificado não existe." -#: frontend/ad-functions.php:236 +#: frontend/ad-functions.php:240 msgid "There was an error trying to delete the Ad. The Ad was not deleted." msgstr "Houve um erro ao tentar excluir o anúncio. O anúncio não foi excluída." -#: frontend/ad-functions.php:239 +#: frontend/ad-functions.php:243 msgid "Problem encountered. Cannot complete request" msgstr "Problema encontrado. Não é possível concluir a solicitação" @@ -1520,7 +1613,7 @@ msgstr "" "Nenhuma categoria específica foi selecionado para navegar listagens para que " "você está vendo de todas as categorias." -#: frontend/page-place-ad.php:74 +#: frontend/page-place-ad.php:75 #: includes/views/class-verify-transaction-exists-step-decorator.php:17 msgid "" "There was an error processing your Payment Request. Please try again or " @@ -1529,19 +1622,20 @@ msgstr "" "Houve um erro ao processar o seu pedido de pagamento. Por favor, tente " "novamente ou entre em contato com um administrador." -#: frontend/page-place-ad.php:132 +#: frontend/page-place-ad.php:133 msgid "Please select a category." msgstr "Por favor, selecione uma categoria." -#: frontend/page-place-ad.php:133 -msgid "Please select the Ad's owner." +#: frontend/page-place-ad.php:134 +#, fuzzy +msgid "Please select the Ad owner." msgstr "Por favor, selecione o proprietário do anúncio." -#: frontend/page-place-ad.php:134 +#: frontend/page-place-ad.php:135 msgid "Please select a payment term." msgstr "Por favor seleccione um prazo de pagamento." -#: frontend/page-place-ad.php:165 frontend/page-renew-ad.php:87 +#: frontend/page-place-ad.php:168 frontend/page-renew-ad.php:86 msgid "" "You are trying to post an Ad using a transaction created for a different " "purpose. Please go back to the %s page.
If you think " @@ -1553,7 +1647,7 @@ msgstr "" "a>.
Se você acha que isto é um erro por favor contate o administrador e " "forneça a seguinte ID de transação: %s" -#: frontend/page-place-ad.php:174 +#: frontend/page-place-ad.php:177 #: includes/frontend/class-submit-listing-page.php:291 msgid "" "You can't post an Ad at this time because the payment associated with this " @@ -1562,18 +1656,18 @@ msgstr "" "Você não pode postar um anúncio neste momento porque o pagamento associado a " "esta operação falhou (ver razões abaixo)." -#: frontend/page-place-ad.php:256 +#: frontend/page-place-ad.php:259 #: includes/listings/class-payment-information-validator.php:88 msgid "You should select an owner for this Ad." msgstr "Você deve selecionar um proprietário para este anúncio." -#: frontend/page-place-ad.php:260 frontend/page-renew-ad.php:197 +#: frontend/page-place-ad.php:263 frontend/page-renew-ad.php:199 #: includes/listings/class-payment-information-validator.php:64 #: includes/listings/class-payment-information-validator.php:73 msgid "You should choose one of the available Payment Terms." msgstr "Você deve escolher uma das Condições de pagamento disponíveis." -#: frontend/page-place-ad.php:264 +#: frontend/page-place-ad.php:267 #: includes/listings/class-payment-information-validator.php:75 msgid "" "The Payment Term you selected is not available for non-administrator users." @@ -1581,17 +1675,17 @@ msgstr "" "O prazo de pagamento que você selecionou não está disponível para usuários " "não-administrador." -#: frontend/page-place-ad.php:280 +#: frontend/page-place-ad.php:283 #: includes/listings/class-payment-information-validator.php:108 msgid "Ad Category field is required" msgstr "Ad campo Categoria é necessária" -#: frontend/page-place-ad.php:285 +#: frontend/page-place-ad.php:288 #: includes/listings/class-payment-information-validator.php:119 msgid "You cannot list your Ad in top level categories." msgstr "Você não pode listar seu anúncio em categorias de nível primário." -#: frontend/page-place-ad.php:291 +#: frontend/page-place-ad.php:294 #: includes/frontend/class-submit-listing-page.php:190 msgid "" "Hi, You need to be a registered user to post Ads in this website. Please use " @@ -1600,7 +1694,7 @@ msgstr "" "Oi, Você precisa ser um usuário registrado para postar anúncios neste site. " "Utilize o formulário abaixo para entrar ou clique no link para se cadastrar." -#: frontend/page-place-ad.php:429 frontend/page-place-ad.php:836 +#: frontend/page-place-ad.php:432 frontend/page-place-ad.php:839 #: frontend/page-renew-ad.php:297 #: includes/frontend/class-order-submit-listing-section.php:119 msgid "" @@ -1612,7 +1706,7 @@ msgstr "" #. translators: %s is an alphanumeric string that identifies a payment #. transaction. #. translators: %s the transaction id -#: frontend/page-place-ad.php:511 frontend/page-renew-ad.php:347 +#: frontend/page-place-ad.php:514 frontend/page-renew-ad.php:347 #: includes/frontend/class-submit-listing-page.php:333 #: includes/views/class-verify-payment-can-be-processed-step-decorator.php:18 msgid "" @@ -1624,7 +1718,7 @@ msgstr "" "momento. Entre em contato com o administrador do site e fornecer a seguinte " "identificação de transação: %s" -#: frontend/page-place-ad.php:834 +#: frontend/page-place-ad.php:837 msgid "" "Your Ad details have been filled out in the form below. Make any changes " "needed and then resubmit the Ad to update it." @@ -1633,11 +1727,11 @@ msgstr "" "alterações necessárias e, em seguida, submeter novamente o anúncio para " "atualizá-lo." -#: frontend/page-place-ad.php:838 +#: frontend/page-place-ad.php:841 msgid "Fill out the form below to post your classified ad." msgstr "Preencha o formulário abaixo para postar seu anúncio." -#: frontend/page-place-ad.php:842 +#: frontend/page-place-ad.php:845 msgid "" "We found errors in the details you submitted. A detailed error message is " "shown in front or below each invalid field. Please fix the errors and submit " @@ -1647,11 +1741,11 @@ msgstr "" "detalhada é mostrado na frente ou abaixo de cada campo inválido. Por favor, " "corrija os erros e enviar o formulário novamente." -#: frontend/page-place-ad.php:861 +#: frontend/page-place-ad.php:864 msgid "Start & End Date" msgstr "Start & End Data" -#: frontend/page-place-ad.php:863 +#: frontend/page-place-ad.php:866 #: includes/admin/import/class-csv-importer-columns.php:185 #: includes/admin/listings/class-listings-table-nav-handler.php:151 #: includes/form-fields/class-listing-form-fields.php:127 @@ -1659,7 +1753,7 @@ msgstr "Start & End Data" msgid "Start Date" msgstr "Data de Início" -#: frontend/page-place-ad.php:865 +#: frontend/page-place-ad.php:868 #: includes/admin/import/class-csv-importer-columns.php:196 #: includes/admin/listings/class-listings-table-nav-handler.php:152 #: includes/form-fields/class-listing-form-fields.php:131 @@ -1667,7 +1761,7 @@ msgstr "Data de Início" msgid "End Date" msgstr "Data de Término" -#: frontend/page-place-ad.php:973 +#: frontend/page-place-ad.php:976 msgid "" "Hi, Payment is required for posting Ads in this website and we couldn't find " "a Payment Transaction assigned to you. You can't post Ads this time. If you " @@ -1678,43 +1772,43 @@ msgstr "" "postar anúncios neste momento. Se você acha que isso é um erro, por favor " "entre em contato com o site Administrador." -#: frontend/page-place-ad.php:1000 +#: frontend/page-place-ad.php:1003 msgid "" "You did not select a Payment Term. Please select a Payment Term for this Ad." msgstr "" "Você não selecionou uma condição de pagamento. Por favor, selecione uma " "condição de pagamento para este anúncio." -#: frontend/page-place-ad.php:1005 +#: frontend/page-place-ad.php:1008 msgid "Please enter a start date for the Ad." msgstr "Por favor insira uma data de início para o anúncio." -#: frontend/page-place-ad.php:1010 +#: frontend/page-place-ad.php:1013 msgid "Please enter an end date for the Ad." msgstr "Por favor, indique uma data final para o anúncio." -#: frontend/page-place-ad.php:1014 +#: frontend/page-place-ad.php:1017 #: includes/form-fields/class-form-fields-validator.php:71 msgid "The start date must occur before the end date." msgstr "A data de início deve ocorrer antes da data de término." -#: frontend/page-place-ad.php:1019 +#: frontend/page-place-ad.php:1022 msgid "You did not enter a title for your Ad" msgstr "Você não insira um título para o seu anúncio" -#: frontend/page-place-ad.php:1024 +#: frontend/page-place-ad.php:1027 msgid "" "You did not enter any text for your Ad. Please enter some text for your Ad." msgstr "" "Você não inseriu qualquer texto para o seu anúncio. Por favor, indique algum " "texto para o seu anúncio." -#: frontend/page-place-ad.php:1037 +#: frontend/page-place-ad.php:1040 msgid "" "You did not enter your website address. Your website address is required." msgstr "Você não digitou o endereço do site. O endereço do site é necessária." -#: frontend/page-place-ad.php:1043 +#: frontend/page-place-ad.php:1046 msgid "" "Your website address is not properly formatted. Please make sure you have " "included the http:// part of your website address" @@ -1722,15 +1816,15 @@ msgstr "" "O endereço do site não está formatado corretamente. Por favor, certifique-se " "de ter incluído o http: // parte de seu endereço de website" -#: frontend/page-place-ad.php:1048 +#: frontend/page-place-ad.php:1051 msgid "You did not enter your name. Your name is required." msgstr "Você não inseriu o seu nome. O seu nome é obrigatório." -#: frontend/page-place-ad.php:1053 +#: frontend/page-place-ad.php:1056 msgid "You did not enter your email. Your email is required." msgstr "Você não especificou o seu e-mail. Seu e-mail é necessária." -#: frontend/page-place-ad.php:1058 frontend/page-reply-to-ad.php:160 +#: frontend/page-place-ad.php:1061 frontend/page-reply-to-ad.php:160 msgid "" "The email address you entered was not a valid email address. Please check " "for errors and try again." @@ -1738,7 +1832,7 @@ msgstr "" "O endereço de e-mail inserido não era um endereço de email válido. Por " "favor, verificar os erros e tente outra vez." -#: frontend/page-place-ad.php:1060 +#: frontend/page-place-ad.php:1063 msgid "" "The email address you entered is not allowed in this website. Please use an " "email address from one of the following domains: %s." @@ -1746,39 +1840,39 @@ msgstr "" "O endereço de e-mail que você digitou não é permitido neste site. Por favor, " "use um endereço de e-mail de um dos seguintes domínios: %s ." -#: frontend/page-place-ad.php:1071 +#: frontend/page-place-ad.php:1074 msgid "You did not enter your phone number. Your phone number is required." msgstr "" "Você não especificou o seu número de telefone. Seu número de telefone é " "necessária." -#: frontend/page-place-ad.php:1089 -#: includes/helpers/widgets/multiple-region-selector.php:124 +#: frontend/page-place-ad.php:1092 +#: includes/helpers/widgets/multiple-region-selector.php:144 msgid "You did not enter your country. Your country is required." msgstr "Você não entrar em seu país. O seu país é necessária." -#: frontend/page-place-ad.php:1098 -#: includes/helpers/widgets/multiple-region-selector.php:125 +#: frontend/page-place-ad.php:1101 +#: includes/helpers/widgets/multiple-region-selector.php:145 msgid "You did not enter your state. Your state is required." msgstr "Você não digitou seu estado. Seu estado é necessária." -#: frontend/page-place-ad.php:1107 -#: includes/helpers/widgets/multiple-region-selector.php:127 +#: frontend/page-place-ad.php:1110 +#: includes/helpers/widgets/multiple-region-selector.php:147 msgid "You did not enter your city. Your city is required." msgstr "Você não digitou sua cidade. Sua cidade é necessário." -#: frontend/page-place-ad.php:1116 -#: includes/helpers/widgets/multiple-region-selector.php:126 +#: frontend/page-place-ad.php:1119 +#: includes/helpers/widgets/multiple-region-selector.php:146 msgid "You did not enter your county/village. Your county/village is required." msgstr "" "Você não especificou o seu município / vila. O seu município / vila é " "necessária." -#: frontend/page-place-ad.php:1123 +#: frontend/page-place-ad.php:1126 msgid "You did not enter the price of your item. The item price is required." msgstr "Você não entrou no preço do seu item. O preço do item é necessária." -#: frontend/page-place-ad.php:1129 +#: frontend/page-place-ad.php:1132 msgid "" "You have entered an invalid item price. Make sure your price contains " "numbers only. Please do not include currency symbols." @@ -1786,18 +1880,18 @@ msgstr "" "Você digitou um preço do item inválido. Verifique se o seu preço contém " "apenas números. Por favor, não incluem símbolos de moeda." -#: frontend/page-place-ad.php:1147 +#: frontend/page-place-ad.php:1150 msgid "You did not accept the terms of service" msgstr "Você não aceitou os termos de serviço" -#: frontend/page-place-ad.php:1163 +#: frontend/page-place-ad.php:1166 msgid "" "Your Ad was flagged as spam. Please contact the administrator of this site." msgstr "" "Seu anúncio foi marcado como spam. Entre em contato com o administrador " "deste site." -#: frontend/page-place-ad.php:1354 +#: frontend/page-place-ad.php:1357 msgid "" "We were unable to find a Payment Transaction assigned to this operation. No " "images can be added at this time." @@ -1805,13 +1899,13 @@ msgstr "" "Não fomos capazes de encontrar uma operação de pagamento atribuído a esta " "operação. Sem imagens podem ser adicionados neste momento." -#: frontend/page-place-ad.php:1361 +#: frontend/page-place-ad.php:1364 msgid "The specified Ad doesn't exists. No images can be added at this time." msgstr "" "O anúncio especificado não existe. Sem imagens podem ser adicionados neste " "momento." -#: frontend/page-place-ad.php:1440 frontend/page-place-ad.php:1492 +#: frontend/page-place-ad.php:1443 frontend/page-place-ad.php:1495 #: includes/frontend/class-submit-listing-page.php:393 msgid "" "We were unable to find a Payment Transaction assigned to this operation." @@ -1819,18 +1913,18 @@ msgstr "" "Não fomos capazes de encontrar uma operação de pagamento atribuído a esta " "operação." -#: frontend/page-place-ad.php:1447 frontend/page-place-ad.php:1499 +#: frontend/page-place-ad.php:1450 frontend/page-place-ad.php:1502 #: frontend/page-renew-ad.php:408 #: includes/frontend/class-submit-listing-page.php:400 msgid "The Ad associated with this transaction doesn't exists." msgstr "O anúncio associado a esta operação não existe." -#: frontend/page-renew-ad.php:73 +#: frontend/page-renew-ad.php:72 #, fuzzy msgid "That Ad doesn't need to be renewed." msgstr "O anúncio especificado não precisa ser renovado." -#: frontend/page-renew-ad.php:78 +#: frontend/page-renew-ad.php:77 msgid "" "There was an error trying to renew your Ad. The URL is not valid. Please " "contact the Administrator of this site for further assistance." @@ -1838,7 +1932,7 @@ msgstr "" "Houve um erro ao tentar renovar o seu anúncio. A URL não é válido. Entre em " "contato com o administrador do site para obter mais assistência." -#: frontend/page-renew-ad.php:94 +#: frontend/page-renew-ad.php:93 msgid "" "You can't renew your Ad at this time because the payment associated with " "this transaction failed (see reasons below)." @@ -1846,7 +1940,7 @@ msgstr "" "Você não pode renovar o seu anúncio neste momento porque o pagamento " "associado a esta operação falhou (ver razões abaixo)." -#: frontend/page-renew-ad.php:117 +#: frontend/page-renew-ad.php:116 msgid "" "The Ad was posted under a Payment Term that no longer exists or is disabled. " "The Ad can't be renewed." @@ -1854,11 +1948,11 @@ msgstr "" "O anúncio foi publicado sob uma condição de pagamento que não existe mais ou " "está desativado. O anúncio não pode ser renovado." -#: frontend/page-renew-ad.php:154 +#: frontend/page-renew-ad.php:153 msgid "You can see your Ad here" msgstr "Você pode ver o seu anúncio aqui" -#: frontend/page-renew-ad.php:200 +#: frontend/page-renew-ad.php:201 msgid "" "You are trying to renew your Ad using a different Payment Term. That's not " "allowed." @@ -1979,7 +2073,7 @@ msgstr "Vendedor" msgid "Visit Website" msgstr "Visite o site" -#: frontend/placeholders.php:655 includes/functions/listings.php:405 +#: frontend/placeholders.php:655 includes/functions/listings.php:415 msgid "Location" msgstr "Localização" @@ -2051,30 +2145,30 @@ msgstr "" "Houve um problema durante a tentativa de um cliente para enviar o pagamento. " "Os detalhes da transação são mostrados abaixo" -#: frontend/templates/email-abort-payment-admin.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:12 msgid "User Name" msgstr "Nome de usuario" -#: frontend/templates/email-abort-payment-admin.tpl.php:10 +#: frontend/templates/email-abort-payment-admin.tpl.php:13 msgid "User Login" msgstr "Login de Usuário" -#: frontend/templates/email-abort-payment-admin.tpl.php:11 +#: frontend/templates/email-abort-payment-admin.tpl.php:14 msgid "User Email" msgstr "usuario E-mail" -#: frontend/templates/email-abort-payment-admin.tpl.php:15 +#: frontend/templates/email-abort-payment-admin.tpl.php:18 #: includes/admin/import/class-csv-importer-columns.php:219 msgid "Payment Term Type" msgstr "Pagamento Tipo Termo" -#: frontend/templates/email-abort-payment-admin.tpl.php:16 +#: frontend/templates/email-abort-payment-admin.tpl.php:19 #: includes/admin/import/class-csv-importer-columns.php:207 msgid "Payment Term ID" msgstr "Pagamento ID Term" -#: frontend/templates/email-abort-payment-admin.tpl.php:17 -#: frontend/templates/email-abort-payment-user.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:20 +#: frontend/templates/email-abort-payment-user.tpl.php:12 msgid "Payment transaction ID" msgstr "Pagamento ID da transação" @@ -2084,11 +2178,11 @@ msgid "Additional Details" msgstr "detalhes adicionais " #: frontend/templates/email-ad-enabled-user.tpl.php:3 -#: frontend/templates/email-send-ad-access-key.tpl.php:1 +#: frontend/templates/email-send-ad-access-key.tpl.php:3 msgid "Hello %s," msgstr "Olá, %s ." -#: frontend/templates/email-ad-enabled-user.tpl.php:6 +#: frontend/templates/email-ad-enabled-user.tpl.php:8 msgid "" "Your Ad \"%1$s\" was recently approved by the admin. You should be able to " "see the Ad published here: %2$s." @@ -2156,8 +2250,8 @@ msgstr "" msgid "Ad Information" msgstr "Informações ad" -#: frontend/templates/email-ad-updated-user.tpl.php:18 -#: frontend/templates/email-place-ad-success-user.tpl.php:45 +#: frontend/templates/email-ad-updated-user.tpl.php:20 +#: frontend/templates/email-place-ad-success-user.tpl.php:47 msgid "" "If you have questions about your listing contact %s. Thank you for your " "business." @@ -2198,21 +2292,22 @@ msgid "The next link will take you to a page where you can edit the listing:" msgstr "" "O próximo link irá levá-lo para uma página onde você pode editar a lista:" -#: frontend/templates/email-send-ad-access-key.tpl.php:3 +#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#, fuzzy msgid "" -"Below you will find the access key for your Ad \"%s\" associated to the " +"Below you will find the access key for your Ad \"%s\" associated with the " "email address %s." msgstr "" "Abaixo, você vai encontrar a chave de acesso para o seu anúncio\"%s\" " "associada ao endereço de e-mail %s ." -#: frontend/templates/email-send-ad-access-key.tpl.php:6 +#: frontend/templates/email-send-ad-access-key.tpl.php:10 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:13 #: templates/admin/view-listing-admin-page.tpl.php:11 msgid "Access Key" msgstr "Chave de acesso" -#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#: frontend/templates/email-send-ad-access-key.tpl.php:11 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:14 msgid "Edit Link:" msgstr "Editar link:" @@ -2248,6 +2343,12 @@ msgstr "Esqueceu sua senha?" msgid "Classifieds Menu" msgstr "Classificados menu" +#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 +#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 +#, fuzzy +msgid "Complete Payment" +msgstr "O pagamento completo" + #: frontend/templates/page-buy-credits-final-step.tpl.php:7 msgid "" "The credit in your account can be used to pay for posting your Ads. You can " @@ -2264,9 +2365,9 @@ msgstr "Selecione um Plano de Crédito" #: frontend/templates/page-buy-credits-select-credit-plan-step.tpl.php:18 #: frontend/templates/page-renew-ad-order-step.tpl.php:27 -#: frontend/templates/page-reply-to-ad.tpl.php:43 +#: frontend/templates/page-reply-to-ad.tpl.php:48 #: frontend/templates/payments-billing-form.tpl.php:124 -#: frontend/templates/payments-checkout-page.tpl.php:28 +#: frontend/templates/payments-checkout-page.tpl.php:27 #: frontend/templates/payments-payment-completed-page.tpl.php:18 msgid "Continue" msgstr "Continuar" @@ -2297,27 +2398,27 @@ msgstr "Reenviar chave de acesso do anúncio" msgid "Enter Ad Details" msgstr "Digite Detalhes do anúncio" -#: frontend/templates/page-place-ad-details-step.tpl.php:35 +#: frontend/templates/page-place-ad-details-step.tpl.php:36 #: includes/admin/import/class-csv-importer-columns.php:79 #: includes/admin/listings/class-listing-owner-metabox.php:59 msgid "Ad Owner" msgstr "proprietário do anúncio" -#: frontend/templates/page-place-ad-details-step.tpl.php:41 -#: frontend/templates/page-place-ad-order-step.tpl.php:60 +#: frontend/templates/page-place-ad-details-step.tpl.php:43 +#: frontend/templates/page-place-ad-order-step.tpl.php:61 msgid "User" msgstr "Usuários" -#: frontend/templates/page-place-ad-details-step.tpl.php:42 -#: frontend/templates/page-place-ad-order-step.tpl.php:61 +#: frontend/templates/page-place-ad-details-step.tpl.php:44 +#: frontend/templates/page-place-ad-order-step.tpl.php:62 msgid "Select an User owner for this Ad" msgstr "Escolha um proprietário do usuário para este anúncio" -#: frontend/templates/page-place-ad-details-step.tpl.php:77 +#: frontend/templates/page-place-ad-details-step.tpl.php:81 msgid "Add Details and Contact Information" msgstr "Adicionar detalhes e informações de contato" -#: frontend/templates/page-place-ad-order-step.tpl.php:73 +#: frontend/templates/page-place-ad-order-step.tpl.php:75 msgid "Please select a payment term for your Ad" msgstr "Por favor seleccione um prazo de pagamento para o seu anúncio" @@ -2362,7 +2463,12 @@ msgstr "" msgid "Your Ad has been renewed" msgstr "Seu anúncio foi renovada" -#: frontend/templates/page-renew-ad.tpl.php:15 +#: frontend/templates/page-renew-ad-order-step.tpl.php:6 +#, fuzzy +msgid "Select Payment Term" +msgstr "Select Prazo de Pagamento" + +#: frontend/templates/page-renew-ad.tpl.php:13 msgid "" "Please click the payment button below to proceed with Payment for your Ad " "renewal. You will be asked to pay %s." @@ -2370,19 +2476,19 @@ msgstr "" "Por favor, clique no botão de pagamento abaixo para prosseguir com o " "pagamento da sua renovação Ad. Você será solicitado a pagar %s ." -#: frontend/templates/page-reply-to-ad.tpl.php:7 +#: frontend/templates/page-reply-to-ad.tpl.php:10 msgid "You are responding to Ad: %s." msgstr "Você está respondendo ao anúncio: %s ." -#: frontend/templates/page-reply-to-ad.tpl.php:18 +#: frontend/templates/page-reply-to-ad.tpl.php:24 msgid "Your name" msgstr "Seu nome" -#: frontend/templates/page-reply-to-ad.tpl.php:24 +#: frontend/templates/page-reply-to-ad.tpl.php:30 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: frontend/templates/page-reply-to-ad.tpl.php:30 +#: frontend/templates/page-reply-to-ad.tpl.php:36 msgid "Your message" msgstr "Sua mensagem" @@ -2390,19 +2496,19 @@ msgstr "Sua mensagem" msgid "Search for ads containing this word or phrase" msgstr "Pesquise por anúncios contêndo esta palavra ou frase" -#: frontend/templates/page-search-ads.tpl.php:37 +#: frontend/templates/page-search-ads.tpl.php:41 msgid "For ads posted by" msgstr "Para anúncios postados por" -#: frontend/templates/page-search-ads.tpl.php:39 +#: frontend/templates/page-search-ads.tpl.php:43 msgid "All Users" msgstr "Todos os Usuários" -#: frontend/templates/page-search-ads.tpl.php:48 +#: frontend/templates/page-search-ads.tpl.php:55 msgid "Min price" msgstr "Preço mínimo" -#: frontend/templates/page-search-ads.tpl.php:52 +#: frontend/templates/page-search-ads.tpl.php:59 msgid "Max price" msgstr "Preço máximo" @@ -2410,9 +2516,18 @@ msgstr "Preço máximo" msgid "Pay With 2Checkout" msgstr "Pagar com 2Checkout" -#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:791 -#: includes/admin/class-listings-personal-data-provider.php:115 -#: includes/admin/class-listings-personal-data-provider.php:125 +#: frontend/templates/payments-billing-form.tpl.php:1 +#, fuzzy +msgid "" +"Please fill in the billing information in the form below to place your " +"payment." +msgstr "" +"Por favor, preencha as informações de cobrança no formulário abaixo para " +"colocar o seu pagamento." + +#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:797 +#: includes/admin/class-listings-personal-data-provider.php:117 +#: includes/admin/class-listings-personal-data-provider.php:127 #: includes/admin/import/class-csv-importer-columns.php:230 msgid "Country" msgstr "Pais" @@ -2450,15 +2565,15 @@ msgid "Address Line 2" msgstr "Linha de endereço 2" #: frontend/templates/payments-billing-form.tpl.php:92 -#: includes/admin/class-listings-personal-data-provider.php:116 -#: includes/admin/class-listings-personal-data-provider.php:126 +#: includes/admin/class-listings-personal-data-provider.php:118 +#: includes/admin/class-listings-personal-data-provider.php:128 #: includes/admin/import/class-csv-importer-columns.php:238 msgid "State" msgstr "Estado" -#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:811 -#: includes/admin/class-listings-personal-data-provider.php:117 -#: includes/admin/class-listings-personal-data-provider.php:127 +#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:817 +#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:129 #: includes/admin/import/class-csv-importer-columns.php:260 msgid "City" msgstr "Cidade" @@ -2472,14 +2587,57 @@ msgstr "CEP" msgid "Email" msgstr "O e-mail" +#: frontend/templates/payments-credit-plans-table.tpl.php:7 +#, fuzzy +msgid "" +"You can additionally purchase a Credit Plan to add credit to your account. " +"If you select to pay using credits, the price of the selected payment term " +"will be deducted from your account balance after you have completed payment." +msgstr "" +"Além disso, você pode comprar um plano de crédito para adicionar crédito à " +"sua conta. Se você optar por pagar com créditos, o preço do prazo de " +"pagamento selecionado será deduzido do saldo de sua conta depois de ter " +"concluído o pagamento." + #: frontend/templates/payments-credit-plans-table.tpl.php:22 msgid "No credit plans available." msgstr "Não há planos de crédito disponível." +#: frontend/templates/payments-credit-plans-table.tpl.php:51 +#, fuzzy +msgid "clear selection" +msgstr "Seleção clara" + +#: frontend/templates/payments-payment-completed-page.tpl.php:2 +#, fuzzy +msgid "Transaction Details" +msgstr "Detalhes da transação" + +#: frontend/templates/payments-payment-page.tpl.php:3 +#, fuzzy +msgid "You are about to pay for the following items." +msgstr "Você está prestes a pagar para os seguintes itens." + +#: frontend/templates/payments-payment-page.tpl.php:5 +#, fuzzy +msgid "Payment Terms" +msgstr "Condições de Pagamento" + #: frontend/templates/payments-paypal-payment-button.tpl.php:30 msgid "Make payments with PayPal - it's fast, free and secure!" msgstr "Faça pagamentos com PayPal - é rápido, grátis e seguro!" +#: frontend/templates/payments-transaction-items-table.tpl.php:4 +#: frontend/templates/payments-transaction-items-table.tpl.php:13 +#, fuzzy +msgid "Item" +msgstr "Correlações" + +#: frontend/templates/payments-transaction-items-table.tpl.php:34 +#, fuzzy +msgid "Total Amount (credit)" +msgstr "Valor Total (crédito)" + #: frontend/templates/widget-categories-form.tpl.php:9 msgid "Hide empty categories." msgstr "Esconder categorias vazias." @@ -2552,7 +2710,7 @@ msgstr "Mostrar campo palavra-chave?" msgid "Show Posted By field?" msgstr "Mostrar Publicado por campo?" -#: frontend/templates/widget-search-form.tpl.php:28 +#: frontend/templates/widget-search-form.tpl.php:32 msgid "Show Category field?" msgstr "Mostrar campo Categoria?" @@ -2568,23 +2726,23 @@ msgstr "AWPCP Categorias" msgid "Ad Categories" msgstr "Categorias de anúncios" -#: frontend/widget-latest-ads.php:13 +#: frontend/widget-latest-ads.php:17 msgid "AWPCP Latest Ads" msgstr "AWPCP Últimos Anúncios" -#: frontend/widget-latest-ads.php:14 +#: frontend/widget-latest-ads.php:18 msgid "Displays a list of latest Ads" msgstr "Exibe uma lista de novos anúncios" -#: frontend/widget-latest-ads.php:30 +#: frontend/widget-latest-ads.php:34 msgid "Latest Ads" msgstr "Últimos Anúncios" -#: frontend/widget-latest-ads.php:72 +#: frontend/widget-latest-ads.php:76 msgid "There are currently no ads to show." msgstr "Não há anúncios para mostrar." -#: frontend/widget-latest-ads.php:114 +#: frontend/widget-latest-ads.php:118 msgid "Read more" msgstr "Leia mais" @@ -2616,67 +2774,67 @@ msgstr "Todos os nomes de contato" msgid "Select Option" msgstr "Selecione a Opção" -#: frontend/widget-search.php:105 +#: frontend/widget-search.php:106 msgid "Search by keyword" msgstr "Busca por palavra-chave" -#: frontend/widget-search.php:119 +#: frontend/widget-search.php:121 msgid "Search by Category" msgstr "Busca por categoria" -#: frontend/widget-search.php:137 +#: frontend/widget-search.php:141 msgid "Search" msgstr "Pesquisa" -#: functions.php:427 +#: functions.php:431 msgid "%s ago" msgstr "%s atrás" -#: functions.php:604 +#: functions.php:610 msgid "Ads per page:" msgstr "Anúncios por páginas:" -#: functions.php:621 +#: functions.php:627 msgid "Page {current_page_number} of {number_of_pages}" msgstr "Página {current_page_number} de {number_of_pages}" -#: functions.php:732 +#: functions.php:738 msgid "None" msgstr "Nenhum" -#: functions.php:792 +#: functions.php:798 msgid "separate countries by commas" msgstr "países separados por vírgulas" -#: functions.php:801 +#: functions.php:807 msgid "State/Province" msgstr "Estado / Província" -#: functions.php:802 +#: functions.php:808 msgid "separate states by commas" msgstr "estados separados por vírgulas" -#: functions.php:812 +#: functions.php:818 msgid "separate cities by commas" msgstr "cidades separadas por vírgulas" -#: functions.php:821 +#: functions.php:827 msgid "County/Village/Other" msgstr "País / Aldeia / Outros" -#: functions.php:822 +#: functions.php:828 msgid "separate counties by commas" msgstr "locais separados por vírgulas" -#: functions.php:1036 +#: functions.php:1050 msgid "-- Choose a Country --" msgstr "Escolha um país" -#: functions.php:1507 templates/admin/main-classifieds-admin-page.tpl.php:58 +#: functions.php:1537 templates/admin/main-classifieds-admin-page.tpl.php:58 msgid "Free" msgstr "Grátis" -#: functions.php:1852 templates/components/media-center.tpl.php:14 +#: functions.php:1893 templates/components/media-center.tpl.php:14 msgid "" "The images or files with pale red background have been rejected by an " "administrator user. Likewise, files with a pale yellow background are " @@ -2688,7 +2846,7 @@ msgstr "" "pálido aguardam aprovação. Os arquivos que estão aguardando aprovação e " "rejeitadas arquivos, não pode ser mostrado no frontend." -#: functions.php:1871 +#: functions.php:1912 msgid "" "This version of AWPCP %1$s module is not compatible with AWPCP version %2$s. " "Please get AWPCP %1$s %3$s or newer!" @@ -2696,55 +2854,55 @@ msgstr "" "Esta versão do AWPCP %1$s módulo não é compatível com a versão AWPCP %2$s . " "Favor entrar AWPCP %1$s %3$s ou mais recente!" -#: functions.php:1873 +#: functions.php:1914 msgid "Error" msgstr "Erro" -#: functions.php:2231 +#: functions.php:2287 msgid "No errors." msgstr "Sem erros." -#: functions.php:2232 +#: functions.php:2288 msgid "The file is larger than upload_max_filesize." msgstr "O arquivo é maior que upload_max_filesize." -#: functions.php:2233 +#: functions.php:2289 msgid "The file is larger than form MAX_FILE_SIZE." msgstr "O arquivo é maior do que a forma MAX_FILE_SIZE." -#: functions.php:2234 +#: functions.php:2290 msgid "The file was only partially uploaded." msgstr "O arquivo foi enviado apenas parcialmente." -#: functions.php:2235 +#: functions.php:2291 msgid "No file was uploaded." msgstr "Nenhum arquivo foi enviado." -#: functions.php:2236 +#: functions.php:2292 msgid "Missing temporary directory." msgstr "Faltando diretório temporário." -#: functions.php:2237 +#: functions.php:2293 msgid "Can't write file to disk." msgstr "Não é possível gravar arquivo em disco." -#: functions.php:2238 +#: functions.php:2294 msgid "The file upload was stopped by extension." msgstr "O upload do arquivo foi parado por extensão." -#: functions.php:2476 +#: functions.php:2536 msgid "Your Ad \"%s\" has been approved" msgstr "Seu anúncio \"%s\" foi aprovado" -#: functions.php:2499 +#: functions.php:2559 msgid "Your Ad \"%s\" has been successfully updated" msgstr "Seu anúncio \"%s\" foi atualizado com sucesso" -#: functions.php:2521 +#: functions.php:2581 msgid "Images on Ad \"%s\" are awaiting approval" msgstr "Imagens do anúncio \"%s\"estão aguardando aprovação" -#: functions.php:2523 +#: functions.php:2583 msgid "" "Images on Ad \"%s\" are awaiting approval. You can approve the images going " "to the Manage Images section for that Ad and clicking the \"Enable\" button " @@ -2754,13 +2912,13 @@ msgstr "" "imagens que vão para a seção Gerenciar Imagens para esse anúncio e clicando " "no \"Ativar\" botão abaixo de cada imagem. Clique aqui para continuar: %s ." -#: functions.php:2526 +#: functions.php:2586 msgid "The Ad \"%s\" is awaiting approval" msgstr "O Anúncio \"%s\" está aguardando aprovação" #. translators: %1$s is the listing title. %2$s is the URL for managing #. listing. -#: functions.php:2529 includes/functions/notifications.php:157 +#: functions.php:2589 includes/functions/notifications.php:156 msgid "" "The Ad \"%1$s\" is awaiting approval. You can approve the Ad going to the " "Classified edit section and clicking the \"Publish\" button. Click here to " @@ -2768,7 +2926,7 @@ msgid "" msgstr "" #. translators: %s is the URL for managing listing images. -#: functions.php:2536 includes/functions/notifications.php:165 +#: functions.php:2596 includes/functions/notifications.php:164 msgid "" "Additionally, You can approve the images going to the Manage Images section " "for that Ad and clicking the \"Enable\" button below each image. Click here " @@ -2778,27 +2936,27 @@ msgstr "" "Imagens para esse anúncio e clicando no \\ \"Activar \" botão abaixo de cada " "imagem. Clique aqui para continuar: %s ." -#: functions.php:3068 +#: functions.php:3123 msgid "Email sent %s." msgstr "E-mail enviado %s ." -#: functions.php:3199 +#: functions.php:3254 msgid "Not Installed" msgstr "Não instalado" -#: functions.php:3203 +#: functions.php:3258 msgid "Installed" msgstr "Instalado" -#: functions.php:3211 +#: functions.php:3266 msgid "SSL Support: Yes." msgstr "Suporta SSL: Sim." -#: functions.php:3213 +#: functions.php:3268 msgid "SSL Support: No." msgstr "Suporta SSL: Não." -#: functions.php:3216 +#: functions.php:3271 msgid "OpenSSL version:" msgstr "OpenSSL versão:" @@ -2818,58 +2976,58 @@ msgstr "Campos do Classificado" msgid "Search for listings matching" msgstr "Pesquisar por anúncios correspondentes" -#: includes/admin/class-listings-personal-data-provider.php:110 +#: includes/admin/class-listings-personal-data-provider.php:112 msgid "Classified ID" msgstr "ID do classificado" -#: includes/admin/class-listings-personal-data-provider.php:111 +#: includes/admin/class-listings-personal-data-provider.php:113 msgid "Contact Name" msgstr "Nome do Contato" -#: includes/admin/class-listings-personal-data-provider.php:112 +#: includes/admin/class-listings-personal-data-provider.php:114 msgid "Contact Phone Number" msgstr "Número do Fone do Contato" -#: includes/admin/class-listings-personal-data-provider.php:113 +#: includes/admin/class-listings-personal-data-provider.php:115 msgid "Contact Phone Number Digits" msgstr "Dígitos do Número do Fone do Contato" -#: includes/admin/class-listings-personal-data-provider.php:114 +#: includes/admin/class-listings-personal-data-provider.php:116 msgid "Contact Email" msgstr "E-mail de contato" -#: includes/admin/class-listings-personal-data-provider.php:118 -#: includes/admin/class-listings-personal-data-provider.php:128 +#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:130 #: includes/admin/import/class-csv-importer-columns.php:249 msgid "County" msgstr "Município" -#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:121 msgid "Website URL" msgstr "URL do site" -#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:122 #: includes/admin/class-payment-personal-data-provider.php:47 msgid "Payer Email" msgstr "Email do Pagador" -#: includes/admin/class-listings-personal-data-provider.php:121 +#: includes/admin/class-listings-personal-data-provider.php:123 msgid "Author IP" msgstr "IP do Autor" -#: includes/admin/class-listings-personal-data-provider.php:132 +#: includes/admin/class-listings-personal-data-provider.php:134 msgid "URL" msgstr "URL (Link)" -#: includes/admin/class-listings-personal-data-provider.php:146 +#: includes/admin/class-listings-personal-data-provider.php:148 msgid "Classifieds Listings" msgstr "Anúncios Classificados" -#: includes/admin/class-listings-personal-data-provider.php:157 +#: includes/admin/class-listings-personal-data-provider.php:159 msgid "Classifieds Media" msgstr "Mídia dos Classificados" -#: includes/admin/class-listings-personal-data-provider.php:218 +#: includes/admin/class-listings-personal-data-provider.php:220 msgid "" "An unknown error occurred while trying to delete information for classified " "{listing_id}." @@ -2892,7 +3050,7 @@ msgid "Contact Address" msgstr "Endereço de Contato" #: includes/admin/class-user-personal-data-provider.php:55 -#: includes/settings/class-display-settings.php:476 +#: includes/settings/class-display-settings.php:475 msgid "Contact Phone" msgstr "Fone do Contato" @@ -2997,8 +3155,8 @@ msgstr "" "arquivo ZIP anexo." #: includes/admin/import/class-importer-form-steps.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:17 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:88 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:14 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:80 msgid "Upload Source Files" msgstr "Carregar Arquivos Fonte" @@ -3007,12 +3165,12 @@ msgid "Configuration" msgstr "Configuração" #: includes/admin/import/class-importer-form-steps.php:29 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:173 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:176 msgid "Import" msgstr "Importar" #: includes/admin/import/class-importer-form-steps.php:32 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:172 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:175 msgid "Test Import" msgstr "Importação de teste" @@ -3059,7 +3217,7 @@ msgstr[0] "" msgstr[1] "" #: includes/admin/listings/class-listing-owner-metabox.php:62 -#: templates/frontend/order-submit-listing-section.tpl.php:45 +#: templates/frontend/order-submit-listing-section.tpl.php:42 msgid "Please select a user" msgstr "Por favor, selecione um usuário" @@ -3496,44 +3654,44 @@ msgstr "XML Sitemap" msgid "ZIP Code Search Module" msgstr "ZIP Code Search Module" -#: includes/class-awpcp.php:1445 +#: includes/class-awpcp.php:1436 msgid "This field is required." msgstr "Este campo é obrigatório." -#: includes/class-awpcp.php:1446 +#: includes/class-awpcp.php:1437 #: includes/form-fields/class-form-fields-validator.php:101 #: includes/frontend/class-edit-listing-page.php:273 #: includes/frontend/class-edit-listing-page.php:350 -#: includes/settings/class-payment-general-settings.php:158 +#: includes/settings/class-payment-general-settings.php:157 msgid "Please enter a valid email address." msgstr "Por favor insira um endereço de e-mail válido." -#: includes/class-awpcp.php:1447 includes/class-awpcp.php:1448 +#: includes/class-awpcp.php:1438 includes/class-awpcp.php:1439 msgid "Please enter a valid URL." msgstr "Por favor, insira uma URL válida." -#: includes/class-awpcp.php:1449 +#: includes/class-awpcp.php:1440 msgid "Please enter a valid number." msgstr "por favor insira um número válido." -#: includes/class-awpcp.php:1450 +#: includes/class-awpcp.php:1441 msgid "Please enter a valid amount." msgstr "Por favor insira um Valor válido!'" -#: includes/class-awpcp.php:1451 +#: includes/class-awpcp.php:1442 msgid "" "You have reached the maximum allowed categories for the selected fee plan." msgstr "" -#: includes/class-awpcp.php:1470 +#: includes/class-awpcp.php:1461 msgid "There are files currently being uploaded." msgstr "Há arquivos atualmente sendo carregados." -#: includes/class-awpcp.php:1471 +#: includes/class-awpcp.php:1462 msgid "There are files pending to be uploaded." msgstr "Há arquivos pendentes para ser carregado." -#: includes/class-awpcp.php:1472 +#: includes/class-awpcp.php:1463 msgid "You haven't uploaded any images or files." msgstr "Você não adicionou imagens ou arquivos." @@ -3590,7 +3748,7 @@ msgstr "" "Sua licença para é válido, mas já está ativo em outro site. " "Contacte apoio cliente para obter mais assistência." -#: includes/class-listings-api.php:106 includes/class-listings-api.php:306 +#: includes/class-listings-api.php:106 includes/class-listings-api.php:310 msgid "" "There was an unexpected error trying to save the listing details. Please try " "again or contact an administrator." @@ -3598,7 +3756,7 @@ msgstr "" "Houve um erro inesperado tentando salvar detalhes do anúncio. Por favor " "tente novamente ou contate um administrador." -#: includes/class-listings-api.php:197 +#: includes/class-listings-api.php:199 msgid "" "To avoid overwritting existing metadata, use fill_default_listing_metadata() " "instead." @@ -3606,11 +3764,11 @@ msgstr "" "Para evitar a substituição de metadados existentes, use " "fill_default_listing_metadata()" -#: includes/class-listings-api.php:302 +#: includes/class-listings-api.php:306 msgid "There was an error trying to save the listing details:" msgstr "Houve um erro tentando salvar detalhes do anúncio:" -#: includes/class-listings-api.php:730 +#: includes/class-listings-api.php:734 msgid "" "If you have uploaded images your images will not show up until an admin has " "approved them." @@ -3657,19 +3815,19 @@ msgstr "" "contém representação das configurações do JSON? Por favor, tente de novo ou " "contate o suporte ao cliente com uma cópia do seu arquivo." -#: includes/credit-plan.php:109 includes/payment-term.php:133 +#: includes/credit-plan.php:114 includes/payment-term.php:133 msgid "The name of the plan is required." msgstr "O nome do plano é necessário." -#: includes/credit-plan.php:112 includes/payment-term.php:151 +#: includes/credit-plan.php:117 includes/payment-term.php:151 msgid "The number of credits must be greater than zero." msgstr "O número de créditos deve ser maior que zero." -#: includes/credit-plan.php:115 +#: includes/credit-plan.php:120 msgid "The price must be greater or equal than zero." msgstr "O preço deve ser maior ou igual a zero." -#: includes/credit-plan.php:153 +#: includes/credit-plan.php:158 msgid "The Credit Plan doesn't exist." msgstr "O plano de crédito não existe." @@ -3759,7 +3917,7 @@ msgstr "" msgid "Please read and accept the Terms of Service." msgstr "" -#: includes/frontend/class-captcha.php:70 +#: includes/frontend/class-captcha.php:77 msgid "" "An unknown error ocurred trying to validate the answer to the CAPTCHA " "challenge." @@ -3783,14 +3941,14 @@ msgstr "" "Você não está autorizado para esta ação. Somente a usuários logados é " "permitido submeter classificados." -#: includes/frontend/class-default-captcha-provider.php:59 +#: includes/frontend/class-default-captcha-provider.php:76 msgid "" "You did not solve the math problem. Please solve the math problem to proceed." msgstr "" "Você não resolveu o problema de matemática. Por favor, resolver o problema " "de matemática para prosseguir." -#: includes/frontend/class-default-captcha-provider.php:64 +#: includes/frontend/class-default-captcha-provider.php:81 msgid "Your solution to the math problem was incorrect. Please try again." msgstr "" "Sua solução para o problema de matemática estava incorreta. Por favor, tente " @@ -3959,15 +4117,15 @@ msgstr "O termo de pagamento selecionado não pode ser encontrado." #. translators: %s will become an A HTML tag pointing to reCAPTCHA admin #. console. -#: includes/frontend/class-recaptcha-provider.php:47 +#: includes/frontend/class-recaptcha-provider.php:68 msgid "To use reCAPTCHA you must get an API key from %s." msgstr "Para usar o reCAPTCHA você deve obter uma chave de API de %s ." -#: includes/frontend/class-recaptcha-provider.php:85 +#: includes/frontend/class-recaptcha-provider.php:106 msgid "Your answers couldn't be verified by the reCAPTCHA server." msgstr "Suas respostas não puderam ser verificadas pelo servidor reCAPTCHA." -#: includes/frontend/class-recaptcha-v2.php:51 +#: includes/frontend/class-recaptcha-v2.php:78 msgid "" "There was an error trying to verify the reCAPTCHA answer. " msgstr "" @@ -3982,8 +4140,8 @@ msgid "Login/Registration" msgstr "Login / Registro" #: includes/frontend/class-submit-listing-form-steps.php:48 -#: includes/ui/class-category-selector.php:125 -#: templates/components/category-selector.tpl.php:16 +#: includes/ui/class-category-selector.php:147 +#: templates/components/category-selector.tpl.php:15 msgid "Select a Category" msgstr "Selecione uma categoria: " @@ -4137,12 +4295,12 @@ msgstr "O arquivo %s não pode ser movido para o diretório de destino." msgid "Could not create resized versions of image %s." msgstr "Não foi possível criar versões redimensionadas de imagem %s ." -#: includes/functions/format.php:67 +#: includes/functions/format.php:50 msgid "Classifieds Management System" msgstr "Sistema de Gestão Classificados" #. translators: example: and -#: includes/functions/format.php:84 +#: includes/functions/format.php:67 msgid " and " msgstr " and " @@ -4194,22 +4352,22 @@ msgstr "Por favor digite os detalhes do seu anúncio." msgid "Top Level Category" msgstr "Top Categoria Nível" -#: includes/functions/listings.php:278 -#: includes/listings/class-listings-content-renderer.php:169 +#: includes/functions/listings.php:288 +#: includes/listings/class-listings-content-renderer.php:182 msgid "Are you sure you want to flag this ad?" msgstr "Tem certeza de que deseja sinalizar esse anúncio?" -#: includes/functions/listings.php:279 -#: includes/listings/class-listings-content-renderer.php:170 +#: includes/functions/listings.php:289 +#: includes/listings/class-listings-content-renderer.php:183 msgid "This Ad has been flagged." msgstr "Este anúncio foi sinalizado." -#: includes/functions/listings.php:280 -#: includes/listings/class-listings-content-renderer.php:171 +#: includes/functions/listings.php:290 +#: includes/listings/class-listings-content-renderer.php:184 msgid "An error occurred while trying to flag the Ad." msgstr "Ocorreu um erro ao tentar a bandeira do anúncio." -#: includes/functions/listings.php:317 +#: includes/functions/listings.php:327 msgid "" "Sorry, that listing is not available. Please try browsing or searching " "existing listings." @@ -4217,7 +4375,7 @@ msgstr "" "Desculpe, essa listagem não está disponível. Por favor, tente navegar ou " "pesquisar listagens existentes." -#: includes/functions/listings.php:334 +#: includes/functions/listings.php:344 msgid "" "The Ad you are trying to view is pending approval. Once the Administrator " "approves it, it will be active and visible." @@ -4225,12 +4383,12 @@ msgstr "" "O anúncio que você está tentando exibir é pendente de aprovação. Uma vez que " "o administrador aprovar, será activa e visível." -#: includes/functions/listings.php:340 +#: includes/functions/listings.php:350 #: includes/listings/class-listings-content-renderer.php:106 msgid "Your email address was successfully verified." msgstr "O seu endereço de e-mail foi verificada com êxito." -#: includes/functions/listings.php:344 +#: includes/functions/listings.php:354 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the Administrator) and the author can see it." @@ -4238,7 +4396,7 @@ msgstr "" "Este anúncio está atualmente desativado até que o Administrador aprove. " "Somente você (o administrador) eo autor pode vê-lo." -#: includes/functions/listings.php:347 +#: includes/functions/listings.php:357 msgid "" "This Ad is currently disabled until you verify the email address used for " "the contact information. Only you (the author) can see it." @@ -4247,7 +4405,7 @@ msgstr "" "e-mail utilizado para a informação do contato. Somente você (o autor) pode " "vê-lo." -#: includes/functions/listings.php:350 +#: includes/functions/listings.php:360 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the author) can see it." @@ -4265,13 +4423,13 @@ msgid "Listing \"%s\" was updated" msgstr "Listagem \"%s\" foi atualizada" #. translators: %s is the listing title. -#: includes/functions/notifications.php:147 +#: includes/functions/notifications.php:146 msgid "Images on listing \"%s\" are awaiting approval" msgstr "Imagens do perfil \"%s\" está aguardando aprovação" #. translators: %1$s is the listing title. %2$s is the URL for managing listing #. images. -#: includes/functions/notifications.php:150 +#: includes/functions/notifications.php:149 msgid "" "Images on Ad \"%1$s\" are awaiting approval. You can approve the images " "going to the Manage Images section for that Ad and clicking the \"Enable\" " @@ -4279,11 +4437,11 @@ msgid "" msgstr "" #. translators: %s is the listing title. -#: includes/functions/notifications.php:154 +#: includes/functions/notifications.php:153 msgid "Listing \"%s\" is awaiting approval" msgstr "Listagem \"%s\" está aguardando aprovação" -#: includes/functions/notifications.php:202 +#: includes/functions/notifications.php:201 msgid "Listing was flagged" msgstr "Listagem foi marcado" @@ -4302,7 +4460,8 @@ msgid "Missing License Status parameter" msgstr "Parâmetro perdido de Status de Licença" #: includes/helpers/class-easy-digital-downloads.php:53 -msgid "License Status parameter was set to Failed" +#, fuzzy +msgid "License Status parameter was set to Failed" msgstr "" "Parâmetros de Status de Licença foi acertado para Falhou" @@ -4401,7 +4560,7 @@ msgstr[1] "" "usar esse módulo. Entre em contato com o suporte ao cliente e pedir uma " "atualização. Inclua também uma referência a esse erro em sua mensagem." -#: includes/helpers/class-modules-manager.php:217 +#: includes/helpers/class-modules-manager.php:220 msgid "" "The version of AWPCP {modules_names} is not compatible with version " "{awpcp_version}." @@ -4411,11 +4570,11 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:219 +#: includes/helpers/class-modules-manager.php:222 msgid "Please get AWPCP {required_modules_versions} or newer!" msgstr "Por favor otenha {required_modules_versions} ou mais novo!" -#: includes/helpers/class-modules-manager.php:250 +#: includes/helpers/class-modules-manager.php:256 msgid "" "The license for AWPCP is inactive. All features will remain " "disabled until you activate the license. Please go to the para ativá-lo." -#: includes/helpers/class-modules-manager.php:264 +#: includes/helpers/class-modules-manager.php:276 msgid "" "The AWPCP requires a license to be used. All features will " "remain disabled until a valid license is entered. Please go to the Licenças seção Configurações para " "entrar ou atualizar sua licença." -#: includes/helpers/class-modules-manager.php:269 +#: includes/helpers/class-modules-manager.php:284 msgid "" "The license for AWPCP expired. The module will continue to " "work but you will not receive automatic updates when a new version is " @@ -4472,7 +4631,7 @@ msgstr[1] "" "funcionar, mas você não receberá atualizações automáticas quando uma nova " "versão está disponível." -#: includes/helpers/class-modules-manager.php:281 +#: includes/helpers/class-modules-manager.php:299 msgid "" "The AWPCP is currently disabled because it requires you to " "perform a manual upgrade before continuing. Please go to the " @@ -4484,11 +4643,11 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:294 +#: includes/helpers/class-modules-manager.php:312 msgid "The specified module does not exists!." msgstr "O módulo especificado não existe !." -#: includes/helpers/class-recaptcha-v3.php:56 +#: includes/helpers/class-recaptcha-v3.php:78 msgid "" "There was an error trying to analyze the current interaction with reCAPTCHA. " "" @@ -4496,7 +4655,7 @@ msgstr "" "Houve um erro tentando analisar a atual interação com o reCAPTCHA. " "" -#: includes/helpers/class-recaptcha-v3.php:98 +#: includes/helpers/class-recaptcha-v3.php:120 msgid "" "The current interaction was not approved by reCAPTCHA. Please try again." msgstr "" @@ -4564,11 +4723,11 @@ msgstr "" "Houve um erro ao processar o seu pedido de pagamento. Por favor, tente " "novamente ou entre em contato com um administrador." -#: includes/helpers/widgets/class-user-field.php:32 +#: includes/helpers/widgets/class-user-field.php:48 msgid "Select an User" msgstr "Escolha um Utilizador" -#: includes/helpers/widgets/multiple-region-selector.php:123 +#: includes/helpers/widgets/multiple-region-selector.php:143 msgid "" "This particular region is already selected in another field. Please choose " "one or more sub-regions, to make the selection more specific, or change the " @@ -4578,19 +4737,19 @@ msgstr "" "escolha um ou mais sub-regiões, para fazer a seleção mais específico, ou " "alterar a região selecionada." -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Search Region" msgstr "Adicionar Busca Região" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Region" msgstr "Adicionar Estado" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Delete Search Region" msgstr "Excluir pesquisa Região" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Remove Region" msgstr "remover a região" @@ -4664,6 +4823,11 @@ msgstr "" msgid "There was an error trying to update the database." msgstr "Houve um erro ao tentar atualizar o banco de dados." +#: includes/media/class-attachment-action-ajax-handler.php:53 +#, fuzzy +msgid "You are not allowed to perform this action." +msgstr "Você não está autorizado a executar esta ação." + #: includes/media/class-attachment-action-ajax-handler.php:57 msgid "The specified file is not associated with Listing with ID %d." msgstr "O arquivo especificado não está associado a Listagem com ID %d ." @@ -4763,7 +4927,7 @@ msgstr "" "O arquivo é menor que o tamanho mínimo permitido arquivo de " " bytes. O arquivo não foi carregado." -#: includes/media/class-listings-media-uploader-component.php:51 +#: includes/media/class-listings-media-uploader-component.php:56 msgid "" "You can upload images of up to each, " " videos of up to each and " @@ -4773,7 +4937,7 @@ msgstr "" "size> cada, vídeos de até cada e " " outros arquivos de até cada um." -#: includes/media/class-listings-media-uploader-component.php:52 +#: includes/media/class-listings-media-uploader-component.php:57 msgid "" "You can upload images of up to each and " " other files (no videos) of up to each." @@ -4782,7 +4946,7 @@ msgstr "" "size> cada um e outros arquivos (não vídeos) de até " " cada um." -#: includes/media/class-listings-media-uploader-component.php:53 +#: includes/media/class-listings-media-uploader-component.php:58 msgid "" "You can upload images of up to each and " " videos of up to each." @@ -4791,7 +4955,7 @@ msgstr "" "size> cada um e vídeos de até cada " "um." -#: includes/media/class-listings-media-uploader-component.php:54 +#: includes/media/class-listings-media-uploader-component.php:59 msgid "" "You can upload videos of up to each and " " other files (no images) of up to each." @@ -4800,14 +4964,14 @@ msgstr "" "size> cada um e outros arquivos (sem imagens) de até " " cada um." -#: includes/media/class-listings-media-uploader-component.php:55 +#: includes/media/class-listings-media-uploader-component.php:60 msgid "" "You can upload images of up to each." msgstr "" "Você pode fazer o upload imagens de até cada um." -#: includes/media/class-listings-media-uploader-component.php:56 +#: includes/media/class-listings-media-uploader-component.php:61 msgid "" "You can upload files (no videos or images) of up to each." @@ -4815,7 +4979,7 @@ msgstr "" "Você pode fazer o upload arquivos (há vídeos ou imagens) " "de até cada um." -#: includes/media/class-listings-media-uploader-component.php:57 +#: includes/media/class-listings-media-uploader-component.php:62 msgid "" "You can upload videos of up to each." msgstr "" @@ -4913,15 +5077,15 @@ msgstr "A anúncio classificado" msgid "General" msgstr "Geral" -#: includes/models/payment-transaction.php:225 +#: includes/models/payment-transaction.php:232 msgid "The transaction must be assigned to a WordPress user." msgstr "A transação deve ser atribuído a um usuário WordPress." -#: includes/models/payment-transaction.php:238 +#: includes/models/payment-transaction.php:245 msgid "The transaction has no items." msgstr "A transação não tem itens." -#: includes/models/payment-transaction.php:250 +#: includes/models/payment-transaction.php:257 msgid "" "The amount of credit in your account is not enough to pay for the selected " "items. Please choose one of the available Credit Plans in addition to the " @@ -4934,7 +5098,7 @@ msgstr "" "conta a partir de sua página de perfil. O que você precisa %d de crédito " "extra." -#: includes/models/payment-transaction.php:252 +#: includes/models/payment-transaction.php:259 msgid "" "The selected Credit Plan is not enough to pay for the selected items. Please " "choose a bigger Credit Plan or add credit to your account from your Profile " @@ -4945,11 +5109,11 @@ msgstr "" "crédito à sua conta a partir de sua página de perfil. O que você precisa %d " "de crédito extra." -#: includes/models/payment-transaction.php:282 +#: includes/models/payment-transaction.php:289 msgid "You must select a payment method." msgstr "Você deve selecionar um método de pagamento." -#: includes/models/payment-transaction.php:294 +#: includes/models/payment-transaction.php:301 msgid "The payment status for this transaction hasn't been defined." msgstr "O status de pagamento para esta transação não foi definido." @@ -4968,7 +5132,7 @@ msgstr "" "erro e pode ser desconsiderada." #: includes/payment-gateway-2checkout.php:101 -#: includes/payment-gateway-paypal-standard.php:140 +#: includes/payment-gateway-paypal-standard.php:142 msgid "" "The amount you have paid does not match the required amount for this " "transaction. Please contact us to clarify the problem." @@ -4977,7 +5141,7 @@ msgstr "" "transação. Entre em contato conosco para esclarecer o problema." #: includes/payment-gateway-2checkout.php:109 -#: includes/payment-gateway-paypal-standard.php:148 +#: includes/payment-gateway-paypal-standard.php:150 msgid "" "There was an error processing your transaction. If funds have been deducted " "from your account, they have not been processed to our account. You will " @@ -4988,7 +5152,7 @@ msgstr "" "entrar em contato com PayPal sobre o assunto." #: includes/payment-gateway-2checkout.php:119 -#: includes/payment-gateway-paypal-standard.php:158 +#: includes/payment-gateway-paypal-standard.php:160 msgid "" "It appears this transaction has already been processed. If you do not see " "your ad in the system please contact the site adminstrator for assistance." @@ -4997,7 +5161,7 @@ msgstr "" "sistema entre em contato com o administrador local para assistência." #. translators: %s link url. -#: includes/payment-gateway-paypal-standard.php:58 +#: includes/payment-gateway-paypal-standard.php:60 msgid "" "We haven't received your payment information from PayPal yet and we are " "unable to verify your transaction. Please reload this page or visit admin section to change the order in which " "the fields mentioned below are shown to users in the Ad Details form." @@ -5815,33 +5979,33 @@ msgstr "" "em que os campos mencionados abaixo são mostrados aos usuários na forma " "Detalhes do anúncio." -#: includes/settings/class-display-settings.php:452 +#: includes/settings/class-display-settings.php:451 msgid "Form Fields Behavior" msgstr "Formulário Comportamento de Campos" -#: includes/settings/class-display-settings.php:461 +#: includes/settings/class-display-settings.php:460 #: templates/admin/import/supported-csv-headers.tpl.php:18 msgid "Field" msgstr "Campo" -#: includes/settings/class-display-settings.php:462 +#: includes/settings/class-display-settings.php:461 msgid "Show field on form" msgstr "Mostrar campo no formulário" -#: includes/settings/class-display-settings.php:463 +#: includes/settings/class-display-settings.php:462 msgid "Show field on search form" msgstr "Mostrar campo no formulário de pesquisa" -#: includes/settings/class-display-settings.php:464 +#: includes/settings/class-display-settings.php:463 #: templates/admin/import/supported-csv-headers.tpl.php:19 msgid "Required" msgstr "Requeridos" -#: includes/settings/class-display-settings.php:465 +#: includes/settings/class-display-settings.php:464 msgid "Show value to registered users only" msgstr "Mostrar valores somente para usuários registrados" -#: includes/settings/class-display-settings.php:469 +#: includes/settings/class-display-settings.php:468 msgid "Website" msgstr "Site" @@ -5934,18 +6098,17 @@ msgstr "" "precisa para deixar esta opção desmarcada e se o seu endereço de e-mail de " "administração do WordPress está vinculado a sua conta de hospedagem." -#. translators: full-email-address=John Doe , -#. short-email-address=john.doe@example.com -#: includes/settings/class-email-settings.php:84 +#. translators: %1$s=John Doe , %2$s=john.doe@example.com +#: includes/settings/class-email-settings.php:85 msgid "" "If checked, whenever the name of the recipient is available, emails will be " -"sent to instead of just . Some " -"email servers, however, have problems handling email address that include " -"the name of the recipient. If emails sent by the plugin are not being " -"delivered properly, try unchecking this settting." +"sent to %1$s instead of just %2$s. Some email servers, however, have " +"problems handling email address that include the name of the recipient. If " +"emails sent by the plugin are not being delivered properly, try unchecking " +"this settting." msgstr "" -#: includes/settings/class-email-settings.php:91 +#: includes/settings/class-email-settings.php:93 msgid "Include the name of the recipient in the email address" msgstr "" "Se marcado, qualquer que seja o nome do recebedor disponível, emails serão " @@ -5954,11 +6117,11 @@ msgstr "" "de email que incluem o nome do destinatário. Se emails enviados pelo plugin " "não estão sendo entregues, tente desmarcar esta configuração." -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "Include Ad access key in email messages" msgstr "Incluem chave de acesso do anúncio em mensagens de e-mail" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "" "Include Ad access key in email notifications. You may want to uncheck this " "option if you are using the Ad Management panel, but is not necessary." @@ -5967,33 +6130,33 @@ msgstr "" "querer desmarcar esta opção se você estiver usando o painel de gerenciamento " "de anúncios, mas não é necessário." -#: includes/settings/class-email-settings.php:106 +#: includes/settings/class-email-settings.php:108 msgid "Messages" msgstr "Mensagens" -#: includes/settings/class-email-settings.php:118 +#: includes/settings/class-email-settings.php:120 msgid "Ad Posted Message" msgstr "Ad Mensagem Enviada" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject for Ad posted notification email" msgstr "Assunto para Ad postou-mail de notificação" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Your Classified Ad listing has been submitted" msgstr "Sua lista anúncio foi submetido" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject line for email sent out when someone posts an Ad" msgstr "" "linha de assunto para o e-mail enviado para fora quando alguém postar um " "anúncio" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Body for Ad posted notification email" msgstr "Corpo de Ad postou-mail de notificação" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "" "Thank you for submitting your Classified Ad. The details of your ad are " "shown below." @@ -6001,68 +6164,68 @@ msgstr "" "Obrigado por enviar o seu anúncio. Os detalhes do seu anúncio são mostrados " "abaixo." -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Message body text for email sent out when someone posts an Ad" msgstr "" "texto do corpo da mensagem para o email enviado quando alguém postar um " "anúncio" -#: includes/settings/class-email-settings.php:127 +#: includes/settings/class-email-settings.php:129 msgid "Reply to Ad Message" msgstr "Responder ao anúncio Mensagem" -#: includes/settings/class-email-settings.php:132 +#: includes/settings/class-email-settings.php:134 msgid "Response notification for listing owners" msgstr "Responder notificação para o proprietário do anúncio" -#: includes/settings/class-email-settings.php:139 +#: includes/settings/class-email-settings.php:141 msgid "" "Subject and body template for email sent out when someone replies to an ad." msgstr "" "Gabarito do assunto e corpo para email enviado quando alguém responde para " "um anúncio." -#: includes/settings/class-email-settings.php:141 -#: includes/settings/class-email-settings.php:167 +#: includes/settings/class-email-settings.php:143 +#: includes/settings/class-email-settings.php:169 msgid "The name of the person who replied." msgstr "O nome da pessoa que respondeu." -#: includes/settings/class-email-settings.php:142 -#: includes/settings/class-email-settings.php:168 +#: includes/settings/class-email-settings.php:144 +#: includes/settings/class-email-settings.php:170 msgid "The email adderss of the person who replied." msgstr "O endereço de email da pessoa que respondeu" -#: includes/settings/class-email-settings.php:143 -#: includes/settings/class-email-settings.php:169 -#: includes/settings/class-email-settings.php:206 +#: includes/settings/class-email-settings.php:145 +#: includes/settings/class-email-settings.php:171 +#: includes/settings/class-email-settings.php:208 msgid "The title of the ad where the reply was posted." msgstr "O título do anúncio onde a resposta foi postada." -#: includes/settings/class-email-settings.php:144 -#: includes/settings/class-email-settings.php:170 +#: includes/settings/class-email-settings.php:146 +#: includes/settings/class-email-settings.php:172 msgid "The URL for the ad where the reply was posted." msgstr "A URL para o anúncio onde a resposta foi postada" -#: includes/settings/class-email-settings.php:145 -#: includes/settings/class-email-settings.php:171 +#: includes/settings/class-email-settings.php:147 +#: includes/settings/class-email-settings.php:173 msgid "The content of the reply." msgstr "O conteúdo da resposta." -#: includes/settings/class-email-settings.php:146 -#: includes/settings/class-email-settings.php:172 +#: includes/settings/class-email-settings.php:148 +#: includes/settings/class-email-settings.php:174 msgid "The title of this website" msgstr "O título deste website" -#: includes/settings/class-email-settings.php:147 -#: includes/settings/class-email-settings.php:173 +#: includes/settings/class-email-settings.php:149 +#: includes/settings/class-email-settings.php:175 msgid "The URL of this website's homepage" msgstr "A URL da página deste website" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "Notify admin about contact message" msgstr "Notificar administrador sobre a mensagem de contato" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "" "An email will be sent to the administrator every time a visitor sends a " "message to one of the Ad posters through the Reply to Ad page." @@ -6071,11 +6234,11 @@ msgstr "" "uma mensagem para um dos anúncios cartazes através do Responder a página do " "anúncio." -#: includes/settings/class-email-settings.php:158 +#: includes/settings/class-email-settings.php:160 msgid "Response notification for administrators" msgstr "Notificação de resposta para administradores" -#: includes/settings/class-email-settings.php:165 +#: includes/settings/class-email-settings.php:167 msgid "" "Subject and body template for email sent out to administrators when someone " "replies to an ad." @@ -6083,19 +6246,19 @@ msgstr "" "Gabarito de Assunto e Corpo para email enviado para administradores quando " "alguém responde a um anúncio." -#: includes/settings/class-email-settings.php:183 +#: includes/settings/class-email-settings.php:185 msgid "Resend Access Key Message" msgstr "Reenviar Chave de Acesso Mensagem" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "Subject for Request Ad Access Key email" msgstr "Assunto para a solicitação de anúncio Acesso e-mail Key" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "The Classified Ad's ad access key you requested" msgstr "chave de acesso do anúncio do anúncio solicitado" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "" "Subject line for email sent out when someone requests their ad access key " "resent" @@ -6103,11 +6266,11 @@ msgstr "" "linha de assunto para o e-mail enviado para fora quando alguém solicita o " "seu acesso ad ressentir-chave" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "Body for Request Ad Access Key email" msgstr "Corpo para a solicitação de anúncio Acesso e-mail Key" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "You asked to have your Classified Ad's access key resent. Below are all the " "Ad access keys in the system that are tied to the email address you provided" @@ -6116,7 +6279,7 @@ msgstr "" "todas as chaves de acesso do anúncio no sistema que estão vinculados ao " "endereço de e-mail fornecido" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "Message body text for email sent out when someone requests their ad access " "key resent" @@ -6124,65 +6287,105 @@ msgstr "" "texto do corpo da mensagem para o email enviado quando alguém pede sua " "reenviado ad chave de acesso" -#: includes/settings/class-email-settings.php:192 +#: includes/settings/class-email-settings.php:194 msgid "Verify Email Message" msgstr "Verificar e-mail Mensagem" -#: includes/settings/class-email-settings.php:197 +#: includes/settings/class-email-settings.php:199 msgid "Subject and body for verify email message" msgstr "Assunto e corpo para mensagem de email verificado" -#: includes/settings/class-email-settings.php:200 +#: includes/settings/class-email-settings.php:202 msgid "Verify the email address used for Ad {listing_title}" msgstr "Verificar o endereço de email usado pelo anúncio {listing_title}" -#: includes/settings/class-email-settings.php:204 +#: includes/settings/class-email-settings.php:203 +#, fuzzy +msgid "" +"Hello {author_name} \n" +"\n" +"You recently posted the Ad {listing_title} to {website_title}. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"{verification_link} \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"{website_title}\n" +"\n" +"{website_url}" +msgstr "" +"Olá {author_name} \n" +"\n" +"Você recentemente postou o anúncio {listing_title} to {website_title}. \n" +"Para completar o processo de postagem você tem que confirmar seu endereço de " +"email. Por favor clique no link abaixo para completar o processo de " +"confirmação. Você será redirecionado para o website onde você poderá ver o " +"seu anúncio. \n" +"\n" +"{verification_link} \n" +"\n" +"Após você confirmar seu endereço de email, o administrador será notificado " +"sobre o novo anúncio. Se a moderação estiver habilitada seu anúncio " +"permanecerá em estado de desabilitado até que o administrador o aprove.\n" +"\n" +"{website_title}\n" +"\n" +"\n" +"{website_url}" + +#: includes/settings/class-email-settings.php:206 msgid "" "Subject and body template for email sent out to verify the email address." msgstr "" "Gaparito de assunto e corpo para email enviado para verificar o endereço de " "email." -#: includes/settings/class-email-settings.php:207 +#: includes/settings/class-email-settings.php:209 msgid "The name of the owner of the listing." msgstr "O nome do proprietário do anúncio." -#: includes/settings/class-email-settings.php:208 +#: includes/settings/class-email-settings.php:210 msgid "Verification link." msgstr "Link de verificação" -#: includes/settings/class-email-settings.php:209 +#: includes/settings/class-email-settings.php:211 msgid "The title of this website." msgstr "O título deste website" -#: includes/settings/class-email-settings.php:210 +#: includes/settings/class-email-settings.php:212 msgid "The URL of this webiste's homepage." msgstr "A URL desta homepage do website" -#: includes/settings/class-email-settings.php:220 +#: includes/settings/class-email-settings.php:222 msgid "Incomplete Payment Message" msgstr "Mensagem de pagamento incompleto" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "Subject for Incomplete Payment email" msgstr "Assunto para o e-mail de pagamento incompleto" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "There was a problem processing your payment" msgstr "Houve um problema ao processar o seu pagamento" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "" "Subject line for email sent out when the payment processing does not complete" msgstr "" "linha de assunto para o e-mail enviado para fora quando o processamento de " "pagamento não for concluída" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "Body for Incomplete Payment email" msgstr "Corpo por email pagamento incompleto" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "There was a problem encountered during your attempt to submit payment. If " "funds were removed from the account you tried to use to make a payment " @@ -6194,7 +6397,7 @@ msgstr "" "pagamento entre em contato com o administrador do site ou o serviço ao " "cliente website de pagamento para obter assistência." -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "Message body text for email sent out when the payment processing does not " "complete" @@ -6202,32 +6405,32 @@ msgstr "" "texto do corpo da mensagem para o email enviado quando o processamento de " "pagamento não for concluída" -#: includes/settings/class-email-settings.php:229 +#: includes/settings/class-email-settings.php:231 msgid "Renew Ad Message" msgstr "Renove Ad Mensagem" -#: includes/settings/class-email-settings.php:234 +#: includes/settings/class-email-settings.php:236 msgid "Subject for Renew Ad email" msgstr "Assunto para renovar e-mail Ad" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:237 +#: includes/settings/class-email-settings.php:239 msgid "Your ad will expire in %d days." msgstr "Seu anúncio expirará em %d days." -#: includes/settings/class-email-settings.php:238 +#: includes/settings/class-email-settings.php:240 msgid "Subject line for email sent out when an Ad is about to expire." msgstr "" "linha de assunto para o e-mail enviado para fora quando um anúncio está " "prestes a expirar." -#: includes/settings/class-email-settings.php:244 -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:246 +#: includes/settings/class-email-settings.php:270 msgid "Body for Renew Ad email" msgstr "Corpo para renovar e-mail Ad" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:247 +#: includes/settings/class-email-settings.php:249 msgid "" "This is an automated notification that your Classified Ad will expire in %d " "days." @@ -6238,7 +6441,7 @@ msgstr "" #. translators: %d in this case is used to remind the user they can enter '%d' #. in the textarea where they want the plugin to replace the number of days #. until the ad expires. -#: includes/settings/class-email-settings.php:249 +#: includes/settings/class-email-settings.php:251 msgid "" "Message body text for email sent out when an Ad is about to expire. Use %d " "as placeholder for the number of days before the Ad expires." @@ -6247,120 +6450,120 @@ msgstr "" "está prestes a expirar. Use %d como espaço reservado para o número de dias " "antes do Anúncio expira." -#: includes/settings/class-email-settings.php:256 +#: includes/settings/class-email-settings.php:258 msgid "Ad Renewed Message" msgstr "Ad mensagem Renovado" -#: includes/settings/class-email-settings.php:261 +#: includes/settings/class-email-settings.php:263 msgid "Subject for Ad Renewed email" msgstr "Assunto para Ad Renovado e-mail" #. translators: %s is the title of the ad. -#: includes/settings/class-email-settings.php:264 +#: includes/settings/class-email-settings.php:266 msgid "Your ad \"%s\" has been successfully renewed." msgstr "Seu anúncio \"%s\" foi renovado com sucesso." -#: includes/settings/class-email-settings.php:265 +#: includes/settings/class-email-settings.php:267 msgid "Subject line for email sent out when an Ad is successfully renewed." msgstr "" "linha de assunto para o e-mail enviado para fora quando um anúncio é " "renovada com sucesso." -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "Your ad has been successfully renewed. More information below:" msgstr "Seu anúncio foi renovado com sucesso. Mais informações abaixo:" -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "" "Message body text for email sent out when an Ad is successfully renewed. " msgstr "" "Corpo da mensagem de texto para o e-mail enviado para fora quando um anúncio " "é renovada com sucesso. " -#: includes/settings/class-email-settings.php:274 +#: includes/settings/class-email-settings.php:276 msgid "Ad Expired Message" msgstr "Ad mensagem expirada" -#: includes/settings/class-email-settings.php:279 +#: includes/settings/class-email-settings.php:281 msgid "Subject for Ad Expired email" msgstr "Assunto para Ad-mail Expirado" #. translators: %s is the name of the website. -#: includes/settings/class-email-settings.php:282 +#: includes/settings/class-email-settings.php:284 msgid "Your ad at %s has expired" msgstr "Seu anúncio %s foi expirado" -#: includes/settings/class-email-settings.php:283 +#: includes/settings/class-email-settings.php:285 msgid "Subject line for email sent out when an ad has auto-expired" msgstr "" "linha de assunto para o e-mail enviado para fora quando um anúncio expirou " "auto-" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Body for Ad Expired email" msgstr "Corpo para Ad-mail Expirado" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "This is an automated notification that your ad has expired." msgstr "Esta é uma notificação automática que seu anúncio expirou." -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Message body text for email sent out when an ad has auto-expired" msgstr "" "texto do corpo da mensagem para o email enviado quando um anúncio tem auto-" "expirada" -#: includes/settings/class-email-settings.php:295 +#: includes/settings/class-email-settings.php:297 #: includes/settings/class-general-settings.php:599 msgid "Advanced" msgstr "Avançado" -#: includes/settings/class-email-settings.php:305 +#: includes/settings/class-email-settings.php:307 msgid "Advanced Email Configuration" msgstr "Configuração Avançada Email" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enable external SMTP server" msgstr "Ativar servidor SMTP externo" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enabled external SMTP server (if emails not processing normally)." msgstr "" "servidor habilitado externa SMTP (se os e-mails não processando normalmente)." -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host" msgstr "Host SMTP" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host (if emails not processing normally)." msgstr "host SMTP (se os e-mails não processando normalmente)." -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port" msgstr "Porta SMTP" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port (if emails not processing normally)." msgstr "porta SMTP (se os e-mails não processando normalmente)." -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username" msgstr "Nome de usuário SMTP" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username (if emails not processing normally)." msgstr "nome de usuário SMTP (se os e-mails não processando normalmente)." -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password" msgstr "Senha SMTP" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password (if emails not processing normally)." msgstr "Senha SMTP (se os e-mails não processando normalmente)." -#: includes/settings/class-email-settings.php:316 +#: includes/settings/class-email-settings.php:318 msgid "" " is not a valid email address. Please check the value you entered " "to use as the FROM email address for outgoing messages." @@ -6368,7 +6571,7 @@ msgstr "" " não é endereço de email válido. Por favor verifique o valor que " "você entrou para usar como endereço de email DE para mensagens enviadas." -#: includes/settings/class-email-settings.php:317 +#: includes/settings/class-email-settings.php:319 msgid "" " is not a valid email address. Please check the value you entered " "to use as recipient email address for admin notifications." @@ -7387,15 +7590,18 @@ msgstr "" "O plugin publicará informações sobre novos anúncios em um URL exclusivo " "criado usando o URL do Webhooks e o Nome do evento que você definir." -#: includes/settings/class-general-settings.php:919 +#. translators: %1$s is the link to Facebook Developer Apps page. %2$s is the +#. closing anchor tag. +#: includes/settings/class-general-settings.php:921 +#, fuzzy msgid "" -"You can find your application information in the Facebook Developer Apps page." +"You can find your application information in the %1$sFacebook Developer " +"Apps%2$s page." msgstr "" "Você pode encontrar as informações de aplicação no página Facebook " "Developer Apps ." -#: includes/settings/class-general-settings.php:935 +#: includes/settings/class-general-settings.php:936 msgid "" "AWPCP needs to get an authorization token from Facebook to work correctly. " "You'll be redirected to Facebook to login. AWPCP does not store or obtain " @@ -7405,7 +7611,7 @@ msgstr "" "corretamente. Você será redirecionado para o Facebook para fazer login. O " "AWPCP não armazenar ou obter qualquer informação pessoal do seu perfil." -#: includes/settings/class-general-settings.php:936 +#: includes/settings/class-general-settings.php:937 msgid "" "Please choose Public as the audience for posts made by the application, even " "if you are just testing the integration. Facebook won't allow us to post " @@ -7416,11 +7622,11 @@ msgstr "" "permitir-nos para postar conteúdo em alguns casos, se você escolher outra " "coisa." -#: includes/settings/class-general-settings.php:945 +#: includes/settings/class-general-settings.php:947 msgid "Click here to obtain an access token from Facebook" msgstr "Clique aqui para obter um token de acesso do Facebook" -#: includes/settings/class-general-settings.php:947 +#: includes/settings/class-general-settings.php:951 msgid "" "Please provide a value for the App Id and App Secret settings before trying " "to get an access token from Facebook." @@ -7428,7 +7634,7 @@ msgstr "" "Forneça um valor para as configurações de ID do aplicativo e segredo do " "aplicativo antes de tentar obter um token de acesso do Facebook." -#: includes/settings/class-general-settings.php:958 +#: includes/settings/class-general-settings.php:960 msgid "" "Available Facebook Pages and Groups will be displayed after you enter a " "valid User Access Token." @@ -7436,18 +7642,16 @@ msgstr "" "As páginas e grupos disponíveis do Facebook serão exibidos após a inserção " "de um token de acesso do usuário válido." -#: includes/settings/class-general-settings.php:959 -msgid "" -"As of April 4, 2018, all applications need to go through App Review " -"in order to get access to the Page API and Groups API. That means that you may need to submit your app for review (ask for the " -"manage_pages, publish_pages, " -"publish_to_groups permissions), before AWPCP can display the " +#. translators: %1$s opening anchor tag, %2$s closing anchor tag, %3$s opening +#. anchor tag, %4$s closing anchor tag, %5$s opening anchor tag, %6$s closing +#. anchor tag, %7$s opening anchor tag, %8$s closing anchor tag +#: includes/settings/class-general-settings.php:964 +#, fuzzy +msgid "" +"All applications need to go through %1$sApp Review%2$s in order to get " +"access to the %3$sPage API%4$s and %5$sGroups API%6$s. That means that you " +"may need to %7$ssubmit your app for review%8$s (ask for the manage_pages, " +"publish_pages, publish_to_groups permissions), before AWPCP can display the " "list of pages and groups you manage and be able to post classifieds ads to " "those groups and pages." msgstr "" @@ -7464,19 +7668,19 @@ msgstr "" "lista de páginas e grupos que você gerencia e possa publicar anúncios " "classificados nesses grupos. e páginas." -#: includes/settings/class-general-settings.php:977 +#: includes/settings/class-general-settings.php:989 msgid "None (Do not sent ads to a Facebook Page)" msgstr "Nenhum (não envie anúncios para uma página do Facebook)" -#: includes/settings/class-general-settings.php:984 +#: includes/settings/class-general-settings.php:996 msgid "(Your own profile page)" msgstr "(Sua própria página de perfil)" -#: includes/settings/class-general-settings.php:1008 +#: includes/settings/class-general-settings.php:1020 msgid "None (Do not sent ads to a Facebook Group)" msgstr "Nenhum (não envie anúncios para uma página do Facebook)" -#: includes/settings/class-general-settings.php:1064 +#: includes/settings/class-general-settings.php:1076 msgid "" "Akismet SPAM control cannot be enabled because Akismet plugin is not " "installed or activated." @@ -7484,7 +7688,7 @@ msgstr "" "controle de spam Akismet não pode ser habilitado porque Akismet plugin não " "está instalado ou activado." -#: includes/settings/class-general-settings.php:1068 +#: includes/settings/class-general-settings.php:1080 msgid "" "Akismet SPAM control cannot be enabled because Akismet is not properly " "configured." @@ -7492,7 +7696,7 @@ msgstr "" "controle de spam Akismet não pode ser habilitado porque Akismet não está " "configurado corretamente." -#: includes/settings/class-general-settings.php:1094 +#: includes/settings/class-general-settings.php:1106 msgid "" "reCAPTCHA can't be used because the public key and private key settings are " "required for reCAPTCHA to work properly." @@ -7500,7 +7704,7 @@ msgstr "" "reCAPTCHA não pode ser usado porque as configurações de chave chave e " "público-privadas são necessárias para reCAPTCHA para funcionar corretamente." -#: includes/settings/class-general-settings.php:1096 +#: includes/settings/class-general-settings.php:1108 msgid "" "reCAPTCHA can't be used because the public key setting is required for " "reCAPTCHA to work properly." @@ -7508,7 +7712,7 @@ msgstr "" "reCAPTCHA não pode ser usado porque a configuração de chave pública é " "necessária para reCAPTCHA para funcionar corretamente." -#: includes/settings/class-general-settings.php:1098 +#: includes/settings/class-general-settings.php:1110 msgid "" "reCAPTCHA can't be used because the private key setting is required for " "reCAPTCHA to work properly." @@ -7516,11 +7720,11 @@ msgstr "" "reCAPTCHA não pode ser usado porque a configuração de chave privada é " "necessária para reCAPTCHA para funcionar corretamente." -#: includes/settings/class-general-settings.php:1145 +#: includes/settings/class-general-settings.php:1157 msgid "Thousands separator and decimal separator cant be the same." msgstr "" -#: includes/settings/class-general-settings.php:1159 +#: includes/settings/class-general-settings.php:1171 msgid "" "Credit System was automatically disabled because you disabled Require " "Registration setting." @@ -7538,10 +7742,21 @@ msgid "Licenses" msgstr "Licenças" #: includes/settings/class-licenses-settings.php:64 -#: templates/admin/debug/plugin-info-debug-section.tpl.php:18 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:24 msgid "Premium Modules" msgstr "Módulos Premium" +#: includes/settings/class-licenses-settings.php:82 +#, fuzzy +msgid "" +"The IP address of your server is %s. Please make sure to include that " +"information if you need to contact support about problems trying to activate " +"your licenses." +msgstr "" +"O endereço IP do seu servidor é . Certifique-se de incluir essas " +"informações se precisar entrar em contato com o suporte sobre problemas ao " +"tentar ativar suas licenças." + #: includes/settings/class-listings-moderation-settings.php:22 msgid "" "Email verification was disabled because you enabled Require Registration. " @@ -7952,19 +8167,20 @@ msgid "Show category in browser page title when viewing individual Ad" msgstr "" "Mostrar categoria no título da página do navegador ao visualizar Ad indivíduo" -#: includes/settings/class-listings-settings.php:472 +#: includes/settings/class-listings-settings.php:473 +#, fuzzy msgid "" "Enable this setting to display each listing on its own page, instead of " -"showing the listing's content inside the page." +"showing the listing's content inside the %s page." msgstr "" "Habilite essa configuração para exibir cada anúncio em sua própria página, " "em vez de mostrar o conteúdo do anúncio na página ." -#: includes/settings/class-listings-settings.php:478 +#: includes/settings/class-listings-settings.php:480 msgid "Display listings on their own page" msgstr "Exibir anúncios em sua própria página" -#: includes/settings/class-listings-settings.php:486 +#: includes/settings/class-listings-settings.php:488 msgid "" "Portion of the URL that appears between the website's domain and the " "listing's information. Example: in ." @@ -7972,11 +8188,11 @@ msgstr "" "Parte do URL que aparece entre o domínio do site e as informações do " "anúncio. Exemplo: em ." -#: includes/settings/class-listings-settings.php:496 +#: includes/settings/class-listings-settings.php:498 msgid "Listings slug" msgstr "Anúncios slug" -#: includes/settings/class-listings-settings.php:509 +#: includes/settings/class-listings-settings.php:511 msgid "" "Include the slug of the plugin's main page () in the URL " "that points to the page of an individual listing." @@ -7984,7 +8200,7 @@ msgstr "" "Inclua o slug da página principal do plugin () no URL que " "aponta para a página de uma listagem individual." -#: includes/settings/class-listings-settings.php:512 +#: includes/settings/class-listings-settings.php:514 msgid "" "Include the slug of the plugin's main page in the URL that points to the " "page of an individual listing." @@ -7992,26 +8208,26 @@ msgstr "" "Inclua o slug da página principal do plugin no URL que aponta para a página " "de uma listagem individual." -#: includes/settings/class-listings-settings.php:518 +#: includes/settings/class-listings-settings.php:520 msgid "Include the slug of the plugin's main page in the listing URL" msgstr "Inclua o slug da página principal do plugin no URL da lista" -#: includes/settings/class-listings-settings.php:532 +#: includes/settings/class-listings-settings.php:534 msgid "Include the title in the listing URL" msgstr "Incluir o título na URL de listagem" -#: includes/settings/class-listings-settings.php:535 +#: includes/settings/class-listings-settings.php:537 msgid "" "Include the title in the URL that points to the page of an individual " "listing." msgstr "" "Incluir o título na URL que aponta para a página de uma listagem individual." -#: includes/settings/class-listings-settings.php:541 +#: includes/settings/class-listings-settings.php:543 msgid "Include the name of the category in the listing URL" msgstr "Inclua o nome da categoria na lista URL" -#: includes/settings/class-listings-settings.php:544 +#: includes/settings/class-listings-settings.php:546 msgid "" "Include the name of the category in the URL that points to the page of an " "individual listing." @@ -8019,11 +8235,11 @@ msgstr "" "Inclua o nome da categoria na URL que aponta para a página de uma listagem " "individual." -#: includes/settings/class-listings-settings.php:550 +#: includes/settings/class-listings-settings.php:552 msgid "Include the name of the country in the listing URL" msgstr "Inclua o nome do país na URL listando" -#: includes/settings/class-listings-settings.php:553 +#: includes/settings/class-listings-settings.php:555 msgid "" "Include the name of the country in the URL that points to the page of an " "individual listing." @@ -8031,11 +8247,11 @@ msgstr "" "Inclua o nome do país na URL que aponta para a página de uma listagem " "individual." -#: includes/settings/class-listings-settings.php:559 +#: includes/settings/class-listings-settings.php:561 msgid "Include the name of the state in the listing URL" msgstr "Inclua o nome do estado na URL listando" -#: includes/settings/class-listings-settings.php:562 +#: includes/settings/class-listings-settings.php:564 msgid "" "Include the name of the state in the URL that points to the page of an " "individual listing." @@ -8043,11 +8259,11 @@ msgstr "" "Inclua o nome do estado na URL que aponta para a página de uma listagem " "individual." -#: includes/settings/class-listings-settings.php:568 +#: includes/settings/class-listings-settings.php:570 msgid "Include the name of the city in the listing URL" msgstr "Inclua o nome da cidade na lista URL" -#: includes/settings/class-listings-settings.php:571 +#: includes/settings/class-listings-settings.php:573 msgid "" "Include the name of the city in the URL that points to the page of an " "individual listing." @@ -8055,11 +8271,11 @@ msgstr "" "Inclua o nome da cidade na URL que aponta para a página de uma listagem " "individual." -#: includes/settings/class-listings-settings.php:577 +#: includes/settings/class-listings-settings.php:579 msgid "Include the name of the county in the listing URL" msgstr "Inclua o nome do município na URL listando" -#: includes/settings/class-listings-settings.php:580 +#: includes/settings/class-listings-settings.php:582 msgid "" "Include the name of the county in the URL that points to the page of an " "individual listing." @@ -8233,7 +8449,7 @@ msgstr "" "acessados ​​por meio de uma URL segura (HTTPS). Não activar esta " "funcionalidade se o seu servidor não suporta HTTPS." -#: includes/settings/class-payment-general-settings.php:109 +#: includes/settings/class-payment-general-settings.php:108 msgid "" "Force Secure URLs was not enabled because your website couldn't be accessed " "using a secure connection." @@ -8241,23 +8457,19 @@ msgstr "" "URLs seguros de força não foi ativado porque o seu site não pôde ser " "acessado usando uma conexão segura." -#: includes/settings/class-payment-general-settings.php:135 -msgid "PayPal" -msgstr "PayPal" - -#: includes/settings/class-payment-general-settings.php:140 +#: includes/settings/class-payment-general-settings.php:139 msgid "PayPal Settings" msgstr "Configurações PayPal" -#: includes/settings/class-payment-general-settings.php:142 +#: includes/settings/class-payment-general-settings.php:141 msgid "Activate PayPal?" msgstr "Ative PayPal?" -#: includes/settings/class-payment-general-settings.php:146 +#: includes/settings/class-payment-general-settings.php:145 msgid "PayPal receiver email" msgstr "PayPal e-mail receptor" -#: includes/settings/class-payment-general-settings.php:149 +#: includes/settings/class-payment-general-settings.php:148 msgid "" "Email address for PayPal payments (if running in pay mode and if PayPal is " "activated)." @@ -8265,84 +8477,83 @@ msgstr "" "endereço de email para pagamentos PayPal (se estiver em execução no modo de " "pagamento e se PayPal é ativado)." -#: includes/settings/class-payment-general-settings.php:167 +#: includes/settings/class-payment-general-settings.php:166 msgid "PayPal Merchant ID" msgstr "ID Mercado PayPal" #: includes/settings/class-payment-general-settings.php:170 +#, fuzzy msgid "" "Merchant ID associated with the PayPal account that will receive the " -"payments. Go to https://www.paypal.com/myaccount/settings/ to obtain " -"your Merchant ID." +"payments. Go to %s to obtain your Merchant ID." msgstr "" "ID do comerciante associado à conta do PayPal que receberá os pagamentos. Vá " "para https://www.paypal.com/myaccount/settings/ para obter " "seu ID de comerciante." -#: includes/settings/class-payment-general-settings.php:178 +#: includes/settings/class-payment-general-settings.php:180 msgid "The PayPal Currency Code must be one of ." msgstr "O código da moeda PayPal deve ser um dos <-códigos de moeda>." -#: includes/settings/class-payment-general-settings.php:183 +#: includes/settings/class-payment-general-settings.php:185 msgid "PayPal currency code" msgstr "código da moeda PayPal" -#: includes/settings/class-payment-general-settings.php:186 +#: includes/settings/class-payment-general-settings.php:188 msgid "The currency in which you would like to receive your PayPal payments" msgstr "A moeda na qual você gostaria de receber seus pagamentos PayPal" -#: includes/settings/class-payment-general-settings.php:209 +#: includes/settings/class-payment-general-settings.php:211 msgid "2Checkout" msgstr "2Checkout" -#: includes/settings/class-payment-general-settings.php:214 +#: includes/settings/class-payment-general-settings.php:216 msgid "2Checkout Settings" msgstr "Configurações 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout" msgstr "Ative 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout?" msgstr "Ative 2Checkout?" -#: includes/settings/class-payment-general-settings.php:220 +#: includes/settings/class-payment-general-settings.php:222 msgid "2Checkout account" msgstr "conta 2Checkout" -#: includes/settings/class-payment-general-settings.php:223 +#: includes/settings/class-payment-general-settings.php:225 msgid "Account for 2Checkout payments." msgstr "Conta para pagamentos 2Checkout." -#: includes/settings/class-payment-general-settings.php:238 +#: includes/settings/class-payment-general-settings.php:240 msgid "2Checkout Currency Code" msgstr "Código de moeda 2Checkout" -#: includes/settings/class-payment-general-settings.php:249 +#: includes/settings/class-payment-general-settings.php:251 msgid "The currency in which you would like to receive your 2Checkout payments" msgstr "A moeda na qual você gostaria de receber seus pagamentos 2Checkout" -#: includes/settings/class-payment-general-settings.php:261 -#: includes/settings/class-payment-general-settings.php:266 +#: includes/settings/class-payment-general-settings.php:263 +#: includes/settings/class-payment-general-settings.php:268 msgid "Credit System" msgstr "Sistema de crédito" -#: includes/settings/class-payment-general-settings.php:269 +#: includes/settings/class-payment-general-settings.php:271 msgid "Currency" msgstr "Moeda" -#: includes/settings/class-payment-general-settings.php:271 +#: includes/settings/class-payment-general-settings.php:273 msgid "Currency & Credits" msgstr "Moeda e Créditos" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "Enable Credit System" msgstr "Sistema de habilitação de crédito" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "" "The Credit System allows users to purchase credit that can later be used to " "pay for placing Ads." @@ -8350,16 +8561,16 @@ msgstr "" "O sistema de crédito permite que os usuários comprem créditos que " "posteriormente podem ser usados para pagar pela colocação de anúncios." -#: includes/settings/class-payment-general-settings.php:279 +#: includes/settings/class-payment-general-settings.php:281 msgid "Accepted payment type" msgstr "tipo de pagamento aceitado" -#: includes/settings/class-payment-general-settings.php:282 +#: includes/settings/class-payment-general-settings.php:284 msgid "Select the type of payment that can be used to purchase Ads." msgstr "" "Selecione o tipo de pagamento que pode ser usado para comprar anúncios." -#: includes/settings/class-payment-general-settings.php:294 +#: includes/settings/class-payment-general-settings.php:296 msgid "" "You cannot configure Credits as the only accepted payment type unless you " "enable the Credit System as well. The setting was set to accept both " @@ -8369,7 +8580,7 @@ msgstr "" "menos que você permitir que o sistema de crédito também. A configuração foi " "definida para aceitar tanto Moeda e Crédito." -#: includes/settings/class-payment-general-settings.php:311 +#: includes/settings/class-payment-general-settings.php:313 msgid "" "There is a problem with the PayPal Currency Code you have entered. It does " "not match any of the codes in our list of curencies supported by PayPal." @@ -8378,11 +8589,11 @@ msgstr "" "corresponde a nenhum dos códigos na nossa lista de curencies suportados pelo " "PayPal." -#: includes/settings/class-payment-general-settings.php:312 +#: includes/settings/class-payment-general-settings.php:314 msgid "The available currency codes are" msgstr "Os códigos de moeda disponíveis são" -#: includes/settings/class-payment-general-settings.php:321 +#: includes/settings/class-payment-general-settings.php:323 msgid "" "Require Registration setting was enabled automatically because you activated " "the Credit System." @@ -8390,7 +8601,7 @@ msgstr "" "Requerem configuração do registro foi habilitado automaticamente porque você " "ativou o sistema de crédito." -#: includes/settings/class-payment-general-settings.php:326 +#: includes/settings/class-payment-general-settings.php:328 msgid "" "Charge Listing Fee setting was enabled automatically because you activated " "the Credit System." @@ -8398,7 +8609,7 @@ msgstr "" "definição de carga Lista Fee foi habilitado automaticamente porque você " "ativou o sistema de crédito." -#: includes/settings/class-payment-general-settings.php:332 +#: includes/settings/class-payment-general-settings.php:334 msgid "" "Credit System was disabled automatically because you disabled Charge Listing " "Fee." @@ -8406,7 +8617,7 @@ msgstr "" "Sistema de Crédito foi automaticamente desativada porque você desativado " "carga Listing Fee." -#: includes/settings/renderers/class-button-settings-renderer.php:39 +#: includes/settings/renderers/class-button-settings-renderer.php:40 msgid "" "Resetting to the default layout will cause any custom HTML layout changes " "you've made to be lost. Are you sure?" @@ -8414,7 +8625,7 @@ msgstr "" "A redefinição para o layout padrão fará com que as alterações feitas no " "layout HTML sejam perdidas. Você tem certeza?" -#: includes/settings/renderers/class-button-settings-renderer.php:42 +#: includes/settings/renderers/class-button-settings-renderer.php:47 msgid "Reset" msgstr "Resetar" @@ -8422,55 +8633,54 @@ msgstr "Resetar" msgid "Deactivate" msgstr "Desativar" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -msgid "active" -msgstr "Licensa ativa" - -#: includes/settings/renderers/class-license-settings-renderer.php:43 #: includes/settings/renderers/class-license-settings-renderer.php:46 -#: includes/settings/renderers/class-license-settings-renderer.php:56 -#: includes/settings/renderers/class-license-settings-renderer.php:58 -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "Status: " -msgstr "Status: " - -#: includes/settings/renderers/class-license-settings-renderer.php:45 -#: includes/settings/renderers/class-license-settings-renderer.php:48 +#: includes/settings/renderers/class-license-settings-renderer.php:50 msgid "Activate" msgstr "Ativar" -#: includes/settings/renderers/class-license-settings-renderer.php:46 -msgid "inactive" -msgstr "inativa" - -#: includes/settings/renderers/class-license-settings-renderer.php:51 +#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag +#: includes/settings/renderers/class-license-settings-renderer.php:55 +#, fuzzy msgid "" -"Click the button above to check the status of your license. Please contact customer support if you think the reported status is wrong." +"Click the button above to check the status of your license. Please " +"%1$scontact customer support%2$s if you think the reported status is wrong." msgstr "" "Clique no botão acima para verificar o status de sua licença. Por favor " " contato com o Suporte ao cliente se você acha que o " "status relatado é errado." -#: includes/settings/renderers/class-license-settings-renderer.php:56 -msgid "expired" -msgstr "expirado" - -#: includes/settings/renderers/class-license-settings-renderer.php:58 +#: includes/settings/renderers/class-license-settings-renderer.php:75 msgid "disabled" msgstr "Desativado" -#: includes/settings/renderers/class-license-settings-renderer.php:60 +#: includes/settings/renderers/class-license-settings-renderer.php:76 +msgid "inactive" +msgstr "inativa" + +#: includes/settings/renderers/class-license-settings-renderer.php:77 +msgid "active" +msgstr "Licensa ativa" + +#: includes/settings/renderers/class-license-settings-renderer.php:78 +msgid "expired" +msgstr "expirado" + +#: includes/settings/renderers/class-license-settings-renderer.php:79 msgid "unknown" msgstr "desconhecido" +#: includes/settings/renderers/class-license-settings-renderer.php:84 +#, fuzzy +msgid "Status: %s" +msgstr "Status:" + #. translators: screen reader text label for individual settings on a settings #. grid -#: includes/settings/renderers/class-settings-grid-renderer.php:75 +#: includes/settings/renderers/class-settings-grid-renderer.php:80 msgid " setting for field" msgstr " configurações para campo" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:35 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:38 msgid "Create Page" msgstr "Criar página" @@ -8478,21 +8688,21 @@ msgstr "Criar página" msgid "Ad Category" msgstr "Categoria ad" -#: includes/ui/class-category-selector.php:122 +#: includes/ui/class-category-selector.php:144 msgid "All Categories" msgstr "Todas as categorias" -#: includes/ui/class-category-selector.php:171 +#: includes/ui/class-category-selector.php:193 msgid "Select a Sub-category" msgstr "Selecione uma sub categoria" -#: includes/ui/class-payment-terms-list.php:86 +#: includes/ui/class-payment-terms-list.php:103 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" msgstr "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" -#: includes/ui/class-payment-terms-list.php:91 +#: includes/ui/class-payment-terms-list.php:108 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" @@ -8500,61 +8710,61 @@ msgstr "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" -#: includes/ui/class-payment-terms-list.php:152 +#: includes/ui/class-payment-terms-list.php:169 msgid " listing allowed." msgid_plural " listings allowed." msgstr[0] "" msgstr[1] "" -#: includes/ui/class-payment-terms-list.php:160 +#: includes/ui/class-payment-terms-list.php:177 msgid "No images allowed." msgstr "Nenhuma imagem permitida" -#: includes/ui/class-payment-terms-list.php:163 +#: includes/ui/class-payment-terms-list.php:180 msgid " image allowed." msgid_plural " images allowed." msgstr[0] "" msgstr[1] "" -#: includes/ui/class-payment-terms-list.php:170 +#: includes/ui/class-payment-terms-list.php:187 msgid "Unlimited characters in listing's title." msgstr "Caracteres ilimitados no título do anúncio." -#: includes/ui/class-payment-terms-list.php:173 +#: includes/ui/class-payment-terms-list.php:190 msgid "Up to characters in listing's title." msgstr "Até caracteres no título da listagem." -#: includes/ui/class-payment-terms-list.php:180 +#: includes/ui/class-payment-terms-list.php:197 msgid "Up to categories allowed." msgstr "" -#: includes/ui/class-payment-terms-list.php:187 +#: includes/ui/class-payment-terms-list.php:204 msgid "Unlimited characters in listing's content." msgstr "Caracteres ilimitados no conteúdo do anúncio." -#: includes/ui/class-payment-terms-list.php:190 +#: includes/ui/class-payment-terms-list.php:207 msgid "Up to characters in listing's content." msgstr "Até caracteres no conteúdo do anúncio." -#: includes/ui/class-payment-terms-list.php:196 +#: includes/ui/class-payment-terms-list.php:213 msgid "Purchase this plan" msgstr "Compre este plano" -#: includes/ui/class-payment-terms-list.php:197 +#: includes/ui/class-payment-terms-list.php:214 msgid "Pay for this plan with credits" msgstr "Pague por este plano com créditos" -#: includes/ui/class-payment-terms-list.php:200 -#: includes/ui/class-payment-terms-list.php:204 +#: includes/ui/class-payment-terms-list.php:217 +#: includes/ui/class-payment-terms-list.php:221 msgid "Use this plan for free!" msgstr "Use este plano gratuitamente" -#: includes/ui/class-payment-terms-list.php:209 -#: includes/ui/class-payment-terms-list.php:214 +#: includes/ui/class-payment-terms-list.php:226 +#: includes/ui/class-payment-terms-list.php:231 msgid "Select" msgstr "Selecionar" -#: includes/ui/class-payment-terms-list.php:213 +#: includes/ui/class-payment-terms-list.php:230 msgid "credits" msgstr "créditos" @@ -8698,12 +8908,12 @@ msgstr "" "configurações-link> configurar o website como uma tábua livre." #. translators: %s the step name -#: includes/views/class-base-page.php:82 +#: includes/views/class-base-page.php:83 msgid "Unkown step \"%s\". Please contact the administrator about this error." msgstr "" "Unkown etapa \"%s\". Entre em contato com o administrador sobre esse erro." -#: includes/views/class-base-page.php:135 +#: includes/views/class-base-page.php:136 msgid "" "Your request cannot be processed at this time. Please try again or contact " "the administrator about the incident." @@ -8713,7 +8923,7 @@ msgstr "" #. translators: %1$s back link, %2$s transaction id #: includes/views/class-payment-step-decorator.php:41 -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:74 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:76 #, fuzzy msgid "" "You are trying to buy credits using a transaction created for a different " @@ -8743,16 +8953,16 @@ msgstr "" msgid "Congratulations. You have successfully added credit to your account." msgstr "Parabéns. Você adicionou com sucesso crédito na sua conta." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:12 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:14 msgid "Buy Credits" msgstr "comprar créditos" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:87 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:89 msgid "" "The payment associated with this transaction failed (see reasons below)." msgstr "O pagamento associado a esta operação falhou (ver razões abaixo)." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:118 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:120 msgid "You are not allowed to buy credits." msgstr "Você não tem permissão para comprar créditos." @@ -8768,22 +8978,61 @@ msgstr "" msgid "The instance of WP_Scripts is not ready!" msgstr "A instância do WP_Scripts não está pronta!" -#: installer.php:154 +#: installer.php:160 msgid "30 Day Listing" msgstr "Dia 30 Listing" -#: installer.php:822 +#: installer.php:307 msgid "Response to your AWPCP Demo Ad" msgstr "Resposta ao seu anúncio AWPCP Demonstração" -#: installer.php:823 +#: installer.php:308 msgid "Someone has responded to your AWPCP Demo Ad" msgstr "Alguém tem respondido ao seu anúncio AWPCP Demonstração" -#: installer.php:848 +#: installer.php:333 msgid "Verify the email address used for Ad $title" msgstr "Verifique o endereço de e-mail utilizado para Ad $title" +#: installer.php:334 +#, fuzzy +msgid "" +"Hello $author_name \n" +"\n" +"You recently posted the Ad $title to $website_name. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"$verification_link \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" +msgstr "" +"Olá, $author_name \n" +"\n" +"Você postou recentemente o $título do anúncio em $website_name. \n" +" \n" +"Para concluir o processo de postagem, você deve verificar seu endereço de e-" +"mail. Clique no link abaixo para concluir o processo de verificação. Você " +"será redirecionado para o site onde pode ver seu anúncio. \n" +"\n" +" $notification_link\n" +"\n" +"Depois de confirmar seu endereço de e-mail, o administrador será notificado " +"sobre o novo anúncio. Se a moderação estiver ativada, seu anúncio " +"permanecerá desativado até que o administrador aprove. \n" +"\n" +" $website_name\n" +"\n" +"$website_url" + #: templates/admin/debug/environment-debug-section.tpl.php:19 msgid "" "Click the button below to contact and get a report about " @@ -8792,11 +9041,11 @@ msgstr "" "Clique no botão abaixo para entrar em contato com o e obter " "um relatório sobre os recursos SSL/TSL do seu servidor." -#: templates/admin/debug/environment-debug-section.tpl.php:30 +#: templates/admin/debug/environment-debug-section.tpl.php:32 msgid "Test your SSL Client" msgstr "Teste seu cliente SSL" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:16 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:20 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -8808,7 +9057,7 @@ msgstr "" "favor, clique no botão abaixo para navegar até a página Configurações de Permalinks." -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:23 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:27 msgid "" "Opening that page in your browser will flush the Rewrite Rules in your site. " "WordPress will then ask all installed and active plugins to register their " @@ -8821,29 +9070,36 @@ msgstr "" "não for esse o caso, entre em contato com o suporte ao " "cliente." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:3 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#, fuzzy +msgid "Plugin Pages" +msgstr "Páginas do Plugin" + +#: templates/admin/delete-browse-categories-page-notice.tpl.php:4 +#, fuzzy msgid "" -"The page is no longer necessary. From now on, " -"all listings will be displayed in the page, even " -"when they are filtered by a particular category." +"The %1$s page is no longer necessary. From now on, all listings will be " +"displayed in the %2$s page, even when they are filtered by a particular " +"category." msgstr "" "A página não é mais necessária. A partir de " "agora, todas as listagens serão exibidas na página , mesmo quando forem filtradas por uma categoria específica." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:9 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:11 +#, fuzzy msgid "" -"The plugin will start redirecting all traffic to the page to make sure no broken links are created." +"The plugin will start redirecting all traffic to the %s page to make sure no " +"broken links are created." msgstr "" "O plugin começará a redirecionar todo o tráfego para a página para garantir que nenhum link quebrado seja criado." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:13 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:15 msgid "Click the button below to delete the page." msgstr "Clique no botão abaixo para excluir a página." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:14 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:18 msgid "Delete Page" msgstr "Apagar Página" @@ -8873,10 +9129,11 @@ msgstr "" "A categoria tem categorias filhos. Selecione uma categoria para definir como " "o novo pai das categorias filho." -#: templates/admin/delete-category-admin-page.tpl.php:32 +#. translators: %1$s: Cancel button , %2$s: Submit button label +#: templates/admin/delete-category-admin-page.tpl.php:34 +#, fuzzy msgid "" -"Click to go back to the list of categories or click " -" to proceed." +"Click %1$s to go back to the list of categories or click %2$s to proceed." msgstr "" "Clique em para voltar à lista de categorias ou clique " "em para prosseguir." @@ -8885,7 +9142,12 @@ msgstr "" msgid "Selected Category" msgstr "Categoria Selecionada" -#: templates/admin/export-listings-admin-page.tpl.php:158 +#: templates/admin/export-listings-admin-page.tpl.php:137 +#, fuzzy +msgid "Export Complete" +msgstr "Exportação concluída" + +#: templates/admin/export-listings-admin-page.tpl.php:153 #, fuzzy msgid "" "Click \"Cleanup\" once the file has been downloaded in order to remove all " @@ -8895,6 +9157,11 @@ msgstr "" "todos os dados temporários criados por Another WordPress Classifieds Plugin " "durante o processo de exportação." +#: templates/admin/export-listings-admin-page.tpl.php:160 +#, fuzzy +msgid "Export Canceled" +msgstr "Exportação cancelada" + #: templates/admin/form-fields-admin-page.tpl.php:7 msgid "" "The table below shows all the form fields that users may need to fill to " @@ -8907,28 +9174,30 @@ msgstr "" "no final de cada linha para arrastar os campos do formulário ao redor e " "modificar a ordem em que os campos aparecem na forma Detalhes do anúncio." -#: templates/admin/form-fields-admin-page.tpl.php:11 -msgid "Form" -msgstr "Formato" - +#. translators: %s is a link to the Form Fields settings page. #: templates/admin/form-fields-admin-page.tpl.php:13 +#, fuzzy msgid "" -"Go to the settings section to control which of " -"the standard fields appear and if the user is required to enter a value. If " -"you have the Extra Fields module, the rest of the fields can be configured " -"from the Extra Fields admin section." +"Go to the %s settings section to control which of the standard fields appear " +"and if the user is required to enter a value. If you have the Extra Fields " +"module, the rest of the fields can be configured from the Extra Fields admin " +"section." msgstr "" "Vá para a seção Configurações para " "controlar qual dos campos padrão aparecer e se o usuário é obrigado a " "digitar um valor. Se você tem o módulo extra Fields, o resto dos campos " "podem ser configurados a partir da seção de administração extra Fields." +#: templates/admin/form-fields-admin-page.tpl.php:14 +msgid "Form" +msgstr "Formato" + #: templates/admin/import/example-csv-file.tpl.php:8 msgid "Import Listings: Example CSV File" msgstr "Anúncios de importação: exemplo de arquivo CSV" #: templates/admin/import/example-csv-file.tpl.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:84 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:76 msgid "See Supported CSV Headers" msgstr "" @@ -8949,7 +9218,7 @@ msgid "Header" msgstr "Cabeçalho" #: templates/admin/import/supported-csv-headers.tpl.php:39 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:86 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:78 msgid "See Example CSV File" msgstr "Veja o exemplo do arquivo CSV" @@ -9058,7 +9327,7 @@ msgstr "" msgid "Default user" msgstr "Usuário padrão" -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:178 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 #: templates/admin/import-listings-admin-page-import-form.tpl.php:44 msgid "" "Press the button below to cancel the current import operation and discard " @@ -9099,36 +9368,37 @@ msgstr "Alterar configuração e reiniciar" msgid "Pause" msgstr "Pausa" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:24 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:21 msgid "CSV file" msgstr "Arquivo CSV:" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:37 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:31 msgid "Images source" msgstr "Fonte de imagens" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:40 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:34 msgid "Don't import images" msgstr "Não importe imagens" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:42 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:36 msgid "ZIP file" msgstr "Arquivo ZIP" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:44 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:38 msgid "Local directory" msgstr "Diretório local" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:49 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:43 msgid "Zip file containing images" msgstr "arquivo zip contendo imagens" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:62 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:54 msgid "Local directory path" msgstr "Caminho do diretório local" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:74 -msgid "The relative path to a directory inside ." +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:64 +#, fuzzy +msgid "The relative path to a directory inside %s." msgstr "" "O caminho relativo para um diretório dentro de ." @@ -9216,27 +9486,27 @@ msgid "Payment Options" msgstr "Opções de pagamento" #. translators: %s is the link the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:84 +#: templates/admin/main-classifieds-admin-page.tpl.php:87 msgid "" "Go to the %s section to edit/delete current categories or add new categories." msgstr "" "Vá para o %s seção para editar / excluir categorias atuais ou adicionar " "novas categorias." -#: templates/admin/main-classifieds-admin-page.tpl.php:90 +#: templates/admin/main-classifieds-admin-page.tpl.php:95 msgid "Total number of categories in the system" msgstr "número total de categorias no sistema" -#: templates/admin/main-classifieds-admin-page.tpl.php:95 +#: templates/admin/main-classifieds-admin-page.tpl.php:100 msgid "Number of Top Level parent categories" msgstr "Número de Nível Superior categorias pai" -#: templates/admin/main-classifieds-admin-page.tpl.php:100 +#: templates/admin/main-classifieds-admin-page.tpl.php:105 msgid "Number of sub level children categories" msgstr "Número de sub nível categorias crianças" #. translators: %s is the link to the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:109 +#: templates/admin/main-classifieds-admin-page.tpl.php:114 msgid "" "You have not categories defined. Go to the %s section to set up your " "categories." @@ -9244,76 +9514,76 @@ msgstr "" "Você não tem categorias definidas. Vá para o %s seção para configurar suas " "categorias." -#: templates/admin/manage-categories-admin-page.tpl.php:43 +#: templates/admin/manage-categories-admin-page.tpl.php:44 msgid "Parent Category" msgstr "Categoria Principal" -#: templates/admin/manage-categories-admin-page.tpl.php:52 +#: templates/admin/manage-categories-admin-page.tpl.php:53 msgid "Category list order" msgstr "ordem da lista Categoria" -#: templates/admin/manage-categories-admin-page.tpl.php:75 +#: templates/admin/manage-categories-admin-page.tpl.php:76 msgid "Icon Meanings:" msgstr "Significados dos ícones:" -#: templates/admin/manage-categories-admin-page.tpl.php:85 +#: templates/admin/manage-categories-admin-page.tpl.php:89 msgid "Move categories or ads under:" msgstr "Mover categorias ou anúncios em:" -#: templates/admin/manage-categories-admin-page.tpl.php:92 +#: templates/admin/manage-categories-admin-page.tpl.php:96 msgid "Delete categories should do this with existing ads:" msgstr "Excluir categorias deve fazer isso com anúncios existentes:" -#: templates/admin/manage-categories-admin-page.tpl.php:93 +#: templates/admin/manage-categories-admin-page.tpl.php:97 msgid "Move ads to new category" msgstr "Mover anúncios para nova categoria" -#: templates/admin/manage-categories-admin-page.tpl.php:94 +#: templates/admin/manage-categories-admin-page.tpl.php:98 msgid "Delete ads too" msgstr "Excluir anúncios também" -#: templates/admin/manage-categories-admin-page.tpl.php:101 +#: templates/admin/manage-categories-admin-page.tpl.php:108 msgid "Move Selected Categories" msgstr "Mova categorias selecionadas" -#: templates/admin/manage-categories-admin-page.tpl.php:102 +#: templates/admin/manage-categories-admin-page.tpl.php:109 msgid "Delete Selected Categories" msgstr "Excluir categorias selecionadas" -#: templates/admin/manage-categories-admin-page.tpl.php:119 +#: templates/admin/manage-categories-admin-page.tpl.php:126 msgid "Select all categories" msgstr "Selecione todas as categorias" -#: templates/admin/manage-categories-admin-page.tpl.php:122 -#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:129 +#: templates/admin/manage-categories-admin-page.tpl.php:145 msgid "Category ID" msgstr "ID da Categoria" -#: templates/admin/manage-categories-admin-page.tpl.php:124 -#: templates/admin/manage-categories-admin-page.tpl.php:136 +#: templates/admin/manage-categories-admin-page.tpl.php:131 +#: templates/admin/manage-categories-admin-page.tpl.php:146 msgid "Category Name (Total Ads)" msgstr "Nome da categoria (Total de Ads)" -#: templates/admin/manage-categories-admin-page.tpl.php:126 -#: templates/admin/manage-categories-admin-page.tpl.php:137 +#: templates/admin/manage-categories-admin-page.tpl.php:133 +#: templates/admin/manage-categories-admin-page.tpl.php:147 msgid "Parent" msgstr "Pai" -#: templates/admin/manage-categories-admin-page.tpl.php:127 -#: templates/admin/manage-categories-admin-page.tpl.php:138 +#: templates/admin/manage-categories-admin-page.tpl.php:134 +#: templates/admin/manage-categories-admin-page.tpl.php:148 msgid "Order" msgstr "Ordem" -#: templates/admin/manage-categories-admin-page.tpl.php:128 -#: templates/admin/manage-categories-admin-page.tpl.php:139 +#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:149 msgid "Action" msgstr "Ação" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:2 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 msgid "What's your PayPal Merchant ID?" msgstr "Qual é o seu ID de comerciante do PayPal?" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:3 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:10 #, fuzzy msgid "" "In order to verify payments made through PayPal, AWP Classifieds Plugin " @@ -9322,11 +9592,11 @@ msgstr "" "Para verificar os pagamentos feitos pelo PayPal, outro plugin do WordPress " "Classifieds precisa conhecer seu ID de comerciante do PayPal." -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:13 +#, fuzzy msgid "" -"Go to to obtain the Merchant ID and then go to the Payment Settings page to enter the " -"value." +"Go to %1$s to obtain the Merchant ID and then go to the %2$sPayment " +"Settings%3$s page to enter the value." msgstr "" "Vá para para obter o ID do comerciante e, em seguida, vá para " "a página Configurações de pagamento \":" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:23 +#, fuzzy msgid "" -"The ad \"\" was modified. A copy of the details sent to the " -"customer can be found below. You can follow this link " -"to go to the Manage Ad Listing section to approve/reject/spam and see the " -"full version of the Ad." +"The following media files were recently uploaded to listing \"%s\" and are " +"awaiting approval:" +msgstr "" +"Os seguintes arquivos de mídia foram enviados recentemente para o anúncio " +"\"\" e estão aguardando aprovação:" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:36 +#, fuzzy +msgid "Click here to manage media uploaded to the listing: %s." +msgstr "" +"Clique aqui para gerenciar a mídia carregada na listagem: ." + +#: templates/email/listing-media-upload-notification.plain.tpl.php:44 +#, fuzzy +msgid "Click here to view the listing: %s." +msgstr "Clique aqui para ver o anúncio: ." + +#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:3 +#, fuzzy +msgid "" +"The ad \"%s\" was modified. A copy of the details sent to the customer can " +"be found below. You can follow this link %s to go to the Manage Ad Listing " +"section to approve/reject/spam and see the full version of the Ad." msgstr "" "O anúncio \"\" foi modificado. Uma cópia dos detalhes enviados " "ao cliente pode ser encontrada abaixo. Pode seguir este link . Por favor, " "verifique-os para fora aqui <-lista sinalizados-url>." -#: templates/frontend/listings.tpl.php:24 +#: templates/frontend/listings.tpl.php:37 msgid "There were no listings found." msgstr "Não houve anúncios encontrados." +#: templates/frontend/order-submit-listing-section.tpl.php:41 +#, fuzzy +msgid "Who is the owner of this ad?" +msgstr "Quem é o proprietário deste anúncio?" + +#: templates/frontend/order-submit-listing-section.tpl.php:86 +#, fuzzy +msgid "Your ad will be posted on the following categories: %s." +msgstr "Seu anúncio será postado nas seguintes categorias: {categories}." + #: templates/privacy-policy.tpl.php:10 msgid "Suggested text:" msgstr "Texto sugerido:" +#: templates/privacy-policy.tpl.php:11 +#, fuzzy +msgid "" +"When you submit a classified listing, the content of the listing and its " +"metadata are retained indefinitely. All users can see, edit or delete the " +"personal information included on their listings at any time. Website " +"administrators can also see and edit that information." +msgstr "" +"Quando você envia um anúncio classificado, o conteúdo do anúncio e seus " +"metadados são mantidos indefinidamente. Todos os usuários podem ver, editar " +"ou excluir as informações pessoais incluídas em seus anúncios a qualquer " +"momento. Os administradores do site também podem ver e editar essas " +"informações." + +#: templates/privacy-policy.tpl.php:14 +#, fuzzy +msgid "" +"Website visitors can see the contact name, website URL, phone number, " +"address and other information included in your submission to describe the " +"classified listing." +msgstr "" +"Os visitantes do site podem ver o nome do contato, URL do site, número de " +"telefone, endereço e outras informações incluídas no seu envio para " +"descrever o anúncio classificado." + +#: templates/privacy-policy.tpl.php:18 +#, fuzzy +msgid "" +"Contact name, email address, website URL and content of submitted classified " +"listings may be checked through Akismet's spam detection service. The " +"Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"O nome do contato, o endereço de e-mail, o URL do site e o conteúdo dos " +"anúncios classificados enviados podem ser verificados através do serviço de " +"detecção de spam da Akismet. A política de privacidade do serviço Akismet " +"está disponível aqui ." + +#: templates/privacy-policy.tpl.php:24 +#, fuzzy +msgid "Payment Information" +msgstr "Informação de Pagamento" + +#: templates/privacy-policy.tpl.php:28 +#, fuzzy +msgid "" +"If you pay to post a classified listing entering your credit card and " +"billing information directly on %s, the credit card information won't be " +"stored but it will be shared through a secure connection with the following " +"payment gateways to process the payment:" +msgstr "" +"Se você pagar para publicar uma listagem classificada inserindo seu cartão " +"de crédito e informações de faturamento diretamente em {home_url}, as informações do cartão de crédito não " +"serão armazenadas, mas serão compartilhados por meio de uma conexão segura " +"com os seguintes gateways de pagamento para processar o pagamento:" + +#: templates/privacy-policy.tpl.php:36 +#, fuzzy +msgid "PayPal - %1$s" +msgstr "PayPal" + +#: templates/privacy-policy.tpl.php:42 +#, fuzzy +msgid "Authorize.Net - %s" +msgstr "Authorize.Net" + +#: templates/privacy-policy.tpl.php:48 +#, fuzzy +msgid "Stripe - %s" +msgstr "Stripe" + +#: templates/privacy-policy.tpl.php:54 +#, fuzzy +msgid "Regions" +msgstr "Regiões" + +#: templates/privacy-policy.tpl.php:56 +#, fuzzy +msgid "" +"If you choose to see listings published on a specific region, a cookie will " +"be stored on your browser for the remainder of the session to remember the " +"selected region." +msgstr "" +"Se você optar por ver os anúncios publicadas em uma região específica, um " +"cookie será armazenado em seu navegador pelo restante da sessão para lembrar " +"a região selecionada." + +#: templates/privacy-policy.tpl.php:58 +#, fuzzy +msgid "Comments and Ratings" +msgstr "Comentários e Avaliações" + +#: templates/privacy-policy.tpl.php:60 +#, fuzzy +msgid "" +"When visitors leave comments and reviews for classified listings we collect " +"the data shown in the comments form, and also the visitor’s IP address to " +"help spam detection." +msgstr "" +"Quando os visitantes deixam comentários e críticas para anúncios " +"classificados, coletamos os dados mostrados no formulário de comentários e " +"também o endereço IP do visitante para ajudar na detecção de spam." + +#: templates/privacy-policy.tpl.php:64 +#, fuzzy +msgid "" +"Visitor comments may be checked through Akismet's spam detection service. " +"The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"Os comentários dos visitantes podem ser verificados através do serviço de " +"detecção de spam da Akismet. A política de privacidade do serviço Akismet " +"está disponível aqui." + +#: templates/privacy-policy.tpl.php:70 +msgid "Restricted Categories" +msgstr "Categorias restritos" + +#: templates/privacy-policy.tpl.php:72 +#, fuzzy +msgid "" +"When you agree to see listings or publish a listing on a restricted " +"category, a cookie will be stored in your browser to remember your decision. " +"The cookie will be stored on your browser for the remainder of that session." +msgstr "" +"Quando você concorda em ver anúncios ou publicar um anúncio em uma categoria " +"restrita, um cookie será armazenado no seu navegador para lembrar sua " +"decisão. O cookie será armazenado no seu navegador pelo restante da sessão." + #. Author URI of the plugin/theme msgid "https://awpcp.com/" msgstr "" @@ -9592,29 +10034,29 @@ msgctxt "awpcp admin menu" msgid "Classifieds" msgstr "Classificados" -#: admin/admin-panel.php:810 includes/settings/class-listings-settings.php:469 +#: admin/admin-panel.php:794 includes/settings/class-listings-settings.php:469 msgctxt "page name" msgid "Show Ad" msgstr "Mostrar anúncio" -#: admin/admin-panel.php:818 +#: admin/admin-panel.php:802 msgctxt "page name" msgid "Edit Ad" msgstr "Editar anúncio" -#: admin/class-csv-exporter.php:82 +#: admin/class-csv-exporter.php:83 msgctxt "admin csv-export" msgid "Could not create a temporary directory for handling this CSV export." msgstr "" "Não foi possível criar um diretório temporário para exportar o arquivo CSV." -#: admin/class-csv-exporter.php:85 +#: admin/class-csv-exporter.php:86 msgctxt "admin csv-export" msgid "Could not create awpcp-csv-exports directory." msgstr "Não foi possível criar o diretório awpcp-csv-exportados." #. translators: %s the error. -#: admin/class-csv-exporter.php:91 +#: admin/class-csv-exporter.php:95 msgctxt "admin csv-export" msgid "Error while creating a temporary directory for CSV export: %s" msgstr "Erro ao criar diretório temporário para exportar CSV %s" @@ -9624,76 +10066,73 @@ msgctxt "admin csv-export" msgid "Could not decode export state information." msgstr "Não foi possível decodificar a informação do estado da exportação" -#: admin/class-debug-admin-page.php:136 +#: admin/class-debug-admin-page.php:137 msgctxt "debug page" msgid "Plugin Info" msgstr "Informação do Plugin" -#: admin/class-debug-admin-page.php:137 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:33 +#: admin/class-debug-admin-page.php:138 msgctxt "debug page" msgid "Plugin Pages" msgstr "Páginas do Plugin" -#: admin/class-debug-admin-page.php:138 +#: admin/class-debug-admin-page.php:139 msgctxt "debug page" msgid "Plugin Settings" msgstr "Configurações do Plugin" -#: admin/class-debug-admin-page.php:139 +#: admin/class-debug-admin-page.php:140 msgctxt "debug page" msgid "Environment" msgstr "Ambiente" -#: admin/class-debug-admin-page.php:140 -#: admin/templates/admin-panel-debug.tpl.php:32 +#: admin/class-debug-admin-page.php:141 +#: admin/templates/admin-panel-debug.tpl.php:59 msgctxt "debug page" msgid "Rewrite Rules" msgstr "regras de reescrita" -#: admin/class-debug-admin-page.php:177 +#: admin/class-debug-admin-page.php:178 msgctxt "debug page" msgid "Plugin Version" msgstr "Versão do Plugin" -#: admin/class-debug-admin-page.php:283 -#: admin/templates/admin-panel-debug.tpl.php:126 +#: admin/class-debug-admin-page.php:284 msgctxt "debug page" msgid "cURL's alternate CA info (cacert.pem)" msgstr "do cURL Informação alternativo CA (cacert.pem)" -#: admin/class-debug-admin-page.php:287 -#: admin/templates/admin-panel-debug.tpl.php:130 +#: admin/class-debug-admin-page.php:288 msgctxt "debug page" msgid "PayPal Connection" msgstr "PayPal Connection" -#: admin/class-debug-admin-page.php:359 +#: admin/class-debug-admin-page.php:360 msgctxt "debug page" msgid "Working" msgstr "Trabalhando" -#: admin/class-debug-admin-page.php:362 -#: admin/templates/admin-panel-debug.tpl.php:136 +#: admin/class-debug-admin-page.php:363 msgctxt "debug page" msgid "Not Working" msgstr "Não trabalho" -#: admin/templates/admin-panel-debug.tpl.php:22 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:31 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:34 msgctxt "debug page" msgid "Flush Rewrite Rules" msgstr "Regras de Reescrita nivelados" -#: admin/templates/admin-panel-debug.tpl.php:26 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s Linked +#. URL in anchor link +#: admin/templates/admin-panel-debug.tpl.php:48 +#, fuzzy msgctxt "debug page" msgid "" -"This information can help AWPCP Developers to debug possible problems. If " -"you are submitting a bug report please Download the " -"Debug Information and attach it to your bug report or take a " -"minute to copy the information below to http://fpaste.org and provide the resulting URL in " -"your report." +"This information can help the AWP Team to debug possible problems. If you " +"are submitting a bug report please %1$sDownload the Debug Information%2$s " +"and attach it to your bug report or take a minute to copy the information " +"below to %3$s and provide the resulting URL in your report." msgstr "" "Esta informação pode ajudar AWPCP desenvolvedores para depurar possíveis " "problemas. Se você estiver enviando um relatório de bug, por favor " @@ -9702,31 +10141,21 @@ msgstr "" "abaixo http://fpaste.org e fornecer a URL resultante em seu relatório." -#: admin/templates/admin-panel-debug.tpl.php:29 +#: admin/templates/admin-panel-debug.tpl.php:56 msgctxt "debug page" msgid "AWPCP Pages" msgstr "Páginas AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:57 msgctxt "debug page" msgid "PHP Info" msgstr "Informação do PHP" -#: admin/templates/admin-panel-debug.tpl.php:31 +#: admin/templates/admin-panel-debug.tpl.php:58 msgctxt "debug page" msgid "AWPCP Settings" msgstr "Configurações AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:118 -msgctxt "debug page" -msgid "PHP Version" -msgstr "Versão do PHP" - -#: admin/templates/admin-panel-debug.tpl.php:122 -msgctxt "debug page" -msgid "cURL" -msgstr "cURL" - #. translators: %s is the URL to download the debug information #: templates/admin/debug/debug-admin-page.tpl.php:17 msgctxt "debug page" @@ -9740,22 +10169,22 @@ msgstr "" "Baixe as Informações de Depuração e " "anexe-as ao seu relatório de bug." -#: templates/admin/debug/plugin-info-debug-section.tpl.php:29 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:38 msgctxt "debug page" msgid "There are no premium modules activated right now." msgstr "Não há módulos premium ativados no momento." -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:38 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:49 msgctxt "debug page" msgid "Reference" msgstr "Referência" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:39 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:50 msgctxt "debug page" msgid "Page Title" msgstr "Título da Página" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:51 msgctxt "debug page" msgid "Stored ID" msgstr "ID armazenada" @@ -9770,41 +10199,39 @@ msgctxt "debug page" msgid "Setting Value" msgstr "Valor da configuração" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Exists" msgstr "existe." -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Missing" msgstr "Valores" -#: admin/class-import-listings-admin-page.php:358 +#: admin/class-import-listings-admin-page.php:362 msgctxt "" "description for messages used to show feedback for the Import Listings " "operation" msgid " in line " msgstr " em linha " -#: admin/class-import-listings-admin-page.php:369 +#: admin/class-import-listings-admin-page.php:373 msgctxt "text for page subtitle and submit button" msgid "Test Import" msgstr "Importação de teste" -#: admin/class-import-listings-admin-page.php:371 +#: admin/class-import-listings-admin-page.php:375 msgctxt "text for page subtitle and submit button" msgid "Import" msgstr "Importar" -#: admin/class-import-settings-admin-page.php:104 +#: admin/class-import-settings-admin-page.php:102 msgctxt "import settings" msgid "Are you sure you want to do this?" msgstr "Tem certeza que quer fazer isto?" -#: admin/class-import-settings-admin-page.php:116 +#: admin/class-import-settings-admin-page.php:115 msgctxt "import settings" msgid "" "There was a problem trying to read the settings file; it appears the file " @@ -9813,90 +10240,6 @@ msgstr "" "Houve um problema tentando ler o arquivo de configuração; parece que o " "arquivo não foi enviado corretamente. Por favor tente novamente." -#: admin/class-import-settings-admin-page.php:122 -msgctxt "another-wordpress-classifieds-plugin" -msgid "Your settings have been successfully imported." -msgstr "Suas configurações foram importadas com sucesso." - -#: includes/settings/class-email-settings.php:201 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello {author_name} \n" -"\n" -"You recently posted the Ad {listing_title} to {website_title}. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"{verification_link} \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" -msgstr "" -"Olá {author_name} \n" -"\n" -"Você recentemente postou o anúncio {listing_title} to {website_title}. \n" -"Para completar o processo de postagem você tem que confirmar seu endereço de " -"email. Por favor clique no link abaixo para completar o processo de " -"confirmação. Você será redirecionado para o website onde você poderá ver o " -"seu anúncio. \n" -"\n" -"{verification_link} \n" -"\n" -"Após você confirmar seu endereço de email, o administrador será notificado " -"sobre o novo anúncio. Se a moderação estiver habilitada seu anúncio " -"permanecerá em estado de desabilitado até que o administrador o aprove.\n" -"\n" -"{website_title}\n" -"\n" -"\n" -"{website_url}" - -#: installer.php:849 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello $author_name \n" -"\n" -"You recently posted the Ad $title to $website_name. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"$verification_link \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" -msgstr "" -"Olá, $author_name \n" -"\n" -"Você postou recentemente o $título do anúncio em $website_name. \n" -" \n" -"Para concluir o processo de postagem, você deve verificar seu endereço de e-" -"mail. Clique no link abaixo para concluir o processo de verificação. Você " -"será redirecionado para o site onde pode ver seu anúncio. \n" -"\n" -" $notification_link\n" -"\n" -"Depois de confirmar seu endereço de e-mail, o administrador será notificado " -"sobre o novo anúncio. Se a moderação estiver ativada, seu anúncio " -"permanecerá desativado até que o administrador aprove. \n" -"\n" -" $website_name\n" -"\n" -"$website_url" - #: admin/credit-plans/class-delete-credit-plan-action-handler.php:30 #: admin/credit-plans/class-edit-credit-plan-action-handler.php:27 msgctxt "credit plans ajax" @@ -9918,18 +10261,18 @@ msgctxt "form field slug" msgid "Slug" msgstr "Links Permanentes" -#: admin/import/class-csv-importer-delegate.php:98 +#: admin/import/class-csv-importer-delegate.php:101 msgctxt "csv importer" msgid "Required value for column \"\" is missing." msgstr "Valor requerido para coluna \"\" ausente." -#: admin/import/class-csv-importer-delegate.php:181 +#: admin/import/class-csv-importer-delegate.php:184 msgctxt "csv importer" msgid "A new user '%s' with email address '%s' and password '%s' was created." msgstr "" "Um novo usuário '%s' com endereço de email '%s' e senha '%s' foi criado." -#: admin/import/class-csv-importer-delegate.php:252 +#: admin/import/class-csv-importer-delegate.php:256 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9942,7 +10285,7 @@ msgstr "" "tem valor vazio. Por favor inclua nome de usuário e email de contato ou " "selecione usuário padrão." -#: admin/import/class-csv-importer-delegate.php:255 +#: admin/import/class-csv-importer-delegate.php:258 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9953,7 +10296,7 @@ msgstr "" "ser criado porque a coluna nome de usuário está faltando ou tem valor vazio. " "Por favor inclua nome de usuário ou selecione usuário padrão." -#: admin/import/class-csv-importer-delegate.php:258 +#: admin/import/class-csv-importer-delegate.php:260 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9964,17 +10307,17 @@ msgstr "" "ser criado porque a coluna email de contato está faltando ou tem valor " "vazio. Por favor inclua um email de contato ou selecione usuário padrão." -#: admin/import/class-csv-importer-delegate.php:312 +#: admin/import/class-csv-importer-delegate.php:316 msgctxt "csv importer" msgid "No category with name \"\" was found." msgstr "Nenhuma categoria com nome \"\" foi encontrada." -#: admin/import/class-csv-importer-delegate.php:328 +#: admin/import/class-csv-importer-delegate.php:332 msgctxt "csv importer" msgid "There was an error trying to create category \"\"." msgstr "Há um erro tentando criar categoria \"\"." -#: admin/import/class-csv-importer-delegate.php:337 +#: admin/import/class-csv-importer-delegate.php:342 msgctxt "csv importer" msgid "" "A category with name \"\" was created, but there was an error " @@ -9983,48 +10326,48 @@ msgstr "" "Uma categoria com nome \"\" foi criada, mas houve um erro " "tentando recuperar esta informação da base de dados." -#: admin/import/class-csv-importer-delegate.php:349 +#: admin/import/class-csv-importer-delegate.php:355 msgctxt "csv importer" msgid "Item price must be a number." msgstr "Item preço deve ser um número." -#: admin/import/class-csv-importer-delegate.php:363 +#: admin/import/class-csv-importer-delegate.php:369 msgctxt "csv importer" msgid "The start date is missing and no default value was defined." msgstr "A data de início está perdida e nenhum valor padrão foi definido." -#: admin/import/class-csv-importer-delegate.php:364 +#: admin/import/class-csv-importer-delegate.php:370 msgctxt "csv importer" msgid "The start date is invalid and no default value was defined." msgstr "A data de início é inválida e nenhum valor padrão foi definido." -#: admin/import/class-csv-importer-delegate.php:365 +#: admin/import/class-csv-importer-delegate.php:371 msgctxt "csv importer" msgid "Invalid default start date." msgstr "Padrão inválido para a data de início." -#: admin/import/class-csv-importer-delegate.php:430 -#: admin/import/class-csv-importer-delegate.php:431 +#: admin/import/class-csv-importer-delegate.php:436 +#: admin/import/class-csv-importer-delegate.php:437 msgctxt "csv importer" msgid "The end date is missing and no default value was defined." msgstr "A data final está perdida e nenhum valor padrão foi definido." -#: admin/import/class-csv-importer-delegate.php:432 +#: admin/import/class-csv-importer-delegate.php:438 msgctxt "csv importer" msgid "Invalid default end date." msgstr "Padrão inválido para a data final." -#: admin/import/class-csv-importer-delegate.php:499 +#: admin/import/class-csv-importer-delegate.php:505 msgctxt "csv importer" msgid "Image file with name not found." msgstr "Arquivo de imagem com nome não foi encontrado." -#: admin/import/class-csv-importer-delegate.php:566 +#: admin/import/class-csv-importer-delegate.php:576 msgctxt "csv importer" msgid "There was an error trying to store imported data into the database." msgstr "Há um erro tentando armazenar dados importados para a base de dados." -#: admin/import/class-csv-importer-delegate.php:587 +#: admin/import/class-csv-importer-delegate.php:599 msgctxt "csv importer" msgid "" "There was an error trying to import one of the images: {image-validation-" @@ -10046,20 +10389,6 @@ msgctxt "drip-autoresponder" msgid "The email address entered is not valid." msgstr "O endereço de e-mail digitado não é válido." -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 -msgctxt "drip-autoresponder" -msgid "Thank you for signing up!" -msgstr "Obrigado por inscrever-se!" - -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 -msgctxt "drip-autoresponder" -msgid "" -"Please check your email and click the link provided to confirm your " -"subscription." -msgstr "" -"Por favor, verifique seu e-mail e clique no link fornecido para confirmar " -"sua inscrição." - #: admin/pointers/class-drip-autoresponder.php:22 msgctxt "drip-autoresponder" msgid "Yes, I'd like my course, please" @@ -10070,20 +10399,6 @@ msgctxt "drip-autoresponder" msgid "No, thanks" msgstr "Não, obrigado" -#: admin/pointers/class-drip-autoresponder.php:62 -msgctxt "drip-autoresponder" -msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" -msgstr "" -"Quer saber os segredos de construção de um Web site de Classifieds " -"impressionante?" - -#: admin/pointers/class-drip-autoresponder.php:63 -msgctxt "drip-autoresponder" -msgid "" -"Find out how to create a compelling, thriving classifieds site from scratch " -"in this ridiculously actionable (and free) 5-part email course." -msgstr "" - #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:6 msgctxt "credit plans form" msgid "Edit Credit Plan Details" @@ -10099,28 +10414,6 @@ msgctxt "Quick Start Guide" msgid "No Thanks" msgstr "Não Obrigado(a)" -#: admin/templates/admin-quick-start-guide-notice.tpl.php:9 -msgctxt "Quick Start Guide" -msgid "I'll figure it out on my own." -msgstr "Eu vou descobrir isso por conta própria." - -#: admin/templates/admin-quick-start-guide-notice.tpl.php:17 -msgctxt "Quick Start Guide" -msgid "Help me get my classifieds running quickly." -msgstr "Me ajudar a conseguir meus Classificados funcionamento rapidamente." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:75 -msgctxt "Browse the Quick Start Guide" -msgid "Browse the %s." -msgstr "Navegar na %s ." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:85 -msgctxt "Read the full Documentation" -msgid "Read the full %s." -msgstr "Leia a íntegra %s ." - #: admin/templates/admin-widget-modification-notice.tpl.php:7 msgctxt "widget modification notice" msgid "Close this, I'll check my Widget configuration." @@ -10180,17 +10473,17 @@ msgctxt "404 HTTP status description" msgid "Listing not found" msgstr "Anúncio não encontrado" -#: frontend/page-place-ad.php:1417 +#: frontend/page-place-ad.php:1420 msgctxt "upload listing images form" msgid "Preview Ad" msgstr "visualização de anúncios" -#: frontend/page-place-ad.php:1419 +#: frontend/page-place-ad.php:1422 msgctxt "upload listing images form" msgid "Place Ad" msgstr "Colocar anúncio" -#: frontend/page-place-ad.php:1421 +#: frontend/page-place-ad.php:1424 msgctxt "upload listing images form" msgid "Checkout" msgstr "Conferência" @@ -10271,7 +10564,7 @@ msgctxt "listing row action" msgid "Unflag" msgstr "remover o sinalizador" -#: frontend/templates/email-send-ad-access-key.tpl.php:9 +#: frontend/templates/email-send-ad-access-key.tpl.php:13 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:18 #: templates/email/listing-edit-link-with-access-token.tpl.php:9 msgctxt "edit link email" @@ -10329,11 +10622,6 @@ msgctxt "loading region options" msgid "loading..." msgstr "Carregando ..." -#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 -msgctxt "add credit checkout step" -msgid "Complete Payment" -msgstr "O pagamento completo" - #: frontend/templates/page-edit-ad-email-key-step.tpl.php:34 msgctxt "enter email and access key form" msgid "Continue" @@ -10341,36 +10629,31 @@ msgstr "Continuar" #: frontend/templates/page-edit-ad-send-access-key-step.tpl.php:27 msgctxt "send ad access key form" -msgid "Continue" -msgstr "Continuar" - -#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 -msgctxt "place ad checkout step" -msgid "Complete Payment" -msgstr "O pagamento completo" +msgid "Continue" +msgstr "Continuar" -#: frontend/templates/page-place-ad-details-step.tpl.php:59 +#: frontend/templates/page-place-ad-details-step.tpl.php:63 msgctxt "ad details form" msgid "Start Date" msgstr "Data de Início" -#: frontend/templates/page-place-ad-details-step.tpl.php:69 +#: frontend/templates/page-place-ad-details-step.tpl.php:73 msgctxt "ad details form" msgid "End Date" msgstr "Data de Término" -#: frontend/templates/page-place-ad-details-step.tpl.php:98 +#: frontend/templates/page-place-ad-details-step.tpl.php:104 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:9 msgctxt "ad details form" msgid "Read our Terms of Service" msgstr "Leia nossos termos de serviço" -#: frontend/templates/page-place-ad-details-step.tpl.php:100 +#: frontend/templates/page-place-ad-details-step.tpl.php:106 msgctxt "ad details form" msgid "Terms of service:" msgstr "Termos de serviço" -#: frontend/templates/page-place-ad-details-step.tpl.php:105 +#: frontend/templates/page-place-ad-details-step.tpl.php:111 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:17 msgctxt "ad details form" msgid "I agree to the terms of service" @@ -10437,12 +10720,12 @@ msgctxt "ad details form" msgid "Terms of Service" msgstr "Termos de serviço" -#: frontend/templates/page-place-ad-details-step.tpl.php:120 +#: frontend/templates/page-place-ad-details-step.tpl.php:126 msgctxt "listing details form" msgid "Preview Ad" msgstr "visualização de anúncios" -#: frontend/templates/page-place-ad-details-step.tpl.php:122 +#: frontend/templates/page-place-ad-details-step.tpl.php:128 msgctxt "listing details form" msgid "Continue" msgstr "Continuar" @@ -10472,7 +10755,7 @@ msgctxt "place ad order step" msgid "Please select the owner for this Ad" msgstr "Por favor, selecione o proprietário para este anúncio" -#: frontend/templates/page-place-ad-order-step.tpl.php:82 +#: frontend/templates/page-place-ad-order-step.tpl.php:84 msgctxt "listing order form" msgid "Continue" msgstr "Continuar" @@ -10483,26 +10766,12 @@ msgctxt "images upload step" msgid "Thumbnails of already uploaded images are shown below." msgstr "Miniaturas de imagens já enviados são mostrados abaixo." -#: frontend/templates/page-renew-ad-order-step.tpl.php:6 -msgctxt "renew ad order step" -msgid "Select Payment Term" -msgstr "Select Prazo de Pagamento" - -#: frontend/templates/page-search-ads.tpl.php:88 +#: frontend/templates/page-search-ads.tpl.php:95 msgctxt "ad search form" msgid "Find Ads" msgstr "Encontrar anúncios" -#: frontend/templates/payments-billing-form.tpl.php:1 -msgctxt "awpcp billing form" -msgid "" -"Please fill in the billing information in the form below to place your " -"payment." -msgstr "" -"Por favor, preencha as informações de cobrança no formulário abaixo para " -"colocar o seu pagamento." - -#: frontend/templates/payments-checkout-page.tpl.php:13 +#: frontend/templates/payments-checkout-page.tpl.php:12 msgctxt "checkout step" msgid "" "You are about to pay for the following items. Please review the order and " @@ -10511,108 +10780,47 @@ msgstr "" "Você está prestes a pagar para os seguintes itens. Por favor, reveja a ordem " "e escolher um método de pagamento." -#: frontend/templates/payments-checkout-page.tpl.php:17 +#: frontend/templates/payments-checkout-page.tpl.php:16 msgctxt "checkout step" msgid "Payment Terms" msgstr "Condições de Pagamento" -#: frontend/templates/payments-checkout-page.tpl.php:23 +#: frontend/templates/payments-checkout-page.tpl.php:22 msgctxt "checkout step" msgid "Payment Method" msgstr "Forma de Pagamento" #: frontend/templates/payments-checkout-payment-page.tpl.php:8 -#: frontend/templates/payments-payment-page.tpl.php:3 msgctxt "checkout-payment page" msgid "You are about to pay for the following items." msgstr "Você está prestes a pagar para os seguintes itens." #: frontend/templates/payments-checkout-payment-page.tpl.php:10 -#: frontend/templates/payments-payment-page.tpl.php:5 msgctxt "checkout-payment page" msgid "Payment Terms" msgstr "Condições de Pagamento" -#: includes/payments-api.php:802 +#: includes/payments-api.php:889 msgctxt "checkout-payment page" msgid "Please use the button below to complete your payment." msgstr "Por favor, use o botão abaixo para concluir o pagamento." -#: frontend/templates/payments-credit-plans-table.tpl.php:7 -msgctxt "credit plans table" -msgid "" -"You can additionally purchase a Credit Plan to add credit to your account. " -"If you select to pay using credits, the price of the selected payment term " -"will be deducted from your account balance after you have completed payment." -msgstr "" -"Além disso, você pode comprar um plano de crédito para adicionar crédito à " -"sua conta. Se você optar por pagar com créditos, o preço do prazo de " -"pagamento selecionado será deduzido do saldo de sua conta depois de ter " -"concluído o pagamento." - -#: frontend/templates/payments-credit-plans-table.tpl.php:51 -msgctxt "credit plans table" -msgid "clear selection" -msgstr "Seleção clara" - -#: includes/payments-api.php:722 -msgctxt "credit plans table" -msgid "Plan" -msgstr "Plano" - -#: includes/payments-api.php:723 -msgctxt "credit plans table" -msgid "Description" -msgstr "Descrição" - -#: includes/payments-api.php:724 -msgctxt "credit plans table" -msgid "Credits" -msgstr "Créditos" - -#: includes/payments-api.php:725 -msgctxt "credit plans table" -msgid "Price" -msgstr "Preço" - -#: frontend/templates/payments-payment-completed-page.tpl.php:2 -msgctxt "payment completed page" -msgid "Transaction Details" -msgstr "Detalhes da transação" - #: frontend/templates/payments-paypal-payment-button.tpl.php:27 msgctxt "paypal-checkout-form" msgid "Return to %s" msgstr "Retornar para %s" -#: frontend/templates/payments-transaction-items-table.tpl.php:4 -#: frontend/templates/payments-transaction-items-table.tpl.php:13 -msgctxt "transaction items" -msgid "Item" -msgstr "Correlações" - -#: frontend/templates/payments-transaction-items-table.tpl.php:5 -#: frontend/templates/payments-transaction-items-table.tpl.php:17 -msgctxt "transaction items" -msgid "Amount" -msgstr "Quantia" - -#: frontend/templates/payments-transaction-items-table.tpl.php:34 -msgctxt "transaction items" -msgid "Total Amount (credit)" -msgstr "Valor Total (crédito)" - #: frontend/templates/payments-transaction-items-table.tpl.php:40 msgctxt "transaction items" msgid "Total Amount" msgstr "Valor total" -#: functions.php:743 +#: functions.php:749 msgctxt "comma separated list of things" msgid "%s and %d more." msgstr "%s e %d mais." -#: functions.php:1200 +#: functions.php:1222 msgctxt "default blog title" msgid "Classifieds Website" msgstr "Classificados site" @@ -10844,27 +11052,27 @@ msgctxt "listing status" msgid "Active" msgstr "Ativo" -#: includes/admin/listings/class-listings-table-columns-handler.php:211 +#: includes/admin/listings/class-listings-table-columns-handler.php:212 msgctxt "listing status" msgid "Pending Approval" msgstr "Pendente de Aprovação" -#: includes/admin/listings/class-listings-table-columns-handler.php:215 +#: includes/admin/listings/class-listings-table-columns-handler.php:217 msgctxt "listing status" msgid "Expired" msgstr "Expirado" -#: includes/admin/listings/class-listings-table-columns-handler.php:219 +#: includes/admin/listings/class-listings-table-columns-handler.php:222 msgctxt "listing status" msgid "Disabled" msgstr "Desativado" -#: includes/admin/listings/class-listings-table-columns-handler.php:223 +#: includes/admin/listings/class-listings-table-columns-handler.php:227 msgctxt "listing status" msgid "Pending Payment" msgstr "Pagamento Pendente" -#: includes/admin/listings/class-listings-table-columns-handler.php:227 +#: includes/admin/listings/class-listings-table-columns-handler.php:232 msgctxt "listing status" msgid "Pending Verification" msgstr "Verificação pendente" @@ -10879,17 +11087,17 @@ msgctxt "listings row action" msgid "Quick View" msgstr "Visualizar rápido" -#: includes/class-awpcp.php:1458 +#: includes/class-awpcp.php:1449 msgctxt "[UI Datepicker] Display text for previous month link" msgid "<Prev" msgstr "<Prev" -#: includes/class-awpcp.php:1459 +#: includes/class-awpcp.php:1450 msgctxt "[UI Datepicker] Display text for next month link" msgid "Next>" msgstr "Next>" -#: includes/class-awpcp.php:1465 +#: includes/class-awpcp.php:1456 msgctxt "[UI Datepicker] The first day of the week, Sun = 0, Mon = 1, ..." msgid "0" msgstr "." @@ -10942,7 +11150,7 @@ msgid "Regions" msgstr "Regiões" #. translators: the numbers that need to be added up for the math challenge. -#: includes/frontend/class-default-captcha-provider.php:34 +#: includes/frontend/class-default-captcha-provider.php:45 msgctxt "CAPTCHA" msgid "Enter the value of the following sum: %1$d + %2$d" msgstr "Entrar o valor da seguinte soma: %1$d + %2$d" @@ -10972,12 +11180,7 @@ msgctxt "order submit listing section" msgid "Please select a category for your ad" msgstr "Selecione uma categoria para o seu anúncio" -#: templates/frontend/order-submit-listing-section.tpl.php:44 -msgctxt "order submit listing section" -msgid "Who is the owner of this ad?" -msgstr "Quem é o proprietário deste anúncio?" - -#: templates/frontend/order-submit-listing-section.tpl.php:59 +#: templates/frontend/order-submit-listing-section.tpl.php:57 msgctxt "order submit listing section" msgid "" "Please select the duration and features that will be available for this ad" @@ -10985,68 +11188,63 @@ msgstr "" "Por favor, selecione a duração e os recursos que estarão disponíveis para " "este anúncio" -#: templates/frontend/order-submit-listing-section.tpl.php:81 +#: templates/frontend/order-submit-listing-section.tpl.php:77 msgctxt "order submit listing section" msgid "Continue" msgstr "Continuar" -#: templates/frontend/order-submit-listing-section.tpl.php:87 -msgctxt "order submit listing section" -msgid "Your ad will be posted on the following categories: {categories}." -msgstr "Seu anúncio será postado nas seguintes categorias: {categories}." - -#: templates/frontend/order-submit-listing-section.tpl.php:95 +#: templates/frontend/order-submit-listing-section.tpl.php:98 msgctxt "order submit listing section" msgid "Credit Plan:" msgstr "Plano de Crédito:" -#: templates/frontend/order-submit-listing-section.tpl.php:96 +#: templates/frontend/order-submit-listing-section.tpl.php:99 msgctxt "order submit listing section" msgid "Owner:" msgstr "Proprietário:" -#: templates/frontend/order-submit-listing-section.tpl.php:99 +#: templates/frontend/order-submit-listing-section.tpl.php:102 msgctxt "order submit listing section" msgid "Loading ad fields" msgstr "Carregar campo anúncio" -#: templates/frontend/order-submit-listing-section.tpl.php:100 +#: templates/frontend/order-submit-listing-section.tpl.php:103 msgctxt "order submit listing section" msgid "Change selection" msgstr "Mudar seleção" -#: includes/frontend/class-recaptcha-v2.php:66 +#: includes/frontend/class-recaptcha-v2.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing" msgstr "O parâmetro segredo está em falta" -#: includes/frontend/class-recaptcha-v2.php:69 -#: includes/helpers/class-recaptcha-v3.php:74 +#: includes/frontend/class-recaptcha-v2.php:96 +#: includes/helpers/class-recaptcha-v3.php:96 msgctxt "recaptcha-error" msgid "The secret parameter is invalid or malformed." msgstr "O parâmetro segredo é inválido ou mal formado." -#: includes/frontend/class-recaptcha-v2.php:72 +#: includes/frontend/class-recaptcha-v2.php:99 msgctxt "recaptcha-error" msgid "The response parameter is missing." msgstr "O parâmetro de resposta está em falta." -#: includes/frontend/class-recaptcha-v2.php:76 +#: includes/frontend/class-recaptcha-v2.php:103 msgctxt "recaptcha-error" msgid "The response parameter is invalid or malformed." msgstr "O parâmetro de resposta é inválido ou mal formado." -#: includes/helpers/class-recaptcha-v3.php:71 +#: includes/helpers/class-recaptcha-v3.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing." msgstr "O parâmetro secreto está perdido." -#: includes/helpers/class-recaptcha-v3.php:77 +#: includes/helpers/class-recaptcha-v3.php:99 msgctxt "recaptcha-error" msgid "reCAPTCHA score was not included." msgstr "O parâmetro secreto está perdido." -#: includes/helpers/class-recaptcha-v3.php:81 +#: includes/helpers/class-recaptcha-v3.php:103 msgctxt "recaptcha-error" msgid "reCAPTCHA couldn't analyze the current interaction." msgstr "reCAPTCHA não pode analisar a atual interação" @@ -11183,7 +11381,7 @@ msgid "remaining" msgstr "Restando" #. translators: %s is the type of region. -#: includes/helpers/widgets/multiple-region-selector.php:122 +#: includes/helpers/widgets/multiple-region-selector.php:142 msgctxt "Select in Multiple Region Selector" msgid "Select %s" msgstr "Selecione %s" @@ -11206,7 +11404,7 @@ msgid "Add New" msgstr "Adicionar Novo" #: includes/models/class-custom-post-types.php:157 -#: includes/settings/class-listings-settings.php:595 +#: includes/settings/class-listings-settings.php:597 msgctxt "listing post type slug" msgid "classifieds" msgstr "Classificados" @@ -11226,7 +11424,7 @@ msgctxt "payment gateways" msgid "2Checkout" msgstr "Finalizar Compra" -#: includes/payment-gateway-paypal-standard.php:24 +#: includes/payment-gateway-paypal-standard.php:26 msgctxt "payment gateways" msgid "PayPal" msgstr "PayPal" @@ -11264,57 +11462,77 @@ msgid_plural "Years" msgstr[0] "Ano" msgstr[1] "Ano" -#: includes/payment-terms-table.php:33 +#: includes/payment-terms-table.php:38 msgctxt "place ad payment terms column headers" msgid "Payment Term" msgstr "Prazo de Pagamento" -#: includes/payment-terms-table.php:34 +#: includes/payment-terms-table.php:39 msgctxt "place ad payment terms column headers" msgid "Ads Allowed" msgstr "anúncios de estimação" -#: includes/payment-terms-table.php:35 +#: includes/payment-terms-table.php:40 msgctxt "place ad payment terms column headers" msgid "Images Allowed" msgstr "imagens de estimação" -#: includes/payment-terms-table.php:36 +#: includes/payment-terms-table.php:41 msgctxt "place ad payment terms column headers" msgid "Characters in Title" msgstr "Caracteres no título" -#: includes/payment-terms-table.php:37 +#: includes/payment-terms-table.php:42 msgctxt "place ad payment terms column headers" msgid "Chars in Description" msgstr "Caracteres na descrição" -#: includes/payment-terms-table.php:38 +#: includes/payment-terms-table.php:43 msgctxt "place ad payment terms column headers" msgid "Duration" msgstr "Duração" -#: includes/payment-terms-table.php:44 +#: includes/payment-terms-table.php:49 msgctxt "place ad payment terms column headers" msgid "Price (currency)" msgstr "Preço (moeda)" -#: includes/payment-terms-table.php:49 +#: includes/payment-terms-table.php:54 msgctxt "place ad payment terms column headers" msgid "Price (credits)" msgstr "Preço (créditos)" -#: includes/payment-terms-table.php:106 includes/payment-terms-table.php:111 +#: includes/payment-terms-table.php:139 includes/payment-terms-table.php:145 msgctxt "payment term duration" msgid "No Limit" msgstr "Sem Limite" -#: includes/settings/class-email-settings.php:135 +#: includes/payments-api.php:757 +msgctxt "credit plans table" +msgid "Plan" +msgstr "Plano" + +#: includes/payments-api.php:758 +msgctxt "credit plans table" +msgid "Description" +msgstr "Descrição" + +#: includes/payments-api.php:759 +msgctxt "credit plans table" +msgid "Credits" +msgstr "Créditos" + +#: includes/payments-api.php:760 +msgctxt "credit plans table" +msgid "Price" +msgstr "Preço" + +#: includes/settings/class-email-settings.php:137 msgctxt "reply to ad email" msgid "Response to your classified ad: {listing_title}" msgstr "Resposta para seu anúncio classificado: {listing_title}" -#: includes/settings/class-email-settings.php:136 +#: includes/settings/class-email-settings.php:138 msgctxt "reply to ad email" msgid "" "Someone has responded to your classified ad.\n" @@ -11347,12 +11565,12 @@ msgstr "" "{website_title}\n" "{website_url}" -#: includes/settings/class-email-settings.php:161 +#: includes/settings/class-email-settings.php:163 msgctxt "reply to ad email" msgid "Notification about a response regarding ad: {listing_title}" msgstr "Notificação sobre uma resposta a respeito do anúncio: {listing_title}" -#: includes/settings/class-email-settings.php:162 +#: includes/settings/class-email-settings.php:164 msgctxt "reply to ad email" msgid "" "Someone has responded to one of the classified ads on your website.\n" @@ -11385,12 +11603,12 @@ msgstr "" "{website_title}\n" "{website_url}" -#: installer.php:833 +#: installer.php:318 msgctxt "reply to ad email" msgid "{__previous_subject__} regarding: {listing_title}" msgstr "{__previous_subject__} a respeito de: {listing_title}" -#: installer.php:834 +#: installer.php:319 msgctxt "reply to ad email" msgid "" "{__previous_body__}\n" @@ -11490,17 +11708,6 @@ msgstr "" "Desmarque para mostrar os preços sem casas decimais. O valor será " "arredondado." -#: includes/settings/class-licenses-settings.php:81 -msgctxt "settings" -msgid "" -"The IP address of your server is . Please make sure to include " -"that information if you need to contact support about problems trying to " -"activate your licenses." -msgstr "" -"O endereço IP do seu servidor é . Certifique-se de incluir essas " -"informações se precisar entrar em contato com o suporte sobre problemas ao " -"tentar ativar suas licenças." - #: includes/settings/class-payment-general-settings.php:100 msgctxt "settings" msgid "Pay before entering Ad details" @@ -11540,7 +11747,7 @@ msgstr "" "Essas configurações afetam o título mostrado na barra de título do browser " "para a listagem. Você pode incluir ou remover certos elementos se desejar." -#: includes/settings/class-listings-settings.php:599 +#: includes/settings/class-listings-settings.php:601 msgctxt "listing url settings section" msgid "" "These settings affect the URL path shown for listings. You can include or " @@ -11549,9 +11756,11 @@ msgstr "" "Essas configurações afetam o caminho da URL mostrado para anúncios. Você " "pode incluir ou remover elementos para fins de SEO." -#: includes/settings/class-listings-settings.php:605 +#. translators: %s: example URL +#: includes/settings/class-listings-settings.php:610 +#, fuzzy msgctxt "listing url settings section" -msgid "Example path: ." +msgid "Example path: %s." msgstr "Caminho do exemplo: ." #: includes/settings/renderers/class-wordpress-page-settings-renderer.php:27 @@ -11559,10 +11768,12 @@ msgctxt "page settings" msgid "— Select —" msgstr "— Selecionar —" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:40 +#. translators: %1$s is a dropdown with existing pages, %2$s is a link to +#. create a new page +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:34 msgctxt "page settings" -msgid "Select existing page {dropdown} -or- {create_page_button}" -msgstr "Selecione a página existente {dropdown} -ou- {create_page_button}" +msgid "Select existing page %1$s -or- %2$s" +msgstr "" #. translators: %1$s the success message, %2$s the error message #: includes/views/admin/listings/class-listing-action-admin-page.php:22 @@ -11582,60 +11793,62 @@ msgstr "" "espaço em disco e memória livre suficientes disponíveis para o PHP. " "Verifique seus logs de erros para obter detalhes." -#: templates/admin/export-listings-admin-page.tpl.php:25 +#. translators: %1$s: memory_limit link, %2$s: max_execution_time link +#: templates/admin/export-listings-admin-page.tpl.php:27 +#, fuzzy msgctxt "listings-csv-export" msgid "" "Please note that the export process is a resource intensive task. If your " "export does not succeed try disabling other plugins first and/or increasing " -"the values of the 'memory_limit' and 'max_execution_time' directives in your " -"server's php.ini configuration file." +"the values of the %1$s and %2$s directives in your server php.ini " +"configuration file." msgstr "" "Observe que o processo de exportação é uma tarefa intensiva em recursos. Se " "sua exportação não for bem-sucedida, tente desativar primeiro outros plugins " "e/ou aumentar os valores das diretivas 'memory_limit' e 'max_execution_time' " "no arquivo de configuração php.ini do seu servidor." -#: templates/admin/export-listings-admin-page.tpl.php:44 +#: templates/admin/export-listings-admin-page.tpl.php:39 msgctxt "listings-csv-export" msgid "Export Configuration" msgstr "Configuração de Exportação" -#: templates/admin/export-listings-admin-page.tpl.php:47 +#: templates/admin/export-listings-admin-page.tpl.php:42 msgctxt "listings-csv-export" msgid "Export settings" msgstr "Exportar configurações" -#: templates/admin/export-listings-admin-page.tpl.php:51 +#: templates/admin/export-listings-admin-page.tpl.php:46 msgctxt "listings-csv-export" msgid "Which listings to export?" msgstr "Qual anúncio para exportar?" -#: templates/admin/export-listings-admin-page.tpl.php:55 +#: templates/admin/export-listings-admin-page.tpl.php:50 msgctxt "listings-csv-export" msgid "All" msgstr "Todos" -#: templates/admin/export-listings-admin-page.tpl.php:56 +#: templates/admin/export-listings-admin-page.tpl.php:51 msgctxt "listings-csv-export" msgid "Active Only" msgstr "Somente ativos" -#: templates/admin/export-listings-admin-page.tpl.php:57 +#: templates/admin/export-listings-admin-page.tpl.php:52 msgctxt "listings-csv-export" msgid "Active + Pending Renewal" msgstr "Ativos + pendentes de renovação" -#: templates/admin/export-listings-admin-page.tpl.php:63 +#: templates/admin/export-listings-admin-page.tpl.php:58 msgctxt "listings-csv-export" msgid "Export images?" msgstr "Exportar imagens?" -#: templates/admin/export-listings-admin-page.tpl.php:68 +#: templates/admin/export-listings-admin-page.tpl.php:63 msgctxt "listings-csv-export" msgid "Export images" msgstr "Exportar imagens" -#: templates/admin/export-listings-admin-page.tpl.php:71 +#: templates/admin/export-listings-admin-page.tpl.php:66 msgctxt "listings-csv-export" msgid "" "When checked, instead of just a CSV file a ZIP file will be generated with " @@ -11644,17 +11857,17 @@ msgstr "" "Quando marcado, em vez de apenas um arquivo CSV, um arquivo ZIP será gerado " "com um arquivo CSV e listando imagens." -#: templates/admin/export-listings-admin-page.tpl.php:77 +#: templates/admin/export-listings-admin-page.tpl.php:72 msgctxt "listings-csv-export" msgid "Additional metadata to export:" msgstr "Metadados adicionais para exportar:" -#: templates/admin/export-listings-admin-page.tpl.php:82 +#: templates/admin/export-listings-admin-page.tpl.php:77 msgctxt "listings-csv-export" msgid "Include unique IDs for each listing (sequence_id column)." msgstr "Inclua IDs exclusivos para cada listagem (sequence_id column)." -#: templates/admin/export-listings-admin-page.tpl.php:85 +#: templates/admin/export-listings-admin-page.tpl.php:80 msgctxt "listings-csv-export" msgid "" "If you plan to re-import the listings into AWPCP and don't want new ones " @@ -11663,69 +11876,64 @@ msgstr "" "Se você planeja reimportar as listagens para o AWPCP e não deseja que novas " "sejam criadas, selecione essa opção!" -#: templates/admin/export-listings-admin-page.tpl.php:90 +#: templates/admin/export-listings-admin-page.tpl.php:85 msgctxt "listings-csv-export" msgid "Author information (username)" msgstr "Informações do autor (nome de usuário)" -#: templates/admin/export-listings-admin-page.tpl.php:96 +#: templates/admin/export-listings-admin-page.tpl.php:91 msgctxt "listings-csv-export" msgid "CSV File Settings" msgstr "Configurações de arquivo CSV" -#: templates/admin/export-listings-admin-page.tpl.php:100 +#: templates/admin/export-listings-admin-page.tpl.php:95 msgctxt "listings-csv-export" msgid "Image Separator" msgstr "Separador de imagem" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "Category Separator" msgstr "Separador de Categoria" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "required" msgstr "requerido" -#: templates/admin/export-listings-admin-page.tpl.php:118 +#: templates/admin/export-listings-admin-page.tpl.php:113 msgctxt "listings-csv-export" msgid "Export Listings" msgstr "Exportar Anúncios" -#: templates/admin/export-listings-admin-page.tpl.php:124 +#: templates/admin/export-listings-admin-page.tpl.php:119 msgctxt "listings-csv-export" msgid "Export in Progress..." msgstr "Exportação em progresso..." -#: templates/admin/export-listings-admin-page.tpl.php:125 +#: templates/admin/export-listings-admin-page.tpl.php:120 msgctxt "listings-csv-export" msgid "" "Your export file is being prepared. Please do not leave this page until the " "export finishes." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:128 +#: templates/admin/export-listings-admin-page.tpl.php:123 msgctxt "listings-csv-export" msgid "No. of listings:" msgstr "Número de anúncios:" -#: templates/admin/export-listings-admin-page.tpl.php:130 +#: templates/admin/export-listings-admin-page.tpl.php:125 msgctxt "listings-csv-export" msgid "Approximate export file size:" msgstr "Tamanho aproximado do arquivo de exportação:" -#: templates/admin/export-listings-admin-page.tpl.php:137 +#: templates/admin/export-listings-admin-page.tpl.php:132 msgctxt "listings-csv-export" msgid "Cancel Export" msgstr "Cancelar Exportação" -#: templates/admin/export-listings-admin-page.tpl.php:142 -msgctxt "listings-csv-export" -msgid "Export Complete" -msgstr "Exportação concluída" - -#: templates/admin/export-listings-admin-page.tpl.php:143 +#: templates/admin/export-listings-admin-page.tpl.php:138 msgctxt "listings-csv-export" msgid "" "Your export file has been successfully created and it is now ready for " @@ -11735,32 +11943,27 @@ msgstr "" "download." #. translators: %1$s filename %2$s filesize. -#: templates/admin/export-listings-admin-page.tpl.php:149 +#: templates/admin/export-listings-admin-page.tpl.php:144 msgctxt "listings-csv-export" msgid "Download %1$s (%2$s)" msgstr "Download %1$s (%2$s)" -#: templates/admin/export-listings-admin-page.tpl.php:160 +#: templates/admin/export-listings-admin-page.tpl.php:155 msgctxt "listings-csv-export" msgid "Cleanup" msgstr "Limpeza" -#: templates/admin/export-listings-admin-page.tpl.php:165 -msgctxt "listings-csv-export" -msgid "Export Canceled" -msgstr "Exportação cancelada" - -#: templates/admin/export-listings-admin-page.tpl.php:166 +#: templates/admin/export-listings-admin-page.tpl.php:161 msgctxt "listings-csv-export" msgid "The export has been canceled." msgstr "A exportação foi cancelada" -#: templates/admin/export-listings-admin-page.tpl.php:167 +#: templates/admin/export-listings-admin-page.tpl.php:162 msgctxt "listings-csv-export" msgid "← Return to CSV Export" msgstr "← Returne para Exportação CSV" -#: templates/admin/export-listings-admin-page.tpl.php:101 +#: templates/admin/export-listings-admin-page.tpl.php:96 msgctxt "admin forms" msgid "required" msgstr "requerido" @@ -11812,43 +12015,6 @@ msgctxt "The 'or' after 'Drop files here to upload' in Media Uploader" msgid "or" msgstr "ou" -#: templates/email/listing-media-upload-notification.plain.tpl.php:1 -msgctxt "listing media uploaded notification" -msgid "Hello," -msgstr "Olá," - -#: templates/email/listing-media-upload-notification.plain.tpl.php:5 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\":" -msgstr "" -"Os seguintes arquivos de mídia foram enviados recentemente para o anúncio " -"\"\":" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:16 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\" and are awaiting approval:" -msgstr "" -"Os seguintes arquivos de mídia foram enviados recentemente para o anúncio " -"\"\" e estão aguardando aprovação:" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:26 -msgctxt "listing media uploaded notification" -msgid "" -"Click here to manage media uploaded to the listing: ." -msgstr "" -"Clique aqui para gerenciar a mídia carregada na listagem: ." - -#: templates/email/listing-media-upload-notification.plain.tpl.php:31 -msgctxt "listing media uploaded notification" -msgid "Click here to view the listing: ." -msgstr "Clique aqui para ver o anúncio: ." - #: templates/frontend/actions-submit-listing-section.tpl.php:7 msgctxt "actions submit listing section" msgid "Actions" @@ -11884,148 +12050,75 @@ msgctxt "upload media submit listing section" msgid "Loading..." msgstr "Carregando..." -#: templates/privacy-policy.tpl.php:10 -msgctxt "privacy policy" -msgid "" -"When you submit a classified listing, the content of the listing and its " -"metadata are retained indefinitely. All users can see, edit or delete the " -"personal information included on their listings at any time. Website " -"administrators can also see and edit that information." -msgstr "" -"Quando você envia um anúncio classificado, o conteúdo do anúncio e seus " -"metadados são mantidos indefinidamente. Todos os usuários podem ver, editar " -"ou excluir as informações pessoais incluídas em seus anúncios a qualquer " -"momento. Os administradores do site também podem ver e editar essas " -"informações." +#~ msgid "Duration: " +#~ msgstr "Duração: " -#: templates/privacy-policy.tpl.php:12 -msgctxt "privacy policy" -msgid "" -"Website visitors can see the contact name, website URL, phone number, " -"address and other information included in your submission to describe the " -"classified listing." -msgstr "" -"Os visitantes do site podem ver o nome do contato, URL do site, número de " -"telefone, endereço e outras informações incluídas no seu envio para " -"descrever o anúncio classificado." +#~ msgid "# of images: " +#~ msgstr "Nro. de imagens: " -#: templates/privacy-policy.tpl.php:14 -msgctxt "privacy policy" -msgid "" -"Contact name, email address, website URL and content of submitted classified " -"listings may be checked through Akismet's spam detection service. The " -"Akismet service privacy policy is available here." -msgstr "" -"O nome do contato, o endereço de e-mail, o URL do site e o conteúdo dos " -"anúncios classificados enviados podem ser verificados através do serviço de " -"detecção de spam da Akismet. A política de privacidade do serviço Akismet " -"está disponível aqui ." +#~ msgid "Chars in title: " +#~ msgstr "Caracteres no título: " -#: templates/privacy-policy.tpl.php:16 -msgctxt "privacy policy" -msgid "Payment Information" -msgstr "Informação de Pagamento" +#~ msgid "Chars in description: " +#~ msgstr "Caracteres na descrição: " -#: templates/privacy-policy.tpl.php:18 -msgctxt "privacy policy" -msgid "" -"If you pay to post a classified listing entering your credit card and " -"billing information directly on {home_url}, the " -"credit card information won't be stored but it will be shared through a " -"secure connection with the following payment gateways to process the payment:" -msgstr "" -"Se você pagar para publicar uma listagem classificada inserindo seu cartão " -"de crédito e informações de faturamento diretamente em {home_url}, as informações do cartão de crédito não " -"serão armazenadas, mas serão compartilhados por meio de uma conexão segura " -"com os seguintes gateways de pagamento para processar o pagamento:" +#~ msgid "Documentation" +#~ msgstr "Documentação" -#: templates/privacy-policy.tpl.php:21 -msgctxt "privacy policy" -msgid "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -msgstr "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgid "Status: " +#~ msgstr "Status: " -#: templates/privacy-policy.tpl.php:22 -msgctxt "privacy policy" -msgid "" -"Authorize.Net — https://www.authorize.net/company/privacy/" -msgstr "" -"Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgctxt "debug page" +#~ msgid "PHP Version" +#~ msgstr "Versão do PHP" -#: templates/privacy-policy.tpl.php:23 -msgctxt "privacy policy" -msgid "" -"Stripe — https://stripe.com/" -"us/privacy/" -msgstr "" -"Stripe — https://stripe.com/" -"us/privacy/" +#~ msgctxt "Browse the Quick Start Guide" +#~ msgid "Browse the %s." +#~ msgstr "Navegar na %s ." -#: templates/privacy-policy.tpl.php:26 -msgctxt "privacy policy" -msgid "Regions" -msgstr "Regiões" +#~ msgctxt "place ad checkout step" +#~ msgid "Complete Payment" +#~ msgstr "O pagamento completo" -#: templates/privacy-policy.tpl.php:28 -msgctxt "privacy policy" -msgid "" -"If you choose to see listings published on a specific region, a cookie will " -"be stored on your browser for the remainder of the session to remember the " -"selected region." -msgstr "" -"Se você optar por ver os anúncios publicadas em uma região específica, um " -"cookie será armazenado em seu navegador pelo restante da sessão para lembrar " -"a região selecionada." +#~ msgctxt "transaction items" +#~ msgid "Amount" +#~ msgstr "Quantia" -#: templates/privacy-policy.tpl.php:30 -msgctxt "privacy policy" -msgid "Comments and Ratings" -msgstr "Comentários e Avaliações" +#~ msgctxt "page settings" +#~ msgid "Select existing page {dropdown} -or- {create_page_button}" +#~ msgstr "Selecione a página existente {dropdown} -ou- {create_page_button}" -#: templates/privacy-policy.tpl.php:32 -msgctxt "privacy policy" -msgid "" -"When visitors leave comments and reviews for classified listings we collect " -"the data shown in the comments form, and also the visitor’s IP address to " -"help spam detection." -msgstr "" -"Quando os visitantes deixam comentários e críticas para anúncios " -"classificados, coletamos os dados mostrados no formulário de comentários e " -"também o endereço IP do visitante para ajudar na detecção de spam." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgstr "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -#: templates/privacy-policy.tpl.php:34 -msgctxt "privacy policy" -msgid "" -"Visitor comments may be checked through Akismet's spam detection service. " -"The Akismet service privacy policy is available here." -msgstr "" -"Os comentários dos visitantes podem ser verificados através do serviço de " -"detecção de spam da Akismet. A política de privacidade do serviço Akismet " -"está disponível aqui." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgstr "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" -#: templates/privacy-policy.tpl.php:36 -msgctxt "privacy policy" -msgid "Restricted Categories" -msgstr "Categorias restritos" +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Stripe — https://stripe." +#~ "com/us/privacy/" +#~ msgstr "" +#~ "Stripe — https://stripe." +#~ "com/us/privacy/" -#: templates/privacy-policy.tpl.php:38 -msgctxt "privacy policy" -msgid "" -"When you agree to see listings or publish a listing on a restricted " -"category, a cookie will be stored in your browser to remember your decision. " -"The cookie will be stored on your browser for the remainder of that session." -msgstr "" -"Quando você concorda em ver anúncios ou publicar um anúncio em uma categoria " -"restrita, um cookie será armazenado no seu navegador para lembrar sua " -"decisão. O cookie será armazenado no seu navegador pelo restante da sessão." +#~ msgctxt "privacy policy" +#~ msgid "Regions" +#~ msgstr "Regiões" + +#~ msgctxt "privacy policy" +#~ msgid "Restricted Categories" +#~ msgstr "Categorias restritos" #~ msgid "AWPCP" #~ msgstr "AWPCP" @@ -12104,9 +12197,6 @@ msgstr "" #~ msgid "PayFast" #~ msgstr "PayFast" -#~ msgid "Restricted Categories" -#~ msgstr "Categorias restritos" - #~ msgid "The number of regions allowed must be equal or greater than zero." #~ msgstr "O número de regiões permitidas deve ser igual ou maior que zero." diff --git a/languages/another-wordpress-classifieds-plugin-ro_RO.mo b/languages/another-wordpress-classifieds-plugin-ro_RO.mo index 08415d389..7f21bf746 100644 Binary files a/languages/another-wordpress-classifieds-plugin-ro_RO.mo and b/languages/another-wordpress-classifieds-plugin-ro_RO.mo differ diff --git a/languages/another-wordpress-classifieds-plugin-ro_RO.po b/languages/another-wordpress-classifieds-plugin-ro_RO.po index 89877cb26..559f09689 100644 --- a/languages/another-wordpress-classifieds-plugin-ro_RO.po +++ b/languages/another-wordpress-classifieds-plugin-ro_RO.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Another WordPress Classifieds Plugin\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/another-wordpress-" "classifieds-plugin\n" -"POT-Creation-Date: 2024-03-20 20:22:37+00:00\n" +"POT-Creation-Date: 2024-06-13 20:37:03+00:00\n" "PO-Revision-Date: 2020-10-15 19:51+0000\n" "Last-Translator: Diego Giraldo \n" "Language-Team: Romanian (Romania) (http://www.transifex.com/wp-translations/" @@ -26,21 +26,21 @@ msgstr "" #: admin/fees/class-fee-details-form.php:39 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:9 #: includes/settings/class-payment-general-settings.php:60 -#: templates/admin/manage-categories-admin-page.tpl.php:31 +#: templates/admin/manage-categories-admin-page.tpl.php:32 msgid "Name" msgstr "Nume" #: admin/admin-panel-credit-plans-table.php:80 #: admin/fees/class-fee-details-form.php:45 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:25 -#: templates/admin/manage-categories-admin-page.tpl.php:36 +#: templates/admin/manage-categories-admin-page.tpl.php:37 msgid "Description" msgstr "Descriere" #: admin/admin-panel-credit-plans-table.php:81 #: admin/admin-panel-fees-table.php:121 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:14 -#: includes/settings/class-payment-general-settings.php:270 +#: includes/settings/class-payment-general-settings.php:272 msgid "Credits" msgstr "Credite" @@ -49,7 +49,7 @@ msgstr "Credite" #: admin/fees/class-fee-details-form.php:222 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:19 #: frontend/placeholders.php:514 -#: includes/settings/class-display-settings.php:483 +#: includes/settings/class-display-settings.php:482 #: includes/settings/class-payment-general-settings.php:61 msgid "Price" msgstr "Preț" @@ -75,25 +75,29 @@ msgstr "Privat" msgid " " msgstr "Durată" -#: admin/admin-panel-fees-table.php:196 -msgid "Duration: " -msgstr "Durată " +#: admin/admin-panel-fees-table.php:197 +#, fuzzy +msgid "Duration: %s" +msgstr "Durată" -#: admin/admin-panel-fees-table.php:206 -msgid "# of images: " -msgstr "Număr imagini: " +#: admin/admin-panel-fees-table.php:207 +#, fuzzy +msgid "# of images: %s" +msgstr "# de imagini:" #: admin/admin-panel-fees-table.php:219 admin/admin-panel-fees-table.php:235 msgid "unlimited" msgstr "nelimitat" -#: admin/admin-panel-fees-table.php:222 -msgid "Chars in title: " -msgstr "Caractere în titlu: " +#: admin/admin-panel-fees-table.php:223 +#, fuzzy +msgid "Chars in title: %s" +msgstr "Caractere în titlu:" -#: admin/admin-panel-fees-table.php:238 -msgid "Chars in description: " -msgstr "Caractere în descriere: " +#: admin/admin-panel-fees-table.php:239 +#, fuzzy +msgid "Chars in description: %s" +msgstr "Caractere in Descriere" #: admin/admin-panel-fees-table.php:265 admin/admin-panel-fees-table.php:269 #: templates/admin/import/supported-csv-headers.tpl.php:31 @@ -125,7 +129,7 @@ msgstr "Utilizatorul specificat nu există." msgid "Manual Upgrade" msgstr "Actualizare Manuală" -#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:799 +#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:783 #: includes/models/class-custom-post-types.php:97 #: includes/models/class-custom-post-types.php:99 #: includes/settings/class-listings-settings.php:30 @@ -141,20 +145,20 @@ msgid "Dashboard" msgstr "Panou control" #: admin/admin-panel.php:140 admin/admin-panel.php:141 -#: admin/admin-panel.php:509 +#: admin/admin-panel.php:492 msgid "Settings" msgstr "Setări" #: admin/admin-panel.php:154 -#: templates/admin/main-classifieds-admin-page.tpl.php:86 -#: templates/admin/main-classifieds-admin-page.tpl.php:111 +#: templates/admin/main-classifieds-admin-page.tpl.php:88 +#: templates/admin/main-classifieds-admin-page.tpl.php:116 msgid "Manage Categories" msgstr "Administrează categorii" #: admin/admin-panel.php:203 admin/admin-panel.php:204 #: admin/form-fields/class-form-fields-admin-page.php:12 -#: includes/settings/class-display-settings.php:298 -#: includes/settings/class-display-settings.php:438 +#: includes/settings/class-display-settings.php:297 +#: includes/settings/class-display-settings.php:437 msgid "Form Fields" msgstr "Câmpuri formular" @@ -187,7 +191,7 @@ msgstr "Import și export" msgid "Debug" msgstr "Depanare" -#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:24 +#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:38 msgid "Debug Information" msgstr "Detalii pentru depanare" @@ -196,12 +200,12 @@ msgid "Uninstall" msgstr "Dezinstalare" #: admin/admin-panel.php:354 admin/admin-panel.php:355 -#: admin/admin-panel.php:826 frontend/templates/page-renew-ad.tpl.php:3 +#: admin/admin-panel.php:810 frontend/templates/page-renew-ad.tpl.php:3 #: includes/admin/class-admin-container-configuration.php:175 msgid "Renew Ad" msgstr "Reînnoieste anunț" -#: admin/admin-panel.php:427 +#: admin/admin-panel.php:417 msgid "" "Use the Account Balance column on the table below to manage credit balance " "for users." @@ -209,7 +213,7 @@ msgstr "" "Folosește coloana Balanța Contului în tabela de mai jos pentru a administra " "balanța utilizatorilor." -#: admin/admin-panel.php:446 +#: admin/admin-panel.php:436 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing." @@ -217,7 +221,7 @@ msgstr "" "Caracteristicile AWPCP sunt în prezent dezactivate, deoarece plugin-ul are " "nevoie de tine pentru a efectua un upgrade manual înainte de a continua." -#: admin/admin-panel.php:447 +#: admin/admin-panel.php:437 msgid "" "The duration for this upgrade operation varies between several minutes and a " "few hours, depending on the size of your database, the current network " @@ -234,7 +238,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the page explaining how #. to downgrade to a previous version of the plugin, %2$s is the closing tag #. for the link. -#: admin/admin-panel.php:450 +#: admin/admin-panel.php:440 msgid "" "If this is not a good time to go through the upgrade process, we recommend " "you to %1$sinstall the previous version again%2$s and plan to upgrade " @@ -247,7 +251,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:456 +#: admin/admin-panel.php:446 msgid "" "To upgrade, please %1$sgo to the Classifieds admin section%2$s or click the " "button below." @@ -257,7 +261,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:466 +#: admin/admin-panel.php:456 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing. Please %1$sgo to the Classifieds " @@ -270,7 +274,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:488 +#: admin/admin-panel.php:471 msgid "" "AWPCP needs you to perform a manual upgrade to update the database schema " "and the information stored there. All plugin features will continue to work " @@ -283,7 +287,7 @@ msgstr "" "de upgrade sunt executate. Vă rugăm să%1$sGO la secțiunea Classifieds admin " "pentru a face upgrade%2$s sau faceți clic pe butonul de mai jos." -#: admin/admin-panel.php:562 +#: admin/admin-panel.php:545 msgid "" "Page %1$s has the same URL as the %2$s from AWPCP. The WordPress page %1$s " "is going to be unreachable until this changes." @@ -300,7 +304,7 @@ msgstr[2] "" "Paginile %1$s au același URL ca și %2$sd in AWPCP. Paginile %1$s din " "WordPress vor fi inaccesibile până le veți schimba." -#: admin/admin-panel.php:570 +#: admin/admin-panel.php:553 msgid "" "The %1$s is dynamic; you don't need to create a real WordPress page to show " "the list of categories, the plugin will generate it for you. If the " @@ -332,74 +336,75 @@ msgstr[2] "" "AWPCP, o puteți șterge și acest mesaj de eroare va dispărea. În caz contrar, " "asigurați-vă că nu aveți nume dublate de pagină." -#: admin/admin-panel.php:765 admin/class-categories-admin-page.php:60 +#: admin/admin-panel.php:749 admin/class-categories-admin-page.php:60 #: admin/class-categories-admin-page.php:64 msgid "Manage Category Icon" msgstr "Administrează Icon-uri pentru categorii" -#: admin/admin-panel.php:770 admin/class-categories-admin-page.php:35 +#: admin/admin-panel.php:754 admin/class-categories-admin-page.php:35 #: admin/class-categories-admin-page.php:39 #: admin/class-categories-admin-page.php:133 msgid "Edit Category" msgstr "Editează categorie" -#: admin/admin-panel.php:771 admin/class-categories-admin-page.php:46 +#: admin/admin-panel.php:755 admin/class-categories-admin-page.php:46 #: admin/class-categories-admin-page.php:50 msgid "Delete Category" msgstr "Șterge categorie" -#: admin/admin-panel.php:776 +#: admin/admin-panel.php:760 msgid "Select {category_name}" msgstr "Selectează {category_name}" -#: admin/admin-panel.php:814 frontend/page-reply-to-ad.php:11 +#: admin/admin-panel.php:798 frontend/page-reply-to-ad.php:11 msgid "Reply to Ad" msgstr "Răspunde la anunț" -#: admin/admin-panel.php:822 admin/templates/admin-panel-listings.tpl.php:5 +#: admin/admin-panel.php:806 admin/templates/admin-panel-listings.tpl.php:5 msgid "Place Ad" msgstr "Adauga anunț" -#: admin/admin-panel.php:830 frontend/page-browse-ads.php:9 +#: admin/admin-panel.php:814 frontend/page-browse-ads.php:9 msgid "Browse Ads" msgstr "Explorează anunțuri" -#: admin/admin-panel.php:834 admin/templates/admin-panel-listings.tpl.php:11 +#: admin/admin-panel.php:818 admin/templates/admin-panel-listings.tpl.php:20 #: frontend/page-search-ads.php:9 msgid "Search Ads" msgstr "Caută anunțuri" -#: admin/categories/class-create-category-admin-page.php:38 -#: admin/categories/class-delete-categories-admin-page.php:55 -#: admin/categories/class-delete-category-admin-page.php:68 -#: admin/categories/class-move-categories-admin-page.php:54 -#: admin/categories/class-update-category-admin-page.php:50 +#: admin/categories/class-create-category-admin-page.php:39 +#: admin/categories/class-delete-categories-admin-page.php:57 +#: admin/categories/class-delete-category-admin-page.php:69 +#: admin/categories/class-move-categories-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:51 msgid "invalid nonce" msgstr "" -#: admin/categories/class-create-category-admin-page.php:42 +#: admin/categories/class-create-category-admin-page.php:43 msgid "The new category was successfully added." msgstr "Noua categorie a fost adăugată cu succes." -#: admin/categories/class-delete-categories-admin-page.php:61 +#: admin/categories/class-delete-categories-admin-page.php:64 +#, fuzzy msgid "" "The categories couldn't be deleted because there was an error trying to load " -"the categoery that you selecetd to become the new category associated to " -"affected ads. " +"the categoery that you selected to become the new category associated to " +"affected ads. %s" msgstr "" "Categoriile nu au putut fi șterse, deoarece a existat o eroare la încercarea " "de a încărca categoery pe care le pe pentru a deveni noua categorie asociată " "anunțurilor afectate." -#: admin/categories/class-delete-categories-admin-page.php:71 +#: admin/categories/class-delete-categories-admin-page.php:75 msgid "The selected categories have been deleted." msgstr "Categoriile selectate au fost șterse." -#: admin/categories/class-delete-categories-admin-page.php:76 +#: admin/categories/class-delete-categories-admin-page.php:80 msgid "There was an error trying to delete the selected categories." msgstr "Eroare la încercarea de ștergere a categoriilor selectate." -#: admin/categories/class-delete-categories-admin-page.php:80 +#: admin/categories/class-delete-categories-admin-page.php:84 msgid "" " (out of ) categories were deleted. " "However, there was an error trying to delete the other Categorii. ." -#: admin/categories/class-delete-category-admin-page.php:41 +#: admin/categories/class-delete-category-admin-page.php:42 msgid "The category you are trying to delete doesn't exist." msgstr "Categoria pe care încercați să o ștergeți nu există." -#: admin/categories/class-delete-category-admin-page.php:53 +#: admin/categories/class-delete-category-admin-page.php:54 msgid "There was an error trying to delete the category. " msgstr "" "Eroare la încercarea de ștergere a categoriei." -#: admin/categories/class-delete-category-admin-page.php:74 +#: admin/categories/class-delete-category-admin-page.php:75 msgid "" "There was an error trying to load the selected category. " msgstr "" "Eroare la încercarea de încărcare a categoriei selectate." -#: admin/categories/class-delete-category-admin-page.php:85 +#: admin/categories/class-delete-category-admin-page.php:86 msgid "The category was deleted successfully" msgstr "Categoria a fost ștearsă cu succes" -#: admin/categories/class-delete-category-admin-page.php:103 +#: admin/categories/class-delete-category-admin-page.php:104 msgid "Are you sure you want to delete \"\" category?" msgstr "Sigur ștergeți \"\" Categorie??" -#: admin/categories/class-delete-category-admin-page.php:116 +#: admin/categories/class-delete-category-admin-page.php:117 msgid "Delete category" msgstr "Șterge categorie" -#: admin/categories/class-delete-category-admin-page.php:117 +#: admin/categories/class-delete-category-admin-page.php:118 #: admin/fees/class-fee-details-form.php:80 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:31 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:12 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:23 #: admin/templates/admin-panel-fees-delete.tpl.php:12 #: admin/templates/admin-panel-users-balance-form.tpl.php:19 #: admin/templates/delete_form.tpl.php:16 #: frontend/templates/payments-billing-form.tpl.php:123 #: includes/listings/class-listing-action-with-confirmation.php:8 -#: includes/settings/renderers/class-button-settings-renderer.php:41 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 +#: includes/settings/renderers/class-button-settings-renderer.php:44 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:184 #: templates/admin/import-listings-admin-page-import-form.tpl.php:47 msgid "Cancel" msgstr "Anulează" -#: admin/categories/class-move-categories-admin-page.php:59 +#: admin/categories/class-move-categories-admin-page.php:60 msgid "" "The categories couldn't be moved because there was an error trying to load " "the target category. " @@ -462,15 +467,15 @@ msgstr "" "de încărcare a categoriei țintă." -#: admin/categories/class-move-categories-admin-page.php:68 +#: admin/categories/class-move-categories-admin-page.php:69 msgid "The selected categories have been moved." msgstr "Categoriile selectate au fost mutate." -#: admin/categories/class-move-categories-admin-page.php:73 +#: admin/categories/class-move-categories-admin-page.php:74 msgid "There was an error trying to move the selected categories." msgstr "Eroare la încercarea de mutare a categoriilor selectate." -#: admin/categories/class-move-categories-admin-page.php:77 +#: admin/categories/class-move-categories-admin-page.php:78 msgid "" " (out of ) categories were moved. " "However, there was an error trying to move the other " @@ -481,11 +486,11 @@ msgstr "" "not-moved>Categorii. ." -#: admin/categories/class-update-category-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:56 msgid "The category you're trying to update doesn't exist." msgstr "Categoria pe care încercați să o actualizați nu există." -#: admin/categories/class-update-category-admin-page.php:66 +#: admin/categories/class-update-category-admin-page.php:67 msgid "The category was successfully updated." msgstr "Categoria a fost actualizată cu succes." @@ -511,39 +516,40 @@ msgstr "Adaugă o categorie nouă" msgid "Update" msgstr "Actualizează" -#: admin/class-debug-admin-page.php:255 +#: admin/class-debug-admin-page.php:256 msgid "WordPress version" msgstr "Versiune WordPress" -#: admin/class-debug-admin-page.php:259 +#: admin/class-debug-admin-page.php:260 msgid "OS" msgstr "Os" -#: admin/class-debug-admin-page.php:263 +#: admin/class-debug-admin-page.php:264 msgid "Apache Version" msgstr "Apache Version" -#: admin/class-debug-admin-page.php:267 +#: admin/class-debug-admin-page.php:268 +#: admin/templates/admin-panel-debug.tpl.php:177 msgid "PHP Version" msgstr "Versiune PHP" -#: admin/class-debug-admin-page.php:271 +#: admin/class-debug-admin-page.php:272 msgid "MySQL Version" msgstr "Versiune MySQL" -#: admin/class-debug-admin-page.php:275 +#: admin/class-debug-admin-page.php:276 msgid "cURL Version" msgstr "versiune cURL" -#: admin/class-debug-admin-page.php:279 +#: admin/class-debug-admin-page.php:280 msgid "cURL SSL Version" msgstr "cURL versiunea SSL" -#: admin/class-debug-admin-page.php:332 admin/class-debug-admin-page.php:338 +#: admin/class-debug-admin-page.php:333 admin/class-debug-admin-page.php:339 msgid "N/A" msgstr "Nedisponibil" -#: admin/class-import-listings-admin-page.php:100 +#: admin/class-import-listings-admin-page.php:102 msgid "" "The uploaded file doesn't look like a CSV file. Please upload a valid CSV " "file." @@ -551,13 +557,13 @@ msgstr "" "Fișierul încărcat nu arată a fi un fișier CSV. Vă rugăm să încărcați un " "fișier CSV valid." -#: admin/class-import-listings-admin-page.php:104 +#: admin/class-import-listings-admin-page.php:106 msgid "There was an error moving the uploaded CSV file to a proper location." msgstr "" "A apărut o eroare la încercarea de a muta fișierul CSV încărcat într-o " "locație potrivită." -#: admin/class-import-listings-admin-page.php:121 +#: admin/class-import-listings-admin-page.php:125 msgid "" "The uploaded file doesn't look like a ZIP file. Please upload a valid ZIP " "file." @@ -565,33 +571,33 @@ msgstr "" "Fișierul încărcat nu arată a fi un fișier ZIP Vă rugăm să încărcați un " "fișier ZIP valid." -#: admin/class-import-listings-admin-page.php:125 +#: admin/class-import-listings-admin-page.php:129 msgid "There was an error moving the uploaded ZIP file to a proper location." msgstr "" "A apărut o eroare la încercarea de a muta fișierul ZIP încărcat într-o " "locație potrivită." -#: admin/class-import-listings-admin-page.php:137 +#: admin/class-import-listings-admin-page.php:141 msgid "Incompatible ZIP Archive" msgstr "Arhiva ZIP necompatibilă" -#: admin/class-import-listings-admin-page.php:139 +#: admin/class-import-listings-admin-page.php:143 msgid "Empty ZIP Archive" msgstr "Golește arhiva ZIP" -#: admin/class-import-listings-admin-page.php:165 +#: admin/class-import-listings-admin-page.php:169 msgid "Could not write temporary file %s" msgstr "Nu se poate scrie fișierul temporar %s" -#: admin/class-import-listings-admin-page.php:174 +#: admin/class-import-listings-admin-page.php:178 msgid "The specified directory is not a valid path." msgstr "Directorul specificat nu are o adresă corectă." -#: admin/class-import-listings-admin-page.php:176 +#: admin/class-import-listings-admin-page.php:180 msgid "The specified directory does not exists." msgstr "Directorul specificat nu există." -#: admin/class-import-listings-admin-page.php:357 +#: admin/class-import-listings-admin-page.php:361 msgid "" "() of rows " "processed. rows imported and linii importate și linii respinse." -#: admin/class-settings-admin-page.php:230 +#: admin/class-import-settings-admin-page.php:121 +#, fuzzy +msgid "Your settings have been successfully imported." +msgstr "Setările au fost importate cu succes." + +#: admin/class-settings-admin-page.php:224 msgid "" "We could not obtain a valid access token from Facebook. The API returned the " "following error: %s" @@ -609,24 +620,25 @@ msgstr "" "Nu am putut obține un cod valid de acces pentru Facebook. API-ul a dat " "următaorea eroare: %s" -#: admin/class-settings-admin-page.php:235 +#: admin/class-settings-admin-page.php:229 msgid "" "We could not obtain a valid access token from Facebook. Please try again." msgstr "" "Nu am putut obține un cod valid de acces pentru Facebook. Vă rugăm să " "încercați din nou." -#: admin/class-settings-admin-page.php:243 +#: admin/class-settings-admin-page.php:237 msgid "Facebook Config Diagnostics" msgstr "Diagnostic configurare Facebook" -#: admin/class-settings-admin-page.php:250 +#: admin/class-settings-admin-page.php:244 msgid "Everything looks OK." msgstr "Totul arată OK." #: admin/class-table-entry-action-ajax-handler.php:16 +#: admin/class-uninstall-admin-page.php:52 #: admin/pointers/class-drip-autoresponder-ajax-handler.php:23 -#: functions.php:531 +#: functions.php:537 #: includes/frontend/class-create-empty-listing-ajax-handler.php:104 #: includes/frontend/class-execute-listing-action-ajax-handler.php:58 #: includes/frontend/class-save-listing-information-ajax-handler.php:117 @@ -647,7 +659,7 @@ msgstr "Editează" #: admin/credit-plans/class-credit-plans-admin-page.php:23 #: admin/fees/class-fees-admin-page.php:65 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:13 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:24 #: admin/templates/delete_form.tpl.php:17 msgid "Delete" msgstr "Șterge" @@ -760,7 +772,7 @@ msgstr "" "operația de ștergere din nou. AWPCP vă va ajuta să schimbați anunțurile " "existente pe noul preț." -#: admin/import/class-csv-importer-delegate.php:271 +#: admin/import/class-csv-importer-delegate.php:275 msgid "" "No user could be assigned to this listing. Our attempt to create a new user " "failed with the following error: ." @@ -768,11 +780,11 @@ msgstr "" "Nu se poate asocia nici un utilizator cu această listă. Încercarea de a crea " "un utilizator nou produce eroarea următoare: ." -#: admin/import/class-csv-importer-delegate.php:470 +#: admin/import/class-csv-importer-delegate.php:476 msgid "The payment term type must be 'fee' or 'subscription'." msgstr "Tipul termenului de plată trebuie să fie \"taxă\" sau \"abonament\"." -#: admin/import/class-csv-importer-delegate.php:476 +#: admin/import/class-csv-importer-delegate.php:482 msgid "" "There is no payment term with type {payment_term_type} and ID " "{payment_term_id}." @@ -780,7 +792,7 @@ msgstr "" "Nu există nici un termen de plată cu tipul {payment_term_type} și ID " "{payment_term_id}." -#: admin/import/class-csv-importer-delegate.php:490 +#: admin/import/class-csv-importer-delegate.php:496 msgid "" "No images directory was configured. Are you sure you uploaded a ZIP file or " "defined a local directory?" @@ -788,13 +800,13 @@ msgstr "" "Nu a fost configurat nici un director pentru imagini. Sunteți sigur că ați " "încărcat un fișier ZIP sau că ați definit un director local?" -#: admin/import/class-csv-importer-delegate.php:676 +#: admin/import/class-csv-importer-delegate.php:690 msgid "The value for Extra Field %s's is not allowed. Allowed values are: %%s" msgstr "" "Valoarea pentru câmpul suplimentar %s's nu este permisă. Valorile permise " "sunt: %%s" -#: admin/import/class-csv-importer-delegate.php:686 +#: admin/import/class-csv-importer-delegate.php:700 msgid "" "The value for Extra Field %s's is not allowed. Allowed value is one of: %%s" msgstr "" @@ -818,10 +830,36 @@ msgstr "" msgid "That Ad failed to delete." msgstr "Anunțul dvs. a fost șters" +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 +#, fuzzy +msgid "Thank you for signing up!" +msgstr "Vă mulțumim pentru înscriere!" + +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 +#, fuzzy +msgid "" +"Please check your email and click the link provided to confirm your " +"subscription." +msgstr "" +"Vă rugăm să vă verificați email-ul și să dați click pe link-ul inclus pentru " +"a confirma abonamentul dvs." + #: admin/pointers/class-drip-autoresponder-ajax-handler.php:149 msgid "An unexpected error ocurred." msgstr "A apărut o eroare neașteptată." +#: admin/pointers/class-drip-autoresponder.php:62 +#, fuzzy +msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" +msgstr "" +"Doriți să aflați Secretele Construirii unui Website de Anunțuri Extraordinar?" + +#: admin/pointers/class-drip-autoresponder.php:63 +msgid "" +"Find out how to create a compelling, thriving classifieds site from scratch " +"in this ridiculously actionable (and free) 5-part email course." +msgstr "" + #: admin/pointers/class-drip-autoresponder.php:67 msgid "Email Address" msgstr "Adresă de email" @@ -830,28 +868,28 @@ msgstr "Adresă de email" msgid "Add" msgstr "Adaugă" -#: admin/templates/admin-panel-credit-plans.tpl.php:10 +#: admin/templates/admin-panel-credit-plans.tpl.php:11 msgid "Credit System Settings" msgstr "Setări Sistem Credit" -#: admin/templates/admin-panel-credit-plans.tpl.php:21 +#: admin/templates/admin-panel-credit-plans.tpl.php:25 #: templates/admin/settings-admin-page.tpl.php:50 -#: templates/admin/settings-admin-page.tpl.php:64 +#: templates/admin/settings-admin-page.tpl.php:67 msgid "Save Changes" msgstr "Salvează modificări" -#: admin/templates/admin-panel-credit-plans.tpl.php:34 +#: admin/templates/admin-panel-credit-plans.tpl.php:38 msgid "Add Credit Plan" msgstr "Adaugă Plan Credit" -#: admin/templates/admin-panel-debug.tpl.php:8 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:6 +#: admin/templates/admin-panel-debug.tpl.php:11 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:8 msgid "Are you seeing 404 Not Found errors?" msgstr "Vedeți erori 404 Pagină negăsită?" #. translators: %1$s: Start link HTML, %2$s: end link HTML, %3$s: Start link #. HTML -#: admin/templates/admin-panel-debug.tpl.php:14 +#: admin/templates/admin-panel-debug.tpl.php:21 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -862,54 +900,84 @@ msgid "" "please contact %3$scustomer support%1$s." msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:49 +#: admin/templates/admin-panel-debug.tpl.php:84 msgid "Stored ID" msgstr "ID stocat" -#: admin/templates/admin-panel-debug.tpl.php:50 +#: admin/templates/admin-panel-debug.tpl.php:85 msgid "Reference" msgstr "Referință" -#: admin/templates/admin-panel-debug.tpl.php:51 +#: admin/templates/admin-panel-debug.tpl.php:86 #: frontend/templates/widget-categories-form.tpl.php:2 #: frontend/templates/widget-latest-ads-form.tpl.php:2 #: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:5 msgid "Title" msgstr "Titlu" -#: admin/templates/admin-panel-debug.tpl.php:60 +#: admin/templates/admin-panel-debug.tpl.php:95 msgid "Page not found" msgstr "Pagină negăsită" -#: admin/templates/admin-panel-debug.tpl.php:74 +#: admin/templates/admin-panel-debug.tpl.php:117 msgid "Option Name" msgstr "Nume opțiune" -#: admin/templates/admin-panel-debug.tpl.php:75 +#: admin/templates/admin-panel-debug.tpl.php:118 msgid "Option Value" msgstr "Valoare opțiune" -#: admin/templates/admin-panel-debug.tpl.php:96 +#: admin/templates/admin-panel-debug.tpl.php:147 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:9 msgid "Pattern" msgstr "Model" -#: admin/templates/admin-panel-debug.tpl.php:97 +#: admin/templates/admin-panel-debug.tpl.php:148 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:10 msgid "Replacement" msgstr "Înlocuire" -#: admin/templates/admin-panel-debug.tpl.php:133 +#: admin/templates/admin-panel-debug.tpl.php:181 +#, fuzzy +msgid "cURL" +msgstr "cURL" + +#: admin/templates/admin-panel-debug.tpl.php:185 +#, fuzzy +msgid "cURL's alternate CA info (cacert.pem)" +msgstr "informație alternativă CA pentru cURL (cacert.pem)" + +#: admin/templates/admin-panel-debug.tpl.php:189 +#, fuzzy +msgid "Exists" +msgstr "Există" + +#: admin/templates/admin-panel-debug.tpl.php:190 +#, fuzzy +msgid "Missing" +msgstr "Lipsește" + +#: admin/templates/admin-panel-debug.tpl.php:195 +#: includes/settings/class-payment-general-settings.php:134 +msgid "PayPal" +msgstr "PayPal" + +#: admin/templates/admin-panel-debug.tpl.php:198 #, fuzzy msgid "Working" msgstr "Funcționează" -#: admin/templates/admin-panel-debug.tpl.php:148 -#: templates/admin/debug/debug-admin-page.tpl.php:36 +#: admin/templates/admin-panel-debug.tpl.php:201 +#, fuzzy +msgid "Not Working" +msgstr "Nu funcționează" + +#: admin/templates/admin-panel-debug.tpl.php:216 +#: templates/admin/debug/debug-admin-page.tpl.php:42 msgid "Debug & Development Tools" msgstr "Depanare & instrumente de dezvoltare" -#: admin/templates/admin-panel-fees-delete-form.tpl.php:6 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:7 #: admin/templates/delete_form.tpl.php:11 msgid "Are you sure you want to delete this item?" msgstr "Sunteți sigur că doriți să ștergeți acest anunț?" @@ -926,42 +994,43 @@ msgstr "" msgid "Switch" msgstr "Schimbă" -#: admin/templates/admin-panel-fees.tpl.php:7 -msgid "Payment Settings page" -msgstr "Setările paginii de plată" - -#: admin/templates/admin-panel-fees.tpl.php:9 +#: admin/templates/admin-panel-fees.tpl.php:8 +#, fuzzy msgid "" "Currently your classifieds are in Free mode. Fee plans are not available or " -"used during free mode.

To change this, visit the and enable Charge Listing Fee setting." +"used during free mode.%1$s To change this, visit the %2$s and enable Charge " +"Listing Fee setting." msgstr "" "În mod curent anunțurile dvs. sunt în modul gratuit. Planurile plătite nu " "sunt disponibile, nici folosite în timp ce folosiți modul gratuit.

Pentru a schimba aceasta, vizitați pagina și " "activați setarea Plătiți pentru anunțuri." -#: admin/templates/admin-panel-fees.tpl.php:20 +#: admin/templates/admin-panel-fees.tpl.php:11 +msgid "Payment Settings page" +msgstr "Setările paginii de plată" + +#: admin/templates/admin-panel-fees.tpl.php:22 msgid "Add Fee Plan" msgstr "Adaugă un plan plătit" -#: admin/templates/admin-panel-fees.tpl.php:24 -msgid "Fee Plan sort order and sort direction Settings" -msgstr "Ordinea de sortare a planului de taxe și direcția de sortare setări" - #: admin/templates/admin-panel-fees.tpl.php:26 +#, fuzzy msgid "" -"If you wish to change the sorting of your fee plans, you can change the ." +"If you wish to change the sorting of your fee plans, you can change the %s." msgstr "" "Dacă doriți să schimbați ordinea planurilor dvs. plătite, puteti schimba " "." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:14 +#: admin/templates/admin-panel-fees.tpl.php:30 +msgid "Fee Plan sort order and sort direction Settings" +msgstr "Ordinea de sortare a planului de taxe și direcția de sortare setări" + +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:17 msgid "Facebook Integration" msgstr "Integrare Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:16 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:23 msgid "" "We currently support two methods for posting new ads to Facebook: Facebook " "API and Zapier/IFTTT Webhooks." @@ -969,7 +1038,7 @@ msgstr "" "În prezent, sprijinim două metode de a posta reclame noi pe Facebook: " "Facebook API și Zapier/IFTTT webhooks." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:18 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:25 msgid "" "Support for Facebook API will be removed in the future. Facebook " "significantly reduced access to their APIs across all apps on Apr, 2018. Now " @@ -988,12 +1057,13 @@ msgstr "" "alternativă și se așteaptă ca clienții să migreze la această metodă de " "integrare." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:22 -msgid "You can read more about Facebook changes here: {facebook_post_link}" +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:30 +#, fuzzy +msgid "You can read more about Facebook changes here: %s" msgstr "" "Puteți citi mai multe despre modificările Facebook aici: {facebook_post_link}" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:29 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:38 msgid "" "If you are currently using the Facebook API integration method and not " "having any issues, you don't have to do anything right now. If you are " @@ -1004,19 +1074,19 @@ msgstr "" "probleme, vă rugăm să citiți secțiunea Diagnostics de mai jos pentru a " "încerca să le remediați." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:40 #: includes/settings/class-general-settings.php:735 msgid "Facebook API" msgstr "Facebook API" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:35 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:46 +#, fuzzy msgid "" "This integration method allows you to post ads to Facebook using a Facebook " -"Application. Please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"Application. Please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" "Această metodă de integrare vă permite să publicați anunțuri pe Facebook " "folosind o aplicație Facebook. Vă rugăm să citiți " @@ -1025,8 +1095,8 @@ msgstr "" "{link_to_facebook_integration_documentation} aceste instrucțiuni {/" "link_to_facebook_ integration_documentation}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:45 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:79 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 msgid "" "Add the following URL to the list of Valid OAuth Redirect URIs for the " "configuration of the Facebook Application:" @@ -1034,12 +1104,12 @@ msgstr "" "Adaugă următorul URL la lista de redirectari de URL-uri OAuth valide pentru " "configurarea Aplicației Facebook:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:59 #: includes/settings/class-general-settings.php:736 msgid "Zapier/IFTTT Webhooks" msgstr "Zapier/IFTTT webhooks" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:51 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:61 msgid "" "Webhooks allow the plugin to send a request to one of the configured webhook " "URLs the first time an ad becomes publicly available on the website. That " @@ -1055,13 +1125,13 @@ msgstr "" "pentru a procesa informațiile transmise (URL, titlu și descriere) și a crea " "o postare pe o pagină de Facebook pe care o controlați." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:67 +#, fuzzy msgid "" -"Follow the instructiones to create the tasks on " -"{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} or " -"{webhook_instructions_for_ifttt}IFTTT{/webhook_instructions_for_ifttt}. Then " -"update the settings at the bottom of this page to enter the webhook URLs " -"associated with those tasks." +"Follow the instructiones to create the tasks on %1$sZapier or IFTTT%2$s. " +"Then update the settings at the bottom of this page to enter the webhook " +"URLs associated with those tasks." msgstr "" "Urmați instructiones pentru a crea sarcinile pe " "{webhook_instructions_for_zapier} Zapier {/webhook_instructions_for_zapier} " @@ -1070,21 +1140,21 @@ msgstr "" "a acestei pagini pentru a introduce URL-urile webhook asociate cu aceste " "activități." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:65 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:74 msgid "Facebook Cache" msgstr "Memorie cache Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:69 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:80 +#, fuzzy msgid "" "If you are using Webhooks to send ads to Facebook, a Facebook Application " "can still be used to ask Facebook to clear the cache it has stored for ads " "pages. This is useful to ensure users always see the latest version when the " "ad is shared on Facebook Pages, Groups and user feeds. If you decide to use " -"this feature, please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"this feature, please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" "Dacă folosești webhooks pentru a trimite anunțuri pe Facebook, o aplicație " "Facebook poate fi utilizată în continuare pentru a solicita Facebook să " @@ -1098,19 +1168,19 @@ msgstr "" "{link_to_facebook_integration_documentation} aceste instrucțiuni {/" "link_to_facebook_integration_documentationde." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:83 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:93 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:120 msgid "Diagnostics" msgstr "Diagnostice" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:95 msgid "" "If you see the following error after trying to get a valid User Access Token:" msgstr "" "Dacă Vedeți următoarea eroare după încercarea de a obține un token de acces " "utilizator valid:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:99 msgid "" "You have to submit your Facebook Application for Review and ask for those " "permissions or use the Webhooks integration method to send ads to Facebook " @@ -1120,22 +1190,22 @@ msgstr "" "permisiuni sau să utilizați metoda de integrare a webhooks pentru a trimite " "anunțuri pe Facebook folosind Zapier sau IFTTT webhooks." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:91 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:101 msgid "If you see the following error trying to send ads to a Facebook Group:" msgstr "" "Dacă Vedeți următoarea eroare care încearcă să trimită anunțuri într-un grup " "Facebook:" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:97 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#, fuzzy msgid "" -"Please make sure the Facebook Application " -"{link_to_how_to_add_apps_to_a_group}was added to the group{/" -"link_to_how_to_add_apps_to_a_group}." +"Please make sure the Facebook Application %1$swas added to the group%2$s." msgstr "" "Asigurați-vă că aplicația Facebook {link_to_how_to_add_apps_to_a_group} a " "fost adăugată la grupul {/link_to_how_to_add_apps_to_a_groupde." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:108 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:119 msgid "" "If you are having additional problems with Facebook API, click " "\"Diagnostics\" to check your settings." @@ -1143,15 +1213,15 @@ msgstr "" "Dacă aveți probleme suplimentare cu API-ul Facebook, faceți clic pe " "\"diagnosticare\" pentru a verifica setările." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:3 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:4 msgid "Restore AWPCP Pages" msgstr "Restaurează paginile AWPCP" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:8 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:10 msgid "The following pages were restored: ." msgstr "Următoarele pagini au fost restaurate: ." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:19 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:21 msgid "" "The pages listed below are missing. The plugin is looking for a page with a " "particular ID but it seems that the page was permanently deleted. Please a " @@ -1161,12 +1231,13 @@ msgstr "" "cu un anumit ID, dar se pare că pagina a fost șters definitiv. Vă rugăm să " "selectați unul nou." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:23 -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:71 -msgid "%s (Default name: %s)." +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:28 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:97 +#, fuzzy +msgid "%1$s (Default name: %2$s)." msgstr "%s (nume implicit: %s)." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:39 msgid "" "The following pages are not published. Did you move them to the Trash by " "accident or saved them as Draft?" @@ -1174,11 +1245,13 @@ msgstr "" "Următoarele pagini nu sunt publicate. Le-ai mutat la Trash accidental sau le-" "ai salvat ca ciornă?" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:41 -msgid "%s — Selected page: %s (%s)" +#. translators: %1$s page label, %2$s link to the page, %3$s the page status. +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:57 +#, fuzzy +msgid "%1$s Selected page: %2$s (%3$s)" msgstr "%s — pagina selectată: %s ( %s)" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:69 msgid "" "The following pages are not currently assigned. Please select an existing " "page or create a new one to use as the following plugin pages:" @@ -1187,16 +1260,17 @@ msgstr "" "existentă sau creați una nouă pentru a o utiliza ca următoarele pagini de " "plugin:" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:64 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#, fuzzy msgid "" -" — You can select one of these pages that already include " -"the necessary shortcode: or create a new one." +"%1$s You can select one of these pages that already include the necessary " +"shortcode: %2$s or %3$screate a new one%4$s." msgstr "" "— Puteți selecta una dintre aceste pagini care includ deja " "Shortcode-ul necesar: sau Creați unul nou.." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:115 msgid "" "Use the button below to have the plugin attempt to find the necessary pages. " "If you continue to have problems or seeing page related warnings above, you " @@ -1209,11 +1283,11 @@ msgstr "" "pluginului și să folosiți butonul Restaurează Pagini pentru ca pluginul să " "le recreeze." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:86 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:116 msgid "Restore Pages" msgstr "Restaurează paginile" -#: admin/templates/admin-panel-uninstall.tpl.php:13 +#: admin/templates/admin-panel-uninstall.tpl.php:10 msgid "" "Thank you for using AWPCP. You have arrived at this page by clicking the " "Uninstall link. If you are certain you wish to uninstall the plugin, please " @@ -1223,7 +1297,7 @@ msgstr "" "pe linkul dezinstalare. Dacă sunteți sigur că doriți să dezinstalați plugin-" "ul, vă rugăm să faceți clic pe butonul din partea de jos pentru a continua." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "" "PLEASE NOTE: When you click the button below, ALL your data related to the " "plugin including your classifieds, images and everything else created by the " @@ -1233,11 +1307,11 @@ msgstr "" "legate de plugin-ul, inclusiv Classifieds dvs., imagini și orice altceva " "creat de plugin-ul va fi șters definitiv." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "We cannot recover the data after you click this." msgstr "Nu vom putea recupera datele după ce dați click pe acesta." -#: admin/templates/admin-panel-uninstall.tpl.php:18 +#: admin/templates/admin-panel-uninstall.tpl.php:15 msgid "" "BEFORE YOU CLICK THE BUTTON BELOW — read carefully in case you want to " "extract your data first!" @@ -1245,7 +1319,7 @@ msgstr "" "ÎNAINTE DE A DA CLICK PE BUTONUL DE MAI JOS — citiți cu atenție în caz " "că doriți mai întâi să extrageți datele dvs.!" -#: admin/templates/admin-panel-uninstall.tpl.php:21 +#: admin/templates/admin-panel-uninstall.tpl.php:18 msgid "" "If you plan to use the data created by the plugin please export the data " "from your mysql database before clicking the uninstall link." @@ -1254,46 +1328,50 @@ msgstr "" "datele din baza de date mysql înainte de a da click pe link-ul de " "dezinstalare." -#: admin/templates/admin-panel-uninstall.tpl.php:22 +#: admin/templates/admin-panel-uninstall.tpl.php:21 +#, fuzzy msgid "" -"If you want to keep your user uploaded images, please download to " -"your local drive for later use or rename the folder to something else so the " +"If you want to keep your user uploaded images, please download %s to your " +"local drive for later use or rename the folder to something else so the " "uninstaller can bypass it." msgstr "" "Dacă doriți să păstrați imaginile încărcate de utilizatori, vă rugăm să " "descărcați pe discul dvs. pentru o folosire ulterioară, sau să " "redenumiți acest director pentru ca programul de dezinstalare să-l ocolească." -#: admin/templates/admin-panel-uninstall.tpl.php:28 +#: admin/templates/admin-panel-uninstall.tpl.php:29 #, fuzzy msgid "Proceed with Uninstalling AWP Classifieds Plugin" msgstr "Continuați cu dezinstalarea un alt WordPress Classifieds plugin" -#: admin/templates/admin-panel-uninstall.tpl.php:33 +#: admin/templates/admin-panel-uninstall.tpl.php:35 msgid "Almost done... one more step!" msgstr "Aproape gata... încă un pas!" -#: admin/templates/admin-panel-uninstall.tpl.php:36 -msgid "Please click here to complete the uninstallation process" +#: admin/templates/admin-panel-uninstall.tpl.php:39 +#, fuzzy +msgid "Please click here to deactivate plugins." msgstr "Vă rugăm să dați click aici pentru procesul de dezinstalare" #: admin/templates/admin-panel-users-balance-form.tpl.php:12 +#: frontend/templates/payments-transaction-items-table.tpl.php:5 +#: frontend/templates/payments-transaction-items-table.tpl.php:17 msgid "Amount" msgstr "Preț" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:12 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:14 msgid "Manual Upgrade Required" msgstr "Este necesară actualizare manuală" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:17 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:26 msgid "Upgrade" msgstr "Actualizează" #: admin/templates/admin-quick-start-guide-notice.tpl.php:2 #, fuzzy msgid "" -"Hello and welcome to AWP Classifieds. This plugin is super " -"easy to use AND highly configurable." +"Hello and welcome to AWP Classifieds. This plugin is super easy to use AND " +"highly configurable." msgstr "" "Bun venit și bun găsit la AWPCP. Acest plugin este ușor de " "folosit și permite multe personalizări." @@ -1303,39 +1381,53 @@ msgid "Would you like some help getting started?" msgstr "Doriți ceva ajutor ca să începeți?" #: admin/templates/admin-quick-start-guide-notice.tpl.php:12 +#, fuzzy +msgid "I'll figure it out on my own." +msgstr "O sa mă descurc pe cont propriu." + +#: admin/templates/admin-quick-start-guide-notice.tpl.php:15 msgid "Yes Please!" msgstr "Da, vă rog!" -#: admin/templates/admin-sidebar.tpl.php:14 +#: admin/templates/admin-quick-start-guide-notice.tpl.php:20 +#, fuzzy +msgid "Help me get my classifieds running quickly." +msgstr "Ajutați-mă ca să am anunțurile setate rapid." + +#: admin/templates/admin-sidebar.tpl.php:15 msgid "Like this plugin?" msgstr "Vă place acest plugin?" -#: admin/templates/admin-sidebar.tpl.php:20 +#: admin/templates/admin-sidebar.tpl.php:24 msgid "Give a 5 star rating on WordPress.org." msgstr "" -#: admin/templates/admin-sidebar.tpl.php:36 +#: admin/templates/admin-sidebar.tpl.php:42 #, fuzzy msgid "Get more features!" msgstr "Anunțul este marcat ca Special." -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:67 msgid "Found a bug?" msgstr "Ați găsit o eroare?" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:68 msgid "Need Support?" msgstr "Aveți nevoie de suport tehnic?" -#: admin/templates/admin-sidebar.tpl.php:70 -msgid "Quick Start Guide" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:80 +#, fuzzy +msgid "Browse the %1$sQuick Start Guide%2$s" msgstr "Ghid de folosire rapidă" -#: admin/templates/admin-sidebar.tpl.php:80 -msgid "Documentation" -msgstr "Documentație" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:90 +#, fuzzy +msgid "Read the full %1$sDocumentation%2$s." +msgstr "Citiți întreaga %s." -#: admin/templates/admin-sidebar.tpl.php:91 +#: admin/templates/admin-sidebar.tpl.php:98 msgid "Get Help" msgstr "" @@ -1345,11 +1437,11 @@ msgid "Thank you for using AWP Classifieds Plugin." msgstr "Vă mulțumim pentru folosirea plugin-ului AWPCP." #: admin/templates/admin-widget-modification-notice.tpl.php:3 +#, fuzzy msgid "" -"AWPCP 3.0 includes several modifications to the Search Ads, " -"Featured Ads and Latest Ads widgets. For " -"example, the Latest Ads widget can now be used in multiple sidebars. Also, " -"there is a new Widget to show Random Ads." +"AWPCP 3.0 includes several modifications to the Search Ads, Featured Ads and " +"Latest Ads widgets. For example, the Latest Ads widget can now be used in " +"multiple sidebars. Also, there is a new Widget to show Random Ads." msgstr "" "AWPCP 3.0 include mai multe modificări legate de piesele (widgets) " "Căutare Anunțurilor, Anunțuri Speciale și " @@ -1493,7 +1585,7 @@ msgstr "" "Actualizarea PHP pentru a înțelege mai multe despre PHP și să faceți " "upgrade." -#: awpcp.php:200 +#: awpcp.php:198 #, fuzzy msgid "" "AWP Classifieds Plugin installation is incomplete. Please {support_link}" @@ -1503,23 +1595,23 @@ msgstr "" "asistența tehnică{/support_link}." #. translators: %s is the title of the listing. -#: frontend/ad-functions.php:155 +#: frontend/ad-functions.php:159 #: includes/listings/class-listing-renewed-email-notifications.php:85 msgid "The ad \"%s\" has been successfully renewed." msgstr "Anunțul \" %s\" a fost reînnoit cu succes." -#: frontend/ad-functions.php:189 frontend/page-renew-ad.php:160 +#: frontend/ad-functions.php:193 frontend/page-renew-ad.php:160 msgid "The Ad has been successfully renewed. New expiration date is %s." msgstr "Anunțul a fost reînnoit cu succes. Noua dată de expirare este %s." -#: frontend/ad-functions.php:194 frontend/page-renew-ad.php:152 +#: frontend/ad-functions.php:198 frontend/page-renew-ad.php:151 #: templates/admin/listings/quick-view-listing-admin-page.tpl.php:18 #: templates/admin/listings-media-center.tpl.php:6 #: templates/admin/view-listing-admin-page.tpl.php:14 msgid "Return to Listings" msgstr "Înapoi la administrare anunțuri" -#: frontend/ad-functions.php:212 frontend/page-place-ad.php:151 +#: frontend/ad-functions.php:216 frontend/page-place-ad.php:154 msgid "" "You do not have permission to perform the function you are trying to " "perform. Access to this page has been denied" @@ -1527,11 +1619,11 @@ msgstr "" "Nu aveți permisiunea să executați această funcție. Accesul la aceasta pagină " "a fost interzis" -#: frontend/ad-functions.php:227 +#: frontend/ad-functions.php:231 msgid "The Ad has been deleted" msgstr "Anunțul dvs. a fost șters" -#: frontend/ad-functions.php:230 +#: frontend/ad-functions.php:234 msgid "" "Your Ad details and any photos you have uploaded have been deleted from the " "system" @@ -1539,16 +1631,16 @@ msgstr "" "Detaliile anunțului dvs.. și orice imagini ale acestuia au fost șterse din " "sistem" -#: frontend/ad-functions.php:234 +#: frontend/ad-functions.php:238 #: includes/frontend/class-edit-listing-page.php:188 msgid "The specified Ad doesn't exists." msgstr "Anunțul specificat nu există." -#: frontend/ad-functions.php:236 +#: frontend/ad-functions.php:240 msgid "There was an error trying to delete the Ad. The Ad was not deleted." msgstr "A apărut o eroare ștergerea anunțului. Anunțul nu a fost șters." -#: frontend/ad-functions.php:239 +#: frontend/ad-functions.php:243 msgid "Problem encountered. Cannot complete request" msgstr "A apărut o problemă. Solicitarea nu poate fi terminată" @@ -1568,7 +1660,7 @@ msgstr "" "Nu a fost specificată nici o categorie pentru explorare, de aceea vedeți " "anunțuri din toate categoriile." -#: frontend/page-place-ad.php:74 +#: frontend/page-place-ad.php:75 #: includes/views/class-verify-transaction-exists-step-decorator.php:17 msgid "" "There was an error processing your Payment Request. Please try again or " @@ -1577,19 +1669,20 @@ msgstr "" "A apărut o eroare la procesarea tranzacției de plată. Vă rugăm să încercați " "din nou sau să contactați administratorul." -#: frontend/page-place-ad.php:132 +#: frontend/page-place-ad.php:133 msgid "Please select a category." msgstr "Vă rugăm să selectați o categorie." -#: frontend/page-place-ad.php:133 -msgid "Please select the Ad's owner." +#: frontend/page-place-ad.php:134 +#, fuzzy +msgid "Please select the Ad owner." msgstr "Vă rugăm să selectați proprietarul anunțului." -#: frontend/page-place-ad.php:134 +#: frontend/page-place-ad.php:135 msgid "Please select a payment term." msgstr "Vă rugăm să selectați un term de plată." -#: frontend/page-place-ad.php:165 frontend/page-renew-ad.php:87 +#: frontend/page-place-ad.php:168 frontend/page-renew-ad.php:86 msgid "" "You are trying to post an Ad using a transaction created for a different " "purpose. Please go back to the %s page.
If you think " @@ -1601,7 +1694,7 @@ msgstr "" "considerați că aceasta este o eroare, vă rugăm să contactați administratorul " "și să trimiteți ID-ul tranzacției: %s" -#: frontend/page-place-ad.php:174 +#: frontend/page-place-ad.php:177 #: includes/frontend/class-submit-listing-page.php:291 msgid "" "You can't post an Ad at this time because the payment associated with this " @@ -1610,18 +1703,18 @@ msgstr "" "Nu puteți posta un anunț la acest moment pentru că plata asociată cu aceast " "tranzacție a eșuat (vedeți motivele mai jos)." -#: frontend/page-place-ad.php:256 +#: frontend/page-place-ad.php:259 #: includes/listings/class-payment-information-validator.php:88 msgid "You should select an owner for this Ad." msgstr "Trebuie să selectați un proprietar pentru acest anunț." -#: frontend/page-place-ad.php:260 frontend/page-renew-ad.php:197 +#: frontend/page-place-ad.php:263 frontend/page-renew-ad.php:199 #: includes/listings/class-payment-information-validator.php:64 #: includes/listings/class-payment-information-validator.php:73 msgid "You should choose one of the available Payment Terms." msgstr "Trebuie să alegeți unul dintre Termenele de plată disponibile." -#: frontend/page-place-ad.php:264 +#: frontend/page-place-ad.php:267 #: includes/listings/class-payment-information-validator.php:75 msgid "" "The Payment Term you selected is not available for non-administrator users." @@ -1629,17 +1722,17 @@ msgstr "" "Termenul de plată selectat nu este disponibil pentru utilizatorii care nu " "sunt administratori." -#: frontend/page-place-ad.php:280 +#: frontend/page-place-ad.php:283 #: includes/listings/class-payment-information-validator.php:108 msgid "Ad Category field is required" msgstr "Categoria anunțului este un câmp obligatoriu" -#: frontend/page-place-ad.php:285 +#: frontend/page-place-ad.php:288 #: includes/listings/class-payment-information-validator.php:119 msgid "You cannot list your Ad in top level categories." msgstr "Nu poți să listați anunțul în categoriile de nivel superior." -#: frontend/page-place-ad.php:291 +#: frontend/page-place-ad.php:294 #: includes/frontend/class-submit-listing-page.php:190 msgid "" "Hi, You need to be a registered user to post Ads in this website. Please use " @@ -1649,7 +1742,7 @@ msgstr "" "website. Vă rugăm să folosiți formularul de mai jos sau să dați click pe " "link-ul de înregistrare." -#: frontend/page-place-ad.php:429 frontend/page-place-ad.php:836 +#: frontend/page-place-ad.php:432 frontend/page-place-ad.php:839 #: frontend/page-renew-ad.php:297 #: includes/frontend/class-order-submit-listing-section.php:119 msgid "" @@ -1660,7 +1753,7 @@ msgstr "" #. translators: %s is an alphanumeric string that identifies a payment #. transaction. #. translators: %s the transaction id -#: frontend/page-place-ad.php:511 frontend/page-renew-ad.php:347 +#: frontend/page-place-ad.php:514 frontend/page-renew-ad.php:347 #: includes/frontend/class-submit-listing-page.php:333 #: includes/views/class-verify-payment-can-be-processed-step-decorator.php:18 msgid "" @@ -1671,7 +1764,7 @@ msgstr "" "Nu putem procesa plăți pentru acest tip de tranzacție. Vă rugăm să " "contactați administratorul și să indicați ID-ul tranzacției: %s" -#: frontend/page-place-ad.php:834 +#: frontend/page-place-ad.php:837 msgid "" "Your Ad details have been filled out in the form below. Make any changes " "needed and then resubmit the Ad to update it." @@ -1679,12 +1772,12 @@ msgstr "" "Detaliile anunțului dvs. au fost completate în formularul de mai jos. Faceți " "modificările necesare și apoi retrimiteți anunțul pentru a fi actualizat." -#: frontend/page-place-ad.php:838 +#: frontend/page-place-ad.php:841 msgid "Fill out the form below to post your classified ad." msgstr "" "Completează formularul de mai jos pentru a posta reclama ta clasificată." -#: frontend/page-place-ad.php:842 +#: frontend/page-place-ad.php:845 msgid "" "We found errors in the details you submitted. A detailed error message is " "shown in front or below each invalid field. Please fix the errors and submit " @@ -1694,11 +1787,11 @@ msgstr "" "detaliat este arătat în fața sau sub fiecare câmp invalid. Vă rugăm să " "rezolvați erorile și să trimiteți formularul din nou." -#: frontend/page-place-ad.php:861 +#: frontend/page-place-ad.php:864 msgid "Start & End Date" msgstr "Data de început și sfârșit" -#: frontend/page-place-ad.php:863 +#: frontend/page-place-ad.php:866 #: includes/admin/import/class-csv-importer-columns.php:185 #: includes/admin/listings/class-listings-table-nav-handler.php:151 #: includes/form-fields/class-listing-form-fields.php:127 @@ -1706,7 +1799,7 @@ msgstr "Data de început și sfârșit" msgid "Start Date" msgstr "Data de început" -#: frontend/page-place-ad.php:865 +#: frontend/page-place-ad.php:868 #: includes/admin/import/class-csv-importer-columns.php:196 #: includes/admin/listings/class-listings-table-nav-handler.php:152 #: includes/form-fields/class-listing-form-fields.php:131 @@ -1714,7 +1807,7 @@ msgstr "Data de început" msgid "End Date" msgstr "Data de sfârșit" -#: frontend/page-place-ad.php:973 +#: frontend/page-place-ad.php:976 msgid "" "Hi, Payment is required for posting Ads in this website and we couldn't find " "a Payment Transaction assigned to you. You can't post Ads this time. If you " @@ -1725,44 +1818,44 @@ msgstr "" "la acest moment. Dacă credeți că aceasta este o eroare, vă rugăm să " "contactați administratorul." -#: frontend/page-place-ad.php:1000 +#: frontend/page-place-ad.php:1003 msgid "" "You did not select a Payment Term. Please select a Payment Term for this Ad." msgstr "" "Nu ați selectat un termen de plată. Vă rugăm să selectați un termen de plată " "pentru acest anunț." -#: frontend/page-place-ad.php:1005 +#: frontend/page-place-ad.php:1008 msgid "Please enter a start date for the Ad." msgstr "Vă rugăm să introduceți data de început pentru anunțul dvs." -#: frontend/page-place-ad.php:1010 +#: frontend/page-place-ad.php:1013 msgid "Please enter an end date for the Ad." msgstr "Vă rugăm să introduceți data de sfârșit pentru anunțul dvs." -#: frontend/page-place-ad.php:1014 +#: frontend/page-place-ad.php:1017 #: includes/form-fields/class-form-fields-validator.php:71 msgid "The start date must occur before the end date." msgstr "Data de început trebuie să apară înaintea datei de sfârșit." -#: frontend/page-place-ad.php:1019 +#: frontend/page-place-ad.php:1022 msgid "You did not enter a title for your Ad" msgstr "Nu ați introdus un titlu pentru anunțul dvs" -#: frontend/page-place-ad.php:1024 +#: frontend/page-place-ad.php:1027 msgid "" "You did not enter any text for your Ad. Please enter some text for your Ad." msgstr "" "Nu ați introdus un text pentru anunțul dvs. Vă rugăm să introduceți un text " "pentru anunțul dvs." -#: frontend/page-place-ad.php:1037 +#: frontend/page-place-ad.php:1040 msgid "" "You did not enter your website address. Your website address is required." msgstr "" "Nu ați introdus adresa website-ului dvs. Adresa de website este obligatorie." -#: frontend/page-place-ad.php:1043 +#: frontend/page-place-ad.php:1046 msgid "" "Your website address is not properly formatted. Please make sure you have " "included the http:// part of your website address" @@ -1770,15 +1863,15 @@ msgstr "" "Adresa dvs. de website nu este formatată corect. Asigurați-vă că ați inclus " "http:// la începutul adresei de website" -#: frontend/page-place-ad.php:1048 +#: frontend/page-place-ad.php:1051 msgid "You did not enter your name. Your name is required." msgstr "Nu ați introdus numele dvs. Numele dvs. este obligatoriu." -#: frontend/page-place-ad.php:1053 +#: frontend/page-place-ad.php:1056 msgid "You did not enter your email. Your email is required." msgstr "Nu ați introdus adresa dvs. de email. Email-ul dvs. este obligatoriu." -#: frontend/page-place-ad.php:1058 frontend/page-reply-to-ad.php:160 +#: frontend/page-place-ad.php:1061 frontend/page-reply-to-ad.php:160 msgid "" "The email address you entered was not a valid email address. Please check " "for errors and try again." @@ -1786,7 +1879,7 @@ msgstr "" "Adresa de email introdusă nu ete validă. Vă rugăm să verificați erorile și " "să încercați din nou." -#: frontend/page-place-ad.php:1060 +#: frontend/page-place-ad.php:1063 msgid "" "The email address you entered is not allowed in this website. Please use an " "email address from one of the following domains: %s." @@ -1794,40 +1887,40 @@ msgstr "" "Adresa de email introdusă nu este permisă în acest website. Vă rugăm să " "folosiți o adresă de email din unul dintre următoarele domenii: %s." -#: frontend/page-place-ad.php:1071 +#: frontend/page-place-ad.php:1074 msgid "You did not enter your phone number. Your phone number is required." msgstr "" "Nu ați introdus numărul dvs. de telefon. Numărul dvs. de telefon este " "obligatoriu." -#: frontend/page-place-ad.php:1089 -#: includes/helpers/widgets/multiple-region-selector.php:124 +#: frontend/page-place-ad.php:1092 +#: includes/helpers/widgets/multiple-region-selector.php:144 msgid "You did not enter your country. Your country is required." msgstr "Nu ați introdus țara. Țara este un câmp obligatoriu." -#: frontend/page-place-ad.php:1098 -#: includes/helpers/widgets/multiple-region-selector.php:125 +#: frontend/page-place-ad.php:1101 +#: includes/helpers/widgets/multiple-region-selector.php:145 msgid "You did not enter your state. Your state is required." msgstr "" "Nu ați introdus statul/provincia/județul dvs. Statul/provincia/județul sunt " "obligatorii." -#: frontend/page-place-ad.php:1107 -#: includes/helpers/widgets/multiple-region-selector.php:127 +#: frontend/page-place-ad.php:1110 +#: includes/helpers/widgets/multiple-region-selector.php:147 msgid "You did not enter your city. Your city is required." msgstr "Nu ați introdus orașul dvs. Orașul dvs. este obligatoriu." -#: frontend/page-place-ad.php:1116 -#: includes/helpers/widgets/multiple-region-selector.php:126 +#: frontend/page-place-ad.php:1119 +#: includes/helpers/widgets/multiple-region-selector.php:146 msgid "You did not enter your county/village. Your county/village is required." msgstr "" "Nu ați introdus suburbia/satul dvs. Suburbia/satul dvs. sunt obligatorii." -#: frontend/page-place-ad.php:1123 +#: frontend/page-place-ad.php:1126 msgid "You did not enter the price of your item. The item price is required." msgstr "Nu ați introdus prețul produsului dvs. Prețul este obligatoriu." -#: frontend/page-place-ad.php:1129 +#: frontend/page-place-ad.php:1132 msgid "" "You have entered an invalid item price. Make sure your price contains " "numbers only. Please do not include currency symbols." @@ -1835,18 +1928,18 @@ msgstr "" "Ați introdus un preț incorect. Asigurați-vă că prețul dvs. conține doar " "numere. Vă rugăm să nu includeți simboluri valutare." -#: frontend/page-place-ad.php:1147 +#: frontend/page-place-ad.php:1150 msgid "You did not accept the terms of service" msgstr "Nu ați acceptat termenii de folosire" -#: frontend/page-place-ad.php:1163 +#: frontend/page-place-ad.php:1166 msgid "" "Your Ad was flagged as spam. Please contact the administrator of this site." msgstr "" "Anunțul dvs. a fost marcat ca SPAM. Vă rugăm să contactați administratorul " "acestui website." -#: frontend/page-place-ad.php:1354 +#: frontend/page-place-ad.php:1357 msgid "" "We were unable to find a Payment Transaction assigned to this operation. No " "images can be added at this time." @@ -1854,28 +1947,28 @@ msgstr "" "Nu am putut găsi o tranzacție de plată asociată cu această operație. Nici o " "imagine nu poate fi adăugată la acest moment." -#: frontend/page-place-ad.php:1361 +#: frontend/page-place-ad.php:1364 msgid "The specified Ad doesn't exists. No images can be added at this time." msgstr "Anunțul specificat nu există. Nu a fost adăugată nici o imagine." -#: frontend/page-place-ad.php:1440 frontend/page-place-ad.php:1492 +#: frontend/page-place-ad.php:1443 frontend/page-place-ad.php:1495 #: includes/frontend/class-submit-listing-page.php:393 msgid "" "We were unable to find a Payment Transaction assigned to this operation." msgstr "Nu am putut găsi o tranzacție de plată asociată cu această operație." -#: frontend/page-place-ad.php:1447 frontend/page-place-ad.php:1499 +#: frontend/page-place-ad.php:1450 frontend/page-place-ad.php:1502 #: frontend/page-renew-ad.php:408 #: includes/frontend/class-submit-listing-page.php:400 msgid "The Ad associated with this transaction doesn't exists." msgstr "Anunțul asociat cu această tranzacție nu există." -#: frontend/page-renew-ad.php:73 +#: frontend/page-renew-ad.php:72 #, fuzzy msgid "That Ad doesn't need to be renewed." msgstr "Anunțul specificat nu trebuie să fie reînnoit." -#: frontend/page-renew-ad.php:78 +#: frontend/page-renew-ad.php:77 msgid "" "There was an error trying to renew your Ad. The URL is not valid. Please " "contact the Administrator of this site for further assistance." @@ -1883,7 +1976,7 @@ msgstr "" "A apărut o eroare la încercarea de a reînnoi anunțul dvs. URL-ul nu este " "valid. Vă rugăm să contactați administratorul pentru mai multă asistență." -#: frontend/page-renew-ad.php:94 +#: frontend/page-renew-ad.php:93 msgid "" "You can't renew your Ad at this time because the payment associated with " "this transaction failed (see reasons below)." @@ -1891,7 +1984,7 @@ msgstr "" "Nu putem reînnoi anunțul dvs. la acest moment pentru că plata asociată cu " "acest tip de tranzacție a eșuat (vedeți motivele mai jos)." -#: frontend/page-renew-ad.php:117 +#: frontend/page-renew-ad.php:116 msgid "" "The Ad was posted under a Payment Term that no longer exists or is disabled. " "The Ad can't be renewed." @@ -1899,11 +1992,11 @@ msgstr "" "Acest anunț a fost postat cu un termen de plată care nu mai există sau a " "fost dezactivat. Anunțul nu poate fi reînnoit." -#: frontend/page-renew-ad.php:154 +#: frontend/page-renew-ad.php:153 msgid "You can see your Ad here" msgstr "Puteți vedea anunțul dvs. aici" -#: frontend/page-renew-ad.php:200 +#: frontend/page-renew-ad.php:201 msgid "" "You are trying to renew your Ad using a different Payment Term. That's not " "allowed." @@ -2021,7 +2114,7 @@ msgstr "Vânzător" msgid "Visit Website" msgstr "Vizitează website" -#: frontend/placeholders.php:655 includes/functions/listings.php:405 +#: frontend/placeholders.php:655 includes/functions/listings.php:415 msgid "Location" msgstr "Locație" @@ -2094,30 +2187,30 @@ msgstr "" "A apărut o problemă în timpul trimiterii plătii de către client. Detaliile " "tranzacției sunt afișate mai jos" -#: frontend/templates/email-abort-payment-admin.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:12 msgid "User Name" msgstr "Nume utilizator" -#: frontend/templates/email-abort-payment-admin.tpl.php:10 +#: frontend/templates/email-abort-payment-admin.tpl.php:13 msgid "User Login" msgstr "Logare utilizator" -#: frontend/templates/email-abort-payment-admin.tpl.php:11 +#: frontend/templates/email-abort-payment-admin.tpl.php:14 msgid "User Email" msgstr "Email utilizator" -#: frontend/templates/email-abort-payment-admin.tpl.php:15 +#: frontend/templates/email-abort-payment-admin.tpl.php:18 #: includes/admin/import/class-csv-importer-columns.php:219 msgid "Payment Term Type" msgstr "Tipul termenului de plată" -#: frontend/templates/email-abort-payment-admin.tpl.php:16 +#: frontend/templates/email-abort-payment-admin.tpl.php:19 #: includes/admin/import/class-csv-importer-columns.php:207 msgid "Payment Term ID" msgstr "ID-ul termenului de plată" -#: frontend/templates/email-abort-payment-admin.tpl.php:17 -#: frontend/templates/email-abort-payment-user.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:20 +#: frontend/templates/email-abort-payment-user.tpl.php:12 msgid "Payment transaction ID" msgstr "Numarul de ID al tranzacției" @@ -2127,11 +2220,11 @@ msgid "Additional Details" msgstr "Detalii suplimentare" #: frontend/templates/email-ad-enabled-user.tpl.php:3 -#: frontend/templates/email-send-ad-access-key.tpl.php:1 +#: frontend/templates/email-send-ad-access-key.tpl.php:3 msgid "Hello %s," msgstr "Bună %s," -#: frontend/templates/email-ad-enabled-user.tpl.php:6 +#: frontend/templates/email-ad-enabled-user.tpl.php:8 msgid "" "Your Ad \"%1$s\" was recently approved by the admin. You should be able to " "see the Ad published here: %2$s." @@ -2198,8 +2291,8 @@ msgstr "" msgid "Ad Information" msgstr "Conținut anunț" -#: frontend/templates/email-ad-updated-user.tpl.php:18 -#: frontend/templates/email-place-ad-success-user.tpl.php:45 +#: frontend/templates/email-ad-updated-user.tpl.php:20 +#: frontend/templates/email-place-ad-success-user.tpl.php:47 msgid "" "If you have questions about your listing contact %s. Thank you for your " "business." @@ -2239,21 +2332,22 @@ msgstr "Total comandă (credite)" msgid "The next link will take you to a page where you can edit the listing:" msgstr "Următorul link vă va duce pe o pagină unde veți putea edita anunțul:" -#: frontend/templates/email-send-ad-access-key.tpl.php:3 +#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#, fuzzy msgid "" -"Below you will find the access key for your Ad \"%s\" associated to the " +"Below you will find the access key for your Ad \"%s\" associated with the " "email address %s." msgstr "" "Mai jos veți afla cheia de acces pentru anunțul dvs. \"%s\" asociat cu " "adresa de email %s." -#: frontend/templates/email-send-ad-access-key.tpl.php:6 +#: frontend/templates/email-send-ad-access-key.tpl.php:10 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:13 #: templates/admin/view-listing-admin-page.tpl.php:11 msgid "Access Key" msgstr "Cheie de acces" -#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#: frontend/templates/email-send-ad-access-key.tpl.php:11 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:14 msgid "Edit Link:" msgstr "Editează link-ul:" @@ -2290,6 +2384,12 @@ msgstr "V-ați pierdut parola?" msgid "Classifieds Menu" msgstr "Meniu Anunțuri" +#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 +#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 +#, fuzzy +msgid "Complete Payment" +msgstr "Efectuează Plata" + #: frontend/templates/page-buy-credits-final-step.tpl.php:7 msgid "" "The credit in your account can be used to pay for posting your Ads. You can " @@ -2306,9 +2406,9 @@ msgstr "Selectați un plan de credit" #: frontend/templates/page-buy-credits-select-credit-plan-step.tpl.php:18 #: frontend/templates/page-renew-ad-order-step.tpl.php:27 -#: frontend/templates/page-reply-to-ad.tpl.php:43 +#: frontend/templates/page-reply-to-ad.tpl.php:48 #: frontend/templates/payments-billing-form.tpl.php:124 -#: frontend/templates/payments-checkout-page.tpl.php:28 +#: frontend/templates/payments-checkout-page.tpl.php:27 #: frontend/templates/payments-payment-completed-page.tpl.php:18 msgid "Continue" msgstr "Continuă" @@ -2338,27 +2438,27 @@ msgstr "Retrimite cheia de acces pentru anunț" msgid "Enter Ad Details" msgstr "Introduceți detaliile anunțului" -#: frontend/templates/page-place-ad-details-step.tpl.php:35 +#: frontend/templates/page-place-ad-details-step.tpl.php:36 #: includes/admin/import/class-csv-importer-columns.php:79 #: includes/admin/listings/class-listing-owner-metabox.php:59 msgid "Ad Owner" msgstr "Proprietar anunț" -#: frontend/templates/page-place-ad-details-step.tpl.php:41 -#: frontend/templates/page-place-ad-order-step.tpl.php:60 +#: frontend/templates/page-place-ad-details-step.tpl.php:43 +#: frontend/templates/page-place-ad-order-step.tpl.php:61 msgid "User" msgstr "Utilizator" -#: frontend/templates/page-place-ad-details-step.tpl.php:42 -#: frontend/templates/page-place-ad-order-step.tpl.php:61 +#: frontend/templates/page-place-ad-details-step.tpl.php:44 +#: frontend/templates/page-place-ad-order-step.tpl.php:62 msgid "Select an User owner for this Ad" msgstr "Selectează un proprietar pentru acest anunț" -#: frontend/templates/page-place-ad-details-step.tpl.php:77 +#: frontend/templates/page-place-ad-details-step.tpl.php:81 msgid "Add Details and Contact Information" msgstr "Detalii Anunț și Informații de Contact" -#: frontend/templates/page-place-ad-order-step.tpl.php:73 +#: frontend/templates/page-place-ad-order-step.tpl.php:75 msgid "Please select a payment term for your Ad" msgstr "Vă rugăm să selectați un term de plată pentru anunțul dvs" @@ -2404,7 +2504,12 @@ msgstr "" msgid "Your Ad has been renewed" msgstr "Anunțul \"%s\" a fost reînnoit" -#: frontend/templates/page-renew-ad.tpl.php:15 +#: frontend/templates/page-renew-ad-order-step.tpl.php:6 +#, fuzzy +msgid "Select Payment Term" +msgstr "Selectați termenul de plată" + +#: frontend/templates/page-renew-ad.tpl.php:13 msgid "" "Please click the payment button below to proceed with Payment for your Ad " "renewal. You will be asked to pay %s." @@ -2412,19 +2517,19 @@ msgstr "" "Vă rugăm să dați click pe butonul de plată de mai jos pentru a trece la " "plata pentru reînnoirea anunțului dvs. Veți fi solicitat să plătiți %s." -#: frontend/templates/page-reply-to-ad.tpl.php:7 +#: frontend/templates/page-reply-to-ad.tpl.php:10 msgid "You are responding to Ad: %s." msgstr "Răspundeți la anunțul: %s." -#: frontend/templates/page-reply-to-ad.tpl.php:18 +#: frontend/templates/page-reply-to-ad.tpl.php:24 msgid "Your name" msgstr "Numele dvs" -#: frontend/templates/page-reply-to-ad.tpl.php:24 +#: frontend/templates/page-reply-to-ad.tpl.php:30 msgid "Your email address" msgstr "Adresa dvs. de email" -#: frontend/templates/page-reply-to-ad.tpl.php:30 +#: frontend/templates/page-reply-to-ad.tpl.php:36 msgid "Your message" msgstr "Mesajul dvs" @@ -2432,19 +2537,19 @@ msgstr "Mesajul dvs" msgid "Search for ads containing this word or phrase" msgstr "Căutați anunțuri care conțin acest cuvânt sau o expresie" -#: frontend/templates/page-search-ads.tpl.php:37 +#: frontend/templates/page-search-ads.tpl.php:41 msgid "For ads posted by" msgstr "Pentru reclamele postate de" -#: frontend/templates/page-search-ads.tpl.php:39 +#: frontend/templates/page-search-ads.tpl.php:43 msgid "All Users" msgstr "Toți utilizatorii" -#: frontend/templates/page-search-ads.tpl.php:48 +#: frontend/templates/page-search-ads.tpl.php:55 msgid "Min price" msgstr "Preț minim" -#: frontend/templates/page-search-ads.tpl.php:52 +#: frontend/templates/page-search-ads.tpl.php:59 msgid "Max price" msgstr "Preț maxim" @@ -2452,9 +2557,18 @@ msgstr "Preț maxim" msgid "Pay With 2Checkout" msgstr "Plătiți cu 2Checkout" -#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:791 -#: includes/admin/class-listings-personal-data-provider.php:115 -#: includes/admin/class-listings-personal-data-provider.php:125 +#: frontend/templates/payments-billing-form.tpl.php:1 +#, fuzzy +msgid "" +"Please fill in the billing information in the form below to place your " +"payment." +msgstr "" +"Vă rugăm să completați informațiile de plată în formularul de mai jos pentru " +"a efectua plată." + +#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:797 +#: includes/admin/class-listings-personal-data-provider.php:117 +#: includes/admin/class-listings-personal-data-provider.php:127 #: includes/admin/import/class-csv-importer-columns.php:230 msgid "Country" msgstr "Țara" @@ -2492,15 +2606,15 @@ msgid "Address Line 2" msgstr "Adresă linia 2" #: frontend/templates/payments-billing-form.tpl.php:92 -#: includes/admin/class-listings-personal-data-provider.php:116 -#: includes/admin/class-listings-personal-data-provider.php:126 +#: includes/admin/class-listings-personal-data-provider.php:118 +#: includes/admin/class-listings-personal-data-provider.php:128 #: includes/admin/import/class-csv-importer-columns.php:238 msgid "State" msgstr "Stat/Provincie/Județ" -#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:811 -#: includes/admin/class-listings-personal-data-provider.php:117 -#: includes/admin/class-listings-personal-data-provider.php:127 +#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:817 +#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:129 #: includes/admin/import/class-csv-importer-columns.php:260 msgid "City" msgstr "Oraș" @@ -2514,14 +2628,57 @@ msgstr "Cod poștal" msgid "Email" msgstr "Email" +#: frontend/templates/payments-credit-plans-table.tpl.php:7 +#, fuzzy +msgid "" +"You can additionally purchase a Credit Plan to add credit to your account. " +"If you select to pay using credits, the price of the selected payment term " +"will be deducted from your account balance after you have completed payment." +msgstr "" +"Suplimentar, puteți cumpăra un plan de credit pentru a adăuga credit în " +"contul dvs. Dacă selectați să plătiți folosind credit, prețul termenului de " +"plată selectat va fi dedus din balanța contului dvs. după ce ați efectuat " +"plata." + #: frontend/templates/payments-credit-plans-table.tpl.php:22 msgid "No credit plans available." msgstr "Nu este disponibil nici un plan de credit." +#: frontend/templates/payments-credit-plans-table.tpl.php:51 +#, fuzzy +msgid "clear selection" +msgstr "șterge selecție" + +#: frontend/templates/payments-payment-completed-page.tpl.php:2 +#, fuzzy +msgid "Transaction Details" +msgstr "Detalii tranzacție" + +#: frontend/templates/payments-payment-page.tpl.php:3 +#, fuzzy +msgid "You are about to pay for the following items." +msgstr "Veți plăti pentru următoarele anunțuri." + +#: frontend/templates/payments-payment-page.tpl.php:5 +#, fuzzy +msgid "Payment Terms" +msgstr "Termeni de plată" + #: frontend/templates/payments-paypal-payment-button.tpl.php:30 msgid "Make payments with PayPal - it's fast, free and secure!" msgstr "Faceți plăți cu PayPal - e rapid, gratuit și în siguranță!" +#: frontend/templates/payments-transaction-items-table.tpl.php:4 +#: frontend/templates/payments-transaction-items-table.tpl.php:13 +#, fuzzy +msgid "Item" +msgstr "Anunț" + +#: frontend/templates/payments-transaction-items-table.tpl.php:34 +#, fuzzy +msgid "Total Amount (credit)" +msgstr "Total cost (credit)" + #: frontend/templates/widget-categories-form.tpl.php:9 msgid "Hide empty categories." msgstr "Ascunde categorii goale." @@ -2595,7 +2752,7 @@ msgstr "Arată câmpul cuvinte cheie?" msgid "Show Posted By field?" msgstr "Arată câmpul Postat la?" -#: frontend/templates/widget-search-form.tpl.php:28 +#: frontend/templates/widget-search-form.tpl.php:32 msgid "Show Category field?" msgstr "Arată câmpul Categorie?" @@ -2611,23 +2768,23 @@ msgstr "Categorii AWPCP" msgid "Ad Categories" msgstr "Categorii anunțuri" -#: frontend/widget-latest-ads.php:13 +#: frontend/widget-latest-ads.php:17 msgid "AWPCP Latest Ads" msgstr "Cele mai recente anunțuri AWPCP" -#: frontend/widget-latest-ads.php:14 +#: frontend/widget-latest-ads.php:18 msgid "Displays a list of latest Ads" msgstr "Arată o listă a celor mai recente anunțuri" -#: frontend/widget-latest-ads.php:30 +#: frontend/widget-latest-ads.php:34 msgid "Latest Ads" msgstr "Cele mai recente anunțuri" -#: frontend/widget-latest-ads.php:72 +#: frontend/widget-latest-ads.php:76 msgid "There are currently no ads to show." msgstr "În prezent nu există anunțuri de arătat." -#: frontend/widget-latest-ads.php:114 +#: frontend/widget-latest-ads.php:118 msgid "Read more" msgstr "Citește mai mult" @@ -2659,67 +2816,67 @@ msgstr "Toate numele de contact" msgid "Select Option" msgstr "Selectează opțiune" -#: frontend/widget-search.php:105 +#: frontend/widget-search.php:106 msgid "Search by keyword" msgstr "Caută după cuvânt cheie" -#: frontend/widget-search.php:119 +#: frontend/widget-search.php:121 msgid "Search by Category" msgstr "Caută după categorie" -#: frontend/widget-search.php:137 +#: frontend/widget-search.php:141 msgid "Search" msgstr "Caută" -#: functions.php:427 +#: functions.php:431 msgid "%s ago" msgstr "Acum %s" -#: functions.php:604 +#: functions.php:610 msgid "Ads per page:" msgstr "Anunțuri pe pagină:" -#: functions.php:621 +#: functions.php:627 msgid "Page {current_page_number} of {number_of_pages}" msgstr "Pagina {current_page_number} din {number_of_pages}" -#: functions.php:732 +#: functions.php:738 msgid "None" msgstr "Nici unul" -#: functions.php:792 +#: functions.php:798 msgid "separate countries by commas" msgstr "separă țările cu virgulă" -#: functions.php:801 +#: functions.php:807 msgid "State/Province" msgstr "Stat/Provincie/Județ" -#: functions.php:802 +#: functions.php:808 msgid "separate states by commas" msgstr "separă statele/provinciile/județele cu virgulă" -#: functions.php:812 +#: functions.php:818 msgid "separate cities by commas" msgstr "separă orașele cu virgulă" -#: functions.php:821 +#: functions.php:827 msgid "County/Village/Other" msgstr "Suburbie/Sat/Comună" -#: functions.php:822 +#: functions.php:828 msgid "separate counties by commas" msgstr "separă suburbiile/satele/comunele cu virgulă" -#: functions.php:1036 +#: functions.php:1050 msgid "-- Choose a Country --" msgstr "-- Alege o țară --" -#: functions.php:1507 templates/admin/main-classifieds-admin-page.tpl.php:58 +#: functions.php:1537 templates/admin/main-classifieds-admin-page.tpl.php:58 msgid "Free" msgstr "Gratuit" -#: functions.php:1852 templates/components/media-center.tpl.php:14 +#: functions.php:1893 templates/components/media-center.tpl.php:14 msgid "" "The images or files with pale red background have been rejected by an " "administrator user. Likewise, files with a pale yellow background are " @@ -2729,7 +2886,7 @@ msgstr "" "Vă rugăm să încărcați imagini care au legătură cu anunțul dvs. si respectă " "termenii de serviciu ai acestui website." -#: functions.php:1871 +#: functions.php:1912 msgid "" "This version of AWPCP %1$s module is not compatible with AWPCP version %2$s. " "Please get AWPCP %1$s %3$s or newer!" @@ -2737,55 +2894,55 @@ msgstr "" "Această versiune a modulului AWPCP %1$s nu este compatibil cu versiunea " "AWPCP %2$s. Vă rugăm să obțineți %1$s %3$s sau mai nou!" -#: functions.php:1873 +#: functions.php:1914 msgid "Error" msgstr "Eroare" -#: functions.php:2231 +#: functions.php:2287 msgid "No errors." msgstr "Nici o eroare." -#: functions.php:2232 +#: functions.php:2288 msgid "The file is larger than upload_max_filesize." msgstr "Mărimea fișierului este mai mare decât upload_max_filesize." -#: functions.php:2233 +#: functions.php:2289 msgid "The file is larger than form MAX_FILE_SIZE." msgstr "Acest fișier este mai mare decât MAX_FILE_SIZE." -#: functions.php:2234 +#: functions.php:2290 msgid "The file was only partially uploaded." msgstr "Fișierul a fost încărcat doar parțial." -#: functions.php:2235 +#: functions.php:2291 msgid "No file was uploaded." msgstr "Nu a fost încărcat nici un fișier." -#: functions.php:2236 +#: functions.php:2292 msgid "Missing temporary directory." msgstr "Directorul temporar lipsește." -#: functions.php:2237 +#: functions.php:2293 msgid "Can't write file to disk." msgstr "Nu se poate scrie fișierul pe disc." -#: functions.php:2238 +#: functions.php:2294 msgid "The file upload was stopped by extension." msgstr "Încărcarea fișierului a fost oprită de către extensia acestuia." -#: functions.php:2476 +#: functions.php:2536 msgid "Your Ad \"%s\" has been approved" msgstr "Anunțul dvs. \"%s\" a fost aprobat" -#: functions.php:2499 +#: functions.php:2559 msgid "Your Ad \"%s\" has been successfully updated" msgstr "Anunțul dvs. \"%s\" a fost actualizat cu succes" -#: functions.php:2521 +#: functions.php:2581 msgid "Images on Ad \"%s\" are awaiting approval" msgstr "Imaginile anunțului \"%s\" așteaptă aprobarea" -#: functions.php:2523 +#: functions.php:2583 msgid "" "Images on Ad \"%s\" are awaiting approval. You can approve the images going " "to the Manage Images section for that Ad and clicking the \"Enable\" button " @@ -2796,13 +2953,13 @@ msgstr "" "pe butonul \"Activează\" de sub fiecare imagine. Click aici pentru a " "continua: %s." -#: functions.php:2526 +#: functions.php:2586 msgid "The Ad \"%s\" is awaiting approval" msgstr "Anunțul \"%s\" așteaptă aprobarea" #. translators: %1$s is the listing title. %2$s is the URL for managing #. listing. -#: functions.php:2529 includes/functions/notifications.php:157 +#: functions.php:2589 includes/functions/notifications.php:156 msgid "" "The Ad \"%1$s\" is awaiting approval. You can approve the Ad going to the " "Classified edit section and clicking the \"Publish\" button. Click here to " @@ -2810,7 +2967,7 @@ msgid "" msgstr "" #. translators: %s is the URL for managing listing images. -#: functions.php:2536 includes/functions/notifications.php:165 +#: functions.php:2596 includes/functions/notifications.php:164 msgid "" "Additionally, You can approve the images going to the Manage Images section " "for that Ad and clicking the \"Enable\" button below each image. Click here " @@ -2820,27 +2977,27 @@ msgstr "" "Imagini pentru acest anunț și dând click pe butonul \"Activează\" de sub " "fiecare imagine. Click aici pentru a continua: %s." -#: functions.php:3068 +#: functions.php:3123 msgid "Email sent %s." msgstr "Email trimis %s." -#: functions.php:3199 +#: functions.php:3254 msgid "Not Installed" msgstr "Neinstalate" -#: functions.php:3203 +#: functions.php:3258 msgid "Installed" msgstr "Instalate" -#: functions.php:3211 +#: functions.php:3266 msgid "SSL Support: Yes." msgstr "Suport SSL: Da." -#: functions.php:3213 +#: functions.php:3268 msgid "SSL Support: No." msgstr "Suport SSL: Nu." -#: functions.php:3216 +#: functions.php:3271 msgid "OpenSSL version:" msgstr "Versiune OpenSSL:" @@ -2860,58 +3017,58 @@ msgstr "Domenii clasificate" msgid "Search for listings matching" msgstr "Căutare de potrivire a listelor" -#: includes/admin/class-listings-personal-data-provider.php:110 +#: includes/admin/class-listings-personal-data-provider.php:112 msgid "Classified ID" msgstr "Anunt ID" -#: includes/admin/class-listings-personal-data-provider.php:111 +#: includes/admin/class-listings-personal-data-provider.php:113 msgid "Contact Name" msgstr "Nume de contact" -#: includes/admin/class-listings-personal-data-provider.php:112 +#: includes/admin/class-listings-personal-data-provider.php:114 msgid "Contact Phone Number" msgstr "Numărul de telefon de contact" -#: includes/admin/class-listings-personal-data-provider.php:113 +#: includes/admin/class-listings-personal-data-provider.php:115 msgid "Contact Phone Number Digits" msgstr "Numărul de telefon de contact cifre" -#: includes/admin/class-listings-personal-data-provider.php:114 +#: includes/admin/class-listings-personal-data-provider.php:116 msgid "Contact Email" msgstr "E-mail de contact" -#: includes/admin/class-listings-personal-data-provider.php:118 -#: includes/admin/class-listings-personal-data-provider.php:128 +#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:130 #: includes/admin/import/class-csv-importer-columns.php:249 msgid "County" msgstr "Judet" -#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:121 msgid "Website URL" msgstr "Adresă website (URL)" -#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:122 #: includes/admin/class-payment-personal-data-provider.php:47 msgid "Payer Email" msgstr "Email plătitor" -#: includes/admin/class-listings-personal-data-provider.php:121 +#: includes/admin/class-listings-personal-data-provider.php:123 msgid "Author IP" msgstr "Autor IP" -#: includes/admin/class-listings-personal-data-provider.php:132 +#: includes/admin/class-listings-personal-data-provider.php:134 msgid "URL" msgstr "URL" -#: includes/admin/class-listings-personal-data-provider.php:146 +#: includes/admin/class-listings-personal-data-provider.php:148 msgid "Classifieds Listings" msgstr "Anunturi Listings" -#: includes/admin/class-listings-personal-data-provider.php:157 +#: includes/admin/class-listings-personal-data-provider.php:159 msgid "Classifieds Media" msgstr "Anunturi media" -#: includes/admin/class-listings-personal-data-provider.php:218 +#: includes/admin/class-listings-personal-data-provider.php:220 msgid "" "An unknown error occurred while trying to delete information for classified " "{listing_id}." @@ -2936,7 +3093,7 @@ msgid "Contact Address" msgstr "Adresă de contact" #: includes/admin/class-user-personal-data-provider.php:55 -#: includes/settings/class-display-settings.php:476 +#: includes/settings/class-display-settings.php:475 msgid "Contact Phone" msgstr "Telefon de contact" @@ -3043,8 +3200,8 @@ msgstr "" "fișierul ZIP atașat." #: includes/admin/import/class-importer-form-steps.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:17 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:88 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:14 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:80 msgid "Upload Source Files" msgstr "Încărcați fișierele sursă" @@ -3053,12 +3210,12 @@ msgid "Configuration" msgstr "Configurare" #: includes/admin/import/class-importer-form-steps.php:29 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:173 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:176 msgid "Import" msgstr "Import" #: includes/admin/import/class-importer-form-steps.php:32 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:172 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:175 msgid "Test Import" msgstr "Test import" @@ -3111,7 +3268,7 @@ msgstr[1] "%d anunțuri au fost deja activate." msgstr[2] "%d anunțuri au fost deja activate." #: includes/admin/listings/class-listing-owner-metabox.php:62 -#: templates/frontend/order-submit-listing-section.tpl.php:45 +#: templates/frontend/order-submit-listing-section.tpl.php:42 msgid "Please select a user" msgstr "Vă rugăm să selectați un utilizator" @@ -3668,44 +3825,44 @@ msgstr "Hartă XML" msgid "ZIP Code Search Module" msgstr "Modul de căutare după codul poștal" -#: includes/class-awpcp.php:1445 +#: includes/class-awpcp.php:1436 msgid "This field is required." msgstr "Acest câmp este obligatoriu." -#: includes/class-awpcp.php:1446 +#: includes/class-awpcp.php:1437 #: includes/form-fields/class-form-fields-validator.php:101 #: includes/frontend/class-edit-listing-page.php:273 #: includes/frontend/class-edit-listing-page.php:350 -#: includes/settings/class-payment-general-settings.php:158 +#: includes/settings/class-payment-general-settings.php:157 msgid "Please enter a valid email address." msgstr "Vă rugăm să introduceți o adresă de email validă." -#: includes/class-awpcp.php:1447 includes/class-awpcp.php:1448 +#: includes/class-awpcp.php:1438 includes/class-awpcp.php:1439 msgid "Please enter a valid URL." msgstr "Vă rugăm să introduceți un link (URL) corect." -#: includes/class-awpcp.php:1449 +#: includes/class-awpcp.php:1440 msgid "Please enter a valid number." msgstr "Vă rugăm să introduceți un număr corect." -#: includes/class-awpcp.php:1450 +#: includes/class-awpcp.php:1441 msgid "Please enter a valid amount." msgstr "Vă rugăm să introduceți un preț valid." -#: includes/class-awpcp.php:1451 +#: includes/class-awpcp.php:1442 msgid "" "You have reached the maximum allowed categories for the selected fee plan." msgstr "Ați atins categoriile maxime permise pentru planul de taxe selectat." -#: includes/class-awpcp.php:1470 +#: includes/class-awpcp.php:1461 msgid "There are files currently being uploaded." msgstr "Fișierele se încarcă în acest moment." -#: includes/class-awpcp.php:1471 +#: includes/class-awpcp.php:1462 msgid "There are files pending to be uploaded." msgstr "Fișierele așteaptă să fie încărcate." -#: includes/class-awpcp.php:1472 +#: includes/class-awpcp.php:1463 msgid "You haven't uploaded any images or files." msgstr "Nu ați încărcat nici o imagine sau fișier." @@ -3763,7 +3920,7 @@ msgstr "" "alt website. Contactați suportul tehnic pentru mai " "asistență ulterioară." -#: includes/class-listings-api.php:106 includes/class-listings-api.php:306 +#: includes/class-listings-api.php:106 includes/class-listings-api.php:310 msgid "" "There was an unexpected error trying to save the listing details. Please try " "again or contact an administrator." @@ -3771,7 +3928,7 @@ msgstr "" "Eroare neașteptată la încercarea de a salva detaliile de listare. Încercați " "din nou sau contactați un administrator." -#: includes/class-listings-api.php:197 +#: includes/class-listings-api.php:199 msgid "" "To avoid overwritting existing metadata, use fill_default_listing_metadata() " "instead." @@ -3779,11 +3936,11 @@ msgstr "" "Pentru a evita suprainscriptia metadatelor existente, utilizați " "fill_default_listing_metadata() în schimb." -#: includes/class-listings-api.php:302 +#: includes/class-listings-api.php:306 msgid "There was an error trying to save the listing details:" msgstr "Eroare la încercarea de a salva detaliile de listare:" -#: includes/class-listings-api.php:730 +#: includes/class-listings-api.php:734 msgid "" "If you have uploaded images your images will not show up until an admin has " "approved them." @@ -3830,19 +3987,19 @@ msgstr "" "fișierul conține o reprezentare JSON a setărilor dvs.? Încercați din nou sau " "contactați asistența pentru clienți cu o copie a fișierului." -#: includes/credit-plan.php:109 includes/payment-term.php:133 +#: includes/credit-plan.php:114 includes/payment-term.php:133 msgid "The name of the plan is required." msgstr "Numele planului este obligatoriu." -#: includes/credit-plan.php:112 includes/payment-term.php:151 +#: includes/credit-plan.php:117 includes/payment-term.php:151 msgid "The number of credits must be greater than zero." msgstr "Numărul de credite trebuie să fie mai mare decât zero." -#: includes/credit-plan.php:115 +#: includes/credit-plan.php:120 msgid "The price must be greater or equal than zero." msgstr "Prețul trebuie să fie mai mare sau egal cu zero." -#: includes/credit-plan.php:153 +#: includes/credit-plan.php:158 msgid "The Credit Plan doesn't exist." msgstr "Planul de credit nu există." @@ -3933,7 +4090,7 @@ msgstr "" msgid "Please read and accept the Terms of Service." msgstr "Vă rugăm să citiți și să acceptați Termenii și condițiile." -#: includes/frontend/class-captcha.php:70 +#: includes/frontend/class-captcha.php:77 msgid "" "An unknown error ocurred trying to validate the answer to the CAPTCHA " "challenge." @@ -3957,14 +4114,14 @@ msgstr "" "Nu sunteți autorizat să efectuați această acțiune. Numai utilizatorii " "autentificați sunt autorizați să prezinte anunțuri." -#: includes/frontend/class-default-captcha-provider.php:59 +#: includes/frontend/class-default-captcha-provider.php:76 msgid "" "You did not solve the math problem. Please solve the math problem to proceed." msgstr "" "Nu ați rezolvat problema de matematică. Vă rugăm să rezolvați socoteala " "pentru a proceda mai departe." -#: includes/frontend/class-default-captcha-provider.php:64 +#: includes/frontend/class-default-captcha-provider.php:81 msgid "Your solution to the math problem was incorrect. Please try again." msgstr "" "Soluția problemei de matematică este incorectă. Vă rugăm să încercați din " @@ -4129,15 +4286,15 @@ msgstr "Termenul de plată selectat nu a putut fi găsit." #. translators: %s will become an A HTML tag pointing to reCAPTCHA admin #. console. -#: includes/frontend/class-recaptcha-provider.php:47 +#: includes/frontend/class-recaptcha-provider.php:68 msgid "To use reCAPTCHA you must get an API key from %s." msgstr "Pentru a folosi reCAPTCHA trebuie să obțineți o cheie API de la %s." -#: includes/frontend/class-recaptcha-provider.php:85 +#: includes/frontend/class-recaptcha-provider.php:106 msgid "Your answers couldn't be verified by the reCAPTCHA server." msgstr "Răspunsurile nu au putut fi verificate de către server-ul reCAPTCHA." -#: includes/frontend/class-recaptcha-v2.php:51 +#: includes/frontend/class-recaptcha-v2.php:78 msgid "" "There was an error trying to verify the reCAPTCHA answer. " msgstr "" @@ -4155,8 +4312,8 @@ msgid "Login/Registration" msgstr "Logare/Înregistrare" #: includes/frontend/class-submit-listing-form-steps.php:48 -#: includes/ui/class-category-selector.php:125 -#: templates/components/category-selector.tpl.php:16 +#: includes/ui/class-category-selector.php:147 +#: templates/components/category-selector.tpl.php:15 msgid "Select a Category" msgstr "Selectați o categorie" @@ -4310,12 +4467,12 @@ msgstr "Fișierul %s nu a putut fi mutat în directorul destinație." msgid "Could not create resized versions of image %s." msgstr "Nu au putut fi create versiuni redimensionate ale imaginii %s." -#: includes/functions/format.php:67 +#: includes/functions/format.php:50 msgid "Classifieds Management System" msgstr "Sistem de Administrare Anunțuri" #. translators: example: and -#: includes/functions/format.php:84 +#: includes/functions/format.php:67 msgid " and " msgstr " și " @@ -4367,23 +4524,23 @@ msgstr "Introduceți detaliile anunțului." msgid "Top Level Category" msgstr "Categorie de prim nivel" -#: includes/functions/listings.php:278 -#: includes/listings/class-listings-content-renderer.php:169 +#: includes/functions/listings.php:288 +#: includes/listings/class-listings-content-renderer.php:182 msgid "Are you sure you want to flag this ad?" msgstr "Sunteți sigur că vreți să reclamați acest anunț ca nepotrivit?" -#: includes/functions/listings.php:279 -#: includes/listings/class-listings-content-renderer.php:170 +#: includes/functions/listings.php:289 +#: includes/listings/class-listings-content-renderer.php:183 msgid "This Ad has been flagged." msgstr "Acest anunț a fost marcat nepotrivit." -#: includes/functions/listings.php:280 -#: includes/listings/class-listings-content-renderer.php:171 +#: includes/functions/listings.php:290 +#: includes/listings/class-listings-content-renderer.php:184 msgid "An error occurred while trying to flag the Ad." msgstr "" "A apărut o eroare în timp ce s-a încercat marcarea anunțului ca nepotrivit." -#: includes/functions/listings.php:317 +#: includes/functions/listings.php:327 msgid "" "Sorry, that listing is not available. Please try browsing or searching " "existing listings." @@ -4391,7 +4548,7 @@ msgstr "" "Ne pare rău, acest anunț nu este disponibil. Vă rugăm să încercați să " "explorați sau să căutați între anunțurile existente." -#: includes/functions/listings.php:334 +#: includes/functions/listings.php:344 msgid "" "The Ad you are trying to view is pending approval. Once the Administrator " "approves it, it will be active and visible." @@ -4399,12 +4556,12 @@ msgstr "" "Anunțul pe care încercați să îl vedeți se află în așteptare pentru aprobare. " "De îndată ce administatorul îl aproba, va deveni activ și vizibil." -#: includes/functions/listings.php:340 +#: includes/functions/listings.php:350 #: includes/listings/class-listings-content-renderer.php:106 msgid "Your email address was successfully verified." msgstr "Adresa dvs. de email a fost verificată cu succes." -#: includes/functions/listings.php:344 +#: includes/functions/listings.php:354 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the Administrator) and the author can see it." @@ -4412,7 +4569,7 @@ msgstr "" "Acest anunț este dezactivat până când administratorul îl va aproba. Doar " "dvs. (Administatorul) și autorul îl pot vedea." -#: includes/functions/listings.php:347 +#: includes/functions/listings.php:357 msgid "" "This Ad is currently disabled until you verify the email address used for " "the contact information. Only you (the author) can see it." @@ -4420,7 +4577,7 @@ msgstr "" "Acest anunț este dezactivat până când veți verifica adresa dvs. de email " "folosită pentru detaliile de contact. Doar dvs. (autorul) îl puteți vedea." -#: includes/functions/listings.php:350 +#: includes/functions/listings.php:360 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the author) can see it." @@ -4438,13 +4595,13 @@ msgid "Listing \"%s\" was updated" msgstr "Anunțul \"%s\" a fost actualizat" #. translators: %s is the listing title. -#: includes/functions/notifications.php:147 +#: includes/functions/notifications.php:146 msgid "Images on listing \"%s\" are awaiting approval" msgstr "Imaginile de la anunțul \"%s\" așteaptă aprobarea" #. translators: %1$s is the listing title. %2$s is the URL for managing listing #. images. -#: includes/functions/notifications.php:150 +#: includes/functions/notifications.php:149 msgid "" "Images on Ad \"%1$s\" are awaiting approval. You can approve the images " "going to the Manage Images section for that Ad and clicking the \"Enable\" " @@ -4452,11 +4609,11 @@ msgid "" msgstr "" #. translators: %s is the listing title. -#: includes/functions/notifications.php:154 +#: includes/functions/notifications.php:153 msgid "Listing \"%s\" is awaiting approval" msgstr "Anunțul \"%s\" așteaptă aprobarea" -#: includes/functions/notifications.php:202 +#: includes/functions/notifications.php:201 msgid "Listing was flagged" msgstr "Anunțul a fost marcat ca nepotrivit" @@ -4476,7 +4633,8 @@ msgid "Missing License Status parameter" msgstr "Lipsește parametrul de stare al licenței" #: includes/helpers/class-easy-digital-downloads.php:53 -msgid "License Status parameter was set to Failed" +#, fuzzy +msgid "License Status parameter was set to Failed" msgstr "" "Parametrul de stare al licenței a fost setat ca Eșuat " @@ -4595,7 +4753,7 @@ msgstr[2] "" "solicitați o actualizare. De asemenea, vă rugăm să includeți o referință la " "această eroare în mesajul dvs." -#: includes/helpers/class-modules-manager.php:217 +#: includes/helpers/class-modules-manager.php:220 msgid "" "The version of AWPCP {modules_names} is not compatible with version " "{awpcp_version}." @@ -4612,11 +4770,11 @@ msgstr[2] "" "Versiunile de AWPCP {modules_names} nu sunt compatibile cu versiunea " "{awpcp_version}." -#: includes/helpers/class-modules-manager.php:219 +#: includes/helpers/class-modules-manager.php:222 msgid "Please get AWPCP {required_modules_versions} or newer!" msgstr "Vă rugăm să obțineți AWPCP {required_modules_versions} sau mai nou!" -#: includes/helpers/class-modules-manager.php:250 +#: includes/helpers/class-modules-manager.php:256 msgid "" "The license for AWPCP is inactive. All features will remain " "disabled until you activate the license. Please go to the Setări licențe pentru a " "activa licențele dvs." -#: includes/helpers/class-modules-manager.php:264 +#: includes/helpers/class-modules-manager.php:276 msgid "" "The AWPCP requires a license to be used. All features will " "remain disabled until a valid license is entered. Please go to the Setări " "licențe pentru a introduce sau actualiza licențele dvs." -#: includes/helpers/class-modules-manager.php:269 +#: includes/helpers/class-modules-manager.php:284 msgid "" "The license for AWPCP expired. The module will continue to " "work but you will not receive automatic updates when a new version is " @@ -4689,7 +4847,7 @@ msgstr[2] "" "funcționeze, însă nu veți mai primi actualizări automate când apar versiuni " "noi." -#: includes/helpers/class-modules-manager.php:281 +#: includes/helpers/class-modules-manager.php:299 msgid "" "The AWPCP is currently disabled because it requires you to " "perform a manual upgrade before continuing. Please go to the " @@ -4711,11 +4869,11 @@ msgstr[2] "" "efectuarea unui upgrade manual înainte de a continua. Vă rugăm să Mergeți la secțiunea Classifieds admin pentru a face upgrade." -#: includes/helpers/class-modules-manager.php:294 +#: includes/helpers/class-modules-manager.php:312 msgid "The specified module does not exists!." msgstr "Modulul specificat nu există!." -#: includes/helpers/class-recaptcha-v3.php:56 +#: includes/helpers/class-recaptcha-v3.php:78 msgid "" "There was an error trying to analyze the current interaction with reCAPTCHA. " "" @@ -4723,7 +4881,7 @@ msgstr "" "Eroare la încercarea de a analiza interacțiunea curentă cu reCAPTCHA." "" -#: includes/helpers/class-recaptcha-v3.php:98 +#: includes/helpers/class-recaptcha-v3.php:120 msgid "" "The current interaction was not approved by reCAPTCHA. Please try again." msgstr "" @@ -4791,11 +4949,11 @@ msgstr "" "A apărut o eroare la procesarea tranzacției de plată. Vă rugăm să încercați " "din nou sau să contactați administratorul." -#: includes/helpers/widgets/class-user-field.php:32 +#: includes/helpers/widgets/class-user-field.php:48 msgid "Select an User" msgstr "Selectați un utilizator" -#: includes/helpers/widgets/multiple-region-selector.php:123 +#: includes/helpers/widgets/multiple-region-selector.php:143 msgid "" "This particular region is already selected in another field. Please choose " "one or more sub-regions, to make the selection more specific, or change the " @@ -4805,19 +4963,19 @@ msgstr "" "alegeți una sau mai multe sub-regiuni, pentru a face selectarea mai " "specifică, sau penetru a schimba regiunea selectată." -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Search Region" msgstr "Adaugă căutare pe regiuni" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Region" msgstr "Adaugă regiune" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Delete Search Region" msgstr "Șterge căutare pe regiuni" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Remove Region" msgstr "Șterge regiune" @@ -4897,6 +5055,11 @@ msgstr "Puteți utiliza acest buton pentru a reînnoi anunțul." msgid "There was an error trying to update the database." msgstr "A apărut o eroare la actualizarea în baza de date." +#: includes/media/class-attachment-action-ajax-handler.php:53 +#, fuzzy +msgid "You are not allowed to perform this action." +msgstr "Nu sunteți autorizat să efectuați această acțiune." + #: includes/media/class-attachment-action-ajax-handler.php:57 msgid "The specified file is not associated with Listing with ID %d." msgstr "Fișierul specificat nu este asociat cu anunțul cu ID-ul %d." @@ -5001,7 +5164,7 @@ msgstr "" "Fișierul este mai mic decât mărimea minimă permisă de bytes. Fișierul nu a fost încărcat." -#: includes/media/class-listings-media-uploader-component.php:51 +#: includes/media/class-listings-media-uploader-component.php:56 msgid "" "You can upload images of up to each, " " videos of up to each and " @@ -5011,7 +5174,7 @@ msgstr "" "fiecare, video-uri de până la fiecare " "și alte fișiere de până la fiecare." -#: includes/media/class-listings-media-uploader-component.php:52 +#: includes/media/class-listings-media-uploader-component.php:57 msgid "" "You can upload images of up to each and " " other files (no videos) of up to each." @@ -5020,7 +5183,7 @@ msgstr "" "fiecare, și alte fișiere (în afară de video) de până la " " fiecare." -#: includes/media/class-listings-media-uploader-component.php:53 +#: includes/media/class-listings-media-uploader-component.php:58 msgid "" "You can upload images of up to each and " " videos of up to each." @@ -5028,7 +5191,7 @@ msgstr "" "Puteți încărca imagini de până la " "fiecare și video-uri de până la fiecare." -#: includes/media/class-listings-media-uploader-component.php:54 +#: includes/media/class-listings-media-uploader-component.php:59 msgid "" "You can upload videos of up to each and " " other files (no images) of up to each." @@ -5037,14 +5200,14 @@ msgstr "" "fiecare și alte fișiere (în afară de imagini) de până la " " fiecare." -#: includes/media/class-listings-media-uploader-component.php:55 +#: includes/media/class-listings-media-uploader-component.php:60 msgid "" "You can upload images of up to each." msgstr "" "Puteți să încărcați imagini de mărime maximă fiecare." -#: includes/media/class-listings-media-uploader-component.php:56 +#: includes/media/class-listings-media-uploader-component.php:61 msgid "" "You can upload files (no videos or images) of up to each." @@ -5052,7 +5215,7 @@ msgstr "" "Puteți încărca alte fișiere (în afară de video și imagini) de " "până la fiecare." -#: includes/media/class-listings-media-uploader-component.php:57 +#: includes/media/class-listings-media-uploader-component.php:62 msgid "" "You can upload videos of up to each." msgstr "" @@ -5152,15 +5315,15 @@ msgstr "Un anunt clasificat." msgid "General" msgstr "Generale" -#: includes/models/payment-transaction.php:225 +#: includes/models/payment-transaction.php:232 msgid "The transaction must be assigned to a WordPress user." msgstr "Tranzacția trebuie să fie asociată unui utilizator Wordpress." -#: includes/models/payment-transaction.php:238 +#: includes/models/payment-transaction.php:245 msgid "The transaction has no items." msgstr "Tranzacția nu are nici un anunț." -#: includes/models/payment-transaction.php:250 +#: includes/models/payment-transaction.php:257 msgid "" "The amount of credit in your account is not enough to pay for the selected " "items. Please choose one of the available Credit Plans in addition to the " @@ -5173,7 +5336,7 @@ msgstr "" "credit în contul dvs. din pagina dvs. de profil.
Aveți nevoie de încă %d " "credit." -#: includes/models/payment-transaction.php:252 +#: includes/models/payment-transaction.php:259 msgid "" "The selected Credit Plan is not enough to pay for the selected items. Please " "choose a bigger Credit Plan or add credit to your account from your Profile " @@ -5183,11 +5346,11 @@ msgstr "" "rugăm să alegeți un plan de credit mai mare sau să adăugați credit în contul " "dvs. din pagina dvs. de profil.
Aveți nevoie de încă %d credit." -#: includes/models/payment-transaction.php:282 +#: includes/models/payment-transaction.php:289 msgid "You must select a payment method." msgstr "Trebuie să selectați o metodă de plată." -#: includes/models/payment-transaction.php:294 +#: includes/models/payment-transaction.php:301 msgid "The payment status for this transaction hasn't been defined." msgstr "Starea acestei tranzacții nu a fost încă stabilită." @@ -5205,7 +5368,7 @@ msgstr "" "mesajul apare din greșeală și îl puteți ignora." #: includes/payment-gateway-2checkout.php:101 -#: includes/payment-gateway-paypal-standard.php:140 +#: includes/payment-gateway-paypal-standard.php:142 msgid "" "The amount you have paid does not match the required amount for this " "transaction. Please contact us to clarify the problem." @@ -5214,7 +5377,7 @@ msgstr "" "tranzacție. Vă rugăm să ne contactați pentru a clarifica problema." #: includes/payment-gateway-2checkout.php:109 -#: includes/payment-gateway-paypal-standard.php:148 +#: includes/payment-gateway-paypal-standard.php:150 msgid "" "There was an error processing your transaction. If funds have been deducted " "from your account, they have not been processed to our account. You will " @@ -5225,7 +5388,7 @@ msgstr "" "contactați PayPal legat de această problemă." #: includes/payment-gateway-2checkout.php:119 -#: includes/payment-gateway-paypal-standard.php:158 +#: includes/payment-gateway-paypal-standard.php:160 msgid "" "It appears this transaction has already been processed. If you do not see " "your ad in the system please contact the site adminstrator for assistance." @@ -5235,7 +5398,7 @@ msgstr "" "asistență." #. translators: %s link url. -#: includes/payment-gateway-paypal-standard.php:58 +#: includes/payment-gateway-paypal-standard.php:60 msgid "" "We haven't received your payment information from PayPal yet and we are " "unable to verify your transaction. Please reload this page or visit admin section to change the order in which " "the fields mentioned below are shown to users in the Ad Details form." @@ -6054,33 +6217,33 @@ msgstr "" "ordinea în care câmpurile menționate mai jos sunt afișate pentru utilizatori " "în formularul cu detaliile anunțului." -#: includes/settings/class-display-settings.php:452 +#: includes/settings/class-display-settings.php:451 msgid "Form Fields Behavior" msgstr "Comportament câmpuri formular" -#: includes/settings/class-display-settings.php:461 +#: includes/settings/class-display-settings.php:460 #: templates/admin/import/supported-csv-headers.tpl.php:18 msgid "Field" msgstr "Câmp" -#: includes/settings/class-display-settings.php:462 +#: includes/settings/class-display-settings.php:461 msgid "Show field on form" msgstr "Afișare câmp în formular" -#: includes/settings/class-display-settings.php:463 +#: includes/settings/class-display-settings.php:462 msgid "Show field on search form" msgstr "Afișare câmp în formularul de căutare" -#: includes/settings/class-display-settings.php:464 +#: includes/settings/class-display-settings.php:463 #: templates/admin/import/supported-csv-headers.tpl.php:19 msgid "Required" msgstr "Necesar" -#: includes/settings/class-display-settings.php:465 +#: includes/settings/class-display-settings.php:464 msgid "Show value to registered users only" msgstr "Afișare valoare numai pentru utilizatorii înregistrați" -#: includes/settings/class-display-settings.php:469 +#: includes/settings/class-display-settings.php:468 msgid "Website" msgstr "Pagină web" @@ -6175,15 +6338,15 @@ msgstr "" "serviciu de hosting, trebuie să vă asigurați că adresa dvs. de administrator " "de WordPress este asociată cu contul dvs. de hosting." -#. translators: full-email-address=John Doe , -#. short-email-address=john.doe@example.com -#: includes/settings/class-email-settings.php:84 +#. translators: %1$s=John Doe , %2$s=john.doe@example.com +#: includes/settings/class-email-settings.php:85 +#, fuzzy msgid "" "If checked, whenever the name of the recipient is available, emails will be " -"sent to instead of just . Some " -"email servers, however, have problems handling email address that include " -"the name of the recipient. If emails sent by the plugin are not being " -"delivered properly, try unchecking this settting." +"sent to %1$s instead of just %2$s. Some email servers, however, have " +"problems handling email address that include the name of the recipient. If " +"emails sent by the plugin are not being delivered properly, try unchecking " +"this settting." msgstr "" "Dacă este bifat, ori de câte ori numele destinatarului este disponibil, e-" "mailurile vor fi trimise în loc de doar is not a valid email address. Please check the value you entered " "to use as the FROM email address for outgoing messages." @@ -6597,7 +6800,7 @@ msgstr "" "valoarea introdusă pentru a fi folosită ca adresa de email FROM pentru " "trimiterea mesajelor." -#: includes/settings/class-email-settings.php:317 +#: includes/settings/class-email-settings.php:319 msgid "" " is not a valid email address. Please check the value you entered " "to use as recipient email address for admin notifications." @@ -7647,15 +7850,18 @@ msgstr "" "Plugin-ul va posta informații despre anunțurile noi la un URL unic construit " "folosind URL-ul webhooks și numele evenimentului pe care îl definiți." -#: includes/settings/class-general-settings.php:919 +#. translators: %1$s is the link to Facebook Developer Apps page. %2$s is the +#. closing anchor tag. +#: includes/settings/class-general-settings.php:921 +#, fuzzy msgid "" -"You can find your application information in the Facebook Developer Apps page." +"You can find your application information in the %1$sFacebook Developer " +"Apps%2$s page." msgstr "" "Puteți găsi informațiile aplicației în pagina Dezvoltatorilor de App-uri " "Facebook." -#: includes/settings/class-general-settings.php:935 +#: includes/settings/class-general-settings.php:936 msgid "" "AWPCP needs to get an authorization token from Facebook to work correctly. " "You'll be redirected to Facebook to login. AWPCP does not store or obtain " @@ -7665,7 +7871,7 @@ msgstr "" "funcționa corect. Veți fi redirectat la Facebook pentru a a vă loga. AWPCP " "nu stochează și nu obține nici o dată personală din profilul dvs." -#: includes/settings/class-general-settings.php:936 +#: includes/settings/class-general-settings.php:937 msgid "" "Please choose Public as the audience for posts made by the application, even " "if you are just testing the integration. Facebook won't allow us to post " @@ -7675,11 +7881,11 @@ msgstr "" "chiar dacă testați integrarea. Facebook nu ne va permite să postăm conținut " "în unele cazuri, dacă alegeți altceva." -#: includes/settings/class-general-settings.php:945 +#: includes/settings/class-general-settings.php:947 msgid "Click here to obtain an access token from Facebook" msgstr "Click aici pentru a obține un token de acces de la Facebook" -#: includes/settings/class-general-settings.php:947 +#: includes/settings/class-general-settings.php:951 msgid "" "Please provide a value for the App Id and App Secret settings before trying " "to get an access token from Facebook." @@ -7687,7 +7893,7 @@ msgstr "" "Vă rugăm să furnizați o valoare pentru setările aplicației ID și App secret " "înainte de a încerca să obțineți un simbol de acces de la Facebook." -#: includes/settings/class-general-settings.php:958 +#: includes/settings/class-general-settings.php:960 msgid "" "Available Facebook Pages and Groups will be displayed after you enter a " "valid User Access Token." @@ -7695,18 +7901,16 @@ msgstr "" "Paginile și grupurile de Facebook disponibile vor fi afișate după ce " "introduceți un token de acces utilizator valid." -#: includes/settings/class-general-settings.php:959 -msgid "" -"As of April 4, 2018, all applications need to go through App Review " -"in order to get access to the Page API and Groups API. That means that you may need to submit your app for review (ask for the " -"manage_pages, publish_pages, " -"publish_to_groups permissions), before AWPCP can display the " +#. translators: %1$s opening anchor tag, %2$s closing anchor tag, %3$s opening +#. anchor tag, %4$s closing anchor tag, %5$s opening anchor tag, %6$s closing +#. anchor tag, %7$s opening anchor tag, %8$s closing anchor tag +#: includes/settings/class-general-settings.php:964 +#, fuzzy +msgid "" +"All applications need to go through %1$sApp Review%2$s in order to get " +"access to the %3$sPage API%4$s and %5$sGroups API%6$s. That means that you " +"may need to %7$ssubmit your app for review%8$s (ask for the manage_pages, " +"publish_pages, publish_to_groups permissions), before AWPCP can display the " "list of pages and groups you manage and be able to post classifieds ads to " "those groups and pages." msgstr "" @@ -7723,19 +7927,19 @@ msgstr "" "înainte ca AWPCP să afișeze lista de pagini și grupuri pe care le gestionați " "și să reușiți să publicați anunțuri în acele grupuri și pagini." -#: includes/settings/class-general-settings.php:977 +#: includes/settings/class-general-settings.php:989 msgid "None (Do not sent ads to a Facebook Page)" msgstr "Niciuna (nu a trimis anunțuri la o pagină de Facebook)" -#: includes/settings/class-general-settings.php:984 +#: includes/settings/class-general-settings.php:996 msgid "(Your own profile page)" msgstr "(Pagina dvs. de profil)" -#: includes/settings/class-general-settings.php:1008 +#: includes/settings/class-general-settings.php:1020 msgid "None (Do not sent ads to a Facebook Group)" msgstr "Niciuna (nu a trimis anunțuri într-un grup Facebook)" -#: includes/settings/class-general-settings.php:1064 +#: includes/settings/class-general-settings.php:1076 msgid "" "Akismet SPAM control cannot be enabled because Akismet plugin is not " "installed or activated." @@ -7743,7 +7947,7 @@ msgstr "" "Programul antiSPAM Akismet nu a putut fi activat pentru că pluginul Akismet " "nu este instalat sau activat." -#: includes/settings/class-general-settings.php:1068 +#: includes/settings/class-general-settings.php:1080 msgid "" "Akismet SPAM control cannot be enabled because Akismet is not properly " "configured." @@ -7751,7 +7955,7 @@ msgstr "" "Programul antiSPAM Akismet nu a putut fi activat pentru că pluginul Akismet " "nu este configurat corespunzător." -#: includes/settings/class-general-settings.php:1094 +#: includes/settings/class-general-settings.php:1106 msgid "" "reCAPTCHA can't be used because the public key and private key settings are " "required for reCAPTCHA to work properly." @@ -7759,7 +7963,7 @@ msgstr "" "reCAPTCHA nu poate fi folosit deoarece cheia publică și cheia privată sunt " "necesare pentru a funcționa corect." -#: includes/settings/class-general-settings.php:1096 +#: includes/settings/class-general-settings.php:1108 msgid "" "reCAPTCHA can't be used because the public key setting is required for " "reCAPTCHA to work properly." @@ -7767,7 +7971,7 @@ msgstr "" "reCAPTCHA nu poate fi folosit deoarece cheia publică este necesară pentru a " "funcționa corect." -#: includes/settings/class-general-settings.php:1098 +#: includes/settings/class-general-settings.php:1110 msgid "" "reCAPTCHA can't be used because the private key setting is required for " "reCAPTCHA to work properly." @@ -7775,11 +7979,11 @@ msgstr "" "reCAPTCHA nu poate fi folosit deoarece cheia privată este necesară pentru a " "funcționa corect." -#: includes/settings/class-general-settings.php:1145 +#: includes/settings/class-general-settings.php:1157 msgid "Thousands separator and decimal separator cant be the same." msgstr "Separator mii separator și separator zecimal nu poti fi la fel." -#: includes/settings/class-general-settings.php:1159 +#: includes/settings/class-general-settings.php:1171 msgid "" "Credit System was automatically disabled because you disabled Require " "Registration setting." @@ -7797,10 +8001,21 @@ msgid "Licenses" msgstr "Licențe" #: includes/settings/class-licenses-settings.php:64 -#: templates/admin/debug/plugin-info-debug-section.tpl.php:18 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:24 msgid "Premium Modules" msgstr "Module Premium" +#: includes/settings/class-licenses-settings.php:82 +#, fuzzy +msgid "" +"The IP address of your server is %s. Please make sure to include that " +"information if you need to contact support about problems trying to activate " +"your licenses." +msgstr "" +"Adresa IP a serverului este . Asigurați-vă că includeți aceste " +"informații dacă trebuie să contactați asistența cu privire la problemele " +"care încearcă să vă activeze licențele.." + #: includes/settings/class-listings-moderation-settings.php:22 msgid "" "Email verification was disabled because you enabled Require Registration. " @@ -8219,20 +8434,21 @@ msgstr "" "Arată categoria în titlul ferestrei browser-ului atunci când este vizualizat " "un anunț individual" -#: includes/settings/class-listings-settings.php:472 +#: includes/settings/class-listings-settings.php:473 +#, fuzzy msgid "" "Enable this setting to display each listing on its own page, instead of " -"showing the listing's content inside the page." +"showing the listing's content inside the %s page." msgstr "" "Activați această setare pentru a afișa fiecare listare pe propria pagină, în " "loc să afișați conținutul înregistrării în interiorul paginii." -#: includes/settings/class-listings-settings.php:478 +#: includes/settings/class-listings-settings.php:480 msgid "Display listings on their own page" msgstr "Afișarea listelor pe propria pagină" -#: includes/settings/class-listings-settings.php:486 +#: includes/settings/class-listings-settings.php:488 msgid "" "Portion of the URL that appears between the website's domain and the " "listing's information. Example: in ." @@ -8240,11 +8456,11 @@ msgstr "" "Porțiunea adresei URL care apare între domeniul site-ului și informațiile " "listei. Exemplu: în ." -#: includes/settings/class-listings-settings.php:496 +#: includes/settings/class-listings-settings.php:498 msgid "Listings slug" msgstr "Listă slug" -#: includes/settings/class-listings-settings.php:509 +#: includes/settings/class-listings-settings.php:511 msgid "" "Include the slug of the plugin's main page () in the URL " "that points to the page of an individual listing." @@ -8252,7 +8468,7 @@ msgstr "" "Includeți Slug de pagina principală a plugin-ului () în URL-" "ul care indică spre pagina de o listă individuală." -#: includes/settings/class-listings-settings.php:512 +#: includes/settings/class-listings-settings.php:514 msgid "" "Include the slug of the plugin's main page in the URL that points to the " "page of an individual listing." @@ -8260,26 +8476,26 @@ msgstr "" "Includeți Slug de pagina principală a plugin-ului în URL-ul care indică spre " "pagina de o listă individuală." -#: includes/settings/class-listings-settings.php:518 +#: includes/settings/class-listings-settings.php:520 msgid "Include the slug of the plugin's main page in the listing URL" msgstr "Includeți Slug de pagina principală a plugin-ului în listarea URL-ul" -#: includes/settings/class-listings-settings.php:532 +#: includes/settings/class-listings-settings.php:534 msgid "Include the title in the listing URL" msgstr "Includeți titlul în URL-ul anunțului" -#: includes/settings/class-listings-settings.php:535 +#: includes/settings/class-listings-settings.php:537 msgid "" "Include the title in the URL that points to the page of an individual " "listing." msgstr "" "Include titlul în URL-ul care trimite către pagina individuală a anunțului." -#: includes/settings/class-listings-settings.php:541 +#: includes/settings/class-listings-settings.php:543 msgid "Include the name of the category in the listing URL" msgstr "Includeți numele categoriei în URL-ul anunțului" -#: includes/settings/class-listings-settings.php:544 +#: includes/settings/class-listings-settings.php:546 msgid "" "Include the name of the category in the URL that points to the page of an " "individual listing." @@ -8287,11 +8503,11 @@ msgstr "" "Include numele categoriei în URL-ul care trimite către pagina individuală a " "anunțului." -#: includes/settings/class-listings-settings.php:550 +#: includes/settings/class-listings-settings.php:552 msgid "Include the name of the country in the listing URL" msgstr "Includeți numele țării în URL-ul anunțului" -#: includes/settings/class-listings-settings.php:553 +#: includes/settings/class-listings-settings.php:555 msgid "" "Include the name of the country in the URL that points to the page of an " "individual listing." @@ -8299,11 +8515,11 @@ msgstr "" "Include numele țării în URL-ul care trimite către pagina individuală a " "anunțului." -#: includes/settings/class-listings-settings.php:559 +#: includes/settings/class-listings-settings.php:561 msgid "Include the name of the state in the listing URL" msgstr "Includeți numele statului/provinciei/județului în URL-ul anunțului" -#: includes/settings/class-listings-settings.php:562 +#: includes/settings/class-listings-settings.php:564 msgid "" "Include the name of the state in the URL that points to the page of an " "individual listing." @@ -8311,11 +8527,11 @@ msgstr "" "Include numele statului/provinciei/județului în URL-ul care trimite către " "pagina individuală a anunțului." -#: includes/settings/class-listings-settings.php:568 +#: includes/settings/class-listings-settings.php:570 msgid "Include the name of the city in the listing URL" msgstr "Includeți numele orașului în URL-ul anunțului" -#: includes/settings/class-listings-settings.php:571 +#: includes/settings/class-listings-settings.php:573 msgid "" "Include the name of the city in the URL that points to the page of an " "individual listing." @@ -8323,11 +8539,11 @@ msgstr "" "Include numele orașului în URL-ul care trimite către pagina individuală a " "anunțului." -#: includes/settings/class-listings-settings.php:577 +#: includes/settings/class-listings-settings.php:579 msgid "Include the name of the county in the listing URL" msgstr "Includeți numele suburbiei/satului/comunei în URL-ul anunțului" -#: includes/settings/class-listings-settings.php:580 +#: includes/settings/class-listings-settings.php:582 msgid "" "Include the name of the county in the URL that points to the page of an " "individual listing." @@ -8502,7 +8718,7 @@ msgstr "" "accesate printr-un URL securizat (HTTPS). Nu activați această funcție dacă " "server-ul dvs. nu suporta HTTPS." -#: includes/settings/class-payment-general-settings.php:109 +#: includes/settings/class-payment-general-settings.php:108 msgid "" "Force Secure URLs was not enabled because your website couldn't be accessed " "using a secure connection." @@ -8510,23 +8726,19 @@ msgstr "" "URL-urile securizate nu au fost activate deoarece website-ul dvs. nu a putut " "fi accesat folosind o conexiune securizată." -#: includes/settings/class-payment-general-settings.php:135 -msgid "PayPal" -msgstr "PayPal" - -#: includes/settings/class-payment-general-settings.php:140 +#: includes/settings/class-payment-general-settings.php:139 msgid "PayPal Settings" msgstr "Setari PayPal" -#: includes/settings/class-payment-general-settings.php:142 +#: includes/settings/class-payment-general-settings.php:141 msgid "Activate PayPal?" msgstr "Activează PayPal?" -#: includes/settings/class-payment-general-settings.php:146 +#: includes/settings/class-payment-general-settings.php:145 msgid "PayPal receiver email" msgstr "Adresa de email PayPal" -#: includes/settings/class-payment-general-settings.php:149 +#: includes/settings/class-payment-general-settings.php:148 msgid "" "Email address for PayPal payments (if running in pay mode and if PayPal is " "activated)." @@ -8534,86 +8746,85 @@ msgstr "" "Adresa de email pentru plățile PayPal (dacă lucrați în modul plătit și aveți " "PayPal activat)." -#: includes/settings/class-payment-general-settings.php:167 +#: includes/settings/class-payment-general-settings.php:166 msgid "PayPal Merchant ID" msgstr "ID-ul de vânzător de la PayPal" #: includes/settings/class-payment-general-settings.php:170 +#, fuzzy msgid "" "Merchant ID associated with the PayPal account that will receive the " -"payments. Go to https://www.paypal.com/myaccount/settings/ to obtain " -"your Merchant ID." +"payments. Go to %s to obtain your Merchant ID." msgstr "" "ID-ul comerciantului asociat contului PayPal care va primi plățile. Accesați " "https://www.paypal.com/myaccount/settings/ pentru a " "obține ID-ul comerciantului." -#: includes/settings/class-payment-general-settings.php:178 +#: includes/settings/class-payment-general-settings.php:180 msgid "The PayPal Currency Code must be one of ." msgstr "" "Codul valutei de la PayPal trebuie să fie unul din următoarele ." -#: includes/settings/class-payment-general-settings.php:183 +#: includes/settings/class-payment-general-settings.php:185 msgid "PayPal currency code" msgstr "Codul valutei PayPal" -#: includes/settings/class-payment-general-settings.php:186 +#: includes/settings/class-payment-general-settings.php:188 msgid "The currency in which you would like to receive your PayPal payments" msgstr "Valuta în care doriți să primiți plățile dvs. de la PayPal" -#: includes/settings/class-payment-general-settings.php:209 +#: includes/settings/class-payment-general-settings.php:211 msgid "2Checkout" msgstr "2Checkout" -#: includes/settings/class-payment-general-settings.php:214 +#: includes/settings/class-payment-general-settings.php:216 msgid "2Checkout Settings" msgstr "Setări 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout" msgstr "Activați 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout?" msgstr "Activați 2Checkout?" -#: includes/settings/class-payment-general-settings.php:220 +#: includes/settings/class-payment-general-settings.php:222 msgid "2Checkout account" msgstr "Cont 2Checkout" -#: includes/settings/class-payment-general-settings.php:223 +#: includes/settings/class-payment-general-settings.php:225 msgid "Account for 2Checkout payments." msgstr "Cont pentru plățile 2Checkout." -#: includes/settings/class-payment-general-settings.php:238 +#: includes/settings/class-payment-general-settings.php:240 msgid "2Checkout Currency Code" msgstr "Codul valutei 2Checkout" -#: includes/settings/class-payment-general-settings.php:249 +#: includes/settings/class-payment-general-settings.php:251 msgid "The currency in which you would like to receive your 2Checkout payments" msgstr "Valuta în care doriți să primiți plățile dvs. de la 2Checkout" -#: includes/settings/class-payment-general-settings.php:261 -#: includes/settings/class-payment-general-settings.php:266 +#: includes/settings/class-payment-general-settings.php:263 +#: includes/settings/class-payment-general-settings.php:268 msgid "Credit System" msgstr "Sistem de credit" -#: includes/settings/class-payment-general-settings.php:269 +#: includes/settings/class-payment-general-settings.php:271 msgid "Currency" msgstr "Valute" -#: includes/settings/class-payment-general-settings.php:271 +#: includes/settings/class-payment-general-settings.php:273 msgid "Currency & Credits" msgstr "Valute și Credite" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "Enable Credit System" msgstr "Activează sistemul de credit" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "" "The Credit System allows users to purchase credit that can later be used to " "pay for placing Ads." @@ -8621,17 +8832,17 @@ msgstr "" "Sistemul de credit permite utilizatorilor să cumpere credit care poate fi " "folosit mai târziu pentru a adăuga anunțuri." -#: includes/settings/class-payment-general-settings.php:279 +#: includes/settings/class-payment-general-settings.php:281 msgid "Accepted payment type" msgstr "Tip de plată acceptată" -#: includes/settings/class-payment-general-settings.php:282 +#: includes/settings/class-payment-general-settings.php:284 msgid "Select the type of payment that can be used to purchase Ads." msgstr "" "Selectați tipul de plată care poate fi folosită pentru cumpărarea acestui " "anunț." -#: includes/settings/class-payment-general-settings.php:294 +#: includes/settings/class-payment-general-settings.php:296 msgid "" "You cannot configure Credits as the only accepted payment type unless you " "enable the Credit System as well. The setting was set to accept both " @@ -8641,7 +8852,7 @@ msgstr "" "activați și sistemul de credite. Setarea a fost făcută pentru ambele, Valute " "și credite." -#: includes/settings/class-payment-general-settings.php:311 +#: includes/settings/class-payment-general-settings.php:313 msgid "" "There is a problem with the PayPal Currency Code you have entered. It does " "not match any of the codes in our list of curencies supported by PayPal." @@ -8650,11 +8861,11 @@ msgstr "" "nu corespunde cu nici unul dintre codurile din lista noastră de valute " "acceptate de PayPal." -#: includes/settings/class-payment-general-settings.php:312 +#: includes/settings/class-payment-general-settings.php:314 msgid "The available currency codes are" msgstr "Codurile valutare disponibile sunt" -#: includes/settings/class-payment-general-settings.php:321 +#: includes/settings/class-payment-general-settings.php:323 msgid "" "Require Registration setting was enabled automatically because you activated " "the Credit System." @@ -8662,7 +8873,7 @@ msgstr "" "Înregistrarea obligatorie a fost activată automat pentru că ați activat " "sistemul de credit." -#: includes/settings/class-payment-general-settings.php:326 +#: includes/settings/class-payment-general-settings.php:328 msgid "" "Charge Listing Fee setting was enabled automatically because you activated " "the Credit System." @@ -8670,7 +8881,7 @@ msgstr "" "Setarea 'Încasați un preț pentru afișare anunț' a fost activată automat din " "cauză că ați activat sistemul de credit." -#: includes/settings/class-payment-general-settings.php:332 +#: includes/settings/class-payment-general-settings.php:334 msgid "" "Credit System was disabled automatically because you disabled Charge Listing " "Fee." @@ -8678,7 +8889,7 @@ msgstr "" "Sistemul de credit a fost dezactivat automat pentru că ați dezactivat " "setarea Încasați un preț pentru afișare anunț." -#: includes/settings/renderers/class-button-settings-renderer.php:39 +#: includes/settings/renderers/class-button-settings-renderer.php:40 msgid "" "Resetting to the default layout will cause any custom HTML layout changes " "you've made to be lost. Are you sure?" @@ -8686,7 +8897,7 @@ msgstr "" "Resetarea la aspectul implicit va provoca modificări particularizate aspect " "HTML care le-ați făcut pentru a fi pierdut. eşti sigur?" -#: includes/settings/renderers/class-button-settings-renderer.php:42 +#: includes/settings/renderers/class-button-settings-renderer.php:47 msgid "Reset" msgstr "Resetează" @@ -8694,56 +8905,55 @@ msgstr "Resetează" msgid "Deactivate" msgstr "Deactivați" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -msgid "active" -msgstr "activă" - -#: includes/settings/renderers/class-license-settings-renderer.php:43 #: includes/settings/renderers/class-license-settings-renderer.php:46 -#: includes/settings/renderers/class-license-settings-renderer.php:56 -#: includes/settings/renderers/class-license-settings-renderer.php:58 -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "Status: " -msgstr "Stare: " - -#: includes/settings/renderers/class-license-settings-renderer.php:45 -#: includes/settings/renderers/class-license-settings-renderer.php:48 +#: includes/settings/renderers/class-license-settings-renderer.php:50 msgid "Activate" msgstr "Activați" -#: includes/settings/renderers/class-license-settings-renderer.php:46 -msgid "inactive" -msgstr "inactivă" - -#: includes/settings/renderers/class-license-settings-renderer.php:51 +#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag +#: includes/settings/renderers/class-license-settings-renderer.php:55 +#, fuzzy msgid "" -"Click the button above to check the status of your license. Please contact customer support if you think the reported status is wrong." +"Click the button above to check the status of your license. Please " +"%1$scontact customer support%2$s if you think the reported status is wrong." msgstr "" "Click pe butonul de deasupra pentru a verifica starea licenței dvs. Vă rugăm " "să contactați suportul tehnic dacă credeți că starea " "indicată este greșită." -#: includes/settings/renderers/class-license-settings-renderer.php:56 -msgid "expired" -msgstr "expirată" - -#: includes/settings/renderers/class-license-settings-renderer.php:58 +#: includes/settings/renderers/class-license-settings-renderer.php:75 msgid "disabled" msgstr "deactivat" -#: includes/settings/renderers/class-license-settings-renderer.php:60 +#: includes/settings/renderers/class-license-settings-renderer.php:76 +msgid "inactive" +msgstr "inactivă" + +#: includes/settings/renderers/class-license-settings-renderer.php:77 +msgid "active" +msgstr "activă" + +#: includes/settings/renderers/class-license-settings-renderer.php:78 +msgid "expired" +msgstr "expirată" + +#: includes/settings/renderers/class-license-settings-renderer.php:79 msgid "unknown" msgstr "necunoscută" +#: includes/settings/renderers/class-license-settings-renderer.php:84 +#, fuzzy +msgid "Status: %s" +msgstr "Stare:" + #. translators: screen reader text label for individual settings on a settings #. grid -#: includes/settings/renderers/class-settings-grid-renderer.php:75 +#: includes/settings/renderers/class-settings-grid-renderer.php:80 msgid " setting for field" msgstr "" "setare pentru câmp" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:35 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:38 msgid "Create Page" msgstr "Creare pagină" @@ -8751,21 +8961,21 @@ msgstr "Creare pagină" msgid "Ad Category" msgstr "Categorie Anunț" -#: includes/ui/class-category-selector.php:122 +#: includes/ui/class-category-selector.php:144 msgid "All Categories" msgstr "Toate categoriile" -#: includes/ui/class-category-selector.php:171 +#: includes/ui/class-category-selector.php:193 msgid "Select a Sub-category" msgstr "Selectați o sub-categorie" -#: includes/ui/class-payment-terms-list.php:86 +#: includes/ui/class-payment-terms-list.php:103 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" msgstr "" "{nume de plată-Term} – {plată-termen-durată} ({plată-termen-preț})" -#: includes/ui/class-payment-terms-list.php:91 +#: includes/ui/class-payment-terms-list.php:108 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" @@ -8773,66 +8983,66 @@ msgstr "" "{nume de plată-Term} – {plată-termen-durată} ({plată-termen-preț} " "credite)" -#: includes/ui/class-payment-terms-list.php:152 +#: includes/ui/class-payment-terms-list.php:169 msgid " listing allowed." msgid_plural " listings allowed." msgstr[0] " anunț permis." msgstr[1] " anunțuri permise." msgstr[2] " anunțuri permise." -#: includes/ui/class-payment-terms-list.php:160 +#: includes/ui/class-payment-terms-list.php:177 msgid "No images allowed." msgstr "Nici o imagine permisă." -#: includes/ui/class-payment-terms-list.php:163 +#: includes/ui/class-payment-terms-list.php:180 msgid " image allowed." msgid_plural " images allowed." msgstr[0] " imagine permisă." msgstr[1] "imagini permise." msgstr[2] "imagini permise." -#: includes/ui/class-payment-terms-list.php:170 +#: includes/ui/class-payment-terms-list.php:187 msgid "Unlimited characters in listing's title." msgstr "Caractere nelimitate în titlul anunțului." -#: includes/ui/class-payment-terms-list.php:173 +#: includes/ui/class-payment-terms-list.php:190 msgid "Up to characters in listing's title." msgstr "" "Până la caracterele din titlul listei.." -#: includes/ui/class-payment-terms-list.php:180 +#: includes/ui/class-payment-terms-list.php:197 msgid "Up to categories allowed." msgstr "Până la categorii permise." -#: includes/ui/class-payment-terms-list.php:187 +#: includes/ui/class-payment-terms-list.php:204 msgid "Unlimited characters in listing's content." msgstr "Caractere nelimitate în conținutul anunțului." -#: includes/ui/class-payment-terms-list.php:190 +#: includes/ui/class-payment-terms-list.php:207 msgid "Up to characters in listing's content." msgstr "" "Până la caracterele din conținutul listei.." -#: includes/ui/class-payment-terms-list.php:196 +#: includes/ui/class-payment-terms-list.php:213 msgid "Purchase this plan" msgstr "Achiziționați acest plan" -#: includes/ui/class-payment-terms-list.php:197 +#: includes/ui/class-payment-terms-list.php:214 msgid "Pay for this plan with credits" msgstr "Plătiți pentru acest plan cu credite" -#: includes/ui/class-payment-terms-list.php:200 -#: includes/ui/class-payment-terms-list.php:204 +#: includes/ui/class-payment-terms-list.php:217 +#: includes/ui/class-payment-terms-list.php:221 msgid "Use this plan for free!" msgstr "Utilizați acest plan gratuit!" -#: includes/ui/class-payment-terms-list.php:209 -#: includes/ui/class-payment-terms-list.php:214 +#: includes/ui/class-payment-terms-list.php:226 +#: includes/ui/class-payment-terms-list.php:231 msgid "Select" msgstr "Selectează" -#: includes/ui/class-payment-terms-list.php:213 +#: includes/ui/class-payment-terms-list.php:230 msgid "credits" msgstr "credite" @@ -8976,13 +9186,13 @@ msgstr "" "website-ul pentru anunțuri gratuite." #. translators: %s the step name -#: includes/views/class-base-page.php:82 +#: includes/views/class-base-page.php:83 msgid "Unkown step \"%s\". Please contact the administrator about this error." msgstr "" "Pas necunoscut %s. Vă rugăm să contacați administorul cu referire la această " "eroare." -#: includes/views/class-base-page.php:135 +#: includes/views/class-base-page.php:136 msgid "" "Your request cannot be processed at this time. Please try again or contact " "the administrator about the incident." @@ -8992,7 +9202,7 @@ msgstr "" #. translators: %1$s back link, %2$s transaction id #: includes/views/class-payment-step-decorator.php:41 -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:74 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:76 #, fuzzy msgid "" "You are trying to buy credits using a transaction created for a different " @@ -9022,16 +9232,16 @@ msgstr "" msgid "Congratulations. You have successfully added credit to your account." msgstr "Felicitări. Ați adăugat cu succes credit în contul dvs." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:12 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:14 msgid "Buy Credits" msgstr "Cumpără credit" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:87 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:89 msgid "" "The payment associated with this transaction failed (see reasons below)." msgstr "Plata asociată cu această tranzacție a eșuat (vedeți mai jos cauzele)." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:118 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:120 msgid "You are not allowed to buy credits." msgstr "Nu vă este permis să cumpărați credite." @@ -9047,22 +9257,62 @@ msgstr "" msgid "The instance of WP_Scripts is not ready!" msgstr "Instanța de WP_Scripts nu este gata!" -#: installer.php:154 +#: installer.php:160 msgid "30 Day Listing" msgstr "Anunț pentru 30 zile" -#: installer.php:822 +#: installer.php:307 msgid "Response to your AWPCP Demo Ad" msgstr "Răspuns la anunțul dvs. de la Adserv" -#: installer.php:823 +#: installer.php:308 msgid "Someone has responded to your AWPCP Demo Ad" msgstr "Cineva a răspuns anunțului dvs. de la Adserv" -#: installer.php:848 +#: installer.php:333 msgid "Verify the email address used for Ad $title" msgstr "Verificați adresa de email folosită pentru anunțul $title" +#: installer.php:334 +#, fuzzy +msgid "" +"Hello $author_name \n" +"\n" +"You recently posted the Ad $title to $website_name. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"$verification_link \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" +msgstr "" +"Bună ziua $author_nume \n" +"\n" +"Ați postat recent $title de ac pe $website_name. \n" +"\n" +"Pentru a finaliza procesul de înregistrare, trebuie să vă verificați adresa " +"de e-mail. Vă rugăm să faceți clic pe link-ul de mai jos pentru a finaliza " +"procesul de verificare. Veți fi redirecționat către site-ul web unde puteți " +"vedea ad-ul. \n" +"\n" +"$verification_link \n" +"\n" +"După ce vă verificați adresa de e-mail, administratorul va fi notificat cu " +"privire la noul anunț. Dacă moderarea este activată, anuntul va rămâne într-" +"o stare dezactivată până când administratorul îl aprobă.\n" +"\n" +"$website_nume\n" +"\n" +"$website_url" + #: templates/admin/debug/environment-debug-section.tpl.php:19 msgid "" "Click the button below to contact and get a report about " @@ -9072,11 +9322,11 @@ msgstr "" "obține un raport despre caracteristicile SSL/TSL ale serverului.." -#: templates/admin/debug/environment-debug-section.tpl.php:30 +#: templates/admin/debug/environment-debug-section.tpl.php:32 msgid "Test your SSL Client" msgstr "Testați-vă clientul SSL" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:16 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:20 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -9088,7 +9338,7 @@ msgstr "" "clic pe butonul de mai jos pentru a naviga la pagina de setări permalinks.
." -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:23 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:27 msgid "" "Opening that page in your browser will flush the Rewrite Rules in your site. " "WordPress will then ask all installed and active plugins to register their " @@ -9101,30 +9351,37 @@ msgstr "" "dispară. Dacă nu este cazul, vă rugăm să contactați asistența " "pentru clienți.." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:3 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#, fuzzy +msgid "Plugin Pages" +msgstr "Pagini plugin" + +#: templates/admin/delete-browse-categories-page-notice.tpl.php:4 +#, fuzzy msgid "" -"The page is no longer necessary. From now on, " -"all listings will be displayed in the page, even " -"when they are filtered by a particular category." +"The %1$s page is no longer necessary. From now on, all listings will be " +"displayed in the %2$s page, even when they are filtered by a particular " +"category." msgstr "" "Pagina nu mai este necesară. De acum înainte, " "toate anunțurile vor fi afișate în pagina , chiar " "dacă sunt filtrate de o anumită categorie." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:9 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:11 +#, fuzzy msgid "" -"The plugin will start redirecting all traffic to the page to make sure no broken links are created." +"The plugin will start redirecting all traffic to the %s page to make sure no " +"broken links are created." msgstr "" "Pluginul va începe să redirecteze întreg traficul către pagina pentru a fi siguri că nu au fost create link-uri " "incorecte." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:13 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:15 msgid "Click the button below to delete the page." msgstr "Dați click pe butonul de mai jos pentru a șterge pagina." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:14 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:18 msgid "Delete Page" msgstr "Ștergeți pagina" @@ -9154,10 +9411,11 @@ msgstr "" "Categoria are categorii de copii. Vă rugăm să selectați o categorie pentru a " "seta ca nou părinte al categoriilor de copii." -#: templates/admin/delete-category-admin-page.tpl.php:32 +#. translators: %1$s: Cancel button , %2$s: Submit button label +#: templates/admin/delete-category-admin-page.tpl.php:34 +#, fuzzy msgid "" -"Click to go back to the list of categories or click " -" to proceed." +"Click %1$s to go back to the list of categories or click %2$s to proceed." msgstr "" "Faceți clic pentru a reveni la lista de categorii sau " "faceți clic pentru a continua. settings section to control which of " -"the standard fields appear and if the user is required to enter a value. If " -"you have the Extra Fields module, the rest of the fields can be configured " -"from the Extra Fields admin section." +"Go to the %s settings section to control which of the standard fields appear " +"and if the user is required to enter a value. If you have the Extra Fields " +"module, the rest of the fields can be configured from the Extra Fields admin " +"section." msgstr "" "Mergeți la secțiunea de setări pentru a controla " "care din câmpurile standard apar și dacă utilizatorul este obligat să " @@ -9206,12 +9472,16 @@ msgstr "" "suplimentare, restul câmpurilor poate fi configurat din secțiunea de " "administrare a câmpurilor suplimentare." +#: templates/admin/form-fields-admin-page.tpl.php:14 +msgid "Form" +msgstr "Formular" + #: templates/admin/import/example-csv-file.tpl.php:8 msgid "Import Listings: Example CSV File" msgstr "Import listări: exemplu fișier CSV" #: templates/admin/import/example-csv-file.tpl.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:84 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:76 msgid "See Supported CSV Headers" msgstr "Consultați anteturile CSV acceptate" @@ -9232,7 +9502,7 @@ msgid "Header" msgstr "Antet" #: templates/admin/import/supported-csv-headers.tpl.php:39 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:86 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:78 msgid "See Example CSV File" msgstr "Consultați exemplul fișierului CSV" @@ -9344,7 +9614,7 @@ msgstr "" msgid "Default user" msgstr "Utilizator implicit" -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:178 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 #: templates/admin/import-listings-admin-page-import-form.tpl.php:44 msgid "" "Press the button below to cancel the current import operation and discard " @@ -9385,36 +9655,37 @@ msgstr "Schimbă configurația și restartează" msgid "Pause" msgstr "Pauză" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:24 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:21 msgid "CSV file" msgstr "Fișier CSV" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:37 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:31 msgid "Images source" msgstr "Imagini sursă" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:40 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:34 msgid "Don't import images" msgstr "Nu importați imaginile" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:42 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:36 msgid "ZIP file" msgstr "Fișier ZIP" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:44 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:38 msgid "Local directory" msgstr "Director local" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:49 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:43 msgid "Zip file containing images" msgstr "Fișier ZIP conținând imagini" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:62 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:54 msgid "Local directory path" msgstr "Adresa directorului local" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:74 -msgid "The relative path to a directory inside ." +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:64 +#, fuzzy +msgid "The relative path to a directory inside %s." msgstr "Adresa relativă față de un director din ." #: templates/admin/listings/listing-information-metabox.tpl.php:56 @@ -9503,27 +9774,27 @@ msgid "Payment Options" msgstr "Opțiuni de plată" #. translators: %s is the link the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:84 +#: templates/admin/main-classifieds-admin-page.tpl.php:87 msgid "" "Go to the %s section to edit/delete current categories or add new categories." msgstr "" "Mergeți la secținea %s pentru a edita/șterge categoriile curente sau pentru " "a adăuga noi categorii." -#: templates/admin/main-classifieds-admin-page.tpl.php:90 +#: templates/admin/main-classifieds-admin-page.tpl.php:95 msgid "Total number of categories in the system" msgstr "Număr total de categorii în sistem" -#: templates/admin/main-classifieds-admin-page.tpl.php:95 +#: templates/admin/main-classifieds-admin-page.tpl.php:100 msgid "Number of Top Level parent categories" msgstr "Număr de categorii părinte de prim nivel" -#: templates/admin/main-classifieds-admin-page.tpl.php:100 +#: templates/admin/main-classifieds-admin-page.tpl.php:105 msgid "Number of sub level children categories" msgstr "Număr de sub-categorii copii" #. translators: %s is the link to the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:109 +#: templates/admin/main-classifieds-admin-page.tpl.php:114 msgid "" "You have not categories defined. Go to the %s section to set up your " "categories." @@ -9531,77 +9802,77 @@ msgstr "" "Nu aveți definită nici o categorie. Mergeți la secțiunea %s pentru a seta " "categoriile dvs." -#: templates/admin/manage-categories-admin-page.tpl.php:43 +#: templates/admin/manage-categories-admin-page.tpl.php:44 msgid "Parent Category" msgstr "Categorie părinte" -#: templates/admin/manage-categories-admin-page.tpl.php:52 +#: templates/admin/manage-categories-admin-page.tpl.php:53 msgid "Category list order" msgstr "Ordinea în cadrul categoriei" -#: templates/admin/manage-categories-admin-page.tpl.php:75 +#: templates/admin/manage-categories-admin-page.tpl.php:76 msgid "Icon Meanings:" msgstr "Semnificația pictogramei:" -#: templates/admin/manage-categories-admin-page.tpl.php:85 +#: templates/admin/manage-categories-admin-page.tpl.php:89 msgid "Move categories or ads under:" msgstr "Mutați categoriile sau anunțurile în conformitate cu:" -#: templates/admin/manage-categories-admin-page.tpl.php:92 +#: templates/admin/manage-categories-admin-page.tpl.php:96 msgid "Delete categories should do this with existing ads:" msgstr "" "Ștergeți categoriile ar trebui să facă acest lucru cu anunțurile existente:" -#: templates/admin/manage-categories-admin-page.tpl.php:93 +#: templates/admin/manage-categories-admin-page.tpl.php:97 msgid "Move ads to new category" msgstr "Mutați anunțurile în categoria nouă" -#: templates/admin/manage-categories-admin-page.tpl.php:94 +#: templates/admin/manage-categories-admin-page.tpl.php:98 msgid "Delete ads too" msgstr "Ștergeți și anunțurile" -#: templates/admin/manage-categories-admin-page.tpl.php:101 +#: templates/admin/manage-categories-admin-page.tpl.php:108 msgid "Move Selected Categories" msgstr "Mută categoria selectată" -#: templates/admin/manage-categories-admin-page.tpl.php:102 +#: templates/admin/manage-categories-admin-page.tpl.php:109 msgid "Delete Selected Categories" msgstr "Șterge categoria selectată" -#: templates/admin/manage-categories-admin-page.tpl.php:119 +#: templates/admin/manage-categories-admin-page.tpl.php:126 msgid "Select all categories" msgstr "Selectați toate categoriile" -#: templates/admin/manage-categories-admin-page.tpl.php:122 -#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:129 +#: templates/admin/manage-categories-admin-page.tpl.php:145 msgid "Category ID" msgstr "ID Categorie" -#: templates/admin/manage-categories-admin-page.tpl.php:124 -#: templates/admin/manage-categories-admin-page.tpl.php:136 +#: templates/admin/manage-categories-admin-page.tpl.php:131 +#: templates/admin/manage-categories-admin-page.tpl.php:146 msgid "Category Name (Total Ads)" msgstr "Nume Categorie (Total anunțuri)" -#: templates/admin/manage-categories-admin-page.tpl.php:126 -#: templates/admin/manage-categories-admin-page.tpl.php:137 +#: templates/admin/manage-categories-admin-page.tpl.php:133 +#: templates/admin/manage-categories-admin-page.tpl.php:147 msgid "Parent" msgstr "Părinte" -#: templates/admin/manage-categories-admin-page.tpl.php:127 -#: templates/admin/manage-categories-admin-page.tpl.php:138 +#: templates/admin/manage-categories-admin-page.tpl.php:134 +#: templates/admin/manage-categories-admin-page.tpl.php:148 msgid "Order" msgstr "Ordine" -#: templates/admin/manage-categories-admin-page.tpl.php:128 -#: templates/admin/manage-categories-admin-page.tpl.php:139 +#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:149 msgid "Action" msgstr "Acționează" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:2 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 msgid "What's your PayPal Merchant ID?" msgstr "Care este ID-ul dvs. de vânzător la PayPal?" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:3 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:10 #, fuzzy msgid "" "In order to verify payments made through PayPal, AWP Classifieds Plugin " @@ -9610,11 +9881,11 @@ msgstr "" "Pentru a verifica plățile făcute prin PayPal, plugin-ul AWCP trebuie să știe " "ID-ul dvs. de vânzător la PayPal." -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:13 +#, fuzzy msgid "" -"Go to to obtain the Merchant ID and then go to the Payment Settings page to enter the " -"value." +"Go to %1$s to obtain the Merchant ID and then go to the %2$sPayment " +"Settings%3$s page to enter the value." msgstr "" "Mergeți la pentru a obține ID-ul de vânzător și apoi mergeți " "la pagina Setări plată pentru " @@ -9811,7 +10082,8 @@ msgstr "Postat la" msgid "Expires on" msgstr "Expiră la" -#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:9 +#. translators: %s: URL to renew the ad +#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:12 msgid "You can renew your Ad visiting this link: %s" msgstr "Puteți reînnoi anunțul dvs. vizitând acest link: %s" @@ -9820,12 +10092,45 @@ msgstr "Puteți reînnoi anunțul dvs. vizitând acest link: %s" msgid "Hello" msgstr "Bună" -#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:2 +#: templates/email/listing-media-upload-notification.plain.tpl.php:2 +#, fuzzy +msgid "Hello," +msgstr "Bună," + +#: templates/email/listing-media-upload-notification.plain.tpl.php:9 +#, fuzzy +msgid "The following media files were recently uploaded to listing \"%s\":" +msgstr "" +"Următoarele fișiere media au fost recent încărcate la anunțul \"\":" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:23 +#, fuzzy +msgid "" +"The following media files were recently uploaded to listing \"%s\" and are " +"awaiting approval:" +msgstr "" +"Următoarele fișiere media au fost recent încărcate la anunțul \"\" și așteaptă aprobarea:" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:36 +#, fuzzy +msgid "Click here to manage media uploaded to the listing: %s." +msgstr "" +"Dați click aici pentru a administra fișierele media ale anunțului: ." + +#: templates/email/listing-media-upload-notification.plain.tpl.php:44 +#, fuzzy +msgid "Click here to view the listing: %s." +msgstr "Click aici pentru a vedea anunțul: ." + +#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:3 +#, fuzzy msgid "" -"The ad \"\" was modified. A copy of the details sent to the " -"customer can be found below. You can follow this link " -"to go to the Manage Ad Listing section to approve/reject/spam and see the " -"full version of the Ad." +"The ad \"%s\" was modified. A copy of the details sent to the customer can " +"be found below. You can follow this link %s to go to the Manage Ad Listing " +"section to approve/reject/spam and see the full version of the Ad." msgstr "" "Anunțul \"\" a fost modificat. O copie a detaliilor trimise " "clientului poate fi găsită mai jos. Poți să urmezi acest link . Vă rugăm să le " "verificați aici ." -#: templates/frontend/listings.tpl.php:24 +#: templates/frontend/listings.tpl.php:37 msgid "There were no listings found." msgstr "Nu a fost găsit nici un anunț." +#: templates/frontend/order-submit-listing-section.tpl.php:41 +#, fuzzy +msgid "Who is the owner of this ad?" +msgstr "Cine este proprietarul acestui anunț?" + +#: templates/frontend/order-submit-listing-section.tpl.php:86 +#, fuzzy +msgid "Your ad will be posted on the following categories: %s." +msgstr "Anunțul va fi postat pe următoarele categorii: {categorii}." + #: templates/privacy-policy.tpl.php:10 msgid "Suggested text:" msgstr "Text sugerat:" +#: templates/privacy-policy.tpl.php:11 +#, fuzzy +msgid "" +"When you submit a classified listing, the content of the listing and its " +"metadata are retained indefinitely. All users can see, edit or delete the " +"personal information included on their listings at any time. Website " +"administrators can also see and edit that information." +msgstr "" +"Când trimiteți o listă clasificată, conținutul listei și metadatele sale " +"sunt păstrate pe termen nelimitat. Toți utilizatorii pot vedea, edita sau " +"șterge informațiile personale incluse în listele lor în orice moment. " +"Administratorii de site-uri web pot vedea și edita informațiile respective." + +#: templates/privacy-policy.tpl.php:14 +#, fuzzy +msgid "" +"Website visitors can see the contact name, website URL, phone number, " +"address and other information included in your submission to describe the " +"classified listing." +msgstr "" +"Vizitatorii site-ului pot vedea numele contactului, URL-ul site-ului, " +"numărul de telefon, adresa și alte informații incluse în prezentarea " +"dumneavoastră pentru a descrie lista clasificată." + +#: templates/privacy-policy.tpl.php:18 +#, fuzzy +msgid "" +"Contact name, email address, website URL and content of submitted classified " +"listings may be checked through Akismet's spam detection service. The " +"Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"Numele contactului, adresa de e-mail, URL-ul site-ului web și conținutul " +"listelor clasificate trimise pot fi verificate prin serviciul de detectare a " +"mesajelor spam de la Akismet. Politica de confidențialitate Akismet service " +"este disponibilă aici." + +#: templates/privacy-policy.tpl.php:24 +#, fuzzy +msgid "Payment Information" +msgstr "Informaţii plată" + +#: templates/privacy-policy.tpl.php:28 +#, fuzzy +msgid "" +"If you pay to post a classified listing entering your credit card and " +"billing information directly on %s, the credit card information won't be " +"stored but it will be shared through a secure connection with the following " +"payment gateways to process the payment:" +msgstr "" +"În cazul în care plătiți pentru a posta o listă clasificată care introduce " +"informațiile cardului de credit și de facturare direct pe {home_url}, informațiile cardului de credit nu vor " +"fi stocate, dar vor fi partajate printr-o conexiune securizată cu " +"următoarele gateway-uri de plată pentru a procesa plata:" + +#: templates/privacy-policy.tpl.php:36 +#, fuzzy +msgid "PayPal - %1$s" +msgstr "PayPal" + +#: templates/privacy-policy.tpl.php:42 +#, fuzzy +msgid "Authorize.Net - %s" +msgstr "Authorize.net" + +#: templates/privacy-policy.tpl.php:48 +#, fuzzy +msgid "Stripe - %s" +msgstr "Stripe" + +#: templates/privacy-policy.tpl.php:54 +#, fuzzy +msgid "Regions" +msgstr "Regiuni" + +#: templates/privacy-policy.tpl.php:56 +#, fuzzy +msgid "" +"If you choose to see listings published on a specific region, a cookie will " +"be stored on your browser for the remainder of the session to remember the " +"selected region." +msgstr "" +"Dacă alegeți să vedeți listări publicate într-o anumită regiune, un cookie " +"va fi stocat în browserul dumneavoastră pentru ca restul sesiunii să " +"memorați regiunea selectată." + +#: templates/privacy-policy.tpl.php:58 +#, fuzzy +msgid "Comments and Ratings" +msgstr "Comentarii și evaluări" + +#: templates/privacy-policy.tpl.php:60 +#, fuzzy +msgid "" +"When visitors leave comments and reviews for classified listings we collect " +"the data shown in the comments form, and also the visitor’s IP address to " +"help spam detection." +msgstr "" +"Când vizitatorii lasă comentarii și recenzii pentru listări clasificate " +"colectăm datele afișate în formularul de comentarii și, de asemenea, adresa " +"IP a vizitatorului pentru a ajuta la detectarea spamului." + +#: templates/privacy-policy.tpl.php:64 +#, fuzzy +msgid "" +"Visitor comments may be checked through Akismet's spam detection service. " +"The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"Comentariile vizitatorilor pot fi verificate prin serviciul de detectare a " +"spamului Akismet. Politica de confidențialitate Akismet service este " +"disponibilă aici." + +#: templates/privacy-policy.tpl.php:70 +msgid "Restricted Categories" +msgstr "Categorii restricționate" + +#: templates/privacy-policy.tpl.php:72 +#, fuzzy +msgid "" +"When you agree to see listings or publish a listing on a restricted " +"category, a cookie will be stored in your browser to remember your decision. " +"The cookie will be stored on your browser for the remainder of that session." +msgstr "" +"Când sunteți de acord să vedeți listări sau să publicați o listare pe o " +"categorie restrânsă, un cookie va fi stocat în browser pentru a vă aminti " +"decizia. Modulul cookie va fi stocat în browserul tău pentru restul sesiunii." + #. Author URI of the plugin/theme msgid "https://awpcp.com/" msgstr "" @@ -9877,29 +10319,29 @@ msgctxt "awpcp admin menu" msgid "Classifieds" msgstr "Anunțuri" -#: admin/admin-panel.php:810 includes/settings/class-listings-settings.php:469 +#: admin/admin-panel.php:794 includes/settings/class-listings-settings.php:469 msgctxt "page name" msgid "Show Ad" msgstr "Arată anunț" -#: admin/admin-panel.php:818 +#: admin/admin-panel.php:802 msgctxt "page name" msgid "Edit Ad" msgstr "Editează anunț" -#: admin/class-csv-exporter.php:82 +#: admin/class-csv-exporter.php:83 msgctxt "admin csv-export" msgid "Could not create a temporary directory for handling this CSV export." msgstr "" "Imposibil de creat un director temporar pentru tratarea acestui export CSV." -#: admin/class-csv-exporter.php:85 +#: admin/class-csv-exporter.php:86 msgctxt "admin csv-export" msgid "Could not create awpcp-csv-exports directory." msgstr "Imposibil de creat directorul awpcp-CSV-exporturi." #. translators: %s the error. -#: admin/class-csv-exporter.php:91 +#: admin/class-csv-exporter.php:95 msgctxt "admin csv-export" msgid "Error while creating a temporary directory for CSV export: %s" msgstr "Eroare la crearea unui director temporar pentru exportul CSV: %s" @@ -9909,76 +10351,73 @@ msgctxt "admin csv-export" msgid "Could not decode export state information." msgstr "Nu pot decoda informatii despre starea de export." -#: admin/class-debug-admin-page.php:136 +#: admin/class-debug-admin-page.php:137 msgctxt "debug page" msgid "Plugin Info" msgstr "Informații plugin" -#: admin/class-debug-admin-page.php:137 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:33 +#: admin/class-debug-admin-page.php:138 msgctxt "debug page" msgid "Plugin Pages" msgstr "Pagini plugin" -#: admin/class-debug-admin-page.php:138 +#: admin/class-debug-admin-page.php:139 msgctxt "debug page" msgid "Plugin Settings" msgstr "Setări Plugin" -#: admin/class-debug-admin-page.php:139 +#: admin/class-debug-admin-page.php:140 msgctxt "debug page" msgid "Environment" msgstr "Mediu" -#: admin/class-debug-admin-page.php:140 -#: admin/templates/admin-panel-debug.tpl.php:32 +#: admin/class-debug-admin-page.php:141 +#: admin/templates/admin-panel-debug.tpl.php:59 msgctxt "debug page" msgid "Rewrite Rules" msgstr "Reguli de rescriere" -#: admin/class-debug-admin-page.php:177 +#: admin/class-debug-admin-page.php:178 msgctxt "debug page" msgid "Plugin Version" msgstr "Versiune Plugin" -#: admin/class-debug-admin-page.php:283 -#: admin/templates/admin-panel-debug.tpl.php:126 +#: admin/class-debug-admin-page.php:284 msgctxt "debug page" msgid "cURL's alternate CA info (cacert.pem)" msgstr "informație alternativă CA pentru cURL (cacert.pem)" -#: admin/class-debug-admin-page.php:287 -#: admin/templates/admin-panel-debug.tpl.php:130 +#: admin/class-debug-admin-page.php:288 msgctxt "debug page" msgid "PayPal Connection" msgstr "Conexiune PayPal" -#: admin/class-debug-admin-page.php:359 +#: admin/class-debug-admin-page.php:360 msgctxt "debug page" msgid "Working" msgstr "Funcționează" -#: admin/class-debug-admin-page.php:362 -#: admin/templates/admin-panel-debug.tpl.php:136 +#: admin/class-debug-admin-page.php:363 msgctxt "debug page" msgid "Not Working" msgstr "Nu funcționează" -#: admin/templates/admin-panel-debug.tpl.php:22 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:31 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:34 msgctxt "debug page" msgid "Flush Rewrite Rules" msgstr "Resetează regulile de rescriere" -#: admin/templates/admin-panel-debug.tpl.php:26 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s Linked +#. URL in anchor link +#: admin/templates/admin-panel-debug.tpl.php:48 +#, fuzzy msgctxt "debug page" msgid "" -"This information can help AWPCP Developers to debug possible problems. If " -"you are submitting a bug report please Download the " -"Debug Information and attach it to your bug report or take a " -"minute to copy the information below to http://fpaste.org and provide the resulting URL in " -"your report." +"This information can help the AWP Team to debug possible problems. If you " +"are submitting a bug report please %1$sDownload the Debug Information%2$s " +"and attach it to your bug report or take a minute to copy the information " +"below to %3$s and provide the resulting URL in your report." msgstr "" "Această informație poate ajuta programatorii AWPCP să remedieze diferite " "probleme. Dacă trimiteți un raport de eroare, vă rugăm http://fpaste.org și " "includeți URL-ul obținut în raport." -#: admin/templates/admin-panel-debug.tpl.php:29 +#: admin/templates/admin-panel-debug.tpl.php:56 msgctxt "debug page" msgid "AWPCP Pages" msgstr "Pagini AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:57 msgctxt "debug page" msgid "PHP Info" msgstr "PHP Info" -#: admin/templates/admin-panel-debug.tpl.php:31 +#: admin/templates/admin-panel-debug.tpl.php:58 msgctxt "debug page" msgid "AWPCP Settings" msgstr "Setări AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:118 -msgctxt "debug page" -msgid "PHP Version" -msgstr "Versiune PHP" - -#: admin/templates/admin-panel-debug.tpl.php:122 -msgctxt "debug page" -msgid "cURL" -msgstr "cURL" - #. translators: %s is the URL to download the debug information #: templates/admin/debug/debug-admin-page.tpl.php:17 msgctxt "debug page" @@ -10025,22 +10454,22 @@ msgstr "" "href=\"%s\">Descărcați informațiile de depanare și să le " "atașați la raportul de erori." -#: templates/admin/debug/plugin-info-debug-section.tpl.php:29 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:38 msgctxt "debug page" msgid "There are no premium modules activated right now." msgstr "Nu există module premium activate chiar acum." -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:38 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:49 msgctxt "debug page" msgid "Reference" msgstr "Referință" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:39 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:50 msgctxt "debug page" msgid "Page Title" msgstr "Titlu pagină" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:51 msgctxt "debug page" msgid "Stored ID" msgstr "ID stocat" @@ -10055,41 +10484,39 @@ msgctxt "debug page" msgid "Setting Value" msgstr "Valoare setare" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Exists" msgstr "Există" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Missing" msgstr "Lipsește" -#: admin/class-import-listings-admin-page.php:358 +#: admin/class-import-listings-admin-page.php:362 msgctxt "" "description for messages used to show feedback for the Import Listings " "operation" msgid " in line " msgstr " în linia " -#: admin/class-import-listings-admin-page.php:369 +#: admin/class-import-listings-admin-page.php:373 msgctxt "text for page subtitle and submit button" msgid "Test Import" msgstr "Test import" -#: admin/class-import-listings-admin-page.php:371 +#: admin/class-import-listings-admin-page.php:375 msgctxt "text for page subtitle and submit button" msgid "Import" msgstr "Import" -#: admin/class-import-settings-admin-page.php:104 +#: admin/class-import-settings-admin-page.php:102 msgctxt "import settings" msgid "Are you sure you want to do this?" msgstr "Ești sigur că vrei să faci asta?" -#: admin/class-import-settings-admin-page.php:116 +#: admin/class-import-settings-admin-page.php:115 msgctxt "import settings" msgid "" "There was a problem trying to read the settings file; it appears the file " @@ -10098,91 +10525,6 @@ msgstr "" "A existat o problemă la încercarea de citire a fișierului de setări; se pare " "că fișierul nu a fost încărcat corect. Vă rugăm să încercați din nou." -#: admin/class-import-settings-admin-page.php:122 -msgctxt "another-wordpress-classifieds-plugin" -msgid "Your settings have been successfully imported." -msgstr "Setările au fost importate cu succes." - -#: includes/settings/class-email-settings.php:201 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello {author_name} \n" -"\n" -"You recently posted the Ad {listing_title} to {website_title}. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"{verification_link} \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" -msgstr "" -"Bună ziua {author_name} \n" -"\n" -"Ați postat recent ad{listing_title} în {website_title}. \n" -"\n" -"Pentru a finaliza procesul de înregistrare, trebuie să vă verificați adresa " -"de e-mail. Vă rugăm să faceți clic pe link-ul de mai jos pentru a finaliza " -"procesul de verificare. Veți fi redirecționat către site-ul web unde puteți " -"vedea ad-ul. \n" -"\n" -"{verification_link} \n" -"\n" -"După ce vă verificați adresa de e-mail, administratorul va fi notificat cu " -"privire la noul anunț. Dacă moderarea este activată, anuntul va rămâne într-" -"o stare dezactivată până când administratorul îl aprobă.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" - -#: installer.php:849 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello $author_name \n" -"\n" -"You recently posted the Ad $title to $website_name. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"$verification_link \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" -msgstr "" -"Bună ziua $author_nume \n" -"\n" -"Ați postat recent $title de ac pe $website_name. \n" -"\n" -"Pentru a finaliza procesul de înregistrare, trebuie să vă verificați adresa " -"de e-mail. Vă rugăm să faceți clic pe link-ul de mai jos pentru a finaliza " -"procesul de verificare. Veți fi redirecționat către site-ul web unde puteți " -"vedea ad-ul. \n" -"\n" -"$verification_link \n" -"\n" -"După ce vă verificați adresa de e-mail, administratorul va fi notificat cu " -"privire la noul anunț. Dacă moderarea este activată, anuntul va rămâne într-" -"o stare dezactivată până când administratorul îl aprobă.\n" -"\n" -"$website_nume\n" -"\n" -"$website_url" - #: admin/credit-plans/class-delete-credit-plan-action-handler.php:30 #: admin/credit-plans/class-edit-credit-plan-action-handler.php:27 msgctxt "credit plans ajax" @@ -10204,19 +10546,19 @@ msgctxt "form field slug" msgid "Slug" msgstr "Nume scurt" -#: admin/import/class-csv-importer-delegate.php:98 +#: admin/import/class-csv-importer-delegate.php:101 msgctxt "csv importer" msgid "Required value for column \"\" is missing." msgstr "" "Valoarea necesară pentru coloana \"\" lipsește.." -#: admin/import/class-csv-importer-delegate.php:181 +#: admin/import/class-csv-importer-delegate.php:184 msgctxt "csv importer" msgid "A new user '%s' with email address '%s' and password '%s' was created." msgstr "" "A fost creat un nou utilizator '%s' cu adresa de email '%s' şi parola '%s'." -#: admin/import/class-csv-importer-delegate.php:252 +#: admin/import/class-csv-importer-delegate.php:256 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10229,7 +10571,7 @@ msgstr "" "mail de contact lipsesc sau au o valoare goală. Vă rugăm să includeți un " "nume de utilizator și e-mail de contact sau selectați un utilizator implicit." -#: admin/import/class-csv-importer-delegate.php:255 +#: admin/import/class-csv-importer-delegate.php:258 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10241,7 +10583,7 @@ msgstr "" "valoare goală. Vă rugăm să includeți un nume de utilizator sau selectați un " "utilizator implicit." -#: admin/import/class-csv-importer-delegate.php:258 +#: admin/import/class-csv-importer-delegate.php:260 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -10253,20 +10595,20 @@ msgstr "" "goală. Vă rugăm să includeți un contact_email sau selectați un utilizator " "implicit." -#: admin/import/class-csv-importer-delegate.php:312 +#: admin/import/class-csv-importer-delegate.php:316 msgctxt "csv importer" msgid "No category with name \"\" was found." msgstr "" "Nus-a găsit nicio categorie cu numele \"\"." -#: admin/import/class-csv-importer-delegate.php:328 +#: admin/import/class-csv-importer-delegate.php:332 msgctxt "csv importer" msgid "There was an error trying to create category \"\"." msgstr "" "Eroare la încercarea de creare a categoriei \"\".." -#: admin/import/class-csv-importer-delegate.php:337 +#: admin/import/class-csv-importer-delegate.php:342 msgctxt "csv importer" msgid "" "A category with name \"\" was created, but there was an error " @@ -10276,49 +10618,49 @@ msgstr "" "la încercarea de preluare a informațiilor sale din baza de date.." -#: admin/import/class-csv-importer-delegate.php:349 +#: admin/import/class-csv-importer-delegate.php:355 msgctxt "csv importer" msgid "Item price must be a number." msgstr "Prețul articolului trebuie să fie un număr." -#: admin/import/class-csv-importer-delegate.php:363 +#: admin/import/class-csv-importer-delegate.php:369 msgctxt "csv importer" msgid "The start date is missing and no default value was defined." msgstr "Data de începere lipsește și nu s-a definit nicio valoare implicită." -#: admin/import/class-csv-importer-delegate.php:364 +#: admin/import/class-csv-importer-delegate.php:370 msgctxt "csv importer" msgid "The start date is invalid and no default value was defined." msgstr "" "Data de începere nu este validă și nu s-a definit nicio valoare implicită." -#: admin/import/class-csv-importer-delegate.php:365 +#: admin/import/class-csv-importer-delegate.php:371 msgctxt "csv importer" msgid "Invalid default start date." msgstr "Dată de începere implicită nevalidă." -#: admin/import/class-csv-importer-delegate.php:430 -#: admin/import/class-csv-importer-delegate.php:431 +#: admin/import/class-csv-importer-delegate.php:436 +#: admin/import/class-csv-importer-delegate.php:437 msgctxt "csv importer" msgid "The end date is missing and no default value was defined." msgstr "Data de sfârșit lipsește și nu s-a definit nicio valoare implicită." -#: admin/import/class-csv-importer-delegate.php:432 +#: admin/import/class-csv-importer-delegate.php:438 msgctxt "csv importer" msgid "Invalid default end date." msgstr "Dată de încheiere implicită nevalidă." -#: admin/import/class-csv-importer-delegate.php:499 +#: admin/import/class-csv-importer-delegate.php:505 msgctxt "csv importer" msgid "Image file with name not found." msgstr "Imagine dosar cu nume nu a întemeia.." -#: admin/import/class-csv-importer-delegate.php:566 +#: admin/import/class-csv-importer-delegate.php:576 msgctxt "csv importer" msgid "There was an error trying to store imported data into the database." msgstr "Eroare la încercarea de stocare a datelor importate în baza de date." -#: admin/import/class-csv-importer-delegate.php:587 +#: admin/import/class-csv-importer-delegate.php:599 msgctxt "csv importer" msgid "" "There was an error trying to import one of the images: {image-validation-" @@ -10341,20 +10683,6 @@ msgctxt "drip-autoresponder" msgid "The email address entered is not valid." msgstr "Adresa de email introdusă nu este validă." -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 -msgctxt "drip-autoresponder" -msgid "Thank you for signing up!" -msgstr "Vă mulțumim pentru înscriere!" - -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 -msgctxt "drip-autoresponder" -msgid "" -"Please check your email and click the link provided to confirm your " -"subscription." -msgstr "" -"Vă rugăm să vă verificați email-ul și să dați click pe link-ul inclus pentru " -"a confirma abonamentul dvs." - #: admin/pointers/class-drip-autoresponder.php:22 msgctxt "drip-autoresponder" msgid "Yes, I'd like my course, please" @@ -10365,19 +10693,6 @@ msgctxt "drip-autoresponder" msgid "No, thanks" msgstr "Nu, mulțumesc" -#: admin/pointers/class-drip-autoresponder.php:62 -msgctxt "drip-autoresponder" -msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" -msgstr "" -"Doriți să aflați Secretele Construirii unui Website de Anunțuri Extraordinar?" - -#: admin/pointers/class-drip-autoresponder.php:63 -msgctxt "drip-autoresponder" -msgid "" -"Find out how to create a compelling, thriving classifieds site from scratch " -"in this ridiculously actionable (and free) 5-part email course." -msgstr "" - #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:6 msgctxt "credit plans form" msgid "Edit Credit Plan Details" @@ -10393,28 +10708,6 @@ msgctxt "Quick Start Guide" msgid "No Thanks" msgstr "Nu, mulțumesc" -#: admin/templates/admin-quick-start-guide-notice.tpl.php:9 -msgctxt "Quick Start Guide" -msgid "I'll figure it out on my own." -msgstr "O sa mă descurc pe cont propriu." - -#: admin/templates/admin-quick-start-guide-notice.tpl.php:17 -msgctxt "Quick Start Guide" -msgid "Help me get my classifieds running quickly." -msgstr "Ajutați-mă ca să am anunțurile setate rapid." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:75 -msgctxt "Browse the Quick Start Guide" -msgid "Browse the %s." -msgstr "Explorați %s." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:85 -msgctxt "Read the full Documentation" -msgid "Read the full %s." -msgstr "Citiți întreaga %s." - #: admin/templates/admin-widget-modification-notice.tpl.php:7 msgctxt "widget modification notice" msgid "Close this, I'll check my Widget configuration." @@ -10475,17 +10768,17 @@ msgctxt "404 HTTP status description" msgid "Listing not found" msgstr "Anunț negăsit" -#: frontend/page-place-ad.php:1417 +#: frontend/page-place-ad.php:1420 msgctxt "upload listing images form" msgid "Preview Ad" msgstr "Previzualizare anunțuri" -#: frontend/page-place-ad.php:1419 +#: frontend/page-place-ad.php:1422 msgctxt "upload listing images form" msgid "Place Ad" msgstr "Adauga anunț" -#: frontend/page-place-ad.php:1421 +#: frontend/page-place-ad.php:1424 msgctxt "upload listing images form" msgid "Checkout" msgstr "Plătește" @@ -10566,7 +10859,7 @@ msgctxt "listing row action" msgid "Unflag" msgstr "Demarchează" -#: frontend/templates/email-send-ad-access-key.tpl.php:9 +#: frontend/templates/email-send-ad-access-key.tpl.php:13 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:18 #: templates/email/listing-edit-link-with-access-token.tpl.php:9 msgctxt "edit link email" @@ -10625,11 +10918,6 @@ msgctxt "loading region options" msgid "loading..." msgstr "se încarcă..." -#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 -msgctxt "add credit checkout step" -msgid "Complete Payment" -msgstr "Efectuează Plata" - #: frontend/templates/page-edit-ad-email-key-step.tpl.php:34 msgctxt "enter email and access key form" msgid "Continue" @@ -10637,36 +10925,31 @@ msgstr "Continuă" #: frontend/templates/page-edit-ad-send-access-key-step.tpl.php:27 msgctxt "send ad access key form" -msgid "Continue" -msgstr "Continuă" - -#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 -msgctxt "place ad checkout step" -msgid "Complete Payment" -msgstr "Efectuează plata" +msgid "Continue" +msgstr "Continuă" -#: frontend/templates/page-place-ad-details-step.tpl.php:59 +#: frontend/templates/page-place-ad-details-step.tpl.php:63 msgctxt "ad details form" msgid "Start Date" msgstr "Dată de început" -#: frontend/templates/page-place-ad-details-step.tpl.php:69 +#: frontend/templates/page-place-ad-details-step.tpl.php:73 msgctxt "ad details form" msgid "End Date" msgstr "Data de sfârșit" -#: frontend/templates/page-place-ad-details-step.tpl.php:98 +#: frontend/templates/page-place-ad-details-step.tpl.php:104 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:9 msgctxt "ad details form" msgid "Read our Terms of Service" msgstr "Citiți Termenii de Folosire" -#: frontend/templates/page-place-ad-details-step.tpl.php:100 +#: frontend/templates/page-place-ad-details-step.tpl.php:106 msgctxt "ad details form" msgid "Terms of service:" msgstr "Termeni de folosire:" -#: frontend/templates/page-place-ad-details-step.tpl.php:105 +#: frontend/templates/page-place-ad-details-step.tpl.php:111 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:17 msgctxt "ad details form" msgid "I agree to the terms of service" @@ -10733,12 +11016,12 @@ msgctxt "ad details form" msgid "Terms of Service" msgstr "Termeni de folosire" -#: frontend/templates/page-place-ad-details-step.tpl.php:120 +#: frontend/templates/page-place-ad-details-step.tpl.php:126 msgctxt "listing details form" msgid "Preview Ad" msgstr "Previzualizare anunțuri" -#: frontend/templates/page-place-ad-details-step.tpl.php:122 +#: frontend/templates/page-place-ad-details-step.tpl.php:128 msgctxt "listing details form" msgid "Continue" msgstr "Continuă" @@ -10768,7 +11051,7 @@ msgctxt "place ad order step" msgid "Please select the owner for this Ad" msgstr "Vă rugăm să selectați proprietarul acestui anunț" -#: frontend/templates/page-place-ad-order-step.tpl.php:82 +#: frontend/templates/page-place-ad-order-step.tpl.php:84 msgctxt "listing order form" msgid "Continue" msgstr "Continuă" @@ -10779,26 +11062,12 @@ msgctxt "images upload step" msgid "Thumbnails of already uploaded images are shown below." msgstr "Imaginile miniatură ale imaginilor încărcate sunt arătate mai jos." -#: frontend/templates/page-renew-ad-order-step.tpl.php:6 -msgctxt "renew ad order step" -msgid "Select Payment Term" -msgstr "Selectați termenul de plată" - -#: frontend/templates/page-search-ads.tpl.php:88 +#: frontend/templates/page-search-ads.tpl.php:95 msgctxt "ad search form" msgid "Find Ads" msgstr "Găsire reclame" -#: frontend/templates/payments-billing-form.tpl.php:1 -msgctxt "awpcp billing form" -msgid "" -"Please fill in the billing information in the form below to place your " -"payment." -msgstr "" -"Vă rugăm să completați informațiile de plată în formularul de mai jos pentru " -"a efectua plată." - -#: frontend/templates/payments-checkout-page.tpl.php:13 +#: frontend/templates/payments-checkout-page.tpl.php:12 msgctxt "checkout step" msgid "" "You are about to pay for the following items. Please review the order and " @@ -10807,108 +11076,47 @@ msgstr "" "Veți plăti pentru următoarele anunțuri. Vă rugăm să revedeți comanda dvs. și " "să alegeți metoda de plată." -#: frontend/templates/payments-checkout-page.tpl.php:17 +#: frontend/templates/payments-checkout-page.tpl.php:16 msgctxt "checkout step" msgid "Payment Terms" msgstr "Termeni de plată" -#: frontend/templates/payments-checkout-page.tpl.php:23 +#: frontend/templates/payments-checkout-page.tpl.php:22 msgctxt "checkout step" msgid "Payment Method" msgstr "Metodă de plată" #: frontend/templates/payments-checkout-payment-page.tpl.php:8 -#: frontend/templates/payments-payment-page.tpl.php:3 msgctxt "checkout-payment page" msgid "You are about to pay for the following items." msgstr "Veți plăti pentru următoarele anunțuri." #: frontend/templates/payments-checkout-payment-page.tpl.php:10 -#: frontend/templates/payments-payment-page.tpl.php:5 msgctxt "checkout-payment page" msgid "Payment Terms" msgstr "Termeni de plată" -#: includes/payments-api.php:802 +#: includes/payments-api.php:889 msgctxt "checkout-payment page" msgid "Please use the button below to complete your payment." msgstr "Vă rugăm să folosiți butonul de mai jos pentru a completa plata dvs." -#: frontend/templates/payments-credit-plans-table.tpl.php:7 -msgctxt "credit plans table" -msgid "" -"You can additionally purchase a Credit Plan to add credit to your account. " -"If you select to pay using credits, the price of the selected payment term " -"will be deducted from your account balance after you have completed payment." -msgstr "" -"Suplimentar, puteți cumpăra un plan de credit pentru a adăuga credit în " -"contul dvs. Dacă selectați să plătiți folosind credit, prețul termenului de " -"plată selectat va fi dedus din balanța contului dvs. după ce ați efectuat " -"plata." - -#: frontend/templates/payments-credit-plans-table.tpl.php:51 -msgctxt "credit plans table" -msgid "clear selection" -msgstr "șterge selecție" - -#: includes/payments-api.php:722 -msgctxt "credit plans table" -msgid "Plan" -msgstr "Plan" - -#: includes/payments-api.php:723 -msgctxt "credit plans table" -msgid "Description" -msgstr "Descriere" - -#: includes/payments-api.php:724 -msgctxt "credit plans table" -msgid "Credits" -msgstr "Credite" - -#: includes/payments-api.php:725 -msgctxt "credit plans table" -msgid "Price" -msgstr "Preț" - -#: frontend/templates/payments-payment-completed-page.tpl.php:2 -msgctxt "payment completed page" -msgid "Transaction Details" -msgstr "Detalii tranzacție" - #: frontend/templates/payments-paypal-payment-button.tpl.php:27 msgctxt "paypal-checkout-form" msgid "Return to %s" msgstr "Înapoi la %s" -#: frontend/templates/payments-transaction-items-table.tpl.php:4 -#: frontend/templates/payments-transaction-items-table.tpl.php:13 -msgctxt "transaction items" -msgid "Item" -msgstr "Anunț" - -#: frontend/templates/payments-transaction-items-table.tpl.php:5 -#: frontend/templates/payments-transaction-items-table.tpl.php:17 -msgctxt "transaction items" -msgid "Amount" -msgstr "Preț" - -#: frontend/templates/payments-transaction-items-table.tpl.php:34 -msgctxt "transaction items" -msgid "Total Amount (credit)" -msgstr "Total cost (credit)" - #: frontend/templates/payments-transaction-items-table.tpl.php:40 msgctxt "transaction items" msgid "Total Amount" msgstr "Total cost" -#: functions.php:743 +#: functions.php:749 msgctxt "comma separated list of things" msgid "%s and %d more." msgstr "%s și %d mai multe." -#: functions.php:1200 +#: functions.php:1222 msgctxt "default blog title" msgid "Classifieds Website" msgstr "Website de anunțuri" @@ -11140,27 +11348,27 @@ msgctxt "listing status" msgid "Active" msgstr "Activă" -#: includes/admin/listings/class-listings-table-columns-handler.php:211 +#: includes/admin/listings/class-listings-table-columns-handler.php:212 msgctxt "listing status" msgid "Pending Approval" msgstr "În așteptare" -#: includes/admin/listings/class-listings-table-columns-handler.php:215 +#: includes/admin/listings/class-listings-table-columns-handler.php:217 msgctxt "listing status" msgid "Expired" msgstr "Expirat" -#: includes/admin/listings/class-listings-table-columns-handler.php:219 +#: includes/admin/listings/class-listings-table-columns-handler.php:222 msgctxt "listing status" msgid "Disabled" msgstr "Dezactivat" -#: includes/admin/listings/class-listings-table-columns-handler.php:223 +#: includes/admin/listings/class-listings-table-columns-handler.php:227 msgctxt "listing status" msgid "Pending Payment" msgstr "Plată în așteptare" -#: includes/admin/listings/class-listings-table-columns-handler.php:227 +#: includes/admin/listings/class-listings-table-columns-handler.php:232 msgctxt "listing status" msgid "Pending Verification" msgstr "Verificare în așteptare" @@ -11175,17 +11383,17 @@ msgctxt "listings row action" msgid "Quick View" msgstr "Vedere rapidă" -#: includes/class-awpcp.php:1458 +#: includes/class-awpcp.php:1449 msgctxt "[UI Datepicker] Display text for previous month link" msgid "<Prev" msgstr "<Înapoi" -#: includes/class-awpcp.php:1459 +#: includes/class-awpcp.php:1450 msgctxt "[UI Datepicker] Display text for next month link" msgid "Next>" msgstr "Înainte>" -#: includes/class-awpcp.php:1465 +#: includes/class-awpcp.php:1456 msgctxt "[UI Datepicker] The first day of the week, Sun = 0, Mon = 1, ..." msgid "0" msgstr "0" @@ -11238,7 +11446,7 @@ msgid "Regions" msgstr "Regiuni" #. translators: the numbers that need to be added up for the math challenge. -#: includes/frontend/class-default-captcha-provider.php:34 +#: includes/frontend/class-default-captcha-provider.php:45 msgctxt "CAPTCHA" msgid "Enter the value of the following sum: %1$d + %2$d" msgstr "Introduceți valoarea următoarei sume:% 1 $ d +% 2 $ d" @@ -11268,12 +11476,7 @@ msgctxt "order submit listing section" msgid "Please select a category for your ad" msgstr "Vă rugăm să selectați o categorie pentru anunțul dvs" -#: templates/frontend/order-submit-listing-section.tpl.php:44 -msgctxt "order submit listing section" -msgid "Who is the owner of this ad?" -msgstr "Cine este proprietarul acestui anunț?" - -#: templates/frontend/order-submit-listing-section.tpl.php:59 +#: templates/frontend/order-submit-listing-section.tpl.php:57 msgctxt "order submit listing section" msgid "" "Please select the duration and features that will be available for this ad" @@ -11281,70 +11484,65 @@ msgstr "" "Vă rugăm să selectați durata și caracteristicile care vor fi disponibile " "pentru acest anunț" -#: templates/frontend/order-submit-listing-section.tpl.php:81 +#: templates/frontend/order-submit-listing-section.tpl.php:77 msgctxt "order submit listing section" msgid "Continue" msgstr "Continuă" -#: templates/frontend/order-submit-listing-section.tpl.php:87 -msgctxt "order submit listing section" -msgid "Your ad will be posted on the following categories: {categories}." -msgstr "Anunțul va fi postat pe următoarele categorii: {categorii}." - -#: templates/frontend/order-submit-listing-section.tpl.php:95 +#: templates/frontend/order-submit-listing-section.tpl.php:98 msgctxt "order submit listing section" msgid "Credit Plan:" msgstr "Planul de credit:" -#: templates/frontend/order-submit-listing-section.tpl.php:96 +#: templates/frontend/order-submit-listing-section.tpl.php:99 msgctxt "order submit listing section" msgid "Owner:" msgstr "Proprietar:" -#: templates/frontend/order-submit-listing-section.tpl.php:99 +#: templates/frontend/order-submit-listing-section.tpl.php:102 msgctxt "order submit listing section" msgid "Loading ad fields" msgstr "Încărcarea câmpurilor publicitare" -#: templates/frontend/order-submit-listing-section.tpl.php:100 +#: templates/frontend/order-submit-listing-section.tpl.php:103 msgctxt "order submit listing section" msgid "Change selection" msgstr "Modificare selecție" -#: includes/frontend/class-recaptcha-v2.php:66 +#: includes/frontend/class-recaptcha-v2.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing" msgstr "Parametrul secret lipsește" -#: includes/frontend/class-recaptcha-v2.php:69 -#: includes/helpers/class-recaptcha-v3.php:74 +#: includes/frontend/class-recaptcha-v2.php:96 +#: includes/helpers/class-recaptcha-v3.php:96 msgctxt "recaptcha-error" msgid "The secret parameter is invalid or malformed." msgstr "Parametrul secret este incorect sau într-un format greșit." -#: includes/frontend/class-recaptcha-v2.php:72 +#: includes/frontend/class-recaptcha-v2.php:99 msgctxt "recaptcha-error" msgid "The response parameter is missing." msgstr "" "Parametrul de răspuns lipsește. Trebuie să bifați casuța \"I'm not a " "robot\" (Nu sunt un robot)." -#: includes/frontend/class-recaptcha-v2.php:76 +#: includes/frontend/class-recaptcha-v2.php:103 msgctxt "recaptcha-error" msgid "The response parameter is invalid or malformed." msgstr "Parametrul de răspuns este incorect sau într-un format greșit." -#: includes/helpers/class-recaptcha-v3.php:71 +#: includes/helpers/class-recaptcha-v3.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing." msgstr "Parametrul secret lipsește." -#: includes/helpers/class-recaptcha-v3.php:77 +#: includes/helpers/class-recaptcha-v3.php:99 msgctxt "recaptcha-error" msgid "reCAPTCHA score was not included." msgstr "scorul reCAPTCHA nu a fost inclus." -#: includes/helpers/class-recaptcha-v3.php:81 +#: includes/helpers/class-recaptcha-v3.php:103 msgctxt "recaptcha-error" msgid "reCAPTCHA couldn't analyze the current interaction." msgstr "reCAPTCHA nu a putut analiza interacțiunea curentă." @@ -11482,7 +11680,7 @@ msgid "remaining" msgstr "rămase" #. translators: %s is the type of region. -#: includes/helpers/widgets/multiple-region-selector.php:122 +#: includes/helpers/widgets/multiple-region-selector.php:142 msgctxt "Select in Multiple Region Selector" msgid "Select %s" msgstr "Selectați %s" @@ -11505,7 +11703,7 @@ msgid "Add New" msgstr "Adaugă nou" #: includes/models/class-custom-post-types.php:157 -#: includes/settings/class-listings-settings.php:595 +#: includes/settings/class-listings-settings.php:597 msgctxt "listing post type slug" msgid "classifieds" msgstr "anunturi" @@ -11525,7 +11723,7 @@ msgctxt "payment gateways" msgid "2Checkout" msgstr "2Checkout" -#: includes/payment-gateway-paypal-standard.php:24 +#: includes/payment-gateway-paypal-standard.php:26 msgctxt "payment gateways" msgid "PayPal" msgstr "PayPal" @@ -11567,57 +11765,77 @@ msgstr[0] "An" msgstr[1] "Ani" msgstr[2] "Ani" -#: includes/payment-terms-table.php:33 +#: includes/payment-terms-table.php:38 msgctxt "place ad payment terms column headers" msgid "Payment Term" msgstr "Termen de plată" -#: includes/payment-terms-table.php:34 +#: includes/payment-terms-table.php:39 msgctxt "place ad payment terms column headers" msgid "Ads Allowed" msgstr "Anunțuri permise" -#: includes/payment-terms-table.php:35 +#: includes/payment-terms-table.php:40 msgctxt "place ad payment terms column headers" msgid "Images Allowed" msgstr "Imagini permise" -#: includes/payment-terms-table.php:36 +#: includes/payment-terms-table.php:41 msgctxt "place ad payment terms column headers" msgid "Characters in Title" msgstr "Caractere în titlu" -#: includes/payment-terms-table.php:37 +#: includes/payment-terms-table.php:42 msgctxt "place ad payment terms column headers" msgid "Chars in Description" msgstr "Caractere in Descriere" -#: includes/payment-terms-table.php:38 +#: includes/payment-terms-table.php:43 msgctxt "place ad payment terms column headers" msgid "Duration" msgstr "Durată" -#: includes/payment-terms-table.php:44 +#: includes/payment-terms-table.php:49 msgctxt "place ad payment terms column headers" msgid "Price (currency)" msgstr "Preț (valută)" -#: includes/payment-terms-table.php:49 +#: includes/payment-terms-table.php:54 msgctxt "place ad payment terms column headers" msgid "Price (credits)" msgstr "Preț (credite)" -#: includes/payment-terms-table.php:106 includes/payment-terms-table.php:111 +#: includes/payment-terms-table.php:139 includes/payment-terms-table.php:145 msgctxt "payment term duration" msgid "No Limit" msgstr "Nici o limită" -#: includes/settings/class-email-settings.php:135 +#: includes/payments-api.php:757 +msgctxt "credit plans table" +msgid "Plan" +msgstr "Plan" + +#: includes/payments-api.php:758 +msgctxt "credit plans table" +msgid "Description" +msgstr "Descriere" + +#: includes/payments-api.php:759 +msgctxt "credit plans table" +msgid "Credits" +msgstr "Credite" + +#: includes/payments-api.php:760 +msgctxt "credit plans table" +msgid "Price" +msgstr "Preț" + +#: includes/settings/class-email-settings.php:137 msgctxt "reply to ad email" msgid "Response to your classified ad: {listing_title}" msgstr "Răspuns la reclama ta clasificată: {listing_title}" -#: includes/settings/class-email-settings.php:136 +#: includes/settings/class-email-settings.php:138 msgctxt "reply to ad email" msgid "" "Someone has responded to your classified ad.\n" @@ -11650,12 +11868,12 @@ msgstr "" "{website_title}\n" "{website_url}" -#: includes/settings/class-email-settings.php:161 +#: includes/settings/class-email-settings.php:163 msgctxt "reply to ad email" msgid "Notification about a response regarding ad: {listing_title}" msgstr "Notificarea despre un răspuns cu privire la anunț: {listing_title}" -#: includes/settings/class-email-settings.php:162 +#: includes/settings/class-email-settings.php:164 msgctxt "reply to ad email" msgid "" "Someone has responded to one of the classified ads on your website.\n" @@ -11689,12 +11907,12 @@ msgstr "" "{website_title}\n" "{website_url}" -#: installer.php:833 +#: installer.php:318 msgctxt "reply to ad email" msgid "{__previous_subject__} regarding: {listing_title}" msgstr "{_ _ previous_subject_} cu privire la: {listing_title}" -#: installer.php:834 +#: installer.php:319 msgctxt "reply to ad email" msgid "" "{__previous_body__}\n" @@ -11793,17 +12011,6 @@ msgid "Uncheck to show prices without decimals. The value will be rounded." msgstr "" "Debifați pentru a afișa prețurile fără zecimale. Valoarea va fi rotunjită." -#: includes/settings/class-licenses-settings.php:81 -msgctxt "settings" -msgid "" -"The IP address of your server is . Please make sure to include " -"that information if you need to contact support about problems trying to " -"activate your licenses." -msgstr "" -"Adresa IP a serverului este . Asigurați-vă că includeți aceste " -"informații dacă trebuie să contactați asistența cu privire la problemele " -"care încearcă să vă activeze licențele.." - #: includes/settings/class-payment-general-settings.php:100 msgctxt "settings" msgid "Pay before entering Ad details" @@ -11843,7 +12050,7 @@ msgstr "" "Aceste setări afectează titul arătat în bara de titlu a browser-ului pentru " "anunț. Puteți include sau exclude anumite elemente dacă doriți aceasta." -#: includes/settings/class-listings-settings.php:599 +#: includes/settings/class-listings-settings.php:601 msgctxt "listing url settings section" msgid "" "These settings affect the URL path shown for listings. You can include or " @@ -11852,9 +12059,11 @@ msgstr "" "Aceste setări afectează calea URL afișată pentru listări. Puteți include sau " "elimina elemente pentru scopuri SEO." -#: includes/settings/class-listings-settings.php:605 +#. translators: %s: example URL +#: includes/settings/class-listings-settings.php:610 +#, fuzzy msgctxt "listing url settings section" -msgid "Example path: ." +msgid "Example path: %s." msgstr "Exemplu de cale: ." #: includes/settings/renderers/class-wordpress-page-settings-renderer.php:27 @@ -11862,10 +12071,12 @@ msgctxt "page settings" msgid "— Select —" msgstr "— Selecteaza —" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:40 +#. translators: %1$s is a dropdown with existing pages, %2$s is a link to +#. create a new page +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:34 msgctxt "page settings" -msgid "Select existing page {dropdown} -or- {create_page_button}" -msgstr "Selectați pagina existentă {dropdown}-sau-{create_page_button}" +msgid "Select existing page %1$s -or- %2$s" +msgstr "" #. translators: %1$s the success message, %2$s the error message #: includes/views/admin/listings/class-listing-action-admin-page.php:22 @@ -11885,13 +12096,15 @@ msgstr "" "suficient spațiu-disc liber și memorie disponibilă pentru PHP. Verificați " "jurnalele de eroare pentru detalii." -#: templates/admin/export-listings-admin-page.tpl.php:25 +#. translators: %1$s: memory_limit link, %2$s: max_execution_time link +#: templates/admin/export-listings-admin-page.tpl.php:27 +#, fuzzy msgctxt "listings-csv-export" msgid "" "Please note that the export process is a resource intensive task. If your " "export does not succeed try disabling other plugins first and/or increasing " -"the values of the 'memory_limit' and 'max_execution_time' directives in your " -"server's php.ini configuration file." +"the values of the %1$s and %2$s directives in your server php.ini " +"configuration file." msgstr "" "Vă rugăm să rețineți că procesul de export este o sarcină intensivă de " "resurse. Dacă exportul nu reușește încercați dezactivarea alte plugin-uri în " @@ -11899,47 +12112,47 @@ msgstr "" "\"max_execution_time\" directivele în fișierul de configurare PHP. ini " "server." -#: templates/admin/export-listings-admin-page.tpl.php:44 +#: templates/admin/export-listings-admin-page.tpl.php:39 msgctxt "listings-csv-export" msgid "Export Configuration" msgstr "Exporteaza configuratia" -#: templates/admin/export-listings-admin-page.tpl.php:47 +#: templates/admin/export-listings-admin-page.tpl.php:42 msgctxt "listings-csv-export" msgid "Export settings" msgstr "Setările de export" -#: templates/admin/export-listings-admin-page.tpl.php:51 +#: templates/admin/export-listings-admin-page.tpl.php:46 msgctxt "listings-csv-export" msgid "Which listings to export?" msgstr "Ce listări să exporte?" -#: templates/admin/export-listings-admin-page.tpl.php:55 +#: templates/admin/export-listings-admin-page.tpl.php:50 msgctxt "listings-csv-export" msgid "All" msgstr "Tot" -#: templates/admin/export-listings-admin-page.tpl.php:56 +#: templates/admin/export-listings-admin-page.tpl.php:51 msgctxt "listings-csv-export" msgid "Active Only" msgstr "Numai activ" -#: templates/admin/export-listings-admin-page.tpl.php:57 +#: templates/admin/export-listings-admin-page.tpl.php:52 msgctxt "listings-csv-export" msgid "Active + Pending Renewal" msgstr "Activ + reînnoire în așteptare" -#: templates/admin/export-listings-admin-page.tpl.php:63 +#: templates/admin/export-listings-admin-page.tpl.php:58 msgctxt "listings-csv-export" msgid "Export images?" msgstr "Exportul imaginilor?" -#: templates/admin/export-listings-admin-page.tpl.php:68 +#: templates/admin/export-listings-admin-page.tpl.php:63 msgctxt "listings-csv-export" msgid "Export images" msgstr "Exportul imaginilor" -#: templates/admin/export-listings-admin-page.tpl.php:71 +#: templates/admin/export-listings-admin-page.tpl.php:66 msgctxt "listings-csv-export" msgid "" "When checked, instead of just a CSV file a ZIP file will be generated with " @@ -11948,17 +12161,17 @@ msgstr "" "Când este bifată, în loc de doar un fișier CSV, va fi generat un fișier ZIP " "atât cu un fișier CSV, cât și cu afișarea imaginilor." -#: templates/admin/export-listings-admin-page.tpl.php:77 +#: templates/admin/export-listings-admin-page.tpl.php:72 msgctxt "listings-csv-export" msgid "Additional metadata to export:" msgstr "Metadate suplimentare de exportat:" -#: templates/admin/export-listings-admin-page.tpl.php:82 +#: templates/admin/export-listings-admin-page.tpl.php:77 msgctxt "listings-csv-export" msgid "Include unique IDs for each listing (sequence_id column)." msgstr "Includeți ID-uri unice pentru fiecare listare (sequence_id Column)." -#: templates/admin/export-listings-admin-page.tpl.php:85 +#: templates/admin/export-listings-admin-page.tpl.php:80 msgctxt "listings-csv-export" msgid "" "If you plan to re-import the listings into AWPCP and don't want new ones " @@ -11967,69 +12180,64 @@ msgstr "" "Dacă intenționați să re-import listări în AWPCP și nu doresc cele noi " "create, selectați această opțiune!" -#: templates/admin/export-listings-admin-page.tpl.php:90 +#: templates/admin/export-listings-admin-page.tpl.php:85 msgctxt "listings-csv-export" msgid "Author information (username)" msgstr "Informații autor (nume de utilizator)" -#: templates/admin/export-listings-admin-page.tpl.php:96 +#: templates/admin/export-listings-admin-page.tpl.php:91 msgctxt "listings-csv-export" msgid "CSV File Settings" msgstr "Setări fișier CSV" -#: templates/admin/export-listings-admin-page.tpl.php:100 +#: templates/admin/export-listings-admin-page.tpl.php:95 msgctxt "listings-csv-export" msgid "Image Separator" msgstr "Separator imagine" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "Category Separator" msgstr "Separator Categorie" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "required" msgstr "obligatoriu" -#: templates/admin/export-listings-admin-page.tpl.php:118 +#: templates/admin/export-listings-admin-page.tpl.php:113 msgctxt "listings-csv-export" msgid "Export Listings" msgstr "Export listări" -#: templates/admin/export-listings-admin-page.tpl.php:124 +#: templates/admin/export-listings-admin-page.tpl.php:119 msgctxt "listings-csv-export" msgid "Export in Progress..." msgstr "Export în Progress..." -#: templates/admin/export-listings-admin-page.tpl.php:125 +#: templates/admin/export-listings-admin-page.tpl.php:120 msgctxt "listings-csv-export" msgid "" "Your export file is being prepared. Please do not leave this page until the " "export finishes." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:128 +#: templates/admin/export-listings-admin-page.tpl.php:123 msgctxt "listings-csv-export" msgid "No. of listings:" msgstr "Importă anunțuri:" -#: templates/admin/export-listings-admin-page.tpl.php:130 +#: templates/admin/export-listings-admin-page.tpl.php:125 msgctxt "listings-csv-export" msgid "Approximate export file size:" msgstr "Dimensiune aproximativă a fișierului de export:" -#: templates/admin/export-listings-admin-page.tpl.php:137 +#: templates/admin/export-listings-admin-page.tpl.php:132 msgctxt "listings-csv-export" msgid "Cancel Export" msgstr "Revocare export" -#: templates/admin/export-listings-admin-page.tpl.php:142 -msgctxt "listings-csv-export" -msgid "Export Complete" -msgstr "Export terminat" - -#: templates/admin/export-listings-admin-page.tpl.php:143 +#: templates/admin/export-listings-admin-page.tpl.php:138 msgctxt "listings-csv-export" msgid "" "Your export file has been successfully created and it is now ready for " @@ -12038,32 +12246,27 @@ msgstr "" "Fișierul de export a fost creat cu succes și acum este gata de descărcare." #. translators: %1$s filename %2$s filesize. -#: templates/admin/export-listings-admin-page.tpl.php:149 +#: templates/admin/export-listings-admin-page.tpl.php:144 msgctxt "listings-csv-export" msgid "Download %1$s (%2$s)" msgstr "Descărcare%1$s (%2$s)" -#: templates/admin/export-listings-admin-page.tpl.php:160 +#: templates/admin/export-listings-admin-page.tpl.php:155 msgctxt "listings-csv-export" msgid "Cleanup" msgstr "Curăţire" -#: templates/admin/export-listings-admin-page.tpl.php:165 -msgctxt "listings-csv-export" -msgid "Export Canceled" -msgstr "Exportul a fost anulat" - -#: templates/admin/export-listings-admin-page.tpl.php:166 +#: templates/admin/export-listings-admin-page.tpl.php:161 msgctxt "listings-csv-export" msgid "The export has been canceled." msgstr "Exportul a fost anulat." -#: templates/admin/export-listings-admin-page.tpl.php:167 +#: templates/admin/export-listings-admin-page.tpl.php:162 msgctxt "listings-csv-export" msgid "← Return to CSV Export" msgstr "← Întoarcere la export CSV" -#: templates/admin/export-listings-admin-page.tpl.php:101 +#: templates/admin/export-listings-admin-page.tpl.php:96 msgctxt "admin forms" msgid "required" msgstr "obligatoriu" @@ -12115,43 +12318,6 @@ msgctxt "The 'or' after 'Drop files here to upload' in Media Uploader" msgid "or" msgstr "sau" -#: templates/email/listing-media-upload-notification.plain.tpl.php:1 -msgctxt "listing media uploaded notification" -msgid "Hello," -msgstr "Bună," - -#: templates/email/listing-media-upload-notification.plain.tpl.php:5 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\":" -msgstr "" -"Următoarele fișiere media au fost recent încărcate la anunțul \"\":" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:16 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\" and are awaiting approval:" -msgstr "" -"Următoarele fișiere media au fost recent încărcate la anunțul \"\" și așteaptă aprobarea:" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:26 -msgctxt "listing media uploaded notification" -msgid "" -"Click here to manage media uploaded to the listing: ." -msgstr "" -"Dați click aici pentru a administra fișierele media ale anunțului: ." - -#: templates/email/listing-media-upload-notification.plain.tpl.php:31 -msgctxt "listing media uploaded notification" -msgid "Click here to view the listing: ." -msgstr "Click aici pentru a vedea anunțul: ." - #: templates/frontend/actions-submit-listing-section.tpl.php:7 msgctxt "actions submit listing section" msgid "Actions" @@ -12187,147 +12353,75 @@ msgctxt "upload media submit listing section" msgid "Loading..." msgstr "Încarcă..." -#: templates/privacy-policy.tpl.php:10 -msgctxt "privacy policy" -msgid "" -"When you submit a classified listing, the content of the listing and its " -"metadata are retained indefinitely. All users can see, edit or delete the " -"personal information included on their listings at any time. Website " -"administrators can also see and edit that information." -msgstr "" -"Când trimiteți o listă clasificată, conținutul listei și metadatele sale " -"sunt păstrate pe termen nelimitat. Toți utilizatorii pot vedea, edita sau " -"șterge informațiile personale incluse în listele lor în orice moment. " -"Administratorii de site-uri web pot vedea și edita informațiile respective." +#~ msgid "Duration: " +#~ msgstr "Durată " -#: templates/privacy-policy.tpl.php:12 -msgctxt "privacy policy" -msgid "" -"Website visitors can see the contact name, website URL, phone number, " -"address and other information included in your submission to describe the " -"classified listing." -msgstr "" -"Vizitatorii site-ului pot vedea numele contactului, URL-ul site-ului, " -"numărul de telefon, adresa și alte informații incluse în prezentarea " -"dumneavoastră pentru a descrie lista clasificată." +#~ msgid "# of images: " +#~ msgstr "Număr imagini: " -#: templates/privacy-policy.tpl.php:14 -msgctxt "privacy policy" -msgid "" -"Contact name, email address, website URL and content of submitted classified " -"listings may be checked through Akismet's spam detection service. The " -"Akismet service privacy policy is available here." -msgstr "" -"Numele contactului, adresa de e-mail, URL-ul site-ului web și conținutul " -"listelor clasificate trimise pot fi verificate prin serviciul de detectare a " -"mesajelor spam de la Akismet. Politica de confidențialitate Akismet service " -"este disponibilă aici." +#~ msgid "Chars in title: " +#~ msgstr "Caractere în titlu: " -#: templates/privacy-policy.tpl.php:16 -msgctxt "privacy policy" -msgid "Payment Information" -msgstr "Informaţii plată" +#~ msgid "Chars in description: " +#~ msgstr "Caractere în descriere: " -#: templates/privacy-policy.tpl.php:18 -msgctxt "privacy policy" -msgid "" -"If you pay to post a classified listing entering your credit card and " -"billing information directly on {home_url}, the " -"credit card information won't be stored but it will be shared through a " -"secure connection with the following payment gateways to process the payment:" -msgstr "" -"În cazul în care plătiți pentru a posta o listă clasificată care introduce " -"informațiile cardului de credit și de facturare direct pe {home_url}, informațiile cardului de credit nu vor " -"fi stocate, dar vor fi partajate printr-o conexiune securizată cu " -"următoarele gateway-uri de plată pentru a procesa plata:" +#~ msgid "Documentation" +#~ msgstr "Documentație" -#: templates/privacy-policy.tpl.php:21 -msgctxt "privacy policy" -msgid "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -msgstr "" -"PayPal- https://www.PayPal.com/webapps/MPP/UA/Privacy-Full" +#~ msgid "Status: " +#~ msgstr "Stare: " -#: templates/privacy-policy.tpl.php:22 -msgctxt "privacy policy" -msgid "" -"Authorize.Net — https://www.authorize.net/company/privacy/" -msgstr "" -"Authorize.Net — https://www.authorize.net/Company/Privacy/" +#~ msgctxt "debug page" +#~ msgid "PHP Version" +#~ msgstr "Versiune PHP" -#: templates/privacy-policy.tpl.php:23 -msgctxt "privacy policy" -msgid "" -"Stripe — https://stripe.com/" -"us/privacy/" -msgstr "" -"Dungi — https://Stripe.com/us/" -"Privacy/" +#~ msgctxt "Browse the Quick Start Guide" +#~ msgid "Browse the %s." +#~ msgstr "Explorați %s." -#: templates/privacy-policy.tpl.php:26 -msgctxt "privacy policy" -msgid "Regions" -msgstr "Regiuni" +#~ msgctxt "place ad checkout step" +#~ msgid "Complete Payment" +#~ msgstr "Efectuează plata" -#: templates/privacy-policy.tpl.php:28 -msgctxt "privacy policy" -msgid "" -"If you choose to see listings published on a specific region, a cookie will " -"be stored on your browser for the remainder of the session to remember the " -"selected region." -msgstr "" -"Dacă alegeți să vedeți listări publicate într-o anumită regiune, un cookie " -"va fi stocat în browserul dumneavoastră pentru ca restul sesiunii să " -"memorați regiunea selectată." +#~ msgctxt "transaction items" +#~ msgid "Amount" +#~ msgstr "Preț" -#: templates/privacy-policy.tpl.php:30 -msgctxt "privacy policy" -msgid "Comments and Ratings" -msgstr "Comentarii și evaluări" +#~ msgctxt "page settings" +#~ msgid "Select existing page {dropdown} -or- {create_page_button}" +#~ msgstr "Selectați pagina existentă {dropdown}-sau-{create_page_button}" -#: templates/privacy-policy.tpl.php:32 -msgctxt "privacy policy" -msgid "" -"When visitors leave comments and reviews for classified listings we collect " -"the data shown in the comments form, and also the visitor’s IP address to " -"help spam detection." -msgstr "" -"Când vizitatorii lasă comentarii și recenzii pentru listări clasificate " -"colectăm datele afișate în formularul de comentarii și, de asemenea, adresa " -"IP a vizitatorului pentru a ajuta la detectarea spamului." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgstr "" +#~ "PayPal- https://www.PayPal.com/webapps/MPP/UA/Privacy-Full" -#: templates/privacy-policy.tpl.php:34 -msgctxt "privacy policy" -msgid "" -"Visitor comments may be checked through Akismet's spam detection service. " -"The Akismet service privacy policy is available here." -msgstr "" -"Comentariile vizitatorilor pot fi verificate prin serviciul de detectare a " -"spamului Akismet. Politica de confidențialitate Akismet service este " -"disponibilă aici." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgstr "" +#~ "Authorize.Net — https://www.authorize.net/Company/Privacy/" -#: templates/privacy-policy.tpl.php:36 -msgctxt "privacy policy" -msgid "Restricted Categories" -msgstr "Categorii restricționate" +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Stripe — https://stripe." +#~ "com/us/privacy/" +#~ msgstr "" +#~ "Dungi — https://Stripe.com/us/" +#~ "Privacy/" -#: templates/privacy-policy.tpl.php:38 -msgctxt "privacy policy" -msgid "" -"When you agree to see listings or publish a listing on a restricted " -"category, a cookie will be stored in your browser to remember your decision. " -"The cookie will be stored on your browser for the remainder of that session." -msgstr "" -"Când sunteți de acord să vedeți listări sau să publicați o listare pe o " -"categorie restrânsă, un cookie va fi stocat în browser pentru a vă aminti " -"decizia. Modulul cookie va fi stocat în browserul tău pentru restul sesiunii." +#~ msgctxt "privacy policy" +#~ msgid "Regions" +#~ msgstr "Regiuni" + +#~ msgctxt "privacy policy" +#~ msgid "Restricted Categories" +#~ msgstr "Categorii restricționate" #~ msgid "AWPCP" #~ msgstr "AWPCP" @@ -12409,9 +12503,6 @@ msgstr "" #~ msgid "PayFast" #~ msgstr "PayFast" -#~ msgid "Restricted Categories" -#~ msgstr "Categorii restricționate" - #~ msgid "The number of regions allowed must be equal or greater than zero." #~ msgstr "" #~ "Numărul de regiuni permise trebuie să fie mai mare sau egal cu zero." diff --git a/languages/another-wordpress-classifieds-plugin-ru_RU.mo b/languages/another-wordpress-classifieds-plugin-ru_RU.mo index 687081ab4..e356263f0 100644 Binary files a/languages/another-wordpress-classifieds-plugin-ru_RU.mo and b/languages/another-wordpress-classifieds-plugin-ru_RU.mo differ diff --git a/languages/another-wordpress-classifieds-plugin-ru_RU.po b/languages/another-wordpress-classifieds-plugin-ru_RU.po index e47270eaf..b7fff3bde 100644 --- a/languages/another-wordpress-classifieds-plugin-ru_RU.po +++ b/languages/another-wordpress-classifieds-plugin-ru_RU.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: Another WordPress Classifieds Plugin\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/another-wordpress-" "classifieds-plugin\n" -"POT-Creation-Date: 2024-03-20 20:22:37+00:00\n" +"POT-Creation-Date: 2024-06-13 20:37:03+00:00\n" "PO-Revision-Date: 2020-10-15 19:51+0000\n" "Last-Translator: Diego Giraldo \n" "Language-Team: Russian (Russia) (http://www.transifex.com/wp-translations/" @@ -32,21 +32,21 @@ msgstr "" #: admin/fees/class-fee-details-form.php:39 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:9 #: includes/settings/class-payment-general-settings.php:60 -#: templates/admin/manage-categories-admin-page.tpl.php:31 +#: templates/admin/manage-categories-admin-page.tpl.php:32 msgid "Name" msgstr "Имя" #: admin/admin-panel-credit-plans-table.php:80 #: admin/fees/class-fee-details-form.php:45 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:25 -#: templates/admin/manage-categories-admin-page.tpl.php:36 +#: templates/admin/manage-categories-admin-page.tpl.php:37 msgid "Description" msgstr "Описание" #: admin/admin-panel-credit-plans-table.php:81 #: admin/admin-panel-fees-table.php:121 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:14 -#: includes/settings/class-payment-general-settings.php:270 +#: includes/settings/class-payment-general-settings.php:272 msgid "Credits" msgstr "Кредиты" @@ -55,7 +55,7 @@ msgstr "Кредиты" #: admin/fees/class-fee-details-form.php:222 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:19 #: frontend/placeholders.php:514 -#: includes/settings/class-display-settings.php:483 +#: includes/settings/class-display-settings.php:482 #: includes/settings/class-payment-general-settings.php:61 msgid "Price" msgstr "Цена" @@ -81,25 +81,29 @@ msgstr "Личное" msgid " " msgstr "" -#: admin/admin-panel-fees-table.php:196 -msgid "Duration: " -msgstr "Длительность: " +#: admin/admin-panel-fees-table.php:197 +#, fuzzy +msgid "Duration: %s" +msgstr "Срок" -#: admin/admin-panel-fees-table.php:206 -msgid "# of images: " -msgstr "# изображений: " +#: admin/admin-panel-fees-table.php:207 +#, fuzzy +msgid "# of images: %s" +msgstr "# изображений:" #: admin/admin-panel-fees-table.php:219 admin/admin-panel-fees-table.php:235 msgid "unlimited" msgstr "неограниченно" -#: admin/admin-panel-fees-table.php:222 -msgid "Chars in title: " -msgstr "" +#: admin/admin-panel-fees-table.php:223 +#, fuzzy +msgid "Chars in title: %s" +msgstr "Символы в заголовке:" -#: admin/admin-panel-fees-table.php:238 -msgid "Chars in description: " -msgstr "" +#: admin/admin-panel-fees-table.php:239 +#, fuzzy +msgid "Chars in description: %s" +msgstr "Описание (символов)" #: admin/admin-panel-fees-table.php:265 admin/admin-panel-fees-table.php:269 #: templates/admin/import/supported-csv-headers.tpl.php:31 @@ -131,7 +135,7 @@ msgstr "Указанный пользователь не существует." msgid "Manual Upgrade" msgstr "Ручное обновление" -#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:799 +#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:783 #: includes/models/class-custom-post-types.php:97 #: includes/models/class-custom-post-types.php:99 #: includes/settings/class-listings-settings.php:30 @@ -147,20 +151,20 @@ msgid "Dashboard" msgstr "Панель управления" #: admin/admin-panel.php:140 admin/admin-panel.php:141 -#: admin/admin-panel.php:509 +#: admin/admin-panel.php:492 msgid "Settings" msgstr "Настройки" #: admin/admin-panel.php:154 -#: templates/admin/main-classifieds-admin-page.tpl.php:86 -#: templates/admin/main-classifieds-admin-page.tpl.php:111 +#: templates/admin/main-classifieds-admin-page.tpl.php:88 +#: templates/admin/main-classifieds-admin-page.tpl.php:116 msgid "Manage Categories" msgstr "Управление категориями" #: admin/admin-panel.php:203 admin/admin-panel.php:204 #: admin/form-fields/class-form-fields-admin-page.php:12 -#: includes/settings/class-display-settings.php:298 -#: includes/settings/class-display-settings.php:438 +#: includes/settings/class-display-settings.php:297 +#: includes/settings/class-display-settings.php:437 msgid "Form Fields" msgstr "Поля форм" @@ -193,7 +197,7 @@ msgstr "Импорт & Экспорт" msgid "Debug" msgstr "Отладка" -#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:24 +#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:38 msgid "Debug Information" msgstr "Отладочная информация" @@ -202,18 +206,18 @@ msgid "Uninstall" msgstr "Удалить" #: admin/admin-panel.php:354 admin/admin-panel.php:355 -#: admin/admin-panel.php:826 frontend/templates/page-renew-ad.tpl.php:3 +#: admin/admin-panel.php:810 frontend/templates/page-renew-ad.tpl.php:3 #: includes/admin/class-admin-container-configuration.php:175 msgid "Renew Ad" msgstr "Возобновить объявление" -#: admin/admin-panel.php:427 +#: admin/admin-panel.php:417 msgid "" "Use the Account Balance column on the table below to manage credit balance " "for users." msgstr "" -#: admin/admin-panel.php:446 +#: admin/admin-panel.php:436 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing." @@ -221,7 +225,7 @@ msgstr "" "Функции AWPCP в настоящее время отключены, так как плагин нужно обновить " "вручную, прежде чем продолжить." -#: admin/admin-panel.php:447 +#: admin/admin-panel.php:437 msgid "" "The duration for this upgrade operation varies between several minutes and a " "few hours, depending on the size of your database, the current network " @@ -233,7 +237,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the page explaining how #. to downgrade to a previous version of the plugin, %2$s is the closing tag #. for the link. -#: admin/admin-panel.php:450 +#: admin/admin-panel.php:440 msgid "" "If this is not a good time to go through the upgrade process, we recommend " "you to %1$sinstall the previous version again%2$s and plan to upgrade " @@ -242,7 +246,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:456 +#: admin/admin-panel.php:446 msgid "" "To upgrade, please %1$sgo to the Classifieds admin section%2$s or click the " "button below." @@ -250,7 +254,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:466 +#: admin/admin-panel.php:456 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing. Please %1$sgo to the Classifieds " @@ -259,7 +263,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:488 +#: admin/admin-panel.php:471 msgid "" "AWPCP needs you to perform a manual upgrade to update the database schema " "and the information stored there. All plugin features will continue to work " @@ -267,7 +271,7 @@ msgid "" "admin section to Upgrade%2$s or click the button below." msgstr "" -#: admin/admin-panel.php:562 +#: admin/admin-panel.php:545 msgid "" "Page %1$s has the same URL as the %2$s from AWPCP. The WordPress page %1$s " "is going to be unreachable until this changes." @@ -279,7 +283,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/admin-panel.php:570 +#: admin/admin-panel.php:553 msgid "" "The %1$s is dynamic; you don't need to create a real WordPress page to show " "the list of categories, the plugin will generate it for you. If the " @@ -297,71 +301,74 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/admin-panel.php:765 admin/class-categories-admin-page.php:60 +#: admin/admin-panel.php:749 admin/class-categories-admin-page.php:60 #: admin/class-categories-admin-page.php:64 msgid "Manage Category Icon" msgstr "Управление иконками категорий" -#: admin/admin-panel.php:770 admin/class-categories-admin-page.php:35 +#: admin/admin-panel.php:754 admin/class-categories-admin-page.php:35 #: admin/class-categories-admin-page.php:39 #: admin/class-categories-admin-page.php:133 msgid "Edit Category" msgstr "Редактировать категорию" -#: admin/admin-panel.php:771 admin/class-categories-admin-page.php:46 +#: admin/admin-panel.php:755 admin/class-categories-admin-page.php:46 #: admin/class-categories-admin-page.php:50 msgid "Delete Category" msgstr "Удалить категорию" -#: admin/admin-panel.php:776 +#: admin/admin-panel.php:760 msgid "Select {category_name}" msgstr "Выбрать {category_name}" -#: admin/admin-panel.php:814 frontend/page-reply-to-ad.php:11 +#: admin/admin-panel.php:798 frontend/page-reply-to-ad.php:11 msgid "Reply to Ad" msgstr "Ответить на объявление" -#: admin/admin-panel.php:822 admin/templates/admin-panel-listings.tpl.php:5 +#: admin/admin-panel.php:806 admin/templates/admin-panel-listings.tpl.php:5 msgid "Place Ad" msgstr "Разместить объявление" -#: admin/admin-panel.php:830 frontend/page-browse-ads.php:9 +#: admin/admin-panel.php:814 frontend/page-browse-ads.php:9 msgid "Browse Ads" msgstr "Просмотр объявлений" -#: admin/admin-panel.php:834 admin/templates/admin-panel-listings.tpl.php:11 +#: admin/admin-panel.php:818 admin/templates/admin-panel-listings.tpl.php:20 #: frontend/page-search-ads.php:9 msgid "Search Ads" msgstr "Искать объявления" -#: admin/categories/class-create-category-admin-page.php:38 -#: admin/categories/class-delete-categories-admin-page.php:55 -#: admin/categories/class-delete-category-admin-page.php:68 -#: admin/categories/class-move-categories-admin-page.php:54 -#: admin/categories/class-update-category-admin-page.php:50 +#: admin/categories/class-create-category-admin-page.php:39 +#: admin/categories/class-delete-categories-admin-page.php:57 +#: admin/categories/class-delete-category-admin-page.php:69 +#: admin/categories/class-move-categories-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:51 msgid "invalid nonce" msgstr "" -#: admin/categories/class-create-category-admin-page.php:42 +#: admin/categories/class-create-category-admin-page.php:43 msgid "The new category was successfully added." msgstr "Новая категория была успешно добавлена." -#: admin/categories/class-delete-categories-admin-page.php:61 +#: admin/categories/class-delete-categories-admin-page.php:64 +#, fuzzy msgid "" "The categories couldn't be deleted because there was an error trying to load " -"the categoery that you selecetd to become the new category associated to " -"affected ads. " +"the categoery that you selected to become the new category associated to " +"affected ads. %s" msgstr "" +"Категории не удалось переместить, т.к. произошла ошибка при загрузке целевой " +"категории. " -#: admin/categories/class-delete-categories-admin-page.php:71 +#: admin/categories/class-delete-categories-admin-page.php:75 msgid "The selected categories have been deleted." msgstr "Выбранные категории были удалены." -#: admin/categories/class-delete-categories-admin-page.php:76 +#: admin/categories/class-delete-categories-admin-page.php:80 msgid "There was an error trying to delete the selected categories." msgstr "Возникла ошибка при удалении выбранных категорий." -#: admin/categories/class-delete-categories-admin-page.php:80 +#: admin/categories/class-delete-categories-admin-page.php:84 msgid "" " (out of ) categories were deleted. " "However, there was an error trying to delete the other " "категорий." -#: admin/categories/class-delete-category-admin-page.php:41 +#: admin/categories/class-delete-category-admin-page.php:42 msgid "The category you are trying to delete doesn't exist." msgstr "Категория, которую вы пытаетесь удалить, не существует." -#: admin/categories/class-delete-category-admin-page.php:53 +#: admin/categories/class-delete-category-admin-page.php:54 msgid "There was an error trying to delete the category. " msgstr "Возникла ошибка при попытке удаления этой категории. " -#: admin/categories/class-delete-category-admin-page.php:74 +#: admin/categories/class-delete-category-admin-page.php:75 msgid "" "There was an error trying to load the selected category. " msgstr "Возникла ошибка при загрузке выбранной категории. " -#: admin/categories/class-delete-category-admin-page.php:85 +#: admin/categories/class-delete-category-admin-page.php:86 msgid "The category was deleted successfully" msgstr "Категория успешно удалена" -#: admin/categories/class-delete-category-admin-page.php:103 +#: admin/categories/class-delete-category-admin-page.php:104 msgid "Are you sure you want to delete \"\" category?" msgstr "Вы уверены, что хотите удалить категорию \"\"?" -#: admin/categories/class-delete-category-admin-page.php:116 +#: admin/categories/class-delete-category-admin-page.php:117 msgid "Delete category" msgstr "Удалить категорию" -#: admin/categories/class-delete-category-admin-page.php:117 +#: admin/categories/class-delete-category-admin-page.php:118 #: admin/fees/class-fee-details-form.php:80 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:31 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:12 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:23 #: admin/templates/admin-panel-fees-delete.tpl.php:12 #: admin/templates/admin-panel-users-balance-form.tpl.php:19 #: admin/templates/delete_form.tpl.php:16 #: frontend/templates/payments-billing-form.tpl.php:123 #: includes/listings/class-listing-action-with-confirmation.php:8 -#: includes/settings/renderers/class-button-settings-renderer.php:41 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 +#: includes/settings/renderers/class-button-settings-renderer.php:44 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:184 #: templates/admin/import-listings-admin-page-import-form.tpl.php:47 msgid "Cancel" msgstr "Отмена" -#: admin/categories/class-move-categories-admin-page.php:59 +#: admin/categories/class-move-categories-admin-page.php:60 msgid "" "The categories couldn't be moved because there was an error trying to load " "the target category. " @@ -419,26 +426,26 @@ msgstr "" "Категории не удалось переместить, т.к. произошла ошибка при загрузке целевой " "категории. " -#: admin/categories/class-move-categories-admin-page.php:68 +#: admin/categories/class-move-categories-admin-page.php:69 msgid "The selected categories have been moved." msgstr "Выбранные категории перемещены." -#: admin/categories/class-move-categories-admin-page.php:73 +#: admin/categories/class-move-categories-admin-page.php:74 msgid "There was an error trying to move the selected categories." msgstr "Возникла ошибка при перемещении выбранных категорий." -#: admin/categories/class-move-categories-admin-page.php:77 +#: admin/categories/class-move-categories-admin-page.php:78 msgid "" " (out of ) categories were moved. " "However, there was an error trying to move the other " "categories." msgstr "" -#: admin/categories/class-update-category-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:56 msgid "The category you're trying to update doesn't exist." msgstr "Категория, которую вы пытаетесь обновить, не существует." -#: admin/categories/class-update-category-admin-page.php:66 +#: admin/categories/class-update-category-admin-page.php:67 msgid "The category was successfully updated." msgstr "Категория успешно обновлена." @@ -464,52 +471,53 @@ msgstr "Добавить новую категорию" msgid "Update" msgstr "Обновить" -#: admin/class-debug-admin-page.php:255 +#: admin/class-debug-admin-page.php:256 msgid "WordPress version" msgstr "Версия WordPress" -#: admin/class-debug-admin-page.php:259 +#: admin/class-debug-admin-page.php:260 msgid "OS" msgstr "ОС" -#: admin/class-debug-admin-page.php:263 +#: admin/class-debug-admin-page.php:264 msgid "Apache Version" msgstr "Версия Apache" -#: admin/class-debug-admin-page.php:267 +#: admin/class-debug-admin-page.php:268 +#: admin/templates/admin-panel-debug.tpl.php:177 msgid "PHP Version" msgstr "PHP Version" -#: admin/class-debug-admin-page.php:271 +#: admin/class-debug-admin-page.php:272 msgid "MySQL Version" msgstr "Версия MySQL" -#: admin/class-debug-admin-page.php:275 +#: admin/class-debug-admin-page.php:276 msgid "cURL Version" msgstr "Версия cURL" -#: admin/class-debug-admin-page.php:279 +#: admin/class-debug-admin-page.php:280 msgid "cURL SSL Version" msgstr "Версия cURL SSL" -#: admin/class-debug-admin-page.php:332 admin/class-debug-admin-page.php:338 +#: admin/class-debug-admin-page.php:333 admin/class-debug-admin-page.php:339 msgid "N/A" msgstr "Недоступно" -#: admin/class-import-listings-admin-page.php:100 +#: admin/class-import-listings-admin-page.php:102 msgid "" "The uploaded file doesn't look like a CSV file. Please upload a valid CSV " "file." msgstr "" "Загруженный файл не является файлом CSV. Пожалуйста, попробуйте ещё раз." -#: admin/class-import-listings-admin-page.php:104 +#: admin/class-import-listings-admin-page.php:106 msgid "There was an error moving the uploaded CSV file to a proper location." msgstr "" "Произошла ошибка при попытке перемещения загруженного файла CSV в " "определенное место." -#: admin/class-import-listings-admin-page.php:121 +#: admin/class-import-listings-admin-page.php:125 msgid "" "The uploaded file doesn't look like a ZIP file. Please upload a valid ZIP " "file." @@ -517,33 +525,33 @@ msgstr "" "Загруженный файл не является файлом ZIP. Пожалуйста, загрузите корректный " "файл архива." -#: admin/class-import-listings-admin-page.php:125 +#: admin/class-import-listings-admin-page.php:129 msgid "There was an error moving the uploaded ZIP file to a proper location." msgstr "" "Произошла ошибка при попытке перемещения загруженного файла ZIP в " "определенное место." -#: admin/class-import-listings-admin-page.php:137 +#: admin/class-import-listings-admin-page.php:141 msgid "Incompatible ZIP Archive" msgstr "Несовместимый ZIP-архив" -#: admin/class-import-listings-admin-page.php:139 +#: admin/class-import-listings-admin-page.php:143 msgid "Empty ZIP Archive" msgstr "Пустой ZIP-архив" -#: admin/class-import-listings-admin-page.php:165 +#: admin/class-import-listings-admin-page.php:169 msgid "Could not write temporary file %s" msgstr "Не удалось записать временный файл %s" -#: admin/class-import-listings-admin-page.php:174 +#: admin/class-import-listings-admin-page.php:178 msgid "The specified directory is not a valid path." msgstr "Указанная директория не существует." -#: admin/class-import-listings-admin-page.php:176 +#: admin/class-import-listings-admin-page.php:180 msgid "The specified directory does not exists." msgstr "Указаннае директория не существует." -#: admin/class-import-listings-admin-page.php:357 +#: admin/class-import-listings-admin-page.php:361 msgid "" "() of rows " "processed. rows imported and строк импортировано и строк отклонено." -#: admin/class-settings-admin-page.php:230 +#: admin/class-import-settings-admin-page.php:121 +#, fuzzy +msgid "Your settings have been successfully imported." +msgstr "Ваши настройки успешно импортированы." + +#: admin/class-settings-admin-page.php:224 msgid "" "We could not obtain a valid access token from Facebook. The API returned the " "following error: %s" @@ -561,24 +574,25 @@ msgstr "" "Невозможно получить корректный токен от Facebook. API вернуло такое " "сообщение об ошибке: %s" -#: admin/class-settings-admin-page.php:235 +#: admin/class-settings-admin-page.php:229 msgid "" "We could not obtain a valid access token from Facebook. Please try again." msgstr "" "Мы не смогли получить корректный токен доступа от Facebook. Пожалуйста, " "попробуйте еще раз." -#: admin/class-settings-admin-page.php:243 +#: admin/class-settings-admin-page.php:237 msgid "Facebook Config Diagnostics" msgstr "Диагностика конфигурации Facebook" -#: admin/class-settings-admin-page.php:250 +#: admin/class-settings-admin-page.php:244 msgid "Everything looks OK." msgstr "Все выглядит нормально." #: admin/class-table-entry-action-ajax-handler.php:16 +#: admin/class-uninstall-admin-page.php:52 #: admin/pointers/class-drip-autoresponder-ajax-handler.php:23 -#: functions.php:531 +#: functions.php:537 #: includes/frontend/class-create-empty-listing-ajax-handler.php:104 #: includes/frontend/class-execute-listing-action-ajax-handler.php:58 #: includes/frontend/class-save-listing-information-ajax-handler.php:117 @@ -599,7 +613,7 @@ msgstr "Редактировать" #: admin/credit-plans/class-credit-plans-admin-page.php:23 #: admin/fees/class-fees-admin-page.php:65 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:13 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:24 #: admin/templates/delete_form.tpl.php:17 msgid "Delete" msgstr "Удалить" @@ -707,7 +721,7 @@ msgstr "" "объявлений. Создайте новый Тарифный план и повторите попытку. AWPCP поможет " "вам связать активные объявления с новым планом." -#: admin/import/class-csv-importer-delegate.php:271 +#: admin/import/class-csv-importer-delegate.php:275 msgid "" "No user could be assigned to this listing. Our attempt to create a new user " "failed with the following error: ." @@ -715,17 +729,17 @@ msgstr "" "Невозможно установить пользователя для данного объявления. Невозможно " "создать нового пользователя из-за ошибки: ." -#: admin/import/class-csv-importer-delegate.php:470 +#: admin/import/class-csv-importer-delegate.php:476 msgid "The payment term type must be 'fee' or 'subscription'." msgstr "" -#: admin/import/class-csv-importer-delegate.php:476 +#: admin/import/class-csv-importer-delegate.php:482 msgid "" "There is no payment term with type {payment_term_type} and ID " "{payment_term_id}." msgstr "" -#: admin/import/class-csv-importer-delegate.php:490 +#: admin/import/class-csv-importer-delegate.php:496 msgid "" "No images directory was configured. Are you sure you uploaded a ZIP file or " "defined a local directory?" @@ -733,12 +747,12 @@ msgstr "" "Не обнаружено папки с изображениями. Вы уверены, что загрузили zip-архив или " "выбрали локальную папку?" -#: admin/import/class-csv-importer-delegate.php:676 +#: admin/import/class-csv-importer-delegate.php:690 msgid "The value for Extra Field %s's is not allowed. Allowed values are: %%s" msgstr "" "Недопустимое значение дополнительного поля %s. Допустимые значения: %%s" -#: admin/import/class-csv-importer-delegate.php:686 +#: admin/import/class-csv-importer-delegate.php:700 msgid "" "The value for Extra Field %s's is not allowed. Allowed value is one of: %%s" msgstr "" @@ -762,10 +776,34 @@ msgstr "" msgid "That Ad failed to delete." msgstr "Объявление было удалено" +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 +#, fuzzy +msgid "Thank you for signing up!" +msgstr "Благодарим вас за подписку!" + +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 +#, fuzzy +msgid "" +"Please check your email and click the link provided to confirm your " +"subscription." +msgstr "" +"Пожалуйста, проверьте вашу электронную почту для подтверждения подписки." + #: admin/pointers/class-drip-autoresponder-ajax-handler.php:149 msgid "An unexpected error ocurred." msgstr "Возникла непредвиденная ошибка." +#: admin/pointers/class-drip-autoresponder.php:62 +#, fuzzy +msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" +msgstr "Хотите узнать секреты успешного сайта объявлений?" + +#: admin/pointers/class-drip-autoresponder.php:63 +msgid "" +"Find out how to create a compelling, thriving classifieds site from scratch " +"in this ridiculously actionable (and free) 5-part email course." +msgstr "" + #: admin/pointers/class-drip-autoresponder.php:67 msgid "Email Address" msgstr "Адрес Email" @@ -774,28 +812,28 @@ msgstr "Адрес Email" msgid "Add" msgstr "Добавить" -#: admin/templates/admin-panel-credit-plans.tpl.php:10 +#: admin/templates/admin-panel-credit-plans.tpl.php:11 msgid "Credit System Settings" msgstr "Найстроки кредитной системы" -#: admin/templates/admin-panel-credit-plans.tpl.php:21 +#: admin/templates/admin-panel-credit-plans.tpl.php:25 #: templates/admin/settings-admin-page.tpl.php:50 -#: templates/admin/settings-admin-page.tpl.php:64 +#: templates/admin/settings-admin-page.tpl.php:67 msgid "Save Changes" msgstr "Сохранить изменения" -#: admin/templates/admin-panel-credit-plans.tpl.php:34 +#: admin/templates/admin-panel-credit-plans.tpl.php:38 msgid "Add Credit Plan" msgstr "Добавить кредитный план" -#: admin/templates/admin-panel-debug.tpl.php:8 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:6 +#: admin/templates/admin-panel-debug.tpl.php:11 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:8 msgid "Are you seeing 404 Not Found errors?" msgstr "Вы видите ошибки 404 Страница не найдена?" #. translators: %1$s: Start link HTML, %2$s: end link HTML, %3$s: Start link #. HTML -#: admin/templates/admin-panel-debug.tpl.php:14 +#: admin/templates/admin-panel-debug.tpl.php:21 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -806,54 +844,84 @@ msgid "" "please contact %3$scustomer support%1$s." msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:49 +#: admin/templates/admin-panel-debug.tpl.php:84 msgid "Stored ID" msgstr "Сохраненный ID" -#: admin/templates/admin-panel-debug.tpl.php:50 +#: admin/templates/admin-panel-debug.tpl.php:85 msgid "Reference" msgstr "Ссылка" -#: admin/templates/admin-panel-debug.tpl.php:51 +#: admin/templates/admin-panel-debug.tpl.php:86 #: frontend/templates/widget-categories-form.tpl.php:2 #: frontend/templates/widget-latest-ads-form.tpl.php:2 #: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:5 msgid "Title" msgstr "Заголовок" -#: admin/templates/admin-panel-debug.tpl.php:60 +#: admin/templates/admin-panel-debug.tpl.php:95 msgid "Page not found" msgstr "Страница не найдена" -#: admin/templates/admin-panel-debug.tpl.php:74 +#: admin/templates/admin-panel-debug.tpl.php:117 msgid "Option Name" msgstr "Название опции" -#: admin/templates/admin-panel-debug.tpl.php:75 +#: admin/templates/admin-panel-debug.tpl.php:118 msgid "Option Value" msgstr "Значение параметра" -#: admin/templates/admin-panel-debug.tpl.php:96 +#: admin/templates/admin-panel-debug.tpl.php:147 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:9 msgid "Pattern" msgstr "Шаблон" -#: admin/templates/admin-panel-debug.tpl.php:97 +#: admin/templates/admin-panel-debug.tpl.php:148 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:10 msgid "Replacement" msgstr "Замена" -#: admin/templates/admin-panel-debug.tpl.php:133 +#: admin/templates/admin-panel-debug.tpl.php:181 +#, fuzzy +msgid "cURL" +msgstr "cURL" + +#: admin/templates/admin-panel-debug.tpl.php:185 +#, fuzzy +msgid "cURL's alternate CA info (cacert.pem)" +msgstr "cURL's alternate CA info (cacert.pem)" + +#: admin/templates/admin-panel-debug.tpl.php:189 +#, fuzzy +msgid "Exists" +msgstr "Существует" + +#: admin/templates/admin-panel-debug.tpl.php:190 +#, fuzzy +msgid "Missing" +msgstr "Отсутсвует" + +#: admin/templates/admin-panel-debug.tpl.php:195 +#: includes/settings/class-payment-general-settings.php:134 +msgid "PayPal" +msgstr "PayPal" + +#: admin/templates/admin-panel-debug.tpl.php:198 #, fuzzy msgid "Working" msgstr "Рабочая" -#: admin/templates/admin-panel-debug.tpl.php:148 -#: templates/admin/debug/debug-admin-page.tpl.php:36 +#: admin/templates/admin-panel-debug.tpl.php:201 +#, fuzzy +msgid "Not Working" +msgstr "Не работает" + +#: admin/templates/admin-panel-debug.tpl.php:216 +#: templates/admin/debug/debug-admin-page.tpl.php:42 msgid "Debug & Development Tools" msgstr "Инструменты отладки и разработки" -#: admin/templates/admin-panel-fees-delete-form.tpl.php:6 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:7 #: admin/templates/delete_form.tpl.php:11 msgid "Are you sure you want to delete this item?" msgstr "Вы уверены, что хотите удалить этот элемент?" @@ -870,47 +938,48 @@ msgstr "" msgid "Switch" msgstr "Переключить" -#: admin/templates/admin-panel-fees.tpl.php:7 -msgid "Payment Settings page" -msgstr "Страница настроек оплаты" - -#: admin/templates/admin-panel-fees.tpl.php:9 +#: admin/templates/admin-panel-fees.tpl.php:8 +#, fuzzy msgid "" "Currently your classifieds are in Free mode. Fee plans are not available or " -"used during free mode.

To change this, visit the and enable Charge Listing Fee setting." +"used during free mode.%1$s To change this, visit the %2$s and enable Charge " +"Listing Fee setting." msgstr "" "Currently your classifieds are in Free mode. Fee plans are not available or " "used during free mode.

To change this, visit the and enable Charge Listing Fee setting." -#: admin/templates/admin-panel-fees.tpl.php:20 +#: admin/templates/admin-panel-fees.tpl.php:11 +msgid "Payment Settings page" +msgstr "Страница настроек оплаты" + +#: admin/templates/admin-panel-fees.tpl.php:22 msgid "Add Fee Plan" msgstr "Добавить тарифный план" -#: admin/templates/admin-panel-fees.tpl.php:24 -msgid "Fee Plan sort order and sort direction Settings" -msgstr "" - #: admin/templates/admin-panel-fees.tpl.php:26 +#, fuzzy msgid "" -"If you wish to change the sorting of your fee plans, you can change the ." +"If you wish to change the sorting of your fee plans, you can change the %s." msgstr "" "Если вы желаете изменить порядок ваших тарифов, измените ." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:14 +#: admin/templates/admin-panel-fees.tpl.php:30 +msgid "Fee Plan sort order and sort direction Settings" +msgstr "" + +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:17 msgid "Facebook Integration" msgstr "Интеграция с Facebook" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:16 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:23 msgid "" "We currently support two methods for posting new ads to Facebook: Facebook " "API and Zapier/IFTTT Webhooks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:18 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:25 msgid "" "Support for Facebook API will be removed in the future. Facebook " "significantly reduced access to their APIs across all apps on Apr, 2018. Now " @@ -921,46 +990,46 @@ msgid "" "integration method." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:22 -msgid "You can read more about Facebook changes here: {facebook_post_link}" +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:30 +#, fuzzy +msgid "You can read more about Facebook changes here: %s" msgstr "" "Вы можете узнать больше об изменениях в Facebook здесь: {facebook_post_link}" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:29 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:38 msgid "" "If you are currently using the Facebook API integration method and not " "having any issues, you don't have to do anything right now. If you are " "having issues, please read the Diagnostics section below to try to fix them." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:40 #: includes/settings/class-general-settings.php:735 msgid "Facebook API" msgstr "Facebook API" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:35 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:46 msgid "" "This integration method allows you to post ads to Facebook using a Facebook " -"Application. Please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"Application. Please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:45 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:79 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 msgid "" "Add the following URL to the list of Valid OAuth Redirect URIs for the " "configuration of the Facebook Application:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:59 #: includes/settings/class-general-settings.php:736 msgid "Zapier/IFTTT Webhooks" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:51 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:61 msgid "" "Webhooks allow the plugin to send a request to one of the configured webhook " "URLs the first time an ad becomes publicly available on the website. That " @@ -970,64 +1039,62 @@ msgid "" "control." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:67 msgid "" -"Follow the instructiones to create the tasks on " -"{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} or " -"{webhook_instructions_for_ifttt}IFTTT{/webhook_instructions_for_ifttt}. Then " -"update the settings at the bottom of this page to enter the webhook URLs " -"associated with those tasks." +"Follow the instructiones to create the tasks on %1$sZapier or IFTTT%2$s. " +"Then update the settings at the bottom of this page to enter the webhook " +"URLs associated with those tasks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:65 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:74 msgid "Facebook Cache" msgstr "Кеш Фейсбука" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:69 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:80 msgid "" "If you are using Webhooks to send ads to Facebook, a Facebook Application " "can still be used to ask Facebook to clear the cache it has stored for ads " "pages. This is useful to ensure users always see the latest version when the " "ad is shared on Facebook Pages, Groups and user feeds. If you decide to use " -"this feature, please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"this feature, please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:83 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:93 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:120 msgid "Diagnostics" msgstr "Диагностика" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:95 msgid "" "If you see the following error after trying to get a valid User Access Token:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:99 msgid "" "You have to submit your Facebook Application for Review and ask for those " "permissions or use the Webhooks integration method to send ads to Facebook " "using Zapier or IFTTT Webhooks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:91 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:101 msgid "If you see the following error trying to send ads to a Facebook Group:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:97 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#, fuzzy msgid "" -"Please make sure the Facebook Application " -"{link_to_how_to_add_apps_to_a_group}was added to the group{/" -"link_to_how_to_add_apps_to_a_group}." +"Please make sure the Facebook Application %1$swas added to the group%2$s." msgstr "" "Пожалуйста, убедитесь в том, что приложение Facebook " "{link_to_how_to_add_apps_to_a_group} было добавлено к группе{/" "link_to_how_to_add_apps_to_a_group}." -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:108 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:119 msgid "" "If you are having additional problems with Facebook API, click " "\"Diagnostics\" to check your settings." @@ -1035,49 +1102,52 @@ msgstr "" "Если у вас еще есть проблемы с Facebook API, нажмите \"Диагностика\", чтобы " "проверить настройки." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:3 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:4 msgid "Restore AWPCP Pages" msgstr "Восстановить страницы AWPCP" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:8 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:10 msgid "The following pages were restored: ." msgstr "Следующие страницы были возобновлены: ." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:19 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:21 msgid "" "The pages listed below are missing. The plugin is looking for a page with a " "particular ID but it seems that the page was permanently deleted. Please a " "select a new one." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:23 -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:71 -msgid "%s (Default name: %s)." +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:28 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:97 +#, fuzzy +msgid "%1$s (Default name: %2$s)." msgstr "%s (Имя по умолчанию: %s)." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:39 msgid "" "The following pages are not published. Did you move them to the Trash by " "accident or saved them as Draft?" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:41 -msgid "%s — Selected page: %s (%s)" +#. translators: %1$s page label, %2$s link to the page, %3$s the page status. +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:57 +#, fuzzy +msgid "%1$s Selected page: %2$s (%3$s)" msgstr "%s — Выбранная страница: %s (%s)" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:69 msgid "" "The following pages are not currently assigned. Please select an existing " "page or create a new one to use as the following plugin pages:" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:64 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 msgid "" -" — You can select one of these pages that already include " -"the necessary shortcode: or create a new one." +"%1$s You can select one of these pages that already include the necessary " +"shortcode: %2$s or %3$screate a new one%4$s." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:115 msgid "" "Use the button below to have the plugin attempt to find the necessary pages. " "If you continue to have problems or seeing page related warnings above, you " @@ -1088,11 +1158,11 @@ msgstr "" "проблемы останутся, вы можете удалить страницы плагина и воспользоваться " "кнопкой «Восстановить страницы», чтобы создать их заново." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:86 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:116 msgid "Restore Pages" msgstr "Восстановить страницы" -#: admin/templates/admin-panel-uninstall.tpl.php:13 +#: admin/templates/admin-panel-uninstall.tpl.php:10 msgid "" "Thank you for using AWPCP. You have arrived at this page by clicking the " "Uninstall link. If you are certain you wish to uninstall the plugin, please " @@ -1102,18 +1172,18 @@ msgstr "" "Удалить. Если вы точно хотите удалить плагин, пожалуйста, нажмите на кнопку " "внизу, чтобы продолжить." -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "" "PLEASE NOTE: When you click the button below, ALL your data related to the " "plugin including your classifieds, images and everything else created by the " "plugin will be permanently deleted." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "We cannot recover the data after you click this." msgstr "Мы не сможем восстановить данные после вашего клика." -#: admin/templates/admin-panel-uninstall.tpl.php:18 +#: admin/templates/admin-panel-uninstall.tpl.php:15 msgid "" "BEFORE YOU CLICK THE BUTTON BELOW — read carefully in case you want to " "extract your data first!" @@ -1121,7 +1191,7 @@ msgstr "" "ПРЕЖДЕ, ЧЕМ НАЖАТЬ КНОПКУ! Внимательно прочитайте, если вы хотите извлечь " "свои данные!" -#: admin/templates/admin-panel-uninstall.tpl.php:21 +#: admin/templates/admin-panel-uninstall.tpl.php:18 msgid "" "If you plan to use the data created by the plugin please export the data " "from your mysql database before clicking the uninstall link." @@ -1130,45 +1200,49 @@ msgstr "" "пожалуйста, экспортируйте данные из вашей базы данных mysql перед тем, как " "нажать на ссылку удалить." -#: admin/templates/admin-panel-uninstall.tpl.php:22 +#: admin/templates/admin-panel-uninstall.tpl.php:21 +#, fuzzy msgid "" -"If you want to keep your user uploaded images, please download to " -"your local drive for later use or rename the folder to something else so the " +"If you want to keep your user uploaded images, please download %s to your " +"local drive for later use or rename the folder to something else so the " "uninstaller can bypass it." msgstr "" "Если вы хотите сохрание загруженные изображения, пожалуйста, сделайте копию " "папки на вашем локальном диске или переименуйте папку, чтобы " "деинсталлятор проигнорировал ее." -#: admin/templates/admin-panel-uninstall.tpl.php:28 +#: admin/templates/admin-panel-uninstall.tpl.php:29 msgid "Proceed with Uninstalling AWP Classifieds Plugin" msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:33 +#: admin/templates/admin-panel-uninstall.tpl.php:35 msgid "Almost done... one more step!" msgstr "Почти готово... остался один шаг!" -#: admin/templates/admin-panel-uninstall.tpl.php:36 -msgid "Please click here to complete the uninstallation process" +#: admin/templates/admin-panel-uninstall.tpl.php:39 +#, fuzzy +msgid "Please click here to deactivate plugins." msgstr "Пожалуйста, нажмите здесь, чтобы завершить процесс удаления" #: admin/templates/admin-panel-users-balance-form.tpl.php:12 +#: frontend/templates/payments-transaction-items-table.tpl.php:5 +#: frontend/templates/payments-transaction-items-table.tpl.php:17 msgid "Amount" msgstr "Сумма" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:12 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:14 msgid "Manual Upgrade Required" msgstr "Требуется обновление вручную" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:17 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:26 msgid "Upgrade" msgstr "Обновление" #: admin/templates/admin-quick-start-guide-notice.tpl.php:2 #, fuzzy msgid "" -"Hello and welcome to AWP Classifieds. This plugin is super " -"easy to use AND highly configurable." +"Hello and welcome to AWP Classifieds. This plugin is super easy to use AND " +"highly configurable." msgstr "" "Здравствуйте и добро пожаловать в Another WordPress Classifieds. Этот плагин очень прост в использовании и легко настраивается." @@ -1178,38 +1252,52 @@ msgid "Would you like some help getting started?" msgstr "Вам нужна помощь, чтобы начать?" #: admin/templates/admin-quick-start-guide-notice.tpl.php:12 +#, fuzzy +msgid "I'll figure it out on my own." +msgstr "Я выясню это сам." + +#: admin/templates/admin-quick-start-guide-notice.tpl.php:15 msgid "Yes Please!" msgstr "Да, пожалуйста!" -#: admin/templates/admin-sidebar.tpl.php:14 +#: admin/templates/admin-quick-start-guide-notice.tpl.php:20 +#, fuzzy +msgid "Help me get my classifieds running quickly." +msgstr "Помогите мне быстро запустить мою доску объявлений." + +#: admin/templates/admin-sidebar.tpl.php:15 msgid "Like this plugin?" msgstr "Нравится этот плагин?" -#: admin/templates/admin-sidebar.tpl.php:20 +#: admin/templates/admin-sidebar.tpl.php:24 msgid "Give a 5 star rating on WordPress.org." msgstr "" -#: admin/templates/admin-sidebar.tpl.php:36 +#: admin/templates/admin-sidebar.tpl.php:42 msgid "Get more features!" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:67 msgid "Found a bug?" msgstr "Нашли ошибку?" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:68 msgid "Need Support?" msgstr "Нужна поддержка?" -#: admin/templates/admin-sidebar.tpl.php:70 -msgid "Quick Start Guide" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:80 +#, fuzzy +msgid "Browse the %1$sQuick Start Guide%2$s" msgstr "Краткое руководство" -#: admin/templates/admin-sidebar.tpl.php:80 -msgid "Documentation" -msgstr "Документация" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:90 +#, fuzzy +msgid "Read the full %1$sDocumentation%2$s." +msgstr "Читать полную %s." -#: admin/templates/admin-sidebar.tpl.php:91 +#: admin/templates/admin-sidebar.tpl.php:98 msgid "Get Help" msgstr "Получить помощь" @@ -1219,11 +1307,11 @@ msgid "Thank you for using AWP Classifieds Plugin." msgstr "Спасибо за использование плагина Another Wordpress Classifieds." #: admin/templates/admin-widget-modification-notice.tpl.php:3 +#, fuzzy msgid "" -"AWPCP 3.0 includes several modifications to the Search Ads, " -"Featured Ads and Latest Ads widgets. For " -"example, the Latest Ads widget can now be used in multiple sidebars. Also, " -"there is a new Widget to show Random Ads." +"AWPCP 3.0 includes several modifications to the Search Ads, Featured Ads and " +"Latest Ads widgets. For example, the Latest Ads widget can now be used in " +"multiple sidebars. Also, there is a new Widget to show Random Ads." msgstr "" "AWPCP 3.0 включает в себя несколько изменений в виджетах поиск " "объявлений, рекомендуемые объявления и " @@ -1337,30 +1425,30 @@ msgid "" "PHP to understand more about PHP and how to upgrade." msgstr "" -#: awpcp.php:200 +#: awpcp.php:198 msgid "" "AWP Classifieds Plugin installation is incomplete. Please {support_link}" "contact support{/support_link}." msgstr "" #. translators: %s is the title of the listing. -#: frontend/ad-functions.php:155 +#: frontend/ad-functions.php:159 #: includes/listings/class-listing-renewed-email-notifications.php:85 msgid "The ad \"%s\" has been successfully renewed." msgstr "" -#: frontend/ad-functions.php:189 frontend/page-renew-ad.php:160 +#: frontend/ad-functions.php:193 frontend/page-renew-ad.php:160 msgid "The Ad has been successfully renewed. New expiration date is %s." msgstr "" -#: frontend/ad-functions.php:194 frontend/page-renew-ad.php:152 +#: frontend/ad-functions.php:198 frontend/page-renew-ad.php:151 #: templates/admin/listings/quick-view-listing-admin-page.tpl.php:18 #: templates/admin/listings-media-center.tpl.php:6 #: templates/admin/view-listing-admin-page.tpl.php:14 msgid "Return to Listings" msgstr "Вернуться к объявлениям" -#: frontend/ad-functions.php:212 frontend/page-place-ad.php:151 +#: frontend/ad-functions.php:216 frontend/page-place-ad.php:154 msgid "" "You do not have permission to perform the function you are trying to " "perform. Access to this page has been denied" @@ -1368,28 +1456,28 @@ msgstr "" "У вас нет доступа к функции, которую вы пытаетесь выполнить. Доступ к этой " "странице запрещен" -#: frontend/ad-functions.php:227 +#: frontend/ad-functions.php:231 msgid "The Ad has been deleted" msgstr "Объявление было удалено" -#: frontend/ad-functions.php:230 +#: frontend/ad-functions.php:234 msgid "" "Your Ad details and any photos you have uploaded have been deleted from the " "system" msgstr "" "Детали объявления фотографии, которые вы загрузили были удалены из системы" -#: frontend/ad-functions.php:234 +#: frontend/ad-functions.php:238 #: includes/frontend/class-edit-listing-page.php:188 msgid "The specified Ad doesn't exists." msgstr "Указанное объявление не существует." -#: frontend/ad-functions.php:236 +#: frontend/ad-functions.php:240 msgid "There was an error trying to delete the Ad. The Ad was not deleted." msgstr "" "Произошла ошибка при попытке удалить объявление. Объявление не было удалено." -#: frontend/ad-functions.php:239 +#: frontend/ad-functions.php:243 msgid "Problem encountered. Cannot complete request" msgstr "Возникла проблема. Невозможно выполнить запрос" @@ -1409,7 +1497,7 @@ msgstr "" "Категория для просмотра не была выбрана, поэтому Вы просматриваете " "объявления из всех категорий." -#: frontend/page-place-ad.php:74 +#: frontend/page-place-ad.php:75 #: includes/views/class-verify-transaction-exists-step-decorator.php:17 msgid "" "There was an error processing your Payment Request. Please try again or " @@ -1418,19 +1506,20 @@ msgstr "" "Во время обработки вашего платежа возникла ошибка. Пожалуйста, повторите " "попытку позже или свяжитесь с администратором." -#: frontend/page-place-ad.php:132 +#: frontend/page-place-ad.php:133 msgid "Please select a category." msgstr "Пожалуйста, выберите категорию." -#: frontend/page-place-ad.php:133 -msgid "Please select the Ad's owner." +#: frontend/page-place-ad.php:134 +#, fuzzy +msgid "Please select the Ad owner." msgstr "Пожалуйста, выберите владельца объявления." -#: frontend/page-place-ad.php:134 +#: frontend/page-place-ad.php:135 msgid "Please select a payment term." msgstr "Пожалуйста, выберите срок оплаты." -#: frontend/page-place-ad.php:165 frontend/page-renew-ad.php:87 +#: frontend/page-place-ad.php:168 frontend/page-renew-ad.php:86 msgid "" "You are trying to post an Ad using a transaction created for a different " "purpose. Please go back to the %s page.
If you think " @@ -1442,7 +1531,7 @@ msgstr "" "
Если вы уверены, что произошла ошибка, свяжитесь с администратором и " "предоставьте ему информацию о транзакции: %s" -#: frontend/page-place-ad.php:174 +#: frontend/page-place-ad.php:177 #: includes/frontend/class-submit-listing-page.php:291 msgid "" "You can't post an Ad at this time because the payment associated with this " @@ -1451,34 +1540,34 @@ msgstr "" "В данный момент вы не можете разместить объявление, поскольку оплата " "связанная с этой операцией, не удалась (см. причины ниже)." -#: frontend/page-place-ad.php:256 +#: frontend/page-place-ad.php:259 #: includes/listings/class-payment-information-validator.php:88 msgid "You should select an owner for this Ad." msgstr "Вы должны выбрать владельца для данного объявления." -#: frontend/page-place-ad.php:260 frontend/page-renew-ad.php:197 +#: frontend/page-place-ad.php:263 frontend/page-renew-ad.php:199 #: includes/listings/class-payment-information-validator.php:64 #: includes/listings/class-payment-information-validator.php:73 msgid "You should choose one of the available Payment Terms." msgstr "Вам необходимо выбрать один из вариантов оплаты." -#: frontend/page-place-ad.php:264 +#: frontend/page-place-ad.php:267 #: includes/listings/class-payment-information-validator.php:75 msgid "" "The Payment Term you selected is not available for non-administrator users." msgstr "Выбранный вами вариант оплаты, не доступен для простых пользователей." -#: frontend/page-place-ad.php:280 +#: frontend/page-place-ad.php:283 #: includes/listings/class-payment-information-validator.php:108 msgid "Ad Category field is required" msgstr "Поле Категория Объяления является обязательным" -#: frontend/page-place-ad.php:285 +#: frontend/page-place-ad.php:288 #: includes/listings/class-payment-information-validator.php:119 msgid "You cannot list your Ad in top level categories." msgstr "" -#: frontend/page-place-ad.php:291 +#: frontend/page-place-ad.php:294 #: includes/frontend/class-submit-listing-page.php:190 msgid "" "Hi, You need to be a registered user to post Ads in this website. Please use " @@ -1488,7 +1577,7 @@ msgstr "" "объявления на этом сайте. Пожалуйста, воспользуйтесь формой ниже для входа " "или нажмите на ссылку, чтобы зарегистрироваться." -#: frontend/page-place-ad.php:429 frontend/page-place-ad.php:836 +#: frontend/page-place-ad.php:432 frontend/page-place-ad.php:839 #: frontend/page-renew-ad.php:297 #: includes/frontend/class-order-submit-listing-section.php:119 msgid "" @@ -1499,7 +1588,7 @@ msgstr "" #. translators: %s is an alphanumeric string that identifies a payment #. transaction. #. translators: %s the transaction id -#: frontend/page-place-ad.php:511 frontend/page-renew-ad.php:347 +#: frontend/page-place-ad.php:514 frontend/page-renew-ad.php:347 #: includes/frontend/class-submit-listing-page.php:333 #: includes/views/class-verify-payment-can-be-processed-step-decorator.php:18 msgid "" @@ -1511,7 +1600,7 @@ msgstr "" "Пожалуйста, обратитесь к администратору сайта и предоставьте следующий ID " "транзакции: %s" -#: frontend/page-place-ad.php:834 +#: frontend/page-place-ad.php:837 msgid "" "Your Ad details have been filled out in the form below. Make any changes " "needed and then resubmit the Ad to update it." @@ -1519,11 +1608,11 @@ msgstr "" "Детали вашего объявления были заполнены из формы ниже. Внесите необходимые " "изменения, а затем подтвердите их, чтобы обновить объявление." -#: frontend/page-place-ad.php:838 +#: frontend/page-place-ad.php:841 msgid "Fill out the form below to post your classified ad." msgstr "" -#: frontend/page-place-ad.php:842 +#: frontend/page-place-ad.php:845 msgid "" "We found errors in the details you submitted. A detailed error message is " "shown in front or below each invalid field. Please fix the errors and submit " @@ -1533,11 +1622,11 @@ msgstr "" "ошибке отображается возле каждого некорректного поля ввода. Пожалуйста, " "исправьте ошибки и отправьте форму снова." -#: frontend/page-place-ad.php:861 +#: frontend/page-place-ad.php:864 msgid "Start & End Date" msgstr "Дата начала и конца" -#: frontend/page-place-ad.php:863 +#: frontend/page-place-ad.php:866 #: includes/admin/import/class-csv-importer-columns.php:185 #: includes/admin/listings/class-listings-table-nav-handler.php:151 #: includes/form-fields/class-listing-form-fields.php:127 @@ -1545,7 +1634,7 @@ msgstr "Дата начала и конца" msgid "Start Date" msgstr "Дата начала" -#: frontend/page-place-ad.php:865 +#: frontend/page-place-ad.php:868 #: includes/admin/import/class-csv-importer-columns.php:196 #: includes/admin/listings/class-listings-table-nav-handler.php:152 #: includes/form-fields/class-listing-form-fields.php:131 @@ -1553,7 +1642,7 @@ msgstr "Дата начала" msgid "End Date" msgstr "Дата окончания" -#: frontend/page-place-ad.php:973 +#: frontend/page-place-ad.php:976 msgid "" "Hi, Payment is required for posting Ads in this website and we couldn't find " "a Payment Transaction assigned to you. You can't post Ads this time. If you " @@ -1563,43 +1652,43 @@ msgstr "" "смогли найти платеж сделанный вами. Чтобы исправить эту досадную ошибку, " "пожалуйста, свяжитесь с администратором сайта." -#: frontend/page-place-ad.php:1000 +#: frontend/page-place-ad.php:1003 msgid "" "You did not select a Payment Term. Please select a Payment Term for this Ad." msgstr "" "Вы не выбрали срок оплаты. Пожалуйста, выберите срок оплаты данного " "объявления." -#: frontend/page-place-ad.php:1005 +#: frontend/page-place-ad.php:1008 msgid "Please enter a start date for the Ad." msgstr "Пожалуйста, введите дату начала объявления." -#: frontend/page-place-ad.php:1010 +#: frontend/page-place-ad.php:1013 msgid "Please enter an end date for the Ad." msgstr "Пожалуйста, введите дату окончания объявления." -#: frontend/page-place-ad.php:1014 +#: frontend/page-place-ad.php:1017 #: includes/form-fields/class-form-fields-validator.php:71 msgid "The start date must occur before the end date." msgstr "Дата начала должна быть раньше даты окончания." -#: frontend/page-place-ad.php:1019 +#: frontend/page-place-ad.php:1022 msgid "You did not enter a title for your Ad" msgstr "Вы не ввели заголовок вашего объявления" -#: frontend/page-place-ad.php:1024 +#: frontend/page-place-ad.php:1027 msgid "" "You did not enter any text for your Ad. Please enter some text for your Ad." msgstr "" "Вы не ввели текст вашего объявления. Пожалуйста, введите текст вашего " "объявления." -#: frontend/page-place-ad.php:1037 +#: frontend/page-place-ad.php:1040 msgid "" "You did not enter your website address. Your website address is required." msgstr "Вы не ввели адрес Вашего сайта. Адрес сайта обязателен." -#: frontend/page-place-ad.php:1043 +#: frontend/page-place-ad.php:1046 msgid "" "Your website address is not properly formatted. Please make sure you have " "included the http:// part of your website address" @@ -1607,16 +1696,16 @@ msgstr "" "Адрес сайта имеет неверный формат. Пожалуйста, убедитесь, что вы включили " "http:// в адрес веб-сайта" -#: frontend/page-place-ad.php:1048 +#: frontend/page-place-ad.php:1051 msgid "You did not enter your name. Your name is required." msgstr "Вы не ввели ваше имя. Ваше имя является обязательным." -#: frontend/page-place-ad.php:1053 +#: frontend/page-place-ad.php:1056 msgid "You did not enter your email. Your email is required." msgstr "" "Вы не указали вашу электронную почту. Ваш электронная почта обязательна." -#: frontend/page-place-ad.php:1058 frontend/page-reply-to-ad.php:160 +#: frontend/page-place-ad.php:1061 frontend/page-reply-to-ad.php:160 msgid "" "The email address you entered was not a valid email address. Please check " "for errors and try again." @@ -1624,7 +1713,7 @@ msgstr "" "Введенный адрес электронной почты является не действительным адресом " "электронной почты. Пожалуйста, проверьте наличие ошибок и попробуйте еще раз." -#: frontend/page-place-ad.php:1060 +#: frontend/page-place-ad.php:1063 msgid "" "The email address you entered is not allowed in this website. Please use an " "email address from one of the following domains: %s." @@ -1632,36 +1721,36 @@ msgstr "" "Введенный адрес электронной почты не разрешен на этом сайте. Пожалуйста, " "используйте адрес электронной почты с одного из следующих доменов: %s." -#: frontend/page-place-ad.php:1071 +#: frontend/page-place-ad.php:1074 msgid "You did not enter your phone number. Your phone number is required." msgstr "Вы не ввели Ваш номер телефона. Ваш номер телефона необходим." -#: frontend/page-place-ad.php:1089 -#: includes/helpers/widgets/multiple-region-selector.php:124 +#: frontend/page-place-ad.php:1092 +#: includes/helpers/widgets/multiple-region-selector.php:144 msgid "You did not enter your country. Your country is required." msgstr "Вы не указали Вашу страну. Ваша страна обязательна." -#: frontend/page-place-ad.php:1098 -#: includes/helpers/widgets/multiple-region-selector.php:125 +#: frontend/page-place-ad.php:1101 +#: includes/helpers/widgets/multiple-region-selector.php:145 msgid "You did not enter your state. Your state is required." msgstr "Вы не ввели ваш штат. Ваш штат обязателен." -#: frontend/page-place-ad.php:1107 -#: includes/helpers/widgets/multiple-region-selector.php:127 +#: frontend/page-place-ad.php:1110 +#: includes/helpers/widgets/multiple-region-selector.php:147 msgid "You did not enter your city. Your city is required." msgstr "Вы не указали Ваш город. Ваш город обязателен." -#: frontend/page-place-ad.php:1116 -#: includes/helpers/widgets/multiple-region-selector.php:126 +#: frontend/page-place-ad.php:1119 +#: includes/helpers/widgets/multiple-region-selector.php:146 msgid "You did not enter your county/village. Your county/village is required." msgstr "" "Вы не указали Вашу страну / деревню. Ваша страна / деревня обязательна." -#: frontend/page-place-ad.php:1123 +#: frontend/page-place-ad.php:1126 msgid "You did not enter the price of your item. The item price is required." msgstr "Вы не указали цену вашего товара. Цена товара обязательна." -#: frontend/page-place-ad.php:1129 +#: frontend/page-place-ad.php:1132 msgid "" "You have entered an invalid item price. Make sure your price contains " "numbers only. Please do not include currency symbols." @@ -1669,18 +1758,18 @@ msgstr "" "Вы ввели неккоректную цену. Убедитесь, что Ваша цена содержит только цифры. " "Пожалуйста, Не включайте неё символы." -#: frontend/page-place-ad.php:1147 +#: frontend/page-place-ad.php:1150 msgid "You did not accept the terms of service" msgstr "Вы не приняли условия обслуживания" -#: frontend/page-place-ad.php:1163 +#: frontend/page-place-ad.php:1166 msgid "" "Your Ad was flagged as spam. Please contact the administrator of this site." msgstr "" "Ваше объявление было помечено как спам. Пожалуйста, свяжитесь с " "администратором этого сайта." -#: frontend/page-place-ad.php:1354 +#: frontend/page-place-ad.php:1357 msgid "" "We were unable to find a Payment Transaction assigned to this operation. No " "images can be added at this time." @@ -1688,30 +1777,30 @@ msgstr "" "Мы не смогли найти платежной транзакции, присвоенный данной операции. В " "данный момент изображения не могут быть добавлены." -#: frontend/page-place-ad.php:1361 +#: frontend/page-place-ad.php:1364 msgid "The specified Ad doesn't exists. No images can be added at this time." msgstr "" "Указанное объявление не существует. На данный момент нет изображений которые " "могут быть добавлены." -#: frontend/page-place-ad.php:1440 frontend/page-place-ad.php:1492 +#: frontend/page-place-ad.php:1443 frontend/page-place-ad.php:1495 #: includes/frontend/class-submit-listing-page.php:393 msgid "" "We were unable to find a Payment Transaction assigned to this operation." msgstr "Мы не смогли найти платежной транзакции, присвоенной данной операции." -#: frontend/page-place-ad.php:1447 frontend/page-place-ad.php:1499 +#: frontend/page-place-ad.php:1450 frontend/page-place-ad.php:1502 #: frontend/page-renew-ad.php:408 #: includes/frontend/class-submit-listing-page.php:400 msgid "The Ad associated with this transaction doesn't exists." msgstr "Объявление связаное с этой сделкой не существует." -#: frontend/page-renew-ad.php:73 +#: frontend/page-renew-ad.php:72 #, fuzzy msgid "That Ad doesn't need to be renewed." msgstr "Указанное объявление не нуждается в обновлении." -#: frontend/page-renew-ad.php:78 +#: frontend/page-renew-ad.php:77 msgid "" "There was an error trying to renew your Ad. The URL is not valid. Please " "contact the Administrator of this site for further assistance." @@ -1720,7 +1809,7 @@ msgstr "" "допустимым. Пожалуйста, свяжитесь с администратором этого сайта для " "получения дополнительной помощи." -#: frontend/page-renew-ad.php:94 +#: frontend/page-renew-ad.php:93 msgid "" "You can't renew your Ad at this time because the payment associated with " "this transaction failed (see reasons below)." @@ -1728,7 +1817,7 @@ msgstr "" "В данный момент вы не можете возобновить объявление, поскольку оплата " "связанная с этой операцией, не удалась (см. причины ниже)." -#: frontend/page-renew-ad.php:117 +#: frontend/page-renew-ad.php:116 msgid "" "The Ad was posted under a Payment Term that no longer exists or is disabled. " "The Ad can't be renewed." @@ -1736,11 +1825,11 @@ msgstr "" "Объявление было опубликовано на срок оплаты, который больше не существует " "или отключен. Объявление не может быть возобновлено." -#: frontend/page-renew-ad.php:154 +#: frontend/page-renew-ad.php:153 msgid "You can see your Ad here" msgstr "Вы можете увидеть ваше объявление здесь" -#: frontend/page-renew-ad.php:200 +#: frontend/page-renew-ad.php:201 msgid "" "You are trying to renew your Ad using a different Payment Term. That's not " "allowed." @@ -1854,7 +1943,7 @@ msgstr "Продавец" msgid "Visit Website" msgstr "Посетите сайт" -#: frontend/placeholders.php:655 includes/functions/listings.php:405 +#: frontend/placeholders.php:655 includes/functions/listings.php:415 msgid "Location" msgstr "Местонахождение" @@ -1928,30 +2017,30 @@ msgstr "" "Возникла проблема при попытке заказчика отправить платеж. Детали операции " "приведены ниже" -#: frontend/templates/email-abort-payment-admin.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:12 msgid "User Name" msgstr "Имя пользователя" -#: frontend/templates/email-abort-payment-admin.tpl.php:10 +#: frontend/templates/email-abort-payment-admin.tpl.php:13 msgid "User Login" msgstr "Логин пользователя" -#: frontend/templates/email-abort-payment-admin.tpl.php:11 +#: frontend/templates/email-abort-payment-admin.tpl.php:14 msgid "User Email" msgstr "Электронная почта пользователя" -#: frontend/templates/email-abort-payment-admin.tpl.php:15 +#: frontend/templates/email-abort-payment-admin.tpl.php:18 #: includes/admin/import/class-csv-importer-columns.php:219 msgid "Payment Term Type" msgstr "Тип варианта оплаты" -#: frontend/templates/email-abort-payment-admin.tpl.php:16 +#: frontend/templates/email-abort-payment-admin.tpl.php:19 #: includes/admin/import/class-csv-importer-columns.php:207 msgid "Payment Term ID" msgstr "Идентификатор варианта оплаты" -#: frontend/templates/email-abort-payment-admin.tpl.php:17 -#: frontend/templates/email-abort-payment-user.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:20 +#: frontend/templates/email-abort-payment-user.tpl.php:12 msgid "Payment transaction ID" msgstr "Идентификатор транзакции оплаты" @@ -1961,11 +2050,11 @@ msgid "Additional Details" msgstr "Дополнительные сведения" #: frontend/templates/email-ad-enabled-user.tpl.php:3 -#: frontend/templates/email-send-ad-access-key.tpl.php:1 +#: frontend/templates/email-send-ad-access-key.tpl.php:3 msgid "Hello %s," msgstr "Здравствуйте %s," -#: frontend/templates/email-ad-enabled-user.tpl.php:6 +#: frontend/templates/email-ad-enabled-user.tpl.php:8 msgid "" "Your Ad \"%1$s\" was recently approved by the admin. You should be able to " "see the Ad published here: %2$s." @@ -2031,8 +2120,8 @@ msgstr "" msgid "Ad Information" msgstr "Информация объявления" -#: frontend/templates/email-ad-updated-user.tpl.php:18 -#: frontend/templates/email-place-ad-success-user.tpl.php:45 +#: frontend/templates/email-ad-updated-user.tpl.php:20 +#: frontend/templates/email-place-ad-success-user.tpl.php:47 msgid "" "If you have questions about your listing contact %s. Thank you for your " "business." @@ -2068,21 +2157,22 @@ msgstr "Итого (кредиты)" msgid "The next link will take you to a page where you can edit the listing:" msgstr "Проследуйте по ссылке, где вы можете отредактировать объявление:" -#: frontend/templates/email-send-ad-access-key.tpl.php:3 +#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#, fuzzy msgid "" -"Below you will find the access key for your Ad \"%s\" associated to the " +"Below you will find the access key for your Ad \"%s\" associated with the " "email address %s." msgstr "" "Ниже представлен ключ доступа к вашему объявлению «%s», который связан с " "электронной почтой %s." -#: frontend/templates/email-send-ad-access-key.tpl.php:6 +#: frontend/templates/email-send-ad-access-key.tpl.php:10 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:13 #: templates/admin/view-listing-admin-page.tpl.php:11 msgid "Access Key" msgstr "Ключ доступа" -#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#: frontend/templates/email-send-ad-access-key.tpl.php:11 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:14 msgid "Edit Link:" msgstr "Ссылка для редактирования:" @@ -2120,6 +2210,12 @@ msgstr "Забыли пароль?" msgid "Classifieds Menu" msgstr "Меню доски объявлений" +#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 +#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 +#, fuzzy +msgid "Complete Payment" +msgstr "Завершение оплаты" + #: frontend/templates/page-buy-credits-final-step.tpl.php:7 msgid "" "The credit in your account can be used to pay for posting your Ads. You can " @@ -2136,9 +2232,9 @@ msgstr "Выберите кредитный план" #: frontend/templates/page-buy-credits-select-credit-plan-step.tpl.php:18 #: frontend/templates/page-renew-ad-order-step.tpl.php:27 -#: frontend/templates/page-reply-to-ad.tpl.php:43 +#: frontend/templates/page-reply-to-ad.tpl.php:48 #: frontend/templates/payments-billing-form.tpl.php:124 -#: frontend/templates/payments-checkout-page.tpl.php:28 +#: frontend/templates/payments-checkout-page.tpl.php:27 #: frontend/templates/payments-payment-completed-page.tpl.php:18 msgid "Continue" msgstr "Продолжить" @@ -2168,27 +2264,27 @@ msgstr "Выслать ключ доступа" msgid "Enter Ad Details" msgstr "Введите детали объявления" -#: frontend/templates/page-place-ad-details-step.tpl.php:35 +#: frontend/templates/page-place-ad-details-step.tpl.php:36 #: includes/admin/import/class-csv-importer-columns.php:79 #: includes/admin/listings/class-listing-owner-metabox.php:59 msgid "Ad Owner" msgstr "Владелец объявления" -#: frontend/templates/page-place-ad-details-step.tpl.php:41 -#: frontend/templates/page-place-ad-order-step.tpl.php:60 +#: frontend/templates/page-place-ad-details-step.tpl.php:43 +#: frontend/templates/page-place-ad-order-step.tpl.php:61 msgid "User" msgstr "Пользователь" -#: frontend/templates/page-place-ad-details-step.tpl.php:42 -#: frontend/templates/page-place-ad-order-step.tpl.php:61 +#: frontend/templates/page-place-ad-details-step.tpl.php:44 +#: frontend/templates/page-place-ad-order-step.tpl.php:62 msgid "Select an User owner for this Ad" msgstr "Выбор владельца объявления" -#: frontend/templates/page-place-ad-details-step.tpl.php:77 +#: frontend/templates/page-place-ad-details-step.tpl.php:81 msgid "Add Details and Contact Information" msgstr "Добавьте сведения и контактную информацию" -#: frontend/templates/page-place-ad-order-step.tpl.php:73 +#: frontend/templates/page-place-ad-order-step.tpl.php:75 msgid "Please select a payment term for your Ad" msgstr "Пожалуйста, выберите метод оплаты вашего объявления" @@ -2232,7 +2328,12 @@ msgstr "" msgid "Your Ad has been renewed" msgstr "Ваше объявление возобновлено" -#: frontend/templates/page-renew-ad.tpl.php:15 +#: frontend/templates/page-renew-ad-order-step.tpl.php:6 +#, fuzzy +msgid "Select Payment Term" +msgstr "Выберите условия оплаты" + +#: frontend/templates/page-renew-ad.tpl.php:13 msgid "" "Please click the payment button below to proceed with Payment for your Ad " "renewal. You will be asked to pay %s." @@ -2240,19 +2341,19 @@ msgstr "" "Пожалуйста, нажмите на кнопку оплаты ниже, чтобы приступить к оплате за " "обновление вашего объявления. Вам будет предложено оплатить %s." -#: frontend/templates/page-reply-to-ad.tpl.php:7 +#: frontend/templates/page-reply-to-ad.tpl.php:10 msgid "You are responding to Ad: %s." msgstr "Вы отвечаете на объявление: %s." -#: frontend/templates/page-reply-to-ad.tpl.php:18 +#: frontend/templates/page-reply-to-ad.tpl.php:24 msgid "Your name" msgstr "Ваше имя" -#: frontend/templates/page-reply-to-ad.tpl.php:24 +#: frontend/templates/page-reply-to-ad.tpl.php:30 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: frontend/templates/page-reply-to-ad.tpl.php:30 +#: frontend/templates/page-reply-to-ad.tpl.php:36 msgid "Your message" msgstr "Ваше сообщение" @@ -2260,19 +2361,19 @@ msgstr "Ваше сообщение" msgid "Search for ads containing this word or phrase" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:37 +#: frontend/templates/page-search-ads.tpl.php:41 msgid "For ads posted by" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:39 +#: frontend/templates/page-search-ads.tpl.php:43 msgid "All Users" msgstr "Все пользователи" -#: frontend/templates/page-search-ads.tpl.php:48 +#: frontend/templates/page-search-ads.tpl.php:55 msgid "Min price" msgstr "Минимальная цена" -#: frontend/templates/page-search-ads.tpl.php:52 +#: frontend/templates/page-search-ads.tpl.php:59 msgid "Max price" msgstr "Максимальная цена" @@ -2280,9 +2381,16 @@ msgstr "Максимальная цена" msgid "Pay With 2Checkout" msgstr "Оплатить через 2Checkout" -#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:791 -#: includes/admin/class-listings-personal-data-provider.php:115 -#: includes/admin/class-listings-personal-data-provider.php:125 +#: frontend/templates/payments-billing-form.tpl.php:1 +#, fuzzy +msgid "" +"Please fill in the billing information in the form below to place your " +"payment." +msgstr "Пожалуйста, заполните платежную информацию в форме." + +#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:797 +#: includes/admin/class-listings-personal-data-provider.php:117 +#: includes/admin/class-listings-personal-data-provider.php:127 #: includes/admin/import/class-csv-importer-columns.php:230 msgid "Country" msgstr "Страна" @@ -2320,15 +2428,15 @@ msgid "Address Line 2" msgstr "Адресная строка 2" #: frontend/templates/payments-billing-form.tpl.php:92 -#: includes/admin/class-listings-personal-data-provider.php:116 -#: includes/admin/class-listings-personal-data-provider.php:126 +#: includes/admin/class-listings-personal-data-provider.php:118 +#: includes/admin/class-listings-personal-data-provider.php:128 #: includes/admin/import/class-csv-importer-columns.php:238 msgid "State" msgstr "Область" -#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:811 -#: includes/admin/class-listings-personal-data-provider.php:117 -#: includes/admin/class-listings-personal-data-provider.php:127 +#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:817 +#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:129 #: includes/admin/import/class-csv-importer-columns.php:260 msgid "City" msgstr "Город" @@ -2342,15 +2450,57 @@ msgstr "Почтовый индекс" msgid "Email" msgstr "Электронная почта" +#: frontend/templates/payments-credit-plans-table.tpl.php:7 +#, fuzzy +msgid "" +"You can additionally purchase a Credit Plan to add credit to your account. " +"If you select to pay using credits, the price of the selected payment term " +"will be deducted from your account balance after you have completed payment." +msgstr "" +"Дополнительно вы можете приобрести один из кредитных планов. Если вы " +"выберете оплату кредитами, стоимость выбранного метода будет списана с " +"вашего кредитного баланса по окончанию операции." + #: frontend/templates/payments-credit-plans-table.tpl.php:22 msgid "No credit plans available." msgstr "Недоступны тарифные планы." +#: frontend/templates/payments-credit-plans-table.tpl.php:51 +#, fuzzy +msgid "clear selection" +msgstr "Очистить выбор" + +#: frontend/templates/payments-payment-completed-page.tpl.php:2 +#, fuzzy +msgid "Transaction Details" +msgstr "Детали транзакции" + +#: frontend/templates/payments-payment-page.tpl.php:3 +#, fuzzy +msgid "You are about to pay for the following items." +msgstr "Вы собираетесь оплатить следующие пункты." + +#: frontend/templates/payments-payment-page.tpl.php:5 +#, fuzzy +msgid "Payment Terms" +msgstr "Условия оплаты" + #: frontend/templates/payments-paypal-payment-button.tpl.php:30 msgid "Make payments with PayPal - it's fast, free and secure!" msgstr "" "Совершать платежи с помощью PayPal - это быстро, бесплатно и безопасно!" +#: frontend/templates/payments-transaction-items-table.tpl.php:4 +#: frontend/templates/payments-transaction-items-table.tpl.php:13 +#, fuzzy +msgid "Item" +msgstr "Название" + +#: frontend/templates/payments-transaction-items-table.tpl.php:34 +#, fuzzy +msgid "Total Amount (credit)" +msgstr "Итого (кредиты)" + #: frontend/templates/widget-categories-form.tpl.php:9 msgid "Hide empty categories." msgstr "Скрыть пустые категории." @@ -2424,7 +2574,7 @@ msgstr "Показывать поле ключевое слово?" msgid "Show Posted By field?" msgstr "Показывать поле Размещено?" -#: frontend/templates/widget-search-form.tpl.php:28 +#: frontend/templates/widget-search-form.tpl.php:32 msgid "Show Category field?" msgstr "Показать поле Категория?" @@ -2440,23 +2590,23 @@ msgstr "AWPCP категории" msgid "Ad Categories" msgstr "Категории объявлений" -#: frontend/widget-latest-ads.php:13 +#: frontend/widget-latest-ads.php:17 msgid "AWPCP Latest Ads" msgstr "Свежие объявления AWPCP" -#: frontend/widget-latest-ads.php:14 +#: frontend/widget-latest-ads.php:18 msgid "Displays a list of latest Ads" msgstr "Отображает список последних объявлений" -#: frontend/widget-latest-ads.php:30 +#: frontend/widget-latest-ads.php:34 msgid "Latest Ads" msgstr "Последние объявления" -#: frontend/widget-latest-ads.php:72 +#: frontend/widget-latest-ads.php:76 msgid "There are currently no ads to show." msgstr "Нет рекламы для показа." -#: frontend/widget-latest-ads.php:114 +#: frontend/widget-latest-ads.php:118 msgid "Read more" msgstr "Читать дальше" @@ -2488,67 +2638,67 @@ msgstr "Все имена контакта" msgid "Select Option" msgstr "Выбор опций" -#: frontend/widget-search.php:105 +#: frontend/widget-search.php:106 msgid "Search by keyword" msgstr "Поиск по ключевому слову" -#: frontend/widget-search.php:119 +#: frontend/widget-search.php:121 msgid "Search by Category" msgstr "Поиск по категориям" -#: frontend/widget-search.php:137 +#: frontend/widget-search.php:141 msgid "Search" msgstr "Искать" -#: functions.php:427 +#: functions.php:431 msgid "%s ago" msgstr "%s назад" -#: functions.php:604 +#: functions.php:610 msgid "Ads per page:" msgstr "Рекламных объявлений на страницу:" -#: functions.php:621 +#: functions.php:627 msgid "Page {current_page_number} of {number_of_pages}" msgstr "Страница {current_page_number} из {number_of_pages}" -#: functions.php:732 +#: functions.php:738 msgid "None" msgstr "Нет" -#: functions.php:792 +#: functions.php:798 msgid "separate countries by commas" msgstr "Разделять округа запятыми" -#: functions.php:801 +#: functions.php:807 msgid "State/Province" msgstr "Штат / Провинция" -#: functions.php:802 +#: functions.php:808 msgid "separate states by commas" msgstr "Разделять штаты запятыми" -#: functions.php:812 +#: functions.php:818 msgid "separate cities by commas" msgstr "Разделять города запятыми" -#: functions.php:821 +#: functions.php:827 msgid "County/Village/Other" msgstr "Область/Деревня/Другое" -#: functions.php:822 +#: functions.php:828 msgid "separate counties by commas" msgstr "Разделять округа запятыми" -#: functions.php:1036 +#: functions.php:1050 msgid "-- Choose a Country --" msgstr "-- Выберите страну --" -#: functions.php:1507 templates/admin/main-classifieds-admin-page.tpl.php:58 +#: functions.php:1537 templates/admin/main-classifieds-admin-page.tpl.php:58 msgid "Free" msgstr "Бесплатно" -#: functions.php:1852 templates/components/media-center.tpl.php:14 +#: functions.php:1893 templates/components/media-center.tpl.php:14 msgid "" "The images or files with pale red background have been rejected by an " "administrator user. Likewise, files with a pale yellow background are " @@ -2560,7 +2710,7 @@ msgstr "" "утверждения. Файлы, ожидающие утверждения и отклоненные файлы не " "отображаются в интерфейсе." -#: functions.php:1871 +#: functions.php:1912 msgid "" "This version of AWPCP %1$s module is not compatible with AWPCP version %2$s. " "Please get AWPCP %1$s %3$s or newer!" @@ -2568,55 +2718,55 @@ msgstr "" "Эта версия модуля AWPCP %1$s не совместима с AWPCP версии %2$s. Пожалуйста, " "получите AWPCP %1$s %3$s или новее!" -#: functions.php:1873 +#: functions.php:1914 msgid "Error" msgstr "Ошибка" -#: functions.php:2231 +#: functions.php:2287 msgid "No errors." msgstr "Нет ошибок." -#: functions.php:2232 +#: functions.php:2288 msgid "The file is larger than upload_max_filesize." msgstr "Файл превышает размер upload_max_filesize. " -#: functions.php:2233 +#: functions.php:2289 msgid "The file is larger than form MAX_FILE_SIZE." msgstr "Файл превышает размер MAX_FILE_SIZE." -#: functions.php:2234 +#: functions.php:2290 msgid "The file was only partially uploaded." msgstr "Файл был загружен лишь частично." -#: functions.php:2235 +#: functions.php:2291 msgid "No file was uploaded." msgstr "Файл не был загружен." -#: functions.php:2236 +#: functions.php:2292 msgid "Missing temporary directory." msgstr "Отсутствет временный каталог." -#: functions.php:2237 +#: functions.php:2293 msgid "Can't write file to disk." msgstr "Невозможно записать файл на диск." -#: functions.php:2238 +#: functions.php:2294 msgid "The file upload was stopped by extension." msgstr "Загрузка файла была остановленна из-за расширения." -#: functions.php:2476 +#: functions.php:2536 msgid "Your Ad \"%s\" has been approved" msgstr "Ваше объявление \"%s\" было одобрено" -#: functions.php:2499 +#: functions.php:2559 msgid "Your Ad \"%s\" has been successfully updated" msgstr "Ваше объявление \"%s\" было успешно обновлено" -#: functions.php:2521 +#: functions.php:2581 msgid "Images on Ad \"%s\" are awaiting approval" msgstr "Изображения в объявлении \"%s\" ожидающие утверждения" -#: functions.php:2523 +#: functions.php:2583 msgid "" "Images on Ad \"%s\" are awaiting approval. You can approve the images going " "to the Manage Images section for that Ad and clicking the \"Enable\" button " @@ -2627,13 +2777,13 @@ msgstr "" "кнопку \"Включить\", расположенную ниже каждого изображения. Нажмите здесь, " "чтобы продолжить: %s." -#: functions.php:2526 +#: functions.php:2586 msgid "The Ad \"%s\" is awaiting approval" msgstr "Объявление \"%s\" ожидает утверждения" #. translators: %1$s is the listing title. %2$s is the URL for managing #. listing. -#: functions.php:2529 includes/functions/notifications.php:157 +#: functions.php:2589 includes/functions/notifications.php:156 msgid "" "The Ad \"%1$s\" is awaiting approval. You can approve the Ad going to the " "Classified edit section and clicking the \"Publish\" button. Click here to " @@ -2641,7 +2791,7 @@ msgid "" msgstr "" #. translators: %s is the URL for managing listing images. -#: functions.php:2536 includes/functions/notifications.php:165 +#: functions.php:2596 includes/functions/notifications.php:164 msgid "" "Additionally, You can approve the images going to the Manage Images section " "for that Ad and clicking the \"Enable\" button below each image. Click here " @@ -2651,27 +2801,27 @@ msgstr "" "Изображениями\" этого объявления и нажав на \"Включить\", расположенную ниже " "каждого изображения. Нажмите здесь, чтобы продолжить: %s." -#: functions.php:3068 +#: functions.php:3123 msgid "Email sent %s." msgstr "Отправлено %s." -#: functions.php:3199 +#: functions.php:3254 msgid "Not Installed" msgstr "Не установлены" -#: functions.php:3203 +#: functions.php:3258 msgid "Installed" msgstr "Установлен" -#: functions.php:3211 +#: functions.php:3266 msgid "SSL Support: Yes." msgstr "Поддержка SSL: Да." -#: functions.php:3213 +#: functions.php:3268 msgid "SSL Support: No." msgstr "Поддержка SSL: Нет." -#: functions.php:3216 +#: functions.php:3271 msgid "OpenSSL version:" msgstr "Версия OpenSSL:" @@ -2691,58 +2841,58 @@ msgstr "" msgid "Search for listings matching" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:110 +#: includes/admin/class-listings-personal-data-provider.php:112 msgid "Classified ID" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:111 +#: includes/admin/class-listings-personal-data-provider.php:113 msgid "Contact Name" msgstr "Имя контакта" -#: includes/admin/class-listings-personal-data-provider.php:112 +#: includes/admin/class-listings-personal-data-provider.php:114 msgid "Contact Phone Number" msgstr "Контактный номер телефона" -#: includes/admin/class-listings-personal-data-provider.php:113 +#: includes/admin/class-listings-personal-data-provider.php:115 msgid "Contact Phone Number Digits" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:114 +#: includes/admin/class-listings-personal-data-provider.php:116 msgid "Contact Email" msgstr "Контактный адрес электронной почты" -#: includes/admin/class-listings-personal-data-provider.php:118 -#: includes/admin/class-listings-personal-data-provider.php:128 +#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:130 #: includes/admin/import/class-csv-importer-columns.php:249 msgid "County" msgstr "Страна" -#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:121 msgid "Website URL" msgstr "Адрес сайта" -#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:122 #: includes/admin/class-payment-personal-data-provider.php:47 msgid "Payer Email" msgstr "Email плательщика" -#: includes/admin/class-listings-personal-data-provider.php:121 +#: includes/admin/class-listings-personal-data-provider.php:123 msgid "Author IP" msgstr "IP автора" -#: includes/admin/class-listings-personal-data-provider.php:132 +#: includes/admin/class-listings-personal-data-provider.php:134 msgid "URL" msgstr "URL" -#: includes/admin/class-listings-personal-data-provider.php:146 +#: includes/admin/class-listings-personal-data-provider.php:148 msgid "Classifieds Listings" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:157 +#: includes/admin/class-listings-personal-data-provider.php:159 msgid "Classifieds Media" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:218 +#: includes/admin/class-listings-personal-data-provider.php:220 msgid "" "An unknown error occurred while trying to delete information for classified " "{listing_id}." @@ -2763,7 +2913,7 @@ msgid "Contact Address" msgstr "Контактный адрес" #: includes/admin/class-user-personal-data-provider.php:55 -#: includes/settings/class-display-settings.php:476 +#: includes/settings/class-display-settings.php:475 msgid "Contact Phone" msgstr "Контактный телефон" @@ -2861,8 +3011,8 @@ msgid "" msgstr "" #: includes/admin/import/class-importer-form-steps.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:17 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:88 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:14 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:80 msgid "Upload Source Files" msgstr "Загрузить исходный файл" @@ -2871,12 +3021,12 @@ msgid "Configuration" msgstr "Настройки" #: includes/admin/import/class-importer-form-steps.php:29 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:173 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:176 msgid "Import" msgstr "Импорт" #: includes/admin/import/class-importer-form-steps.php:32 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:172 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:175 msgid "Test Import" msgstr "Тестовый импорт" @@ -2935,7 +3085,7 @@ msgstr[2] "" msgstr[3] "" #: includes/admin/listings/class-listing-owner-metabox.php:62 -#: templates/frontend/order-submit-listing-section.tpl.php:45 +#: templates/frontend/order-submit-listing-section.tpl.php:42 msgid "Please select a user" msgstr "Выберите пользователя" @@ -3434,44 +3584,44 @@ msgstr "Карта сайта XML " msgid "ZIP Code Search Module" msgstr "Модуль поиска по почтовому индексу" -#: includes/class-awpcp.php:1445 +#: includes/class-awpcp.php:1436 msgid "This field is required." msgstr "Это поле является обязательным." -#: includes/class-awpcp.php:1446 +#: includes/class-awpcp.php:1437 #: includes/form-fields/class-form-fields-validator.php:101 #: includes/frontend/class-edit-listing-page.php:273 #: includes/frontend/class-edit-listing-page.php:350 -#: includes/settings/class-payment-general-settings.php:158 +#: includes/settings/class-payment-general-settings.php:157 msgid "Please enter a valid email address." msgstr "Пожалуйста, введите действующий адрес электронной почты." -#: includes/class-awpcp.php:1447 includes/class-awpcp.php:1448 +#: includes/class-awpcp.php:1438 includes/class-awpcp.php:1439 msgid "Please enter a valid URL." msgstr "Пожалуйста, введите правильный URL." -#: includes/class-awpcp.php:1449 +#: includes/class-awpcp.php:1440 msgid "Please enter a valid number." msgstr "Пожалуйста, введите правильный номер." -#: includes/class-awpcp.php:1450 +#: includes/class-awpcp.php:1441 msgid "Please enter a valid amount." msgstr "Пожалуйста, введите корректное количество." -#: includes/class-awpcp.php:1451 +#: includes/class-awpcp.php:1442 msgid "" "You have reached the maximum allowed categories for the selected fee plan." msgstr "" -#: includes/class-awpcp.php:1470 +#: includes/class-awpcp.php:1461 msgid "There are files currently being uploaded." msgstr "Несколько файлов загружаются." -#: includes/class-awpcp.php:1471 +#: includes/class-awpcp.php:1462 msgid "There are files pending to be uploaded." msgstr "Несколько файлов ожидают загрузки." -#: includes/class-awpcp.php:1472 +#: includes/class-awpcp.php:1463 msgid "You haven't uploaded any images or files." msgstr "Вы не загрузили ни одного файла." @@ -3528,23 +3678,23 @@ msgstr "" "Свяжитесь с отделом технической поддержки для решения этой " "проблемы." -#: includes/class-listings-api.php:106 includes/class-listings-api.php:306 +#: includes/class-listings-api.php:106 includes/class-listings-api.php:310 msgid "" "There was an unexpected error trying to save the listing details. Please try " "again or contact an administrator." msgstr "" -#: includes/class-listings-api.php:197 +#: includes/class-listings-api.php:199 msgid "" "To avoid overwritting existing metadata, use fill_default_listing_metadata() " "instead." msgstr "" -#: includes/class-listings-api.php:302 +#: includes/class-listings-api.php:306 msgid "There was an error trying to save the listing details:" msgstr "" -#: includes/class-listings-api.php:730 +#: includes/class-listings-api.php:734 msgid "" "If you have uploaded images your images will not show up until an admin has " "approved them." @@ -3588,19 +3738,19 @@ msgid "" "customer support with a copy of your file." msgstr "" -#: includes/credit-plan.php:109 includes/payment-term.php:133 +#: includes/credit-plan.php:114 includes/payment-term.php:133 msgid "The name of the plan is required." msgstr "Требуется название плана" -#: includes/credit-plan.php:112 includes/payment-term.php:151 +#: includes/credit-plan.php:117 includes/payment-term.php:151 msgid "The number of credits must be greater than zero." msgstr "Количество кредитов должно быть положительным числом." -#: includes/credit-plan.php:115 +#: includes/credit-plan.php:120 msgid "The price must be greater or equal than zero." msgstr "Цена должна быть равной или больше нуля." -#: includes/credit-plan.php:153 +#: includes/credit-plan.php:158 msgid "The Credit Plan doesn't exist." msgstr "Кредитный план не существует." @@ -3690,7 +3840,7 @@ msgstr "" msgid "Please read and accept the Terms of Service." msgstr "Пожалуйста, прочтите и примите Правила использования." -#: includes/frontend/class-captcha.php:70 +#: includes/frontend/class-captcha.php:77 msgid "" "An unknown error ocurred trying to validate the answer to the CAPTCHA " "challenge." @@ -3708,14 +3858,14 @@ msgid "" "allowed to submit classifieds." msgstr "" -#: includes/frontend/class-default-captcha-provider.php:59 +#: includes/frontend/class-default-captcha-provider.php:76 msgid "" "You did not solve the math problem. Please solve the math problem to proceed." msgstr "" "Вы не решили математическую задачу. Пожалуйста, решите математическую " "задачу, чтобы продолжить." -#: includes/frontend/class-default-captcha-provider.php:64 +#: includes/frontend/class-default-captcha-provider.php:81 msgid "Your solution to the math problem was incorrect. Please try again." msgstr "" "Ваше решение математической задачи, было неправильным. Пожалуйста, " @@ -3874,15 +4024,15 @@ msgstr "" #. translators: %s will become an A HTML tag pointing to reCAPTCHA admin #. console. -#: includes/frontend/class-recaptcha-provider.php:47 +#: includes/frontend/class-recaptcha-provider.php:68 msgid "To use reCAPTCHA you must get an API key from %s." msgstr "Чтобы использовать reCAPTCHA необходимо получить API-ключ от %s." -#: includes/frontend/class-recaptcha-provider.php:85 +#: includes/frontend/class-recaptcha-provider.php:106 msgid "Your answers couldn't be verified by the reCAPTCHA server." msgstr "Ваши ответы не подтверждены сервером reCAPTCHA." -#: includes/frontend/class-recaptcha-v2.php:51 +#: includes/frontend/class-recaptcha-v2.php:78 msgid "" "There was an error trying to verify the reCAPTCHA answer. " msgstr "" @@ -3897,8 +4047,8 @@ msgid "Login/Registration" msgstr "Войти/Зарегистрироваться" #: includes/frontend/class-submit-listing-form-steps.php:48 -#: includes/ui/class-category-selector.php:125 -#: templates/components/category-selector.tpl.php:16 +#: includes/ui/class-category-selector.php:147 +#: templates/components/category-selector.tpl.php:15 msgid "Select a Category" msgstr "Выбор Категории" @@ -4044,12 +4194,12 @@ msgstr "Файл не может быть перенесен в данную п msgid "Could not create resized versions of image %s." msgstr "Не удалось создать измененную версию изображения %s." -#: includes/functions/format.php:67 +#: includes/functions/format.php:50 msgid "Classifieds Management System" msgstr "Система управления объявлениями" #. translators: example: and -#: includes/functions/format.php:84 +#: includes/functions/format.php:67 msgid " and " msgstr " и " @@ -4101,22 +4251,22 @@ msgstr "Пожалуйста, введите подробности вашей msgid "Top Level Category" msgstr "Категория Верхнего Уровня" -#: includes/functions/listings.php:278 -#: includes/listings/class-listings-content-renderer.php:169 +#: includes/functions/listings.php:288 +#: includes/listings/class-listings-content-renderer.php:182 msgid "Are you sure you want to flag this ad?" msgstr "Вы действительно хотите пожаловаться на это объявление?" -#: includes/functions/listings.php:279 -#: includes/listings/class-listings-content-renderer.php:170 +#: includes/functions/listings.php:289 +#: includes/listings/class-listings-content-renderer.php:183 msgid "This Ad has been flagged." msgstr "Это объявление уже было помечено." -#: includes/functions/listings.php:280 -#: includes/listings/class-listings-content-renderer.php:171 +#: includes/functions/listings.php:290 +#: includes/listings/class-listings-content-renderer.php:184 msgid "An error occurred while trying to flag the Ad." msgstr "Произошла ошибка при попытке пометить объявление." -#: includes/functions/listings.php:317 +#: includes/functions/listings.php:327 msgid "" "Sorry, that listing is not available. Please try browsing or searching " "existing listings." @@ -4124,7 +4274,7 @@ msgstr "" "К сожалению, это объявление не доступно. Пожалуйста, попробуйте поискать или " "посмотреть существующие объявления." -#: includes/functions/listings.php:334 +#: includes/functions/listings.php:344 msgid "" "The Ad you are trying to view is pending approval. Once the Administrator " "approves it, it will be active and visible." @@ -4132,12 +4282,12 @@ msgstr "" "Объявление которое вы пытаетесь просмотреть находится в стадии утверждения. " "После того, как администратор одобрит его, оно будет доступно." -#: includes/functions/listings.php:340 +#: includes/functions/listings.php:350 #: includes/listings/class-listings-content-renderer.php:106 msgid "Your email address was successfully verified." msgstr "Ваш адрес электронной почты был успешно проверен." -#: includes/functions/listings.php:344 +#: includes/functions/listings.php:354 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the Administrator) and the author can see it." @@ -4145,7 +4295,7 @@ msgstr "" "Объявление временно отключено до тех пор, пока администратор не одобрит его. " "Только вы (Администратор) и автор может его увидеть." -#: includes/functions/listings.php:347 +#: includes/functions/listings.php:357 msgid "" "This Ad is currently disabled until you verify the email address used for " "the contact information. Only you (the author) can see it." @@ -4153,7 +4303,7 @@ msgstr "" "Объявление временно отключено до подтверждения вашего электронного адреса. " "Только вы (автор) можете видеть его." -#: includes/functions/listings.php:350 +#: includes/functions/listings.php:360 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the author) can see it." @@ -4171,13 +4321,13 @@ msgid "Listing \"%s\" was updated" msgstr "Объявление \"%s\" было изменено" #. translators: %s is the listing title. -#: includes/functions/notifications.php:147 +#: includes/functions/notifications.php:146 msgid "Images on listing \"%s\" are awaiting approval" msgstr "Изображения в объявлении \"%s\" ожидают утверждения" #. translators: %1$s is the listing title. %2$s is the URL for managing listing #. images. -#: includes/functions/notifications.php:150 +#: includes/functions/notifications.php:149 msgid "" "Images on Ad \"%1$s\" are awaiting approval. You can approve the images " "going to the Manage Images section for that Ad and clicking the \"Enable\" " @@ -4185,11 +4335,11 @@ msgid "" msgstr "" #. translators: %s is the listing title. -#: includes/functions/notifications.php:154 +#: includes/functions/notifications.php:153 msgid "Listing \"%s\" is awaiting approval" msgstr "Объявление \"%s\" ожидает утверждения" -#: includes/functions/notifications.php:202 +#: includes/functions/notifications.php:201 msgid "Listing was flagged" msgstr "Объявление было помечено как подозрительное" @@ -4207,7 +4357,8 @@ msgid "Missing License Status parameter" msgstr "Отсутствует параметр лицензионного статуса" #: includes/helpers/class-easy-digital-downloads.php:53 -msgid "License Status parameter was set to Failed" +#, fuzzy +msgid "License Status parameter was set to Failed" msgstr "" "Параметр лицензионного статуса установлен в значениеПросрочен" @@ -4326,7 +4477,7 @@ msgstr[3] "" "that module. Please contact customer support and ask for an update. Please " "also include a reference to this error in your message." -#: includes/helpers/class-modules-manager.php:217 +#: includes/helpers/class-modules-manager.php:220 msgid "" "The version of AWPCP {modules_names} is not compatible with version " "{awpcp_version}." @@ -4338,12 +4489,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: includes/helpers/class-modules-manager.php:219 +#: includes/helpers/class-modules-manager.php:222 msgid "Please get AWPCP {required_modules_versions} or newer!" msgstr "" "Пожалуйста, установите версию AWPCP {required_modules_versions} или новее!" -#: includes/helpers/class-modules-manager.php:250 +#: includes/helpers/class-modules-manager.php:256 msgid "" "The license for AWPCP is inactive. All features will remain " "disabled until you activate the license. Please go to the Настройки лицензий для ввода или обновления лицензии." -#: includes/helpers/class-modules-manager.php:264 +#: includes/helpers/class-modules-manager.php:276 msgid "" "The AWPCP requires a license to be used. All features will " "remain disabled until a valid license is entered. Please go to the Настройки лицензий для ввода или обновления " "лицензии." -#: includes/helpers/class-modules-manager.php:269 +#: includes/helpers/class-modules-manager.php:284 msgid "" "The license for AWPCP expired. The module will continue to " "work but you will not receive automatic updates when a new version is " @@ -4422,7 +4573,7 @@ msgstr[3] "" "Лицензия для модулей истекла. Модуль продолжит штатную " "работу, но вы не сможете получать обноления до новых версий." -#: includes/helpers/class-modules-manager.php:281 +#: includes/helpers/class-modules-manager.php:299 msgid "" "The AWPCP is currently disabled because it requires you to " "perform a manual upgrade before continuing. Please go to the " @@ -4436,17 +4587,17 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: includes/helpers/class-modules-manager.php:294 +#: includes/helpers/class-modules-manager.php:312 msgid "The specified module does not exists!." msgstr "Указанный модуль не существует." -#: includes/helpers/class-recaptcha-v3.php:56 +#: includes/helpers/class-recaptcha-v3.php:78 msgid "" "There was an error trying to analyze the current interaction with reCAPTCHA. " "" msgstr "" -#: includes/helpers/class-recaptcha-v3.php:98 +#: includes/helpers/class-recaptcha-v3.php:120 msgid "" "The current interaction was not approved by reCAPTCHA. Please try again." msgstr "" @@ -4507,11 +4658,11 @@ msgstr "" "Во время обработки вашего платежа возникла ошибка. Пожалуйста, повторите " "попытку позже или свяжитесь с администратором." -#: includes/helpers/widgets/class-user-field.php:32 +#: includes/helpers/widgets/class-user-field.php:48 msgid "Select an User" msgstr "Существующий Пользователь" -#: includes/helpers/widgets/multiple-region-selector.php:123 +#: includes/helpers/widgets/multiple-region-selector.php:143 msgid "" "This particular region is already selected in another field. Please choose " "one or more sub-regions, to make the selection more specific, or change the " @@ -4521,19 +4672,19 @@ msgstr "" "более подрегионов, чтобы сделать выбор более конкретным, или изменить " "выбранный регион." -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Search Region" msgstr "Добавить Регион Поиска" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Region" msgstr "Добавить регион" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Delete Search Region" msgstr "Удалить регион для поиска" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Remove Region" msgstr "Удалить Регион" @@ -4595,6 +4746,11 @@ msgstr "Вы можете использовать эту кнопку для о msgid "There was an error trying to update the database." msgstr "Произошла ошибка при попытке записи в базу данных." +#: includes/media/class-attachment-action-ajax-handler.php:53 +#, fuzzy +msgid "You are not allowed to perform this action." +msgstr "У вас нет прав для совершения этого действия." + #: includes/media/class-attachment-action-ajax-handler.php:57 msgid "The specified file is not associated with Listing with ID %d." msgstr "Указанный файл не связан с объявлением с номером %d." @@ -4689,7 +4845,7 @@ msgstr "" "Размер файла меньше, чем минимально дозволенное значение в байт. Загрузка прекращена." -#: includes/media/class-listings-media-uploader-component.php:51 +#: includes/media/class-listings-media-uploader-component.php:56 msgid "" "You can upload images of up to each, " " videos of up to each and " @@ -4700,7 +4856,7 @@ msgstr "" "file-size> каждый и прочих файлов (кроме видео) размером не " "более каждый." -#: includes/media/class-listings-media-uploader-component.php:52 +#: includes/media/class-listings-media-uploader-component.php:57 msgid "" "You can upload images of up to each and " " other files (no videos) of up to each." @@ -4709,7 +4865,7 @@ msgstr "" "file-size> каждый и прочих файлов (кроме видео) размером не " "более каждый." -#: includes/media/class-listings-media-uploader-component.php:53 +#: includes/media/class-listings-media-uploader-component.php:58 msgid "" "You can upload images of up to each and " " videos of up to each." @@ -4718,7 +4874,7 @@ msgstr "" "file-size> каждый и видео файлов размером не более каждый." -#: includes/media/class-listings-media-uploader-component.php:54 +#: includes/media/class-listings-media-uploader-component.php:59 msgid "" "You can upload videos of up to each and " " other files (no images) of up to each." @@ -4727,14 +4883,14 @@ msgstr "" "file-size> каждый и остальных файлов (кроме изображений) " "размером не более каждый." -#: includes/media/class-listings-media-uploader-component.php:55 +#: includes/media/class-listings-media-uploader-component.php:60 msgid "" "You can upload images of up to each." msgstr "" "Вы можете загрузить изображений, размером не более каждый." -#: includes/media/class-listings-media-uploader-component.php:56 +#: includes/media/class-listings-media-uploader-component.php:61 msgid "" "You can upload files (no videos or images) of up to each." @@ -4742,7 +4898,7 @@ msgstr "" "Вы можете добавить файлов (кроме видео и изображений) размером " "не более каждый." -#: includes/media/class-listings-media-uploader-component.php:57 +#: includes/media/class-listings-media-uploader-component.php:62 msgid "" "You can upload videos of up to each." msgstr "" @@ -4840,15 +4996,15 @@ msgstr "" msgid "General" msgstr "Общие" -#: includes/models/payment-transaction.php:225 +#: includes/models/payment-transaction.php:232 msgid "The transaction must be assigned to a WordPress user." msgstr "Транзакция должна быть назначена пользователю WordPress." -#: includes/models/payment-transaction.php:238 +#: includes/models/payment-transaction.php:245 msgid "The transaction has no items." msgstr "В транзакции отсутствуют предметы оплаты." -#: includes/models/payment-transaction.php:250 +#: includes/models/payment-transaction.php:257 msgid "" "The amount of credit in your account is not enough to pay for the selected " "items. Please choose one of the available Credit Plans in addition to the " @@ -4860,7 +5016,7 @@ msgstr "" "кредиты на странице вашего профиля.
Вам необходимо дополнительно %d " "кредитов." -#: includes/models/payment-transaction.php:252 +#: includes/models/payment-transaction.php:259 msgid "" "The selected Credit Plan is not enough to pay for the selected items. Please " "choose a bigger Credit Plan or add credit to your account from your Profile " @@ -4870,11 +5026,11 @@ msgstr "" "Пожалуйста, выберите более крупный кредитный план или пополните кредиты на " "странице вашего профиля.
Вам необходимо дополнительно %d кредитов." -#: includes/models/payment-transaction.php:282 +#: includes/models/payment-transaction.php:289 msgid "You must select a payment method." msgstr "Вы должны выбрать способ оплаты." -#: includes/models/payment-transaction.php:294 +#: includes/models/payment-transaction.php:301 msgid "The payment status for this transaction hasn't been defined." msgstr "Статус оплаты для данной транзакции пока не определен." @@ -4891,7 +5047,7 @@ msgstr "" "совершали платёж, вы можете проигнорировать это сообщение. " #: includes/payment-gateway-2checkout.php:101 -#: includes/payment-gateway-paypal-standard.php:140 +#: includes/payment-gateway-paypal-standard.php:142 msgid "" "The amount you have paid does not match the required amount for this " "transaction. Please contact us to clarify the problem." @@ -4900,7 +5056,7 @@ msgstr "" "Пожалуйста, свяжитесь с нами, для уточнения проблемы." #: includes/payment-gateway-2checkout.php:109 -#: includes/payment-gateway-paypal-standard.php:148 +#: includes/payment-gateway-paypal-standard.php:150 msgid "" "There was an error processing your transaction. If funds have been deducted " "from your account, they have not been processed to our account. You will " @@ -4911,7 +5067,7 @@ msgstr "" "с PayPal для выяснения причин." #: includes/payment-gateway-2checkout.php:119 -#: includes/payment-gateway-paypal-standard.php:158 +#: includes/payment-gateway-paypal-standard.php:160 msgid "" "It appears this transaction has already been processed. If you do not see " "your ad in the system please contact the site adminstrator for assistance." @@ -4921,7 +5077,7 @@ msgstr "" "получения помощи." #. translators: %s link url. -#: includes/payment-gateway-paypal-standard.php:58 +#: includes/payment-gateway-paypal-standard.php:60 msgid "" "We haven't received your payment information from PayPal yet and we are " "unable to verify your transaction. Please reload this page or visit admin section to change the order in which " "the fields mentioned below are shown to users in the Ad Details form." @@ -5728,33 +5884,33 @@ msgstr "" "Для изменения порядка следования полей перейдите в панель ." -#: includes/settings/class-display-settings.php:452 +#: includes/settings/class-display-settings.php:451 msgid "Form Fields Behavior" msgstr "" -#: includes/settings/class-display-settings.php:461 +#: includes/settings/class-display-settings.php:460 #: templates/admin/import/supported-csv-headers.tpl.php:18 msgid "Field" msgstr "Поле" -#: includes/settings/class-display-settings.php:462 +#: includes/settings/class-display-settings.php:461 msgid "Show field on form" msgstr "Показать поле на форме" -#: includes/settings/class-display-settings.php:463 +#: includes/settings/class-display-settings.php:462 msgid "Show field on search form" msgstr "Показать поле на поисковой форме" -#: includes/settings/class-display-settings.php:464 +#: includes/settings/class-display-settings.php:463 #: templates/admin/import/supported-csv-headers.tpl.php:19 msgid "Required" msgstr "Обязательно" -#: includes/settings/class-display-settings.php:465 +#: includes/settings/class-display-settings.php:464 msgid "Show value to registered users only" msgstr "Показать значение только зарегистрированным пользователям" -#: includes/settings/class-display-settings.php:469 +#: includes/settings/class-display-settings.php:468 msgid "Website" msgstr "Сайт" @@ -5848,26 +6004,25 @@ msgstr "" "флажок отключенным и убедится, что адрес электронной почтыа дминистратора " "WordPress , связан с учетной записью вашего хостинга." -#. translators: full-email-address=John Doe , -#. short-email-address=john.doe@example.com -#: includes/settings/class-email-settings.php:84 +#. translators: %1$s=John Doe , %2$s=john.doe@example.com +#: includes/settings/class-email-settings.php:85 msgid "" "If checked, whenever the name of the recipient is available, emails will be " -"sent to instead of just . Some " -"email servers, however, have problems handling email address that include " -"the name of the recipient. If emails sent by the plugin are not being " -"delivered properly, try unchecking this settting." +"sent to %1$s instead of just %2$s. Some email servers, however, have " +"problems handling email address that include the name of the recipient. If " +"emails sent by the plugin are not being delivered properly, try unchecking " +"this settting." msgstr "" -#: includes/settings/class-email-settings.php:91 +#: includes/settings/class-email-settings.php:93 msgid "Include the name of the recipient in the email address" msgstr "Включить имя получателя в адрес электронной почты" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "Include Ad access key in email messages" msgstr "Включить ключ доступа объявления в сообщение электронной почты" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "" "Include Ad access key in email notifications. You may want to uncheck this " "option if you are using the Ad Management panel, but is not necessary." @@ -5876,96 +6031,96 @@ msgstr "" "эту опцию, если вы используете Панель Управления Объявлением, но это не " "является необходимым." -#: includes/settings/class-email-settings.php:106 +#: includes/settings/class-email-settings.php:108 msgid "Messages" msgstr "Сообщения" -#: includes/settings/class-email-settings.php:118 +#: includes/settings/class-email-settings.php:120 msgid "Ad Posted Message" msgstr "Сообщение о Размещении Объявления" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject for Ad posted notification email" msgstr "Тема почтового сообщения о размещении объявления" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Your Classified Ad listing has been submitted" msgstr "Ваши список объявлений был размещен" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject line for email sent out when someone posts an Ad" msgstr "" "Тема почтового сообщения, отправляемого, когда кто-то разместил объявление" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Body for Ad posted notification email" msgstr "Текст почтового сообщения о размещении объявления" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "" "Thank you for submitting your Classified Ad. The details of your ad are " "shown below." msgstr "Спасибо за публикацию объявления. Детали объявления показаны ниже." -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Message body text for email sent out when someone posts an Ad" msgstr "" "Текст почтового сообщения, отправляемого, когда кто-то разместил объявление" -#: includes/settings/class-email-settings.php:127 +#: includes/settings/class-email-settings.php:129 msgid "Reply to Ad Message" msgstr "Сообщение об Ответе на Объявление" -#: includes/settings/class-email-settings.php:132 +#: includes/settings/class-email-settings.php:134 msgid "Response notification for listing owners" msgstr "" -#: includes/settings/class-email-settings.php:139 +#: includes/settings/class-email-settings.php:141 msgid "" "Subject and body template for email sent out when someone replies to an ad." msgstr "" -#: includes/settings/class-email-settings.php:141 -#: includes/settings/class-email-settings.php:167 +#: includes/settings/class-email-settings.php:143 +#: includes/settings/class-email-settings.php:169 msgid "The name of the person who replied." msgstr "Имя ответившей персоны." -#: includes/settings/class-email-settings.php:142 -#: includes/settings/class-email-settings.php:168 +#: includes/settings/class-email-settings.php:144 +#: includes/settings/class-email-settings.php:170 msgid "The email adderss of the person who replied." msgstr "Электронная почта ответившей персоны." -#: includes/settings/class-email-settings.php:143 -#: includes/settings/class-email-settings.php:169 -#: includes/settings/class-email-settings.php:206 +#: includes/settings/class-email-settings.php:145 +#: includes/settings/class-email-settings.php:171 +#: includes/settings/class-email-settings.php:208 msgid "The title of the ad where the reply was posted." msgstr "" -#: includes/settings/class-email-settings.php:144 -#: includes/settings/class-email-settings.php:170 +#: includes/settings/class-email-settings.php:146 +#: includes/settings/class-email-settings.php:172 msgid "The URL for the ad where the reply was posted." msgstr "" -#: includes/settings/class-email-settings.php:145 -#: includes/settings/class-email-settings.php:171 +#: includes/settings/class-email-settings.php:147 +#: includes/settings/class-email-settings.php:173 msgid "The content of the reply." msgstr "Содержание ответа." -#: includes/settings/class-email-settings.php:146 -#: includes/settings/class-email-settings.php:172 +#: includes/settings/class-email-settings.php:148 +#: includes/settings/class-email-settings.php:174 msgid "The title of this website" msgstr "Заголовок этого сайта" -#: includes/settings/class-email-settings.php:147 -#: includes/settings/class-email-settings.php:173 +#: includes/settings/class-email-settings.php:149 +#: includes/settings/class-email-settings.php:175 msgid "The URL of this website's homepage" msgstr "URL домашней страницы веб-сайта" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "Notify admin about contact message" msgstr "Уведомлять администратора об ответах на объявления" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "" "An email will be sent to the administrator every time a visitor sends a " "message to one of the Ad posters through the Reply to Ad page." @@ -5973,29 +6128,29 @@ msgstr "" "Письмо будет отправляться администратору каждый раз, когда посетитель " "оставляет сообщение в одном из объявлений." -#: includes/settings/class-email-settings.php:158 +#: includes/settings/class-email-settings.php:160 msgid "Response notification for administrators" msgstr "" -#: includes/settings/class-email-settings.php:165 +#: includes/settings/class-email-settings.php:167 msgid "" "Subject and body template for email sent out to administrators when someone " "replies to an ad." msgstr "" -#: includes/settings/class-email-settings.php:183 +#: includes/settings/class-email-settings.php:185 msgid "Resend Access Key Message" msgstr "Сообщение с ключом доступа" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "Subject for Request Ad Access Key email" msgstr "Тема почтового сообщения о ключе доступа объявления" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "The Classified Ad's ad access key you requested" msgstr "Ключ доступа к объявлению, который вы запросили" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "" "Subject line for email sent out when someone requests their ad access key " "resent" @@ -6003,11 +6158,11 @@ msgstr "" "Тема почтового сообщения, отправляемого, когда кто-то запросил ключ доступа " "к объявлению" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "Body for Request Ad Access Key email" msgstr "Текст почтового сообщения о ключе доступа к объявлению" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "You asked to have your Classified Ad's access key resent. Below are all the " "Ad access keys in the system that are tied to the email address you provided" @@ -6016,7 +6171,7 @@ msgstr "" "представлены все ключи доступа объявлений в системе, которые связаны с " "указанным Вами адресом электронной почты" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "Message body text for email sent out when someone requests their ad access " "key resent" @@ -6024,62 +6179,83 @@ msgstr "" "Текст почтового сообщения, отправляемого, когда кто-то запроси ключ доступа " "к объявлению" -#: includes/settings/class-email-settings.php:192 +#: includes/settings/class-email-settings.php:194 msgid "Verify Email Message" msgstr "Проверочное сообщение" -#: includes/settings/class-email-settings.php:197 +#: includes/settings/class-email-settings.php:199 msgid "Subject and body for verify email message" msgstr "" -#: includes/settings/class-email-settings.php:200 +#: includes/settings/class-email-settings.php:202 msgid "Verify the email address used for Ad {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:204 +#: includes/settings/class-email-settings.php:203 +msgid "" +"Hello {author_name} \n" +"\n" +"You recently posted the Ad {listing_title} to {website_title}. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"{verification_link} \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"{website_title}\n" +"\n" +"{website_url}" +msgstr "" + +#: includes/settings/class-email-settings.php:206 msgid "" "Subject and body template for email sent out to verify the email address." msgstr "" -#: includes/settings/class-email-settings.php:207 +#: includes/settings/class-email-settings.php:209 msgid "The name of the owner of the listing." msgstr "" -#: includes/settings/class-email-settings.php:208 +#: includes/settings/class-email-settings.php:210 msgid "Verification link." msgstr "" -#: includes/settings/class-email-settings.php:209 +#: includes/settings/class-email-settings.php:211 msgid "The title of this website." msgstr "Заголовок этого сайта." -#: includes/settings/class-email-settings.php:210 +#: includes/settings/class-email-settings.php:212 msgid "The URL of this webiste's homepage." msgstr "URL домашней страницы этого веб-сайта." -#: includes/settings/class-email-settings.php:220 +#: includes/settings/class-email-settings.php:222 msgid "Incomplete Payment Message" msgstr "Сообщение о незавершенной оплате" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "Subject for Incomplete Payment email" msgstr "Тема почтового сообщения о незавершенной оплате" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "There was a problem processing your payment" msgstr "Возникла проблема обработки Вашего платежа" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "" "Subject line for email sent out when the payment processing does not complete" msgstr "" "Тема почтового сообщения, отправляемого, когда процесс оплаты не был завершен" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "Body for Incomplete Payment email" msgstr "Текст почтового сообщения о незавершенной оплате" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "There was a problem encountered during your attempt to submit payment. If " "funds were removed from the account you tried to use to make a payment " @@ -6090,7 +6266,7 @@ msgstr "" "либо средства, пожалуйста, свяжитесь с администратором иди тех.поддержкой " "сервиса оплаты." -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "Message body text for email sent out when the payment processing does not " "complete" @@ -6098,31 +6274,31 @@ msgstr "" "Текст почтового сообщения, отправляемого, когда процесс оплаты не был " "завершен" -#: includes/settings/class-email-settings.php:229 +#: includes/settings/class-email-settings.php:231 msgid "Renew Ad Message" msgstr "Сообщение об истекающем объявлении" -#: includes/settings/class-email-settings.php:234 +#: includes/settings/class-email-settings.php:236 msgid "Subject for Renew Ad email" msgstr "Тема почтового сообщения об истекающем сроке объявления" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:237 +#: includes/settings/class-email-settings.php:239 msgid "Your ad will expire in %d days." msgstr "Срок действия рекламы истечет через %d дней." -#: includes/settings/class-email-settings.php:238 +#: includes/settings/class-email-settings.php:240 msgid "Subject line for email sent out when an Ad is about to expire." msgstr "" "Тема почтового сообщения, отправляемого, когда срок объявления истекает" -#: includes/settings/class-email-settings.php:244 -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:246 +#: includes/settings/class-email-settings.php:270 msgid "Body for Renew Ad email" msgstr "Текст почтового сообщения об истекающем сроке объявления" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:247 +#: includes/settings/class-email-settings.php:249 msgid "" "This is an automated notification that your Classified Ad will expire in %d " "days." @@ -6133,7 +6309,7 @@ msgstr "" #. translators: %d in this case is used to remind the user they can enter '%d' #. in the textarea where they want the plugin to replace the number of days #. until the ad expires. -#: includes/settings/class-email-settings.php:249 +#: includes/settings/class-email-settings.php:251 msgid "" "Message body text for email sent out when an Ad is about to expire. Use %d " "as placeholder for the number of days before the Ad expires." @@ -6142,116 +6318,116 @@ msgstr "" "истекает в ближайшее время. Использовать %d в качестве значения количества " "дней до истечения срока объявления." -#: includes/settings/class-email-settings.php:256 +#: includes/settings/class-email-settings.php:258 msgid "Ad Renewed Message" msgstr "Сообщение о возобновленном объявлении" -#: includes/settings/class-email-settings.php:261 +#: includes/settings/class-email-settings.php:263 msgid "Subject for Ad Renewed email" msgstr "Тема почтового сообщения о возобновлении объявления" #. translators: %s is the title of the ad. -#: includes/settings/class-email-settings.php:264 +#: includes/settings/class-email-settings.php:266 msgid "Your ad \"%s\" has been successfully renewed." msgstr "Реклама \"%s\" успешно обновлена." -#: includes/settings/class-email-settings.php:265 +#: includes/settings/class-email-settings.php:267 msgid "Subject line for email sent out when an Ad is successfully renewed." msgstr "" "Тема почтового сообщения, отправляемого, когда объявление успешно " "возобновлено." -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "Your ad has been successfully renewed. More information below:" msgstr "Ваша реклама успешно обновлена. Больше информации ниже:" -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "" "Message body text for email sent out when an Ad is successfully renewed. " msgstr "" "Текст почтового сообщения, отправляемого, когда объявление успешно " "возобновлено." -#: includes/settings/class-email-settings.php:274 +#: includes/settings/class-email-settings.php:276 msgid "Ad Expired Message" msgstr "Сообщение об истекшем объявлении" -#: includes/settings/class-email-settings.php:279 +#: includes/settings/class-email-settings.php:281 msgid "Subject for Ad Expired email" msgstr "Тема почтового сообщения об истекшем сроке объявления" #. translators: %s is the name of the website. -#: includes/settings/class-email-settings.php:282 +#: includes/settings/class-email-settings.php:284 msgid "Your ad at %s has expired" msgstr "Реклама на веб-сайте %s истекла" -#: includes/settings/class-email-settings.php:283 +#: includes/settings/class-email-settings.php:285 msgid "Subject line for email sent out when an ad has auto-expired" msgstr "Тема почтового сообщения, отправляемого, когда срок объявления истек" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Body for Ad Expired email" msgstr "Текст почтового сообщения об истекшем сроке объявления" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "This is an automated notification that your ad has expired." msgstr "Это автоматическое уведомление об истечении срока действия рекламы." -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Message body text for email sent out when an ad has auto-expired" msgstr "Текст почтового сообщения, отправляемого, когда срок объявления истек" -#: includes/settings/class-email-settings.php:295 +#: includes/settings/class-email-settings.php:297 #: includes/settings/class-general-settings.php:599 msgid "Advanced" msgstr "Расширенный " -#: includes/settings/class-email-settings.php:305 +#: includes/settings/class-email-settings.php:307 msgid "Advanced Email Configuration" msgstr "Расширенная настройка почты" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enable external SMTP server" msgstr "Включение внешнего SMTP-сервера" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enabled external SMTP server (if emails not processing normally)." msgstr "" "Подключение внешнего SMTP-сервера (если почта не обрабатывается нормально)." -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host" msgstr "SMTP-хост" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host (if emails not processing normally)." msgstr "SMTP-хост (если почта не обрабатывается нормально)." -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port" msgstr "SMTP-порт" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port (if emails not processing normally)." msgstr "SMTP-порт (если почта не обрабатывается нормально)." -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username" msgstr "Имя пользователя SMTP" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username (if emails not processing normally)." msgstr "Имя пользователя SMTP (если почта не обрабатывается нормально)." -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password" msgstr "Пароль SMTP" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password (if emails not processing normally)." msgstr "Пароль SMTP (если почта не обрабатывается нормально)." -#: includes/settings/class-email-settings.php:316 +#: includes/settings/class-email-settings.php:318 msgid "" " is not a valid email address. Please check the value you entered " "to use as the FROM email address for outgoing messages." @@ -6260,7 +6436,7 @@ msgstr "" "введенное значение, чтобы использовать его в качестве поля FROM в исходящих " "сообщениях." -#: includes/settings/class-email-settings.php:317 +#: includes/settings/class-email-settings.php:319 msgid "" " is not a valid email address. Please check the value you entered " "to use as recipient email address for admin notifications." @@ -7223,15 +7399,18 @@ msgid "" "the Webhooks URL and Event Name you define." msgstr "" -#: includes/settings/class-general-settings.php:919 +#. translators: %1$s is the link to Facebook Developer Apps page. %2$s is the +#. closing anchor tag. +#: includes/settings/class-general-settings.php:921 +#, fuzzy msgid "" -"You can find your application information in the Facebook Developer Apps page." +"You can find your application information in the %1$sFacebook Developer " +"Apps%2$s page." msgstr "" "Вы можете найти сведения о приложениях на странице Facebook Developer " "Apps." -#: includes/settings/class-general-settings.php:935 +#: includes/settings/class-general-settings.php:936 msgid "" "AWPCP needs to get an authorization token from Facebook to work correctly. " "You'll be redirected to Facebook to login. AWPCP does not store or obtain " @@ -7241,7 +7420,7 @@ msgstr "" "Вы будете переадресованы на Facebook для входа. AWPCP не хранит или получает " "какие-либо личные данные из Вашего профиля." -#: includes/settings/class-general-settings.php:936 +#: includes/settings/class-general-settings.php:937 msgid "" "Please choose Public as the audience for posts made by the application, even " "if you are just testing the integration. Facebook won't allow us to post " @@ -7251,51 +7430,48 @@ msgstr "" "даже если вы тестируете интеграцию. Facebook не разрешает в некоторых " "случаях публикацию, если выбран другой режим." -#: includes/settings/class-general-settings.php:945 +#: includes/settings/class-general-settings.php:947 msgid "Click here to obtain an access token from Facebook" msgstr "" -#: includes/settings/class-general-settings.php:947 +#: includes/settings/class-general-settings.php:951 msgid "" "Please provide a value for the App Id and App Secret settings before trying " "to get an access token from Facebook." msgstr "" -#: includes/settings/class-general-settings.php:958 +#: includes/settings/class-general-settings.php:960 msgid "" "Available Facebook Pages and Groups will be displayed after you enter a " "valid User Access Token." msgstr "" -#: includes/settings/class-general-settings.php:959 +#. translators: %1$s opening anchor tag, %2$s closing anchor tag, %3$s opening +#. anchor tag, %4$s closing anchor tag, %5$s opening anchor tag, %6$s closing +#. anchor tag, %7$s opening anchor tag, %8$s closing anchor tag +#: includes/settings/class-general-settings.php:964 msgid "" -"As of April 4, 2018, all applications need to go through App Review " -"in order to get access to the Page API and Groups API. That means that you may need to submit your app for review (ask for the " -"manage_pages, publish_pages, " -"publish_to_groups permissions), before AWPCP can display the " +"All applications need to go through %1$sApp Review%2$s in order to get " +"access to the %3$sPage API%4$s and %5$sGroups API%6$s. That means that you " +"may need to %7$ssubmit your app for review%8$s (ask for the manage_pages, " +"publish_pages, publish_to_groups permissions), before AWPCP can display the " "list of pages and groups you manage and be able to post classifieds ads to " "those groups and pages." msgstr "" -#: includes/settings/class-general-settings.php:977 +#: includes/settings/class-general-settings.php:989 msgid "None (Do not sent ads to a Facebook Page)" msgstr "Нет (Не отправлять рекламу на страницу в Фейсбук)" -#: includes/settings/class-general-settings.php:984 +#: includes/settings/class-general-settings.php:996 msgid "(Your own profile page)" msgstr "(Ваша страница профиля)" -#: includes/settings/class-general-settings.php:1008 +#: includes/settings/class-general-settings.php:1020 msgid "None (Do not sent ads to a Facebook Group)" msgstr "Нет (не отправлять рекламу в группу в Фейсбуке)" -#: includes/settings/class-general-settings.php:1064 +#: includes/settings/class-general-settings.php:1076 msgid "" "Akismet SPAM control cannot be enabled because Akismet plugin is not " "installed or activated." @@ -7303,7 +7479,7 @@ msgstr "" "Вы не можете активировать контроль спама Akismet, так как Akismet не " "установлен либо не активирован " -#: includes/settings/class-general-settings.php:1068 +#: includes/settings/class-general-settings.php:1080 msgid "" "Akismet SPAM control cannot be enabled because Akismet is not properly " "configured." @@ -7311,7 +7487,7 @@ msgstr "" "Вы не можете активировать контроль спама Akismet, так как Akismet неверно " "настроен." -#: includes/settings/class-general-settings.php:1094 +#: includes/settings/class-general-settings.php:1106 msgid "" "reCAPTCHA can't be used because the public key and private key settings are " "required for reCAPTCHA to work properly." @@ -7319,7 +7495,7 @@ msgstr "" "reCAPTCHA не может быть использован, так как настройки открытого и закрытого " "ключей являются обязательными для нормальной работы reCAPTCHA" -#: includes/settings/class-general-settings.php:1096 +#: includes/settings/class-general-settings.php:1108 msgid "" "reCAPTCHA can't be used because the public key setting is required for " "reCAPTCHA to work properly." @@ -7327,7 +7503,7 @@ msgstr "" "reCAPTCHA не может быть использован, так как настройки открытого ключа " "являются обязательными для нормальной работы reCAPTCHA" -#: includes/settings/class-general-settings.php:1098 +#: includes/settings/class-general-settings.php:1110 msgid "" "reCAPTCHA can't be used because the private key setting is required for " "reCAPTCHA to work properly." @@ -7335,11 +7511,11 @@ msgstr "" "reCAPTCHA не может быть использован, так как настройки закрытого ключа " "являются обязательными для нормальной работы reCAPTCHA" -#: includes/settings/class-general-settings.php:1145 +#: includes/settings/class-general-settings.php:1157 msgid "Thousands separator and decimal separator cant be the same." msgstr "" -#: includes/settings/class-general-settings.php:1159 +#: includes/settings/class-general-settings.php:1171 msgid "" "Credit System was automatically disabled because you disabled Require " "Registration setting." @@ -7356,10 +7532,17 @@ msgid "Licenses" msgstr "Лицензии" #: includes/settings/class-licenses-settings.php:64 -#: templates/admin/debug/plugin-info-debug-section.tpl.php:18 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:24 msgid "Premium Modules" msgstr "Премиум-модули" +#: includes/settings/class-licenses-settings.php:82 +msgid "" +"The IP address of your server is %s. Please make sure to include that " +"information if you need to contact support about problems trying to activate " +"your licenses." +msgstr "" + #: includes/settings/class-listings-moderation-settings.php:22 msgid "" "Email verification was disabled because you enabled Require Registration. " @@ -7762,97 +7945,97 @@ msgstr "" "Показывать категорию в заголовке страницы браузера при просмотре единичного " "Объявления" -#: includes/settings/class-listings-settings.php:472 +#: includes/settings/class-listings-settings.php:473 msgid "" "Enable this setting to display each listing on its own page, instead of " -"showing the listing's content inside the page." +"showing the listing's content inside the %s page." msgstr "" -#: includes/settings/class-listings-settings.php:478 +#: includes/settings/class-listings-settings.php:480 msgid "Display listings on their own page" msgstr "" -#: includes/settings/class-listings-settings.php:486 +#: includes/settings/class-listings-settings.php:488 msgid "" "Portion of the URL that appears between the website's domain and the " "listing's information. Example: in ." msgstr "" -#: includes/settings/class-listings-settings.php:496 +#: includes/settings/class-listings-settings.php:498 msgid "Listings slug" msgstr "" -#: includes/settings/class-listings-settings.php:509 +#: includes/settings/class-listings-settings.php:511 msgid "" "Include the slug of the plugin's main page () in the URL " "that points to the page of an individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:512 +#: includes/settings/class-listings-settings.php:514 msgid "" "Include the slug of the plugin's main page in the URL that points to the " "page of an individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:518 +#: includes/settings/class-listings-settings.php:520 msgid "Include the slug of the plugin's main page in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:532 +#: includes/settings/class-listings-settings.php:534 msgid "Include the title in the listing URL" msgstr "Включить заголовок в ссылку объявления" -#: includes/settings/class-listings-settings.php:535 +#: includes/settings/class-listings-settings.php:537 msgid "" "Include the title in the URL that points to the page of an individual " "listing." msgstr "Включить заголовок в ссылку страницы с деталями объявления." -#: includes/settings/class-listings-settings.php:541 +#: includes/settings/class-listings-settings.php:543 msgid "Include the name of the category in the listing URL" msgstr "Включить имя категории в ссылку объявления." -#: includes/settings/class-listings-settings.php:544 +#: includes/settings/class-listings-settings.php:546 msgid "" "Include the name of the category in the URL that points to the page of an " "individual listing." msgstr "Включить категорию в ссылку страницы с деталями объявления." -#: includes/settings/class-listings-settings.php:550 +#: includes/settings/class-listings-settings.php:552 msgid "Include the name of the country in the listing URL" msgstr "Включить страну в ссылку объявления" -#: includes/settings/class-listings-settings.php:553 +#: includes/settings/class-listings-settings.php:555 msgid "" "Include the name of the country in the URL that points to the page of an " "individual listing." msgstr "Включить страну в ссылку страницы с деталями объявления." -#: includes/settings/class-listings-settings.php:559 +#: includes/settings/class-listings-settings.php:561 msgid "Include the name of the state in the listing URL" msgstr "Включить штат в ссылку объявления" -#: includes/settings/class-listings-settings.php:562 +#: includes/settings/class-listings-settings.php:564 msgid "" "Include the name of the state in the URL that points to the page of an " "individual listing." msgstr "Включить штат в ссылку страницы с деталями объявления." -#: includes/settings/class-listings-settings.php:568 +#: includes/settings/class-listings-settings.php:570 msgid "Include the name of the city in the listing URL" msgstr "Включить город в ссылку объявления" -#: includes/settings/class-listings-settings.php:571 +#: includes/settings/class-listings-settings.php:573 msgid "" "Include the name of the city in the URL that points to the page of an " "individual listing." msgstr "Включить город в ссылку страницы с деталями объявления." -#: includes/settings/class-listings-settings.php:577 +#: includes/settings/class-listings-settings.php:579 msgid "Include the name of the county in the listing URL" msgstr "Включить страну в ссылку объявления" -#: includes/settings/class-listings-settings.php:580 +#: includes/settings/class-listings-settings.php:582 msgid "" "Include the name of the county in the URL that points to the page of an " "individual listing." @@ -8021,7 +8204,7 @@ msgstr "" "HTTPS. Не активируйте эту функцию, если ваш сервер не поддерживает протокол " "HTTPS." -#: includes/settings/class-payment-general-settings.php:109 +#: includes/settings/class-payment-general-settings.php:108 msgid "" "Force Secure URLs was not enabled because your website couldn't be accessed " "using a secure connection." @@ -8029,23 +8212,19 @@ msgstr "" "Использование безопасного соединения дезактивировано, поскольку ваш сайт " "недоступен по безопасному протоколу." -#: includes/settings/class-payment-general-settings.php:135 -msgid "PayPal" -msgstr "PayPal" - -#: includes/settings/class-payment-general-settings.php:140 +#: includes/settings/class-payment-general-settings.php:139 msgid "PayPal Settings" msgstr "Настройки PayPal" -#: includes/settings/class-payment-general-settings.php:142 +#: includes/settings/class-payment-general-settings.php:141 msgid "Activate PayPal?" msgstr "Активировать PayPal?" -#: includes/settings/class-payment-general-settings.php:146 +#: includes/settings/class-payment-general-settings.php:145 msgid "PayPal receiver email" msgstr "Эл. почта получателя PayPal" -#: includes/settings/class-payment-general-settings.php:149 +#: includes/settings/class-payment-general-settings.php:148 msgid "" "Email address for PayPal payments (if running in pay mode and if PayPal is " "activated)." @@ -8053,80 +8232,78 @@ msgstr "" "Адрес электронной почты для платежей PayPal (если работает в платном режиме " "и PayPal активирован)." -#: includes/settings/class-payment-general-settings.php:167 +#: includes/settings/class-payment-general-settings.php:166 msgid "PayPal Merchant ID" msgstr "Идентификатор продавца PayPal" #: includes/settings/class-payment-general-settings.php:170 msgid "" "Merchant ID associated with the PayPal account that will receive the " -"payments. Go to https://www.paypal.com/myaccount/settings/ to obtain " -"your Merchant ID." +"payments. Go to %s to obtain your Merchant ID." msgstr "" -#: includes/settings/class-payment-general-settings.php:178 +#: includes/settings/class-payment-general-settings.php:180 msgid "The PayPal Currency Code must be one of ." msgstr "Код валюты для PayPal должен быть одним из ." -#: includes/settings/class-payment-general-settings.php:183 +#: includes/settings/class-payment-general-settings.php:185 msgid "PayPal currency code" msgstr "Код валюты PayPal" -#: includes/settings/class-payment-general-settings.php:186 +#: includes/settings/class-payment-general-settings.php:188 msgid "The currency in which you would like to receive your PayPal payments" msgstr "В какой валюте вы хотели бы получать платежи PayPal" -#: includes/settings/class-payment-general-settings.php:209 +#: includes/settings/class-payment-general-settings.php:211 msgid "2Checkout" msgstr "2Checkout" -#: includes/settings/class-payment-general-settings.php:214 +#: includes/settings/class-payment-general-settings.php:216 msgid "2Checkout Settings" msgstr "Настройки 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout" msgstr "Активировать 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout?" msgstr "Активировать 2Checkout?" -#: includes/settings/class-payment-general-settings.php:220 +#: includes/settings/class-payment-general-settings.php:222 msgid "2Checkout account" msgstr "Профиль 2Checkout " -#: includes/settings/class-payment-general-settings.php:223 +#: includes/settings/class-payment-general-settings.php:225 msgid "Account for 2Checkout payments." msgstr "Учетная запись для платежей 2Checkout." -#: includes/settings/class-payment-general-settings.php:238 +#: includes/settings/class-payment-general-settings.php:240 msgid "2Checkout Currency Code" msgstr "Код валюты 2Checkout" -#: includes/settings/class-payment-general-settings.php:249 +#: includes/settings/class-payment-general-settings.php:251 msgid "The currency in which you would like to receive your 2Checkout payments" msgstr "В какой валюте вы хотели бы получать платежи 2Checkout" -#: includes/settings/class-payment-general-settings.php:261 -#: includes/settings/class-payment-general-settings.php:266 +#: includes/settings/class-payment-general-settings.php:263 +#: includes/settings/class-payment-general-settings.php:268 msgid "Credit System" msgstr "Кредитная система" -#: includes/settings/class-payment-general-settings.php:269 +#: includes/settings/class-payment-general-settings.php:271 msgid "Currency" msgstr "Валюта" -#: includes/settings/class-payment-general-settings.php:271 +#: includes/settings/class-payment-general-settings.php:273 msgid "Currency & Credits" msgstr "Валюта и кредиты" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "Enable Credit System" msgstr "Включить систему кредитов" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "" "The Credit System allows users to purchase credit that can later be used to " "pay for placing Ads." @@ -8134,16 +8311,16 @@ msgstr "" "Система кредитов позволяет пользователям приобретать кредиты, которые " "впоследствии могут быть использованы для оплаты объявлений." -#: includes/settings/class-payment-general-settings.php:279 +#: includes/settings/class-payment-general-settings.php:281 msgid "Accepted payment type" msgstr "Разрешенные методы оплаты" -#: includes/settings/class-payment-general-settings.php:282 +#: includes/settings/class-payment-general-settings.php:284 msgid "Select the type of payment that can be used to purchase Ads." msgstr "" "Выбор Тип платежа, который может быть использован для покупки объявлений." -#: includes/settings/class-payment-general-settings.php:294 +#: includes/settings/class-payment-general-settings.php:296 msgid "" "You cannot configure Credits as the only accepted payment type unless you " "enable the Credit System as well. The setting was set to accept both " @@ -8153,7 +8330,7 @@ msgstr "" "активируете Систему кредитов. Настройки были изменены, чтобы принимать и " "валюту и кредиты." -#: includes/settings/class-payment-general-settings.php:311 +#: includes/settings/class-payment-general-settings.php:313 msgid "" "There is a problem with the PayPal Currency Code you have entered. It does " "not match any of the codes in our list of curencies supported by PayPal." @@ -8161,11 +8338,11 @@ msgstr "" "Есть проблема с кодом валюты, которую вы ввели. Он не соответствует ни " "одному из кодов в списке доступных валют PayPal." -#: includes/settings/class-payment-general-settings.php:312 +#: includes/settings/class-payment-general-settings.php:314 msgid "The available currency codes are" msgstr "Доступные коды валюты" -#: includes/settings/class-payment-general-settings.php:321 +#: includes/settings/class-payment-general-settings.php:323 msgid "" "Require Registration setting was enabled automatically because you activated " "the Credit System." @@ -8173,7 +8350,7 @@ msgstr "" "Обязательная регистрация была включена автоматически, так как вы " "активировали систему кредитов." -#: includes/settings/class-payment-general-settings.php:326 +#: includes/settings/class-payment-general-settings.php:328 msgid "" "Charge Listing Fee setting was enabled automatically because you activated " "the Credit System." @@ -8181,7 +8358,7 @@ msgstr "" "Режим оплаты был включен автоматически, так как вы активировали систему " "кредитов." -#: includes/settings/class-payment-general-settings.php:332 +#: includes/settings/class-payment-general-settings.php:334 msgid "" "Credit System was disabled automatically because you disabled Charge Listing " "Fee." @@ -8189,13 +8366,13 @@ msgstr "" "Система кредитов была отключена, так как вы отключили обязательный режим " "оплаты." -#: includes/settings/renderers/class-button-settings-renderer.php:39 +#: includes/settings/renderers/class-button-settings-renderer.php:40 msgid "" "Resetting to the default layout will cause any custom HTML layout changes " "you've made to be lost. Are you sure?" msgstr "" -#: includes/settings/renderers/class-button-settings-renderer.php:42 +#: includes/settings/renderers/class-button-settings-renderer.php:47 msgid "Reset" msgstr "Сброс" @@ -8203,55 +8380,54 @@ msgstr "Сброс" msgid "Deactivate" msgstr "Деактивировать" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -msgid "active" -msgstr "активный" - -#: includes/settings/renderers/class-license-settings-renderer.php:43 #: includes/settings/renderers/class-license-settings-renderer.php:46 -#: includes/settings/renderers/class-license-settings-renderer.php:56 -#: includes/settings/renderers/class-license-settings-renderer.php:58 -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "Status: " -msgstr "Статус: " - -#: includes/settings/renderers/class-license-settings-renderer.php:45 -#: includes/settings/renderers/class-license-settings-renderer.php:48 +#: includes/settings/renderers/class-license-settings-renderer.php:50 msgid "Activate" msgstr "Активировать" -#: includes/settings/renderers/class-license-settings-renderer.php:46 -msgid "inactive" -msgstr "неактивный" - -#: includes/settings/renderers/class-license-settings-renderer.php:51 +#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag +#: includes/settings/renderers/class-license-settings-renderer.php:55 +#, fuzzy msgid "" -"Click the button above to check the status of your license. Please contact customer support if you think the reported status is wrong." +"Click the button above to check the status of your license. Please " +"%1$scontact customer support%2$s if you think the reported status is wrong." msgstr "" "Нажмите кнопку выше для проверки статуса вашей лицензии. Пожалуйста, " "свяжитесь с пользовательской поддержкой, если вы считаете, " "что возвращенный статус неверен." -#: includes/settings/renderers/class-license-settings-renderer.php:56 -msgid "expired" -msgstr "истек" - -#: includes/settings/renderers/class-license-settings-renderer.php:58 +#: includes/settings/renderers/class-license-settings-renderer.php:75 msgid "disabled" msgstr "отключено" -#: includes/settings/renderers/class-license-settings-renderer.php:60 +#: includes/settings/renderers/class-license-settings-renderer.php:76 +msgid "inactive" +msgstr "неактивный" + +#: includes/settings/renderers/class-license-settings-renderer.php:77 +msgid "active" +msgstr "активный" + +#: includes/settings/renderers/class-license-settings-renderer.php:78 +msgid "expired" +msgstr "истек" + +#: includes/settings/renderers/class-license-settings-renderer.php:79 msgid "unknown" msgstr "неопределено" +#: includes/settings/renderers/class-license-settings-renderer.php:84 +#, fuzzy +msgid "Status: %s" +msgstr "Состояние:" + #. translators: screen reader text label for individual settings on a settings #. grid -#: includes/settings/renderers/class-settings-grid-renderer.php:75 +#: includes/settings/renderers/class-settings-grid-renderer.php:80 msgid " setting for field" msgstr "" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:35 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:38 msgid "Create Page" msgstr "Создать страницу" @@ -8259,20 +8435,20 @@ msgstr "Создать страницу" msgid "Ad Category" msgstr "Категория объявления" -#: includes/ui/class-category-selector.php:122 +#: includes/ui/class-category-selector.php:144 msgid "All Categories" msgstr "Все категории" -#: includes/ui/class-category-selector.php:171 +#: includes/ui/class-category-selector.php:193 msgid "Select a Sub-category" msgstr "Выбор Подкатегории" -#: includes/ui/class-payment-terms-list.php:86 +#: includes/ui/class-payment-terms-list.php:103 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" msgstr "" -#: includes/ui/class-payment-terms-list.php:91 +#: includes/ui/class-payment-terms-list.php:108 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" @@ -8280,7 +8456,7 @@ msgstr "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" -#: includes/ui/class-payment-terms-list.php:152 +#: includes/ui/class-payment-terms-list.php:169 msgid " listing allowed." msgid_plural " listings allowed." msgstr[0] "" @@ -8288,11 +8464,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: includes/ui/class-payment-terms-list.php:160 +#: includes/ui/class-payment-terms-list.php:177 msgid "No images allowed." msgstr "Изображения не разрешены." -#: includes/ui/class-payment-terms-list.php:163 +#: includes/ui/class-payment-terms-list.php:180 msgid " image allowed." msgid_plural " images allowed." msgstr[0] " изображение разрешено." @@ -8300,45 +8476,45 @@ msgstr[1] " изображения разрешено." msgstr[2] " изображений разрешено." msgstr[3] " изображений разрешено." -#: includes/ui/class-payment-terms-list.php:170 +#: includes/ui/class-payment-terms-list.php:187 msgid "Unlimited characters in listing's title." msgstr "" -#: includes/ui/class-payment-terms-list.php:173 +#: includes/ui/class-payment-terms-list.php:190 msgid "Up to characters in listing's title." msgstr "" -#: includes/ui/class-payment-terms-list.php:180 +#: includes/ui/class-payment-terms-list.php:197 msgid "Up to categories allowed." msgstr "До категорий разрешено." -#: includes/ui/class-payment-terms-list.php:187 +#: includes/ui/class-payment-terms-list.php:204 msgid "Unlimited characters in listing's content." msgstr "" -#: includes/ui/class-payment-terms-list.php:190 +#: includes/ui/class-payment-terms-list.php:207 msgid "Up to characters in listing's content." msgstr "" -#: includes/ui/class-payment-terms-list.php:196 +#: includes/ui/class-payment-terms-list.php:213 msgid "Purchase this plan" msgstr "Приобрести этот план" -#: includes/ui/class-payment-terms-list.php:197 +#: includes/ui/class-payment-terms-list.php:214 msgid "Pay for this plan with credits" msgstr "" -#: includes/ui/class-payment-terms-list.php:200 -#: includes/ui/class-payment-terms-list.php:204 +#: includes/ui/class-payment-terms-list.php:217 +#: includes/ui/class-payment-terms-list.php:221 msgid "Use this plan for free!" msgstr "Используйте этот план бесплатно!" -#: includes/ui/class-payment-terms-list.php:209 -#: includes/ui/class-payment-terms-list.php:214 +#: includes/ui/class-payment-terms-list.php:226 +#: includes/ui/class-payment-terms-list.php:231 msgid "Select" msgstr "Выбрать " -#: includes/ui/class-payment-terms-list.php:213 +#: includes/ui/class-payment-terms-list.php:230 msgid "credits" msgstr "благодарности" @@ -8475,12 +8651,12 @@ msgstr "" "как бесплатную доску объявлений." #. translators: %s the step name -#: includes/views/class-base-page.php:82 +#: includes/views/class-base-page.php:83 msgid "Unkown step \"%s\". Please contact the administrator about this error." msgstr "" "Неизвестный шаг \"%s\". Пожалуйста, сообщите администратору об этой ошибке." -#: includes/views/class-base-page.php:135 +#: includes/views/class-base-page.php:136 msgid "" "Your request cannot be processed at this time. Please try again or contact " "the administrator about the incident." @@ -8490,7 +8666,7 @@ msgstr "" #. translators: %1$s back link, %2$s transaction id #: includes/views/class-payment-step-decorator.php:41 -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:74 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:76 #, fuzzy msgid "" "You are trying to buy credits using a transaction created for a different " @@ -8518,16 +8694,16 @@ msgstr "Вам необходимо выбрать один из вариант msgid "Congratulations. You have successfully added credit to your account." msgstr "Поздравляем. Кредиты успешно зачисленны на ваш счет ." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:12 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:14 msgid "Buy Credits" msgstr "Купить кредиты" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:87 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:89 msgid "" "The payment associated with this transaction failed (see reasons below)." msgstr "Оплата, связанная с этой операцией не удалась (см причины ниже)." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:118 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:120 msgid "You are not allowed to buy credits." msgstr "Вам не разрешено покупать кредиты." @@ -8543,34 +8719,55 @@ msgstr "" msgid "The instance of WP_Scripts is not ready!" msgstr "" -#: installer.php:154 +#: installer.php:160 msgid "30 Day Listing" msgstr "Срок размщения 30 дней" -#: installer.php:822 +#: installer.php:307 msgid "Response to your AWPCP Demo Ad" msgstr "Ответ на ваш AWPCP демо-объявление" -#: installer.php:823 +#: installer.php:308 msgid "Someone has responded to your AWPCP Demo Ad" msgstr "Кто-то ответил на ваше AWPCP демо объявление" -#: installer.php:848 +#: installer.php:333 msgid "Verify the email address used for Ad $title" msgstr "" "Подтвердите адрес электронной почты, используемый для объявления $title" +#: installer.php:334 +msgid "" +"Hello $author_name \n" +"\n" +"You recently posted the Ad $title to $website_name. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"$verification_link \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" +msgstr "" + #: templates/admin/debug/environment-debug-section.tpl.php:19 msgid "" "Click the button below to contact and get a report about " "you server's SSL/TSL features." msgstr "" -#: templates/admin/debug/environment-debug-section.tpl.php:30 +#: templates/admin/debug/environment-debug-section.tpl.php:32 msgid "Test your SSL Client" msgstr "Тестировать SSL-клиента" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:16 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:20 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -8578,7 +8775,7 @@ msgid "" "Settings page." msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:23 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:27 msgid "" "Opening that page in your browser will flush the Rewrite Rules in your site. " "WordPress will then ask all installed and active plugins to register their " @@ -8586,29 +8783,36 @@ msgid "" "please contact customer support." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:3 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#, fuzzy +msgid "Plugin Pages" +msgstr "Страницы плагинов" + +#: templates/admin/delete-browse-categories-page-notice.tpl.php:4 +#, fuzzy msgid "" -"The page is no longer necessary. From now on, " -"all listings will be displayed in the page, even " -"when they are filtered by a particular category." +"The %1$s page is no longer necessary. From now on, all listings will be " +"displayed in the %2$s page, even when they are filtered by a particular " +"category." msgstr "" "Страница более не нужна. Отныне все объявления " "будут отображаться на странице , даже если они " "отфильтрованы для соответствующей категории." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:9 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:11 +#, fuzzy msgid "" -"The plugin will start redirecting all traffic to the page to make sure no broken links are created." +"The plugin will start redirecting all traffic to the %s page to make sure no " +"broken links are created." msgstr "" "Плагин начнет перенаправлять весь трафик на страницу , чтобы убедиться, что не создано битых ссылок." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:13 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:15 msgid "Click the button below to delete the page." msgstr "Пожалуйста, используйте кнопку ниже, чтобы удалить страницу." -#: templates/admin/delete-browse-categories-page-notice.tpl.php:14 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:18 msgid "Delete Page" msgstr "Удалить страницу" @@ -8633,10 +8837,11 @@ msgstr "" "У категории есть дочерние категории. Пожалуйста, выберите новую материнскую " "категорию для дочерних категорий." -#: templates/admin/delete-category-admin-page.tpl.php:32 +#. translators: %1$s: Cancel button , %2$s: Submit button label +#: templates/admin/delete-category-admin-page.tpl.php:34 +#, fuzzy msgid "" -"Click to go back to the list of categories or click " -" to proceed." +"Click %1$s to go back to the list of categories or click %2$s to proceed." msgstr "" "Нажмите, чтобы перейти назад к списку категорий или " "нажмите , чтобы продолжить." @@ -8645,12 +8850,22 @@ msgstr "" msgid "Selected Category" msgstr "Выбранная категория" -#: templates/admin/export-listings-admin-page.tpl.php:158 +#: templates/admin/export-listings-admin-page.tpl.php:137 +#, fuzzy +msgid "Export Complete" +msgstr "Экспорт завершен" + +#: templates/admin/export-listings-admin-page.tpl.php:153 msgid "" "Click \"Cleanup\" once the file has been downloaded in order to remove all " "temporary data created by AWP Classifieds Plugin during the export process." msgstr "" +#: templates/admin/export-listings-admin-page.tpl.php:160 +#, fuzzy +msgid "Export Canceled" +msgstr "Экспорт отменен" + #: templates/admin/form-fields-admin-page.tpl.php:7 msgid "" "The table below shows all the form fields that users may need to fill to " @@ -8661,28 +8876,30 @@ msgstr "" "В таблице представлены все пользовательские поля, необходимые для заполнения " "объявления. Вы можете менять очередность полей с помощью области с точками" -#: templates/admin/form-fields-admin-page.tpl.php:11 -msgid "Form" -msgstr "Форма" - +#. translators: %s is a link to the Form Fields settings page. #: templates/admin/form-fields-admin-page.tpl.php:13 +#, fuzzy msgid "" -"Go to the settings section to control which of " -"the standard fields appear and if the user is required to enter a value. If " -"you have the Extra Fields module, the rest of the fields can be configured " -"from the Extra Fields admin section." +"Go to the %s settings section to control which of the standard fields appear " +"and if the user is required to enter a value. If you have the Extra Fields " +"module, the rest of the fields can be configured from the Extra Fields admin " +"section." msgstr "" "Перейдите к настройкам для контроля над полями, " "необходимыми для заполнения объявления. Если у вас активирован модуль " "\"Дополнительные поля\", порядок этих полей регулируется настройками самого " "модуля." +#: templates/admin/form-fields-admin-page.tpl.php:14 +msgid "Form" +msgstr "Форма" + #: templates/admin/import/example-csv-file.tpl.php:8 msgid "Import Listings: Example CSV File" msgstr "" #: templates/admin/import/example-csv-file.tpl.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:84 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:76 msgid "See Supported CSV Headers" msgstr "" @@ -8701,7 +8918,7 @@ msgid "Header" msgstr "Верхний колонтитул" #: templates/admin/import/supported-csv-headers.tpl.php:39 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:86 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:78 msgid "See Example CSV File" msgstr "Смотреть примерный файл CSV" @@ -8810,7 +9027,7 @@ msgstr "" msgid "Default user" msgstr "Пользовател по умолчанию" -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:178 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 #: templates/admin/import-listings-admin-page-import-form.tpl.php:44 msgid "" "Press the button below to cancel the current import operation and discard " @@ -8846,36 +9063,37 @@ msgstr "Изменить настройки и начать заново" msgid "Pause" msgstr "Приостановить" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:24 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:21 msgid "CSV file" msgstr "CSV файл" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:37 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:31 msgid "Images source" msgstr "Источник изображений" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:40 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:34 msgid "Don't import images" msgstr "Не импортировать изображения" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:42 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:36 msgid "ZIP file" msgstr "ZIP файл" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:44 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:38 msgid "Local directory" msgstr "Локальная директория" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:49 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:43 msgid "Zip file containing images" msgstr "Zip-файл, содержащий изображения" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:62 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:54 msgid "Local directory path" msgstr "Путь к локальной директории" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:74 -msgid "The relative path to a directory inside ." +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:64 +#, fuzzy +msgid "The relative path to a directory inside %s." msgstr "Относительный путь к директории внутри ." #: templates/admin/listings/listing-information-metabox.tpl.php:56 @@ -8959,27 +9177,27 @@ msgid "Payment Options" msgstr "Варианты оплаты" #. translators: %s is the link the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:84 +#: templates/admin/main-classifieds-admin-page.tpl.php:87 msgid "" "Go to the %s section to edit/delete current categories or add new categories." msgstr "" "Перейдите в раздел %s чтобы редактировать / удалять текущие категории или " "добавлять новые." -#: templates/admin/main-classifieds-admin-page.tpl.php:90 +#: templates/admin/main-classifieds-admin-page.tpl.php:95 msgid "Total number of categories in the system" msgstr "Общее количество категорий в системе" -#: templates/admin/main-classifieds-admin-page.tpl.php:95 +#: templates/admin/main-classifieds-admin-page.tpl.php:100 msgid "Number of Top Level parent categories" msgstr "Количество родительских категорий верхнего уровня" -#: templates/admin/main-classifieds-admin-page.tpl.php:100 +#: templates/admin/main-classifieds-admin-page.tpl.php:105 msgid "Number of sub level children categories" msgstr "Количество подкатегорий" #. translators: %s is the link to the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:109 +#: templates/admin/main-classifieds-admin-page.tpl.php:114 msgid "" "You have not categories defined. Go to the %s section to set up your " "categories." @@ -8987,76 +9205,76 @@ msgstr "" "Вы не определили категории. Перейдите в раздел %s, чтобы настроить ваши " "категории." -#: templates/admin/manage-categories-admin-page.tpl.php:43 +#: templates/admin/manage-categories-admin-page.tpl.php:44 msgid "Parent Category" msgstr "Родительская категория" -#: templates/admin/manage-categories-admin-page.tpl.php:52 +#: templates/admin/manage-categories-admin-page.tpl.php:53 msgid "Category list order" msgstr "Порядок следования категорий" -#: templates/admin/manage-categories-admin-page.tpl.php:75 +#: templates/admin/manage-categories-admin-page.tpl.php:76 msgid "Icon Meanings:" msgstr "Значения иконок:" -#: templates/admin/manage-categories-admin-page.tpl.php:85 +#: templates/admin/manage-categories-admin-page.tpl.php:89 msgid "Move categories or ads under:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:92 +#: templates/admin/manage-categories-admin-page.tpl.php:96 msgid "Delete categories should do this with existing ads:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:93 +#: templates/admin/manage-categories-admin-page.tpl.php:97 msgid "Move ads to new category" msgstr "Перемещает рекламу в новую категорию" -#: templates/admin/manage-categories-admin-page.tpl.php:94 +#: templates/admin/manage-categories-admin-page.tpl.php:98 msgid "Delete ads too" msgstr "Удалить рекламу тоже" -#: templates/admin/manage-categories-admin-page.tpl.php:101 +#: templates/admin/manage-categories-admin-page.tpl.php:108 msgid "Move Selected Categories" msgstr "Переместить выбранные категории" -#: templates/admin/manage-categories-admin-page.tpl.php:102 +#: templates/admin/manage-categories-admin-page.tpl.php:109 msgid "Delete Selected Categories" msgstr "Удалить выбранные категории" -#: templates/admin/manage-categories-admin-page.tpl.php:119 +#: templates/admin/manage-categories-admin-page.tpl.php:126 msgid "Select all categories" msgstr "Выбрать все категории" -#: templates/admin/manage-categories-admin-page.tpl.php:122 -#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:129 +#: templates/admin/manage-categories-admin-page.tpl.php:145 msgid "Category ID" msgstr "ID категории" -#: templates/admin/manage-categories-admin-page.tpl.php:124 -#: templates/admin/manage-categories-admin-page.tpl.php:136 +#: templates/admin/manage-categories-admin-page.tpl.php:131 +#: templates/admin/manage-categories-admin-page.tpl.php:146 msgid "Category Name (Total Ads)" msgstr "Имя категории (Всего объявлений)" -#: templates/admin/manage-categories-admin-page.tpl.php:126 -#: templates/admin/manage-categories-admin-page.tpl.php:137 +#: templates/admin/manage-categories-admin-page.tpl.php:133 +#: templates/admin/manage-categories-admin-page.tpl.php:147 msgid "Parent" msgstr "Родитель" -#: templates/admin/manage-categories-admin-page.tpl.php:127 -#: templates/admin/manage-categories-admin-page.tpl.php:138 +#: templates/admin/manage-categories-admin-page.tpl.php:134 +#: templates/admin/manage-categories-admin-page.tpl.php:148 msgid "Order" msgstr "Порядок" -#: templates/admin/manage-categories-admin-page.tpl.php:128 -#: templates/admin/manage-categories-admin-page.tpl.php:139 +#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:149 msgid "Action" msgstr "Действие" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:2 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 msgid "What's your PayPal Merchant ID?" msgstr "Какой ваш идентификатор продавца PayPal?" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:3 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:10 #, fuzzy msgid "" "In order to verify payments made through PayPal, AWP Classifieds Plugin " @@ -9065,11 +9283,11 @@ msgstr "" "Чтобы проверить платежи через систему PayPal, плагину AWPCP необходимо знать " "ваш идентификатор продавца PayPal." -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:13 +#, fuzzy msgid "" -"Go to to obtain the Merchant ID and then go to the Payment Settings page to enter the " -"value." +"Go to %1$s to obtain the Merchant ID and then go to the %2$sPayment " +"Settings%3$s page to enter the value." msgstr "" "Перейдите на , чтобы узнать свой ID продавца, а потом перейдите " "на страницу Настройки оплаты " @@ -9262,7 +9480,8 @@ msgstr "Опубликовано в" msgid "Expires on" msgstr "Истекает" -#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:9 +#. translators: %s: URL to renew the ad +#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:12 msgid "You can renew your Ad visiting this link: %s" msgstr "Вы можете возобновить свое объявление, посетив эту ссылку: %s" @@ -9271,12 +9490,42 @@ msgstr "Вы можете возобновить свое объявление, msgid "Hello" msgstr "Здравствуйте," -#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:2 +#: templates/email/listing-media-upload-notification.plain.tpl.php:2 +#, fuzzy +msgid "Hello," +msgstr "Здравствуйте," + +#: templates/email/listing-media-upload-notification.plain.tpl.php:9 +#, fuzzy +msgid "The following media files were recently uploaded to listing \"%s\":" +msgstr "Следующие медиа файлы загружены для объявления \"\":" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:23 +#, fuzzy +msgid "" +"The following media files were recently uploaded to listing \"%s\" and are " +"awaiting approval:" +msgstr "" +"Следующие медиа файлы загружены для объявления \"\" и ожидают " +"утверждения:" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:36 +#, fuzzy +msgid "Click here to manage media uploaded to the listing: %s." +msgstr "" +"Нажмите здесь для управления загруженными файлами объявлений: ." + +#: templates/email/listing-media-upload-notification.plain.tpl.php:44 +#, fuzzy +msgid "Click here to view the listing: %s." +msgstr "Нажмите здесь для просмотра объявления: ." + +#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:3 msgid "" -"The ad \"\" was modified. A copy of the details sent to the " -"customer can be found below. You can follow this link " -"to go to the Manage Ad Listing section to approve/reject/spam and see the " -"full version of the Ad." +"The ad \"%s\" was modified. A copy of the details sent to the customer can " +"be found below. You can follow this link %s to go to the Manage Ad Listing " +"section to approve/reject/spam and see the full version of the Ad." msgstr "" #: templates/email/listing-was-flagged.plain.tpl.php:4 @@ -9287,19 +9536,128 @@ msgstr "" "На сайте имеются объявления, помеченные как подозрительные. " "Пожалуйста, проверьте их здесь ." -#: templates/frontend/listings.tpl.php:24 +#: templates/frontend/listings.tpl.php:37 msgid "There were no listings found." msgstr "Не найдено объявлений." +#: templates/frontend/order-submit-listing-section.tpl.php:41 +#, fuzzy +msgid "Who is the owner of this ad?" +msgstr "Кто владелец этой рекламы?" + +#: templates/frontend/order-submit-listing-section.tpl.php:86 +#, fuzzy +msgid "Your ad will be posted on the following categories: %s." +msgstr "Facebook API вернул ошибку: %s." + #: templates/privacy-policy.tpl.php:10 msgid "Suggested text:" msgstr "Предложенный текст:" -#. Author URI of the plugin/theme -msgid "https://awpcp.com/" +#: templates/privacy-policy.tpl.php:11 +msgid "" +"When you submit a classified listing, the content of the listing and its " +"metadata are retained indefinitely. All users can see, edit or delete the " +"personal information included on their listings at any time. Website " +"administrators can also see and edit that information." msgstr "" -#. Description of the plugin/theme +#: templates/privacy-policy.tpl.php:14 +msgid "" +"Website visitors can see the contact name, website URL, phone number, " +"address and other information included in your submission to describe the " +"classified listing." +msgstr "" + +#: templates/privacy-policy.tpl.php:18 +#, fuzzy +msgid "" +"Contact name, email address, website URL and content of submitted classified " +"listings may be checked through Akismet's spam detection service. The " +"Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"Комментарии посетителей могут быть проверены службой обнаружения спама " +"Akismet. Политика конфиденциальности службы Akismet доступна здесь." + +#: templates/privacy-policy.tpl.php:24 +#, fuzzy +msgid "Payment Information" +msgstr "Информация об оплате" + +#: templates/privacy-policy.tpl.php:28 +msgid "" +"If you pay to post a classified listing entering your credit card and " +"billing information directly on %s, the credit card information won't be " +"stored but it will be shared through a secure connection with the following " +"payment gateways to process the payment:" +msgstr "" + +#: templates/privacy-policy.tpl.php:36 +#, fuzzy +msgid "PayPal - %1$s" +msgstr "PayPal" + +#: templates/privacy-policy.tpl.php:42 +#, fuzzy +msgid "Authorize.Net - %s" +msgstr "Authorize.Net" + +#: templates/privacy-policy.tpl.php:48 +#, fuzzy +msgid "Stripe - %s" +msgstr "Stripe" + +#: templates/privacy-policy.tpl.php:54 +#, fuzzy +msgid "Regions" +msgstr "Регионы" + +#: templates/privacy-policy.tpl.php:56 +msgid "" +"If you choose to see listings published on a specific region, a cookie will " +"be stored on your browser for the remainder of the session to remember the " +"selected region." +msgstr "" + +#: templates/privacy-policy.tpl.php:58 +#, fuzzy +msgid "Comments and Ratings" +msgstr "Комментарии и Рейтинги" + +#: templates/privacy-policy.tpl.php:60 +msgid "" +"When visitors leave comments and reviews for classified listings we collect " +"the data shown in the comments form, and also the visitor’s IP address to " +"help spam detection." +msgstr "" + +#: templates/privacy-policy.tpl.php:64 +#, fuzzy +msgid "" +"Visitor comments may be checked through Akismet's spam detection service. " +"The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" +"Комментарии посетителей могут быть проверены службой обнаружения спама " +"Akismet. Политика конфиденциальности службы Akismet доступна здесь." + +#: templates/privacy-policy.tpl.php:70 +msgid "Restricted Categories" +msgstr "Ограниченные категории" + +#: templates/privacy-policy.tpl.php:72 +msgid "" +"When you agree to see listings or publish a listing on a restricted " +"category, a cookie will be stored in your browser to remember your decision. " +"The cookie will be stored on your browser for the remainder of that session." +msgstr "" + +#. Author URI of the plugin/theme +msgid "https://awpcp.com/" +msgstr "" + +#. Description of the plugin/theme msgid "Run a free or paid classified ads service on your WordPress site." msgstr "" @@ -9323,28 +9681,28 @@ msgctxt "awpcp admin menu" msgid "Classifieds" msgstr "Доска объявлений" -#: admin/admin-panel.php:810 includes/settings/class-listings-settings.php:469 +#: admin/admin-panel.php:794 includes/settings/class-listings-settings.php:469 msgctxt "page name" msgid "Show Ad" msgstr "Показать рекламу" -#: admin/admin-panel.php:818 +#: admin/admin-panel.php:802 msgctxt "page name" msgid "Edit Ad" msgstr "Редактировать объявление" -#: admin/class-csv-exporter.php:82 +#: admin/class-csv-exporter.php:83 msgctxt "admin csv-export" msgid "Could not create a temporary directory for handling this CSV export." msgstr "Не удалось создать временную директорию для экспорта CSV." -#: admin/class-csv-exporter.php:85 +#: admin/class-csv-exporter.php:86 msgctxt "admin csv-export" msgid "Could not create awpcp-csv-exports directory." msgstr "Не удалось создать директорию awpcp-csv-exports." #. translators: %s the error. -#: admin/class-csv-exporter.php:91 +#: admin/class-csv-exporter.php:95 msgctxt "admin csv-export" msgid "Error while creating a temporary directory for CSV export: %s" msgstr "Ошибка при создании временной директории для экспорта CSV: %s" @@ -9354,76 +9712,73 @@ msgctxt "admin csv-export" msgid "Could not decode export state information." msgstr "" -#: admin/class-debug-admin-page.php:136 +#: admin/class-debug-admin-page.php:137 msgctxt "debug page" msgid "Plugin Info" msgstr "Информация о плагине" -#: admin/class-debug-admin-page.php:137 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:33 +#: admin/class-debug-admin-page.php:138 msgctxt "debug page" msgid "Plugin Pages" msgstr "Страницы плагинов" -#: admin/class-debug-admin-page.php:138 +#: admin/class-debug-admin-page.php:139 msgctxt "debug page" msgid "Plugin Settings" msgstr "Настройки плагина" -#: admin/class-debug-admin-page.php:139 +#: admin/class-debug-admin-page.php:140 msgctxt "debug page" msgid "Environment" msgstr "Окружение" -#: admin/class-debug-admin-page.php:140 -#: admin/templates/admin-panel-debug.tpl.php:32 +#: admin/class-debug-admin-page.php:141 +#: admin/templates/admin-panel-debug.tpl.php:59 msgctxt "debug page" msgid "Rewrite Rules" msgstr "Перезаписать правила" -#: admin/class-debug-admin-page.php:177 +#: admin/class-debug-admin-page.php:178 msgctxt "debug page" msgid "Plugin Version" msgstr "Версия плагина" -#: admin/class-debug-admin-page.php:283 -#: admin/templates/admin-panel-debug.tpl.php:126 +#: admin/class-debug-admin-page.php:284 msgctxt "debug page" msgid "cURL's alternate CA info (cacert.pem)" msgstr "cURL's alternate CA info (cacert.pem)" -#: admin/class-debug-admin-page.php:287 -#: admin/templates/admin-panel-debug.tpl.php:130 +#: admin/class-debug-admin-page.php:288 msgctxt "debug page" msgid "PayPal Connection" msgstr "Соединение с PayPal" -#: admin/class-debug-admin-page.php:359 +#: admin/class-debug-admin-page.php:360 msgctxt "debug page" msgid "Working" msgstr "Рабочая" -#: admin/class-debug-admin-page.php:362 -#: admin/templates/admin-panel-debug.tpl.php:136 +#: admin/class-debug-admin-page.php:363 msgctxt "debug page" msgid "Not Working" msgstr "Не работает" -#: admin/templates/admin-panel-debug.tpl.php:22 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:31 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:34 msgctxt "debug page" msgid "Flush Rewrite Rules" msgstr "Стереть правила подстановки" -#: admin/templates/admin-panel-debug.tpl.php:26 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s Linked +#. URL in anchor link +#: admin/templates/admin-panel-debug.tpl.php:48 +#, fuzzy msgctxt "debug page" msgid "" -"This information can help AWPCP Developers to debug possible problems. If " -"you are submitting a bug report please Download the " -"Debug Information and attach it to your bug report or take a " -"minute to copy the information below to http://fpaste.org and provide the resulting URL in " -"your report." +"This information can help the AWP Team to debug possible problems. If you " +"are submitting a bug report please %1$sDownload the Debug Information%2$s " +"and attach it to your bug report or take a minute to copy the information " +"below to %3$s and provide the resulting URL in your report." msgstr "" "Эта информация может помочь разработчикам AWPCP для отладки возможных " "проблем. Если вы отправляете отчет об ошибке, пожалуйста, http://" "fpaste.org и введите полученный URL-адрес в отчете." -#: admin/templates/admin-panel-debug.tpl.php:29 +#: admin/templates/admin-panel-debug.tpl.php:56 msgctxt "debug page" msgid "AWPCP Pages" msgstr "Страницы AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:57 msgctxt "debug page" msgid "PHP Info" msgstr "PHP Info" -#: admin/templates/admin-panel-debug.tpl.php:31 +#: admin/templates/admin-panel-debug.tpl.php:58 msgctxt "debug page" msgid "AWPCP Settings" msgstr "Настройки AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:118 -msgctxt "debug page" -msgid "PHP Version" -msgstr "Версия PHP" - -#: admin/templates/admin-panel-debug.tpl.php:122 -msgctxt "debug page" -msgid "cURL" -msgstr "cURL" - #. translators: %s is the URL to download the debug information #: templates/admin/debug/debug-admin-page.tpl.php:17 msgctxt "debug page" @@ -9466,22 +9811,22 @@ msgid "" "Debug Information and attach it to your bug report." msgstr "" -#: templates/admin/debug/plugin-info-debug-section.tpl.php:29 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:38 msgctxt "debug page" msgid "There are no premium modules activated right now." msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:38 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:49 msgctxt "debug page" msgid "Reference" msgstr "Ссылка" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:39 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:50 msgctxt "debug page" msgid "Page Title" msgstr "Заголовок страницы" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:51 msgctxt "debug page" msgid "Stored ID" msgstr "Сохраненный ID" @@ -9496,41 +9841,39 @@ msgctxt "debug page" msgid "Setting Value" msgstr "" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Exists" msgstr "Существует" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Missing" msgstr "Отсутсвует" -#: admin/class-import-listings-admin-page.php:358 +#: admin/class-import-listings-admin-page.php:362 msgctxt "" "description for messages used to show feedback for the Import Listings " "operation" msgid " in line " msgstr " в строке " -#: admin/class-import-listings-admin-page.php:369 +#: admin/class-import-listings-admin-page.php:373 msgctxt "text for page subtitle and submit button" msgid "Test Import" msgstr "Тестовый импорт" -#: admin/class-import-listings-admin-page.php:371 +#: admin/class-import-listings-admin-page.php:375 msgctxt "text for page subtitle and submit button" msgid "Import" msgstr "Импортировать" -#: admin/class-import-settings-admin-page.php:104 +#: admin/class-import-settings-admin-page.php:102 msgctxt "import settings" msgid "Are you sure you want to do this?" msgstr "Вы уверены, что хотите это сделать?" -#: admin/class-import-settings-admin-page.php:116 +#: admin/class-import-settings-admin-page.php:115 msgctxt "import settings" msgid "" "There was a problem trying to read the settings file; it appears the file " @@ -9539,55 +9882,6 @@ msgstr "" "Возникла проблема при чтении файла настроек; похоже, файл некорректно " "загрузился. Пожалуйста, попробуйте снова." -#: admin/class-import-settings-admin-page.php:122 -msgctxt "another-wordpress-classifieds-plugin" -msgid "Your settings have been successfully imported." -msgstr "Ваши настройки успешно импортированы." - -#: includes/settings/class-email-settings.php:201 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello {author_name} \n" -"\n" -"You recently posted the Ad {listing_title} to {website_title}. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"{verification_link} \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" -msgstr "" - -#: installer.php:849 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello $author_name \n" -"\n" -"You recently posted the Ad $title to $website_name. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"$verification_link \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" -msgstr "" - #: admin/credit-plans/class-delete-credit-plan-action-handler.php:30 #: admin/credit-plans/class-edit-credit-plan-action-handler.php:27 msgctxt "credit plans ajax" @@ -9609,18 +9903,18 @@ msgctxt "form field slug" msgid "Slug" msgstr "Краткий заголовок [из поля slug]" -#: admin/import/class-csv-importer-delegate.php:98 +#: admin/import/class-csv-importer-delegate.php:101 msgctxt "csv importer" msgid "Required value for column \"\" is missing." msgstr "Требуемое значение колонки \"\" пропущено." -#: admin/import/class-csv-importer-delegate.php:181 +#: admin/import/class-csv-importer-delegate.php:184 msgctxt "csv importer" msgid "A new user '%s' with email address '%s' and password '%s' was created." msgstr "" "Новый пользователь '%s' с адресом почты '%s' и паролем '%s' был создан." -#: admin/import/class-csv-importer-delegate.php:252 +#: admin/import/class-csv-importer-delegate.php:256 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9629,7 +9923,7 @@ msgid "" "user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:255 +#: admin/import/class-csv-importer-delegate.php:258 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9637,7 +9931,7 @@ msgid "" "a username or select a default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:258 +#: admin/import/class-csv-importer-delegate.php:260 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9645,66 +9939,66 @@ msgid "" "include a contact_email or select a default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:312 +#: admin/import/class-csv-importer-delegate.php:316 msgctxt "csv importer" msgid "No category with name \"\" was found." msgstr "Не найдено категории с именем \"\"." -#: admin/import/class-csv-importer-delegate.php:328 +#: admin/import/class-csv-importer-delegate.php:332 msgctxt "csv importer" msgid "There was an error trying to create category \"\"." msgstr "Возникла ошибка при создании категории \"\"." -#: admin/import/class-csv-importer-delegate.php:337 +#: admin/import/class-csv-importer-delegate.php:342 msgctxt "csv importer" msgid "" "A category with name \"\" was created, but there was an error " "trying to retrieve its information from the database." msgstr "" -#: admin/import/class-csv-importer-delegate.php:349 +#: admin/import/class-csv-importer-delegate.php:355 msgctxt "csv importer" msgid "Item price must be a number." msgstr "Цена товара должна быть числом." -#: admin/import/class-csv-importer-delegate.php:363 +#: admin/import/class-csv-importer-delegate.php:369 msgctxt "csv importer" msgid "The start date is missing and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:364 +#: admin/import/class-csv-importer-delegate.php:370 msgctxt "csv importer" msgid "The start date is invalid and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:365 +#: admin/import/class-csv-importer-delegate.php:371 msgctxt "csv importer" msgid "Invalid default start date." msgstr "Неверная дата начала по умолчанию." -#: admin/import/class-csv-importer-delegate.php:430 -#: admin/import/class-csv-importer-delegate.php:431 +#: admin/import/class-csv-importer-delegate.php:436 +#: admin/import/class-csv-importer-delegate.php:437 msgctxt "csv importer" msgid "The end date is missing and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:432 +#: admin/import/class-csv-importer-delegate.php:438 msgctxt "csv importer" msgid "Invalid default end date." msgstr "Неверная дата окончания по умолчанию." -#: admin/import/class-csv-importer-delegate.php:499 +#: admin/import/class-csv-importer-delegate.php:505 msgctxt "csv importer" msgid "Image file with name not found." msgstr "Файл изображения с названием не найден." -#: admin/import/class-csv-importer-delegate.php:566 +#: admin/import/class-csv-importer-delegate.php:576 msgctxt "csv importer" msgid "There was an error trying to store imported data into the database." msgstr "" "Возникла ошибка при попытке хранения импортированных данных в базе данных." -#: admin/import/class-csv-importer-delegate.php:587 +#: admin/import/class-csv-importer-delegate.php:599 msgctxt "csv importer" msgid "" "There was an error trying to import one of the images: {image-validation-" @@ -9728,19 +10022,6 @@ msgctxt "drip-autoresponder" msgid "The email address entered is not valid." msgstr "Этот адрес электронной почты недействителен." -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 -msgctxt "drip-autoresponder" -msgid "Thank you for signing up!" -msgstr "Благодарим вас за подписку!" - -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 -msgctxt "drip-autoresponder" -msgid "" -"Please check your email and click the link provided to confirm your " -"subscription." -msgstr "" -"Пожалуйста, проверьте вашу электронную почту для подтверждения подписки." - #: admin/pointers/class-drip-autoresponder.php:22 msgctxt "drip-autoresponder" msgid "Yes, I'd like my course, please" @@ -9751,18 +10032,6 @@ msgctxt "drip-autoresponder" msgid "No, thanks" msgstr "Нет, спасибо" -#: admin/pointers/class-drip-autoresponder.php:62 -msgctxt "drip-autoresponder" -msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" -msgstr "Хотите узнать секреты успешного сайта объявлений?" - -#: admin/pointers/class-drip-autoresponder.php:63 -msgctxt "drip-autoresponder" -msgid "" -"Find out how to create a compelling, thriving classifieds site from scratch " -"in this ridiculously actionable (and free) 5-part email course." -msgstr "" - #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:6 msgctxt "credit plans form" msgid "Edit Credit Plan Details" @@ -9778,28 +10047,6 @@ msgctxt "Quick Start Guide" msgid "No Thanks" msgstr "Нет, спасибо" -#: admin/templates/admin-quick-start-guide-notice.tpl.php:9 -msgctxt "Quick Start Guide" -msgid "I'll figure it out on my own." -msgstr "Я выясню это сам." - -#: admin/templates/admin-quick-start-guide-notice.tpl.php:17 -msgctxt "Quick Start Guide" -msgid "Help me get my classifieds running quickly." -msgstr "Помогите мне быстро запустить мою доску объявлений." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:75 -msgctxt "Browse the Quick Start Guide" -msgid "Browse the %s." -msgstr "Просмотреть %s." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:85 -msgctxt "Read the full Documentation" -msgid "Read the full %s." -msgstr "Читать полную %s." - #: admin/templates/admin-widget-modification-notice.tpl.php:7 msgctxt "widget modification notice" msgid "Close this, I'll check my Widget configuration." @@ -9849,17 +10096,17 @@ msgctxt "404 HTTP status description" msgid "Listing not found" msgstr "Объявление не найдено" -#: frontend/page-place-ad.php:1417 +#: frontend/page-place-ad.php:1420 msgctxt "upload listing images form" msgid "Preview Ad" msgstr "Предпросмотр объявления" -#: frontend/page-place-ad.php:1419 +#: frontend/page-place-ad.php:1422 msgctxt "upload listing images form" msgid "Place Ad" msgstr "Разместить объявление" -#: frontend/page-place-ad.php:1421 +#: frontend/page-place-ad.php:1424 msgctxt "upload listing images form" msgid "Checkout" msgstr "Завершить" @@ -9940,7 +10187,7 @@ msgctxt "listing row action" msgid "Unflag" msgstr "Убрать флаг" -#: frontend/templates/email-send-ad-access-key.tpl.php:9 +#: frontend/templates/email-send-ad-access-key.tpl.php:13 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:18 #: templates/email/listing-edit-link-with-access-token.tpl.php:9 msgctxt "edit link email" @@ -9999,11 +10246,6 @@ msgctxt "loading region options" msgid "loading..." msgstr "загрузка..." -#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 -msgctxt "add credit checkout step" -msgid "Complete Payment" -msgstr "Завершение оплаты" - #: frontend/templates/page-edit-ad-email-key-step.tpl.php:34 msgctxt "enter email and access key form" msgid "Continue" @@ -10014,33 +10256,28 @@ msgctxt "send ad access key form" msgid "Continue" msgstr "Продолжить" -#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 -msgctxt "place ad checkout step" -msgid "Complete Payment" -msgstr "Завершение оплаты" - -#: frontend/templates/page-place-ad-details-step.tpl.php:59 +#: frontend/templates/page-place-ad-details-step.tpl.php:63 msgctxt "ad details form" msgid "Start Date" msgstr "Дата начала" -#: frontend/templates/page-place-ad-details-step.tpl.php:69 +#: frontend/templates/page-place-ad-details-step.tpl.php:73 msgctxt "ad details form" msgid "End Date" msgstr "Дата окончания" -#: frontend/templates/page-place-ad-details-step.tpl.php:98 +#: frontend/templates/page-place-ad-details-step.tpl.php:104 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:9 msgctxt "ad details form" msgid "Read our Terms of Service" msgstr "Ознакомьтесь с условиями предоставления услуг" -#: frontend/templates/page-place-ad-details-step.tpl.php:100 +#: frontend/templates/page-place-ad-details-step.tpl.php:106 msgctxt "ad details form" msgid "Terms of service:" msgstr "Условия предоставления услуг" -#: frontend/templates/page-place-ad-details-step.tpl.php:105 +#: frontend/templates/page-place-ad-details-step.tpl.php:111 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:17 msgctxt "ad details form" msgid "I agree to the terms of service" @@ -10105,12 +10342,12 @@ msgctxt "ad details form" msgid "Terms of Service" msgstr "Условия Предоставления Услуг" -#: frontend/templates/page-place-ad-details-step.tpl.php:120 +#: frontend/templates/page-place-ad-details-step.tpl.php:126 msgctxt "listing details form" msgid "Preview Ad" msgstr "Предпросмотр объявления" -#: frontend/templates/page-place-ad-details-step.tpl.php:122 +#: frontend/templates/page-place-ad-details-step.tpl.php:128 msgctxt "listing details form" msgid "Continue" msgstr "Продолжить" @@ -10140,7 +10377,7 @@ msgctxt "place ad order step" msgid "Please select the owner for this Ad" msgstr "Пожалуйста, выберите владельца для данного объявления" -#: frontend/templates/page-place-ad-order-step.tpl.php:82 +#: frontend/templates/page-place-ad-order-step.tpl.php:84 msgctxt "listing order form" msgid "Continue" msgstr "Продолжить" @@ -10151,24 +10388,12 @@ msgctxt "images upload step" msgid "Thumbnails of already uploaded images are shown below." msgstr "Миниатюры уже загруженных изображений показаны ниже." -#: frontend/templates/page-renew-ad-order-step.tpl.php:6 -msgctxt "renew ad order step" -msgid "Select Payment Term" -msgstr "Выберите условия оплаты" - -#: frontend/templates/page-search-ads.tpl.php:88 +#: frontend/templates/page-search-ads.tpl.php:95 msgctxt "ad search form" msgid "Find Ads" msgstr "Найти рекламу" -#: frontend/templates/payments-billing-form.tpl.php:1 -msgctxt "awpcp billing form" -msgid "" -"Please fill in the billing information in the form below to place your " -"payment." -msgstr "Пожалуйста, заполните платежную информацию в форме." - -#: frontend/templates/payments-checkout-page.tpl.php:13 +#: frontend/templates/payments-checkout-page.tpl.php:12 msgctxt "checkout step" msgid "" "You are about to pay for the following items. Please review the order and " @@ -10177,107 +10402,47 @@ msgstr "" "Вы собираетесь оплатить следующие услуги. Пожалуйста, просмотрите заказ еще " "раз и выберите способ оплаты." -#: frontend/templates/payments-checkout-page.tpl.php:17 +#: frontend/templates/payments-checkout-page.tpl.php:16 msgctxt "checkout step" msgid "Payment Terms" msgstr "Условия оплаты" -#: frontend/templates/payments-checkout-page.tpl.php:23 +#: frontend/templates/payments-checkout-page.tpl.php:22 msgctxt "checkout step" msgid "Payment Method" msgstr "Способ оплаты" #: frontend/templates/payments-checkout-payment-page.tpl.php:8 -#: frontend/templates/payments-payment-page.tpl.php:3 msgctxt "checkout-payment page" msgid "You are about to pay for the following items." msgstr "Вы собираетесь оплатить следующие пункты." #: frontend/templates/payments-checkout-payment-page.tpl.php:10 -#: frontend/templates/payments-payment-page.tpl.php:5 msgctxt "checkout-payment page" msgid "Payment Terms" msgstr "Условия оплаты" -#: includes/payments-api.php:802 +#: includes/payments-api.php:889 msgctxt "checkout-payment page" msgid "Please use the button below to complete your payment." msgstr "Пожалуйста, используйте кнопку ниже, чтобы завершить платеж." -#: frontend/templates/payments-credit-plans-table.tpl.php:7 -msgctxt "credit plans table" -msgid "" -"You can additionally purchase a Credit Plan to add credit to your account. " -"If you select to pay using credits, the price of the selected payment term " -"will be deducted from your account balance after you have completed payment." -msgstr "" -"Дополнительно вы можете приобрести один из кредитных планов. Если вы " -"выберете оплату кредитами, стоимость выбранного метода будет списана с " -"вашего кредитного баланса по окончанию операции." - -#: frontend/templates/payments-credit-plans-table.tpl.php:51 -msgctxt "credit plans table" -msgid "clear selection" -msgstr "Очистить выбор" - -#: includes/payments-api.php:722 -msgctxt "credit plans table" -msgid "Plan" -msgstr "План" - -#: includes/payments-api.php:723 -msgctxt "credit plans table" -msgid "Description" -msgstr "Описание" - -#: includes/payments-api.php:724 -msgctxt "credit plans table" -msgid "Credits" -msgstr "Кредиты" - -#: includes/payments-api.php:725 -msgctxt "credit plans table" -msgid "Price" -msgstr "Цена" - -#: frontend/templates/payments-payment-completed-page.tpl.php:2 -msgctxt "payment completed page" -msgid "Transaction Details" -msgstr "Детали транзакции" - #: frontend/templates/payments-paypal-payment-button.tpl.php:27 msgctxt "paypal-checkout-form" msgid "Return to %s" msgstr "Возврат к %s" -#: frontend/templates/payments-transaction-items-table.tpl.php:4 -#: frontend/templates/payments-transaction-items-table.tpl.php:13 -msgctxt "transaction items" -msgid "Item" -msgstr "Название" - -#: frontend/templates/payments-transaction-items-table.tpl.php:5 -#: frontend/templates/payments-transaction-items-table.tpl.php:17 -msgctxt "transaction items" -msgid "Amount" -msgstr "Сумма" - -#: frontend/templates/payments-transaction-items-table.tpl.php:34 -msgctxt "transaction items" -msgid "Total Amount (credit)" -msgstr "Итого (кредиты)" - #: frontend/templates/payments-transaction-items-table.tpl.php:40 msgctxt "transaction items" msgid "Total Amount" msgstr "Итого" -#: functions.php:743 +#: functions.php:749 msgctxt "comma separated list of things" msgid "%s and %d more." msgstr "%s и %d более." -#: functions.php:1200 +#: functions.php:1222 msgctxt "default blog title" msgid "Classifieds Website" msgstr "Сайт доски объявлеий" @@ -10506,27 +10671,27 @@ msgctxt "listing status" msgid "Active" msgstr "Активно" -#: includes/admin/listings/class-listings-table-columns-handler.php:211 +#: includes/admin/listings/class-listings-table-columns-handler.php:212 msgctxt "listing status" msgid "Pending Approval" msgstr "Ожидает подтверждения" -#: includes/admin/listings/class-listings-table-columns-handler.php:215 +#: includes/admin/listings/class-listings-table-columns-handler.php:217 msgctxt "listing status" msgid "Expired" msgstr "Истекшее" -#: includes/admin/listings/class-listings-table-columns-handler.php:219 +#: includes/admin/listings/class-listings-table-columns-handler.php:222 msgctxt "listing status" msgid "Disabled" msgstr "Отключено" -#: includes/admin/listings/class-listings-table-columns-handler.php:223 +#: includes/admin/listings/class-listings-table-columns-handler.php:227 msgctxt "listing status" msgid "Pending Payment" msgstr "В ожидании оплаты" -#: includes/admin/listings/class-listings-table-columns-handler.php:227 +#: includes/admin/listings/class-listings-table-columns-handler.php:232 msgctxt "listing status" msgid "Pending Verification" msgstr "Ожидает верификации" @@ -10541,17 +10706,17 @@ msgctxt "listings row action" msgid "Quick View" msgstr "Быстрый обзор" -#: includes/class-awpcp.php:1458 +#: includes/class-awpcp.php:1449 msgctxt "[UI Datepicker] Display text for previous month link" msgid "<Prev" msgstr "< Пред." -#: includes/class-awpcp.php:1459 +#: includes/class-awpcp.php:1450 msgctxt "[UI Datepicker] Display text for next month link" msgid "Next>" msgstr "След. >" -#: includes/class-awpcp.php:1465 +#: includes/class-awpcp.php:1456 msgctxt "[UI Datepicker] The first day of the week, Sun = 0, Mon = 1, ..." msgid "0" msgstr "0" @@ -10604,7 +10769,7 @@ msgid "Regions" msgstr "Регионы" #. translators: the numbers that need to be added up for the math challenge. -#: includes/frontend/class-default-captcha-provider.php:34 +#: includes/frontend/class-default-captcha-provider.php:45 msgctxt "CAPTCHA" msgid "Enter the value of the following sum: %1$d + %2$d" msgstr "" @@ -10634,79 +10799,69 @@ msgctxt "order submit listing section" msgid "Please select a category for your ad" msgstr "Пожалуйста, выберите категорию вашей рекламы" -#: templates/frontend/order-submit-listing-section.tpl.php:44 -msgctxt "order submit listing section" -msgid "Who is the owner of this ad?" -msgstr "Кто владелец этой рекламы?" - -#: templates/frontend/order-submit-listing-section.tpl.php:59 +#: templates/frontend/order-submit-listing-section.tpl.php:57 msgctxt "order submit listing section" msgid "" "Please select the duration and features that will be available for this ad" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:81 +#: templates/frontend/order-submit-listing-section.tpl.php:77 msgctxt "order submit listing section" msgid "Continue" msgstr "Далее" -#: templates/frontend/order-submit-listing-section.tpl.php:87 -msgctxt "order submit listing section" -msgid "Your ad will be posted on the following categories: {categories}." -msgstr "" - -#: templates/frontend/order-submit-listing-section.tpl.php:95 +#: templates/frontend/order-submit-listing-section.tpl.php:98 msgctxt "order submit listing section" msgid "Credit Plan:" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:96 +#: templates/frontend/order-submit-listing-section.tpl.php:99 msgctxt "order submit listing section" msgid "Owner:" msgstr "Владелец:" -#: templates/frontend/order-submit-listing-section.tpl.php:99 +#: templates/frontend/order-submit-listing-section.tpl.php:102 msgctxt "order submit listing section" msgid "Loading ad fields" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:100 +#: templates/frontend/order-submit-listing-section.tpl.php:103 msgctxt "order submit listing section" msgid "Change selection" msgstr "Изменить выделение" -#: includes/frontend/class-recaptcha-v2.php:66 +#: includes/frontend/class-recaptcha-v2.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing" msgstr "Отсутствует секретный ключ приложения" -#: includes/frontend/class-recaptcha-v2.php:69 -#: includes/helpers/class-recaptcha-v3.php:74 +#: includes/frontend/class-recaptcha-v2.php:96 +#: includes/helpers/class-recaptcha-v3.php:96 msgctxt "recaptcha-error" msgid "The secret parameter is invalid or malformed." msgstr "Секретный параметр неверен или испорчен." -#: includes/frontend/class-recaptcha-v2.php:72 +#: includes/frontend/class-recaptcha-v2.php:99 msgctxt "recaptcha-error" msgid "The response parameter is missing." msgstr "Ответный параметр отсутствует." -#: includes/frontend/class-recaptcha-v2.php:76 +#: includes/frontend/class-recaptcha-v2.php:103 msgctxt "recaptcha-error" msgid "The response parameter is invalid or malformed." msgstr "Ответный параметр неверен или испорчен." -#: includes/helpers/class-recaptcha-v3.php:71 +#: includes/helpers/class-recaptcha-v3.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:77 +#: includes/helpers/class-recaptcha-v3.php:99 msgctxt "recaptcha-error" msgid "reCAPTCHA score was not included." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:81 +#: includes/helpers/class-recaptcha-v3.php:103 msgctxt "recaptcha-error" msgid "reCAPTCHA couldn't analyze the current interaction." msgstr "" @@ -10842,7 +10997,7 @@ msgid "remaining" msgstr "осталось" #. translators: %s is the type of region. -#: includes/helpers/widgets/multiple-region-selector.php:122 +#: includes/helpers/widgets/multiple-region-selector.php:142 msgctxt "Select in Multiple Region Selector" msgid "Select %s" msgstr "Выбор %s" @@ -10864,7 +11019,7 @@ msgid "Add New" msgstr "Добавить" #: includes/models/class-custom-post-types.php:157 -#: includes/settings/class-listings-settings.php:595 +#: includes/settings/class-listings-settings.php:597 msgctxt "listing post type slug" msgid "classifieds" msgstr "" @@ -10884,7 +11039,7 @@ msgctxt "payment gateways" msgid "2Checkout" msgstr "2Checkout" -#: includes/payment-gateway-paypal-standard.php:24 +#: includes/payment-gateway-paypal-standard.php:26 msgctxt "payment gateways" msgid "PayPal" msgstr "PayPal" @@ -10930,57 +11085,77 @@ msgstr[1] "Года" msgstr[2] "Лет" msgstr[3] "Лет" -#: includes/payment-terms-table.php:33 +#: includes/payment-terms-table.php:38 msgctxt "place ad payment terms column headers" msgid "Payment Term" msgstr "Условия" -#: includes/payment-terms-table.php:34 +#: includes/payment-terms-table.php:39 msgctxt "place ad payment terms column headers" msgid "Ads Allowed" msgstr "Объявлений доступно" -#: includes/payment-terms-table.php:35 +#: includes/payment-terms-table.php:40 msgctxt "place ad payment terms column headers" msgid "Images Allowed" msgstr "Фото доступно" -#: includes/payment-terms-table.php:36 +#: includes/payment-terms-table.php:41 msgctxt "place ad payment terms column headers" msgid "Characters in Title" msgstr "Заголовок (символов)" -#: includes/payment-terms-table.php:37 +#: includes/payment-terms-table.php:42 msgctxt "place ad payment terms column headers" msgid "Chars in Description" msgstr "Описание (символов)" -#: includes/payment-terms-table.php:38 +#: includes/payment-terms-table.php:43 msgctxt "place ad payment terms column headers" msgid "Duration" msgstr "Срок" -#: includes/payment-terms-table.php:44 +#: includes/payment-terms-table.php:49 msgctxt "place ad payment terms column headers" msgid "Price (currency)" msgstr "Цена" -#: includes/payment-terms-table.php:49 +#: includes/payment-terms-table.php:54 msgctxt "place ad payment terms column headers" msgid "Price (credits)" msgstr "Кредиты" -#: includes/payment-terms-table.php:106 includes/payment-terms-table.php:111 +#: includes/payment-terms-table.php:139 includes/payment-terms-table.php:145 msgctxt "payment term duration" msgid "No Limit" msgstr "Не ограничено" -#: includes/settings/class-email-settings.php:135 +#: includes/payments-api.php:757 +msgctxt "credit plans table" +msgid "Plan" +msgstr "План" + +#: includes/payments-api.php:758 +msgctxt "credit plans table" +msgid "Description" +msgstr "Описание" + +#: includes/payments-api.php:759 +msgctxt "credit plans table" +msgid "Credits" +msgstr "Кредиты" + +#: includes/payments-api.php:760 +msgctxt "credit plans table" +msgid "Price" +msgstr "Цена" + +#: includes/settings/class-email-settings.php:137 msgctxt "reply to ad email" msgid "Response to your classified ad: {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:136 +#: includes/settings/class-email-settings.php:138 msgctxt "reply to ad email" msgid "" "Someone has responded to your classified ad.\n" @@ -10999,12 +11174,12 @@ msgid "" "{website_url}" msgstr "" -#: includes/settings/class-email-settings.php:161 +#: includes/settings/class-email-settings.php:163 msgctxt "reply to ad email" msgid "Notification about a response regarding ad: {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:162 +#: includes/settings/class-email-settings.php:164 msgctxt "reply to ad email" msgid "" "Someone has responded to one of the classified ads on your website.\n" @@ -11023,12 +11198,12 @@ msgid "" "{website_url}" msgstr "" -#: installer.php:833 +#: installer.php:318 msgctxt "reply to ad email" msgid "{__previous_subject__} regarding: {listing_title}" msgstr "" -#: installer.php:834 +#: installer.php:319 msgctxt "reply to ad email" msgid "" "{__previous_body__}\n" @@ -11113,14 +11288,6 @@ msgstr "" "Снимите этот флажок, чтобы показывать цены без десятичных знаков. Значение " "будет округлено." -#: includes/settings/class-licenses-settings.php:81 -msgctxt "settings" -msgid "" -"The IP address of your server is . Please make sure to include " -"that information if you need to contact support about problems trying to " -"activate your licenses." -msgstr "" - #: includes/settings/class-payment-general-settings.php:100 msgctxt "settings" msgid "Pay before entering Ad details" @@ -11159,16 +11326,18 @@ msgstr "" "Эти настройки отвечают за формирование заголовка браузера при отображении " "деталей объявления. Вы можете добавить или исключить элементы по желанию." -#: includes/settings/class-listings-settings.php:599 +#: includes/settings/class-listings-settings.php:601 msgctxt "listing url settings section" msgid "" "These settings affect the URL path shown for listings. You can include or " "remove elements for SEO purposes." msgstr "" -#: includes/settings/class-listings-settings.php:605 +#. translators: %s: example URL +#: includes/settings/class-listings-settings.php:610 +#, fuzzy msgctxt "listing url settings section" -msgid "Example path: ." +msgid "Example path: %s." msgstr "Примерный путь: ." #: includes/settings/renderers/class-wordpress-page-settings-renderer.php:27 @@ -11176,10 +11345,12 @@ msgctxt "page settings" msgid "— Select —" msgstr "— Выбрать —" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:40 +#. translators: %1$s is a dropdown with existing pages, %2$s is a link to +#. create a new page +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:34 msgctxt "page settings" -msgid "Select existing page {dropdown} -or- {create_page_button}" -msgstr "Выбрать существующую страницу {dropdown} -или- {create_page_button}" +msgid "Select existing page %1$s -or- %2$s" +msgstr "" #. translators: %1$s the success message, %2$s the error message #: includes/views/admin/listings/class-listing-action-admin-page.php:22 @@ -11196,142 +11367,138 @@ msgid "" "for details." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:25 +#. translators: %1$s: memory_limit link, %2$s: max_execution_time link +#: templates/admin/export-listings-admin-page.tpl.php:27 msgctxt "listings-csv-export" msgid "" "Please note that the export process is a resource intensive task. If your " "export does not succeed try disabling other plugins first and/or increasing " -"the values of the 'memory_limit' and 'max_execution_time' directives in your " -"server's php.ini configuration file." +"the values of the %1$s and %2$s directives in your server php.ini " +"configuration file." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:44 +#: templates/admin/export-listings-admin-page.tpl.php:39 msgctxt "listings-csv-export" msgid "Export Configuration" msgstr "Экспорт конфигурации" -#: templates/admin/export-listings-admin-page.tpl.php:47 +#: templates/admin/export-listings-admin-page.tpl.php:42 msgctxt "listings-csv-export" msgid "Export settings" msgstr "Экспорт настроек" -#: templates/admin/export-listings-admin-page.tpl.php:51 +#: templates/admin/export-listings-admin-page.tpl.php:46 msgctxt "listings-csv-export" msgid "Which listings to export?" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:55 +#: templates/admin/export-listings-admin-page.tpl.php:50 msgctxt "listings-csv-export" msgid "All" msgstr "Все" -#: templates/admin/export-listings-admin-page.tpl.php:56 +#: templates/admin/export-listings-admin-page.tpl.php:51 msgctxt "listings-csv-export" msgid "Active Only" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:57 +#: templates/admin/export-listings-admin-page.tpl.php:52 msgctxt "listings-csv-export" msgid "Active + Pending Renewal" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:63 +#: templates/admin/export-listings-admin-page.tpl.php:58 msgctxt "listings-csv-export" msgid "Export images?" msgstr "Экспортировать изображения?" -#: templates/admin/export-listings-admin-page.tpl.php:68 +#: templates/admin/export-listings-admin-page.tpl.php:63 msgctxt "listings-csv-export" msgid "Export images" msgstr "Экспорт изображений" -#: templates/admin/export-listings-admin-page.tpl.php:71 +#: templates/admin/export-listings-admin-page.tpl.php:66 msgctxt "listings-csv-export" msgid "" "When checked, instead of just a CSV file a ZIP file will be generated with " "both a CSV file and listing images." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:77 +#: templates/admin/export-listings-admin-page.tpl.php:72 msgctxt "listings-csv-export" msgid "Additional metadata to export:" msgstr "Дополнительные метаданные к экспорту:" -#: templates/admin/export-listings-admin-page.tpl.php:82 +#: templates/admin/export-listings-admin-page.tpl.php:77 msgctxt "listings-csv-export" msgid "Include unique IDs for each listing (sequence_id column)." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:85 +#: templates/admin/export-listings-admin-page.tpl.php:80 msgctxt "listings-csv-export" msgid "" "If you plan to re-import the listings into AWPCP and don't want new ones " "created, select this option!" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:90 +#: templates/admin/export-listings-admin-page.tpl.php:85 msgctxt "listings-csv-export" msgid "Author information (username)" msgstr "Информация об авторе (логин)" -#: templates/admin/export-listings-admin-page.tpl.php:96 +#: templates/admin/export-listings-admin-page.tpl.php:91 msgctxt "listings-csv-export" msgid "CSV File Settings" msgstr "Настройки файла CSV" -#: templates/admin/export-listings-admin-page.tpl.php:100 +#: templates/admin/export-listings-admin-page.tpl.php:95 msgctxt "listings-csv-export" msgid "Image Separator" msgstr "Разделитель изображений" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "Category Separator" msgstr "Разделитель категорий" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "required" msgstr "обязательно" -#: templates/admin/export-listings-admin-page.tpl.php:118 +#: templates/admin/export-listings-admin-page.tpl.php:113 msgctxt "listings-csv-export" msgid "Export Listings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:124 +#: templates/admin/export-listings-admin-page.tpl.php:119 msgctxt "listings-csv-export" msgid "Export in Progress..." msgstr "Экспорт в процессе..." -#: templates/admin/export-listings-admin-page.tpl.php:125 +#: templates/admin/export-listings-admin-page.tpl.php:120 msgctxt "listings-csv-export" msgid "" "Your export file is being prepared. Please do not leave this page until the " "export finishes." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:128 +#: templates/admin/export-listings-admin-page.tpl.php:123 msgctxt "listings-csv-export" msgid "No. of listings:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:130 +#: templates/admin/export-listings-admin-page.tpl.php:125 msgctxt "listings-csv-export" msgid "Approximate export file size:" msgstr "Примерный размер экспортируемого файла:" -#: templates/admin/export-listings-admin-page.tpl.php:137 +#: templates/admin/export-listings-admin-page.tpl.php:132 msgctxt "listings-csv-export" msgid "Cancel Export" msgstr "Отмена экспорта" -#: templates/admin/export-listings-admin-page.tpl.php:142 -msgctxt "listings-csv-export" -msgid "Export Complete" -msgstr "Экспорт завершен" - -#: templates/admin/export-listings-admin-page.tpl.php:143 +#: templates/admin/export-listings-admin-page.tpl.php:138 msgctxt "listings-csv-export" msgid "" "Your export file has been successfully created and it is now ready for " @@ -11339,32 +11506,27 @@ msgid "" msgstr "Ваш файл экспорта успешно создан и готов к загрузке." #. translators: %1$s filename %2$s filesize. -#: templates/admin/export-listings-admin-page.tpl.php:149 +#: templates/admin/export-listings-admin-page.tpl.php:144 msgctxt "listings-csv-export" msgid "Download %1$s (%2$s)" msgstr "Загрузка %1$s (%2$s)" -#: templates/admin/export-listings-admin-page.tpl.php:160 +#: templates/admin/export-listings-admin-page.tpl.php:155 msgctxt "listings-csv-export" msgid "Cleanup" msgstr "Очистка" -#: templates/admin/export-listings-admin-page.tpl.php:165 -msgctxt "listings-csv-export" -msgid "Export Canceled" -msgstr "Экспорт отменен" - -#: templates/admin/export-listings-admin-page.tpl.php:166 +#: templates/admin/export-listings-admin-page.tpl.php:161 msgctxt "listings-csv-export" msgid "The export has been canceled." msgstr "Экспорт отменен." -#: templates/admin/export-listings-admin-page.tpl.php:167 +#: templates/admin/export-listings-admin-page.tpl.php:162 msgctxt "listings-csv-export" msgid "← Return to CSV Export" msgstr "← Назад к CSV экспорту" -#: templates/admin/export-listings-admin-page.tpl.php:101 +#: templates/admin/export-listings-admin-page.tpl.php:96 msgctxt "admin forms" msgid "required" msgstr "обязательно" @@ -11412,41 +11574,6 @@ msgctxt "The 'or' after 'Drop files here to upload' in Media Uploader" msgid "or" msgstr "или" -#: templates/email/listing-media-upload-notification.plain.tpl.php:1 -msgctxt "listing media uploaded notification" -msgid "Hello," -msgstr "Здравствуйте," - -#: templates/email/listing-media-upload-notification.plain.tpl.php:5 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\":" -msgstr "Следующие медиа файлы загружены для объявления \"\":" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:16 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\" and are awaiting approval:" -msgstr "" -"Следующие медиа файлы загружены для объявления \"\" и ожидают " -"утверждения:" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:26 -msgctxt "listing media uploaded notification" -msgid "" -"Click here to manage media uploaded to the listing: ." -msgstr "" -"Нажмите здесь для управления загруженными файлами объявлений: ." - -#: templates/email/listing-media-upload-notification.plain.tpl.php:31 -msgctxt "listing media uploaded notification" -msgid "Click here to view the listing: ." -msgstr "Нажмите здесь для просмотра объявления: ." - #: templates/frontend/actions-submit-listing-section.tpl.php:7 msgctxt "actions submit listing section" msgid "Actions" @@ -11482,120 +11609,61 @@ msgctxt "upload media submit listing section" msgid "Loading..." msgstr "Загрузка..." -#: templates/privacy-policy.tpl.php:10 -msgctxt "privacy policy" -msgid "" -"When you submit a classified listing, the content of the listing and its " -"metadata are retained indefinitely. All users can see, edit or delete the " -"personal information included on their listings at any time. Website " -"administrators can also see and edit that information." -msgstr "" +#~ msgid "Duration: " +#~ msgstr "Длительность: " -#: templates/privacy-policy.tpl.php:12 -msgctxt "privacy policy" -msgid "" -"Website visitors can see the contact name, website URL, phone number, " -"address and other information included in your submission to describe the " -"classified listing." -msgstr "" +#~ msgid "# of images: " +#~ msgstr "# изображений: " -#: templates/privacy-policy.tpl.php:14 -msgctxt "privacy policy" -msgid "" -"Contact name, email address, website URL and content of submitted classified " -"listings may be checked through Akismet's spam detection service. The " -"Akismet service privacy policy is available here." -msgstr "" +#~ msgid "Documentation" +#~ msgstr "Документация" -#: templates/privacy-policy.tpl.php:16 -msgctxt "privacy policy" -msgid "Payment Information" -msgstr "Информация об оплате" +#~ msgid "Status: " +#~ msgstr "Статус: " -#: templates/privacy-policy.tpl.php:18 -msgctxt "privacy policy" -msgid "" -"If you pay to post a classified listing entering your credit card and " -"billing information directly on {home_url}, the " -"credit card information won't be stored but it will be shared through a " -"secure connection with the following payment gateways to process the payment:" -msgstr "" +#~ msgctxt "debug page" +#~ msgid "PHP Version" +#~ msgstr "Версия PHP" -#: templates/privacy-policy.tpl.php:21 -msgctxt "privacy policy" -msgid "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -msgstr "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgctxt "Browse the Quick Start Guide" +#~ msgid "Browse the %s." +#~ msgstr "Просмотреть %s." -#: templates/privacy-policy.tpl.php:22 -msgctxt "privacy policy" -msgid "" -"Authorize.Net — https://www.authorize.net/company/privacy/" -msgstr "" -"Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgctxt "place ad checkout step" +#~ msgid "Complete Payment" +#~ msgstr "Завершение оплаты" -#: templates/privacy-policy.tpl.php:23 -msgctxt "privacy policy" -msgid "" -"Stripe — https://stripe.com/" -"us/privacy/" -msgstr "" +#~ msgctxt "transaction items" +#~ msgid "Amount" +#~ msgstr "Сумма" -#: templates/privacy-policy.tpl.php:26 -msgctxt "privacy policy" -msgid "Regions" -msgstr "Регионы" +#~ msgctxt "page settings" +#~ msgid "Select existing page {dropdown} -or- {create_page_button}" +#~ msgstr "Выбрать существующую страницу {dropdown} -или- {create_page_button}" -#: templates/privacy-policy.tpl.php:28 -msgctxt "privacy policy" -msgid "" -"If you choose to see listings published on a specific region, a cookie will " -"be stored on your browser for the remainder of the session to remember the " -"selected region." -msgstr "" - -#: templates/privacy-policy.tpl.php:30 -msgctxt "privacy policy" -msgid "Comments and Ratings" -msgstr "Комментарии и Рейтинги" - -#: templates/privacy-policy.tpl.php:32 -msgctxt "privacy policy" -msgid "" -"When visitors leave comments and reviews for classified listings we collect " -"the data shown in the comments form, and also the visitor’s IP address to " -"help spam detection." -msgstr "" +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" +#~ msgstr "" +#~ "PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -#: templates/privacy-policy.tpl.php:34 -msgctxt "privacy policy" -msgid "" -"Visitor comments may be checked through Akismet's spam detection service. " -"The Akismet service privacy policy is available here." -msgstr "" -"Комментарии посетителей могут быть проверены службой обнаружения спама " -"Akismet. Политика конфиденциальности службы Akismet доступна здесь." +#~ msgctxt "privacy policy" +#~ msgid "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" +#~ msgstr "" +#~ "Authorize.Net — https://www.authorize.net/company/privacy/" -#: templates/privacy-policy.tpl.php:36 -msgctxt "privacy policy" -msgid "Restricted Categories" -msgstr "Ограниченные категории" +#~ msgctxt "privacy policy" +#~ msgid "Regions" +#~ msgstr "Регионы" -#: templates/privacy-policy.tpl.php:38 -msgctxt "privacy policy" -msgid "" -"When you agree to see listings or publish a listing on a restricted " -"category, a cookie will be stored in your browser to remember your decision. " -"The cookie will be stored on your browser for the remainder of that session." -msgstr "" +#~ msgctxt "privacy policy" +#~ msgid "Restricted Categories" +#~ msgstr "Ограниченные категории" #~ msgid "AWPCP" #~ msgstr "AWPCP" @@ -11646,9 +11714,6 @@ msgstr "" #~ msgid "PayFast" #~ msgstr "PayFast" -#~ msgid "Restricted Categories" -#~ msgstr "Ограниченные категории" - #~ msgid "The number of regions allowed must be equal or greater than zero." #~ msgstr "Количество регионов, должно быть равно или больше нуля." diff --git a/languages/another-wordpress-classifieds-plugin-sk_SK.mo b/languages/another-wordpress-classifieds-plugin-sk_SK.mo index 6f940cc3a..25940ec12 100644 Binary files a/languages/another-wordpress-classifieds-plugin-sk_SK.mo and b/languages/another-wordpress-classifieds-plugin-sk_SK.mo differ diff --git a/languages/another-wordpress-classifieds-plugin-sk_SK.po b/languages/another-wordpress-classifieds-plugin-sk_SK.po index dd49bafc1..ccd66905e 100644 --- a/languages/another-wordpress-classifieds-plugin-sk_SK.po +++ b/languages/another-wordpress-classifieds-plugin-sk_SK.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Another WordPress Classifieds Plugin\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/another-wordpress-" "classifieds-plugin\n" -"POT-Creation-Date: 2024-03-20 20:22:37+00:00\n" +"POT-Creation-Date: 2024-06-13 20:37:03+00:00\n" "PO-Revision-Date: 2020-10-15 19:51+0000\n" "Last-Translator: Diego Giraldo \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/wp-translations/" @@ -25,21 +25,21 @@ msgstr "" #: admin/fees/class-fee-details-form.php:39 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:9 #: includes/settings/class-payment-general-settings.php:60 -#: templates/admin/manage-categories-admin-page.tpl.php:31 +#: templates/admin/manage-categories-admin-page.tpl.php:32 msgid "Name" msgstr "Názov" #: admin/admin-panel-credit-plans-table.php:80 #: admin/fees/class-fee-details-form.php:45 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:25 -#: templates/admin/manage-categories-admin-page.tpl.php:36 +#: templates/admin/manage-categories-admin-page.tpl.php:37 msgid "Description" msgstr "Popis" #: admin/admin-panel-credit-plans-table.php:81 #: admin/admin-panel-fees-table.php:121 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:14 -#: includes/settings/class-payment-general-settings.php:270 +#: includes/settings/class-payment-general-settings.php:272 msgid "Credits" msgstr "Kredity" @@ -48,7 +48,7 @@ msgstr "Kredity" #: admin/fees/class-fee-details-form.php:222 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:19 #: frontend/placeholders.php:514 -#: includes/settings/class-display-settings.php:483 +#: includes/settings/class-display-settings.php:482 #: includes/settings/class-payment-general-settings.php:61 msgid "Price" msgstr "Cena" @@ -74,25 +74,28 @@ msgstr "Súkromné" msgid " " msgstr "" -#: admin/admin-panel-fees-table.php:196 -msgid "Duration: " -msgstr "" +#: admin/admin-panel-fees-table.php:197 +#, fuzzy +msgid "Duration: %s" +msgstr "Trvanie" -#: admin/admin-panel-fees-table.php:206 -msgid "# of images: " +#: admin/admin-panel-fees-table.php:207 +msgid "# of images: %s" msgstr "" #: admin/admin-panel-fees-table.php:219 admin/admin-panel-fees-table.php:235 msgid "unlimited" msgstr "neobmedzene" -#: admin/admin-panel-fees-table.php:222 -msgid "Chars in title: " -msgstr "" +#: admin/admin-panel-fees-table.php:223 +#, fuzzy +msgid "Chars in title: %s" +msgstr "Znakov v nadpise" -#: admin/admin-panel-fees-table.php:238 -msgid "Chars in description: " -msgstr "" +#: admin/admin-panel-fees-table.php:239 +#, fuzzy +msgid "Chars in description: %s" +msgstr "Znakov v popise" #: admin/admin-panel-fees-table.php:265 admin/admin-panel-fees-table.php:269 #: templates/admin/import/supported-csv-headers.tpl.php:31 @@ -124,7 +127,7 @@ msgstr "Uvedený používateľ neexistuje." msgid "Manual Upgrade" msgstr "" -#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:799 +#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:783 #: includes/models/class-custom-post-types.php:97 #: includes/models/class-custom-post-types.php:99 #: includes/settings/class-listings-settings.php:30 @@ -140,20 +143,20 @@ msgid "Dashboard" msgstr "Domov" #: admin/admin-panel.php:140 admin/admin-panel.php:141 -#: admin/admin-panel.php:509 +#: admin/admin-panel.php:492 msgid "Settings" msgstr "Nastavenia" #: admin/admin-panel.php:154 -#: templates/admin/main-classifieds-admin-page.tpl.php:86 -#: templates/admin/main-classifieds-admin-page.tpl.php:111 +#: templates/admin/main-classifieds-admin-page.tpl.php:88 +#: templates/admin/main-classifieds-admin-page.tpl.php:116 msgid "Manage Categories" msgstr "Spravovať kategórie" #: admin/admin-panel.php:203 admin/admin-panel.php:204 #: admin/form-fields/class-form-fields-admin-page.php:12 -#: includes/settings/class-display-settings.php:298 -#: includes/settings/class-display-settings.php:438 +#: includes/settings/class-display-settings.php:297 +#: includes/settings/class-display-settings.php:437 msgid "Form Fields" msgstr "" @@ -186,7 +189,7 @@ msgstr "" msgid "Debug" msgstr "" -#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:24 +#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:38 msgid "Debug Information" msgstr "" @@ -195,18 +198,18 @@ msgid "Uninstall" msgstr "Odinštalovať" #: admin/admin-panel.php:354 admin/admin-panel.php:355 -#: admin/admin-panel.php:826 frontend/templates/page-renew-ad.tpl.php:3 +#: admin/admin-panel.php:810 frontend/templates/page-renew-ad.tpl.php:3 #: includes/admin/class-admin-container-configuration.php:175 msgid "Renew Ad" msgstr "Obnoviť inzerát" -#: admin/admin-panel.php:427 +#: admin/admin-panel.php:417 msgid "" "Use the Account Balance column on the table below to manage credit balance " "for users." msgstr "" -#: admin/admin-panel.php:446 +#: admin/admin-panel.php:436 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing." @@ -214,7 +217,7 @@ msgstr "" "AWPCP vlastnosti sú momentálne vypnuté, pre pokračovanie modul potrebuje " "manuálnu aktualizáciu." -#: admin/admin-panel.php:447 +#: admin/admin-panel.php:437 msgid "" "The duration for this upgrade operation varies between several minutes and a " "few hours, depending on the size of your database, the current network " @@ -226,7 +229,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the page explaining how #. to downgrade to a previous version of the plugin, %2$s is the closing tag #. for the link. -#: admin/admin-panel.php:450 +#: admin/admin-panel.php:440 msgid "" "If this is not a good time to go through the upgrade process, we recommend " "you to %1$sinstall the previous version again%2$s and plan to upgrade " @@ -235,7 +238,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:456 +#: admin/admin-panel.php:446 msgid "" "To upgrade, please %1$sgo to the Classifieds admin section%2$s or click the " "button below." @@ -243,7 +246,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:466 +#: admin/admin-panel.php:456 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing. Please %1$sgo to the Classifieds " @@ -252,7 +255,7 @@ msgstr "" #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. -#: admin/admin-panel.php:488 +#: admin/admin-panel.php:471 msgid "" "AWPCP needs you to perform a manual upgrade to update the database schema " "and the information stored there. All plugin features will continue to work " @@ -260,7 +263,7 @@ msgid "" "admin section to Upgrade%2$s or click the button below." msgstr "" -#: admin/admin-panel.php:562 +#: admin/admin-panel.php:545 msgid "" "Page %1$s has the same URL as the %2$s from AWPCP. The WordPress page %1$s " "is going to be unreachable until this changes." @@ -272,7 +275,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/admin-panel.php:570 +#: admin/admin-panel.php:553 msgid "" "The %1$s is dynamic; you don't need to create a real WordPress page to show " "the list of categories, the plugin will generate it for you. If the " @@ -290,143 +293,143 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/admin-panel.php:765 admin/class-categories-admin-page.php:60 +#: admin/admin-panel.php:749 admin/class-categories-admin-page.php:60 #: admin/class-categories-admin-page.php:64 msgid "Manage Category Icon" msgstr "Spravovať ikonu kategórie" -#: admin/admin-panel.php:770 admin/class-categories-admin-page.php:35 +#: admin/admin-panel.php:754 admin/class-categories-admin-page.php:35 #: admin/class-categories-admin-page.php:39 #: admin/class-categories-admin-page.php:133 msgid "Edit Category" msgstr "Upraviť kategóriu" -#: admin/admin-panel.php:771 admin/class-categories-admin-page.php:46 +#: admin/admin-panel.php:755 admin/class-categories-admin-page.php:46 #: admin/class-categories-admin-page.php:50 msgid "Delete Category" msgstr "Zmazať kategóriu" -#: admin/admin-panel.php:776 +#: admin/admin-panel.php:760 msgid "Select {category_name}" msgstr "" -#: admin/admin-panel.php:814 frontend/page-reply-to-ad.php:11 +#: admin/admin-panel.php:798 frontend/page-reply-to-ad.php:11 msgid "Reply to Ad" msgstr "Odpovedať na inzerát" -#: admin/admin-panel.php:822 admin/templates/admin-panel-listings.tpl.php:5 +#: admin/admin-panel.php:806 admin/templates/admin-panel-listings.tpl.php:5 msgid "Place Ad" msgstr "Umiestniť inzerát" -#: admin/admin-panel.php:830 frontend/page-browse-ads.php:9 +#: admin/admin-panel.php:814 frontend/page-browse-ads.php:9 msgid "Browse Ads" msgstr "Prezerať inzeráty" -#: admin/admin-panel.php:834 admin/templates/admin-panel-listings.tpl.php:11 +#: admin/admin-panel.php:818 admin/templates/admin-panel-listings.tpl.php:20 #: frontend/page-search-ads.php:9 msgid "Search Ads" msgstr "Hľadať inzeráty" -#: admin/categories/class-create-category-admin-page.php:38 -#: admin/categories/class-delete-categories-admin-page.php:55 -#: admin/categories/class-delete-category-admin-page.php:68 -#: admin/categories/class-move-categories-admin-page.php:54 -#: admin/categories/class-update-category-admin-page.php:50 +#: admin/categories/class-create-category-admin-page.php:39 +#: admin/categories/class-delete-categories-admin-page.php:57 +#: admin/categories/class-delete-category-admin-page.php:69 +#: admin/categories/class-move-categories-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:51 msgid "invalid nonce" msgstr "" -#: admin/categories/class-create-category-admin-page.php:42 +#: admin/categories/class-create-category-admin-page.php:43 msgid "The new category was successfully added." msgstr "Nová kategória bola úspešne pridaná." -#: admin/categories/class-delete-categories-admin-page.php:61 +#: admin/categories/class-delete-categories-admin-page.php:64 msgid "" "The categories couldn't be deleted because there was an error trying to load " -"the categoery that you selecetd to become the new category associated to " -"affected ads. " +"the categoery that you selected to become the new category associated to " +"affected ads. %s" msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:71 +#: admin/categories/class-delete-categories-admin-page.php:75 msgid "The selected categories have been deleted." msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:76 +#: admin/categories/class-delete-categories-admin-page.php:80 msgid "There was an error trying to delete the selected categories." msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:80 +#: admin/categories/class-delete-categories-admin-page.php:84 msgid "" " (out of ) categories were deleted. " "However, there was an error trying to delete the other categories." msgstr "" -#: admin/categories/class-delete-category-admin-page.php:41 +#: admin/categories/class-delete-category-admin-page.php:42 msgid "The category you are trying to delete doesn't exist." msgstr "" -#: admin/categories/class-delete-category-admin-page.php:53 +#: admin/categories/class-delete-category-admin-page.php:54 msgid "There was an error trying to delete the category. " msgstr "" -#: admin/categories/class-delete-category-admin-page.php:74 +#: admin/categories/class-delete-category-admin-page.php:75 msgid "" "There was an error trying to load the selected category. " msgstr "" -#: admin/categories/class-delete-category-admin-page.php:85 +#: admin/categories/class-delete-category-admin-page.php:86 msgid "The category was deleted successfully" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:103 +#: admin/categories/class-delete-category-admin-page.php:104 msgid "Are you sure you want to delete \"\" category?" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:116 +#: admin/categories/class-delete-category-admin-page.php:117 msgid "Delete category" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:117 +#: admin/categories/class-delete-category-admin-page.php:118 #: admin/fees/class-fee-details-form.php:80 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:31 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:12 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:23 #: admin/templates/admin-panel-fees-delete.tpl.php:12 #: admin/templates/admin-panel-users-balance-form.tpl.php:19 #: admin/templates/delete_form.tpl.php:16 #: frontend/templates/payments-billing-form.tpl.php:123 #: includes/listings/class-listing-action-with-confirmation.php:8 -#: includes/settings/renderers/class-button-settings-renderer.php:41 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 +#: includes/settings/renderers/class-button-settings-renderer.php:44 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:184 #: templates/admin/import-listings-admin-page-import-form.tpl.php:47 msgid "Cancel" msgstr "Zrušiť" -#: admin/categories/class-move-categories-admin-page.php:59 +#: admin/categories/class-move-categories-admin-page.php:60 msgid "" "The categories couldn't be moved because there was an error trying to load " "the target category. " msgstr "" -#: admin/categories/class-move-categories-admin-page.php:68 +#: admin/categories/class-move-categories-admin-page.php:69 msgid "The selected categories have been moved." msgstr "" -#: admin/categories/class-move-categories-admin-page.php:73 +#: admin/categories/class-move-categories-admin-page.php:74 msgid "There was an error trying to move the selected categories." msgstr "" -#: admin/categories/class-move-categories-admin-page.php:77 +#: admin/categories/class-move-categories-admin-page.php:78 msgid "" " (out of ) categories were moved. " "However, there was an error trying to move the other " "categories." msgstr "" -#: admin/categories/class-update-category-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:56 msgid "The category you're trying to update doesn't exist." msgstr "" -#: admin/categories/class-update-category-admin-page.php:66 +#: admin/categories/class-update-category-admin-page.php:67 msgid "The category was successfully updated." msgstr "" @@ -452,107 +455,114 @@ msgstr "Pridať novú kategóriu" msgid "Update" msgstr "Aktualizovať" -#: admin/class-debug-admin-page.php:255 +#: admin/class-debug-admin-page.php:256 msgid "WordPress version" msgstr "" -#: admin/class-debug-admin-page.php:259 +#: admin/class-debug-admin-page.php:260 msgid "OS" msgstr "" -#: admin/class-debug-admin-page.php:263 +#: admin/class-debug-admin-page.php:264 msgid "Apache Version" msgstr "" -#: admin/class-debug-admin-page.php:267 +#: admin/class-debug-admin-page.php:268 +#: admin/templates/admin-panel-debug.tpl.php:177 msgid "PHP Version" msgstr "Verzia PHP" -#: admin/class-debug-admin-page.php:271 +#: admin/class-debug-admin-page.php:272 msgid "MySQL Version" msgstr "" -#: admin/class-debug-admin-page.php:275 +#: admin/class-debug-admin-page.php:276 msgid "cURL Version" msgstr "" -#: admin/class-debug-admin-page.php:279 +#: admin/class-debug-admin-page.php:280 msgid "cURL SSL Version" msgstr "" -#: admin/class-debug-admin-page.php:332 admin/class-debug-admin-page.php:338 +#: admin/class-debug-admin-page.php:333 admin/class-debug-admin-page.php:339 msgid "N/A" msgstr "Nedosutpný" -#: admin/class-import-listings-admin-page.php:100 +#: admin/class-import-listings-admin-page.php:102 msgid "" "The uploaded file doesn't look like a CSV file. Please upload a valid CSV " "file." msgstr "" -#: admin/class-import-listings-admin-page.php:104 +#: admin/class-import-listings-admin-page.php:106 msgid "There was an error moving the uploaded CSV file to a proper location." msgstr "" -#: admin/class-import-listings-admin-page.php:121 +#: admin/class-import-listings-admin-page.php:125 msgid "" "The uploaded file doesn't look like a ZIP file. Please upload a valid ZIP " "file." msgstr "" -#: admin/class-import-listings-admin-page.php:125 +#: admin/class-import-listings-admin-page.php:129 msgid "There was an error moving the uploaded ZIP file to a proper location." msgstr "" -#: admin/class-import-listings-admin-page.php:137 +#: admin/class-import-listings-admin-page.php:141 msgid "Incompatible ZIP Archive" msgstr "Nekompatibilný ZIP archív." -#: admin/class-import-listings-admin-page.php:139 +#: admin/class-import-listings-admin-page.php:143 msgid "Empty ZIP Archive" msgstr "Prázdny ZIP archív" -#: admin/class-import-listings-admin-page.php:165 +#: admin/class-import-listings-admin-page.php:169 msgid "Could not write temporary file %s" msgstr "Nebolo možné zapísať dočasný súbor %s" -#: admin/class-import-listings-admin-page.php:174 +#: admin/class-import-listings-admin-page.php:178 msgid "The specified directory is not a valid path." msgstr "" -#: admin/class-import-listings-admin-page.php:176 +#: admin/class-import-listings-admin-page.php:180 msgid "The specified directory does not exists." msgstr "" -#: admin/class-import-listings-admin-page.php:357 +#: admin/class-import-listings-admin-page.php:361 msgid "" "() of rows " "processed. rows imported and rows rejected." msgstr "" -#: admin/class-settings-admin-page.php:230 +#: admin/class-import-settings-admin-page.php:121 +#, fuzzy +msgid "Your settings have been successfully imported." +msgstr "Váš inzerát \"%s\" bol úspešne aktualizovaný" + +#: admin/class-settings-admin-page.php:224 msgid "" "We could not obtain a valid access token from Facebook. The API returned the " "following error: %s" msgstr "" -#: admin/class-settings-admin-page.php:235 +#: admin/class-settings-admin-page.php:229 msgid "" "We could not obtain a valid access token from Facebook. Please try again." msgstr "" -#: admin/class-settings-admin-page.php:243 +#: admin/class-settings-admin-page.php:237 msgid "Facebook Config Diagnostics" msgstr "Diagonstika nastavenia Facebooku" -#: admin/class-settings-admin-page.php:250 +#: admin/class-settings-admin-page.php:244 msgid "Everything looks OK." msgstr "Všetko vyzerá v poriadku" #: admin/class-table-entry-action-ajax-handler.php:16 +#: admin/class-uninstall-admin-page.php:52 #: admin/pointers/class-drip-autoresponder-ajax-handler.php:23 -#: functions.php:531 +#: functions.php:537 #: includes/frontend/class-create-empty-listing-ajax-handler.php:104 #: includes/frontend/class-execute-listing-action-ajax-handler.php:58 #: includes/frontend/class-save-listing-information-ajax-handler.php:117 @@ -573,7 +583,7 @@ msgstr "Upraviť" #: admin/credit-plans/class-credit-plans-admin-page.php:23 #: admin/fees/class-fees-admin-page.php:65 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:13 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:24 #: admin/templates/delete_form.tpl.php:17 msgid "Delete" msgstr "Zmazať" @@ -680,33 +690,33 @@ msgstr "" "ID poplatku. Prosím, vytvorte nový poplatok a skúste plán vymazať znova. " "AWPCP vám pomôže zmeniť poplatky existujúcich inzerátov." -#: admin/import/class-csv-importer-delegate.php:271 +#: admin/import/class-csv-importer-delegate.php:275 msgid "" "No user could be assigned to this listing. Our attempt to create a new user " "failed with the following error: ." msgstr "" -#: admin/import/class-csv-importer-delegate.php:470 +#: admin/import/class-csv-importer-delegate.php:476 msgid "The payment term type must be 'fee' or 'subscription'." msgstr "" -#: admin/import/class-csv-importer-delegate.php:476 +#: admin/import/class-csv-importer-delegate.php:482 msgid "" "There is no payment term with type {payment_term_type} and ID " "{payment_term_id}." msgstr "" -#: admin/import/class-csv-importer-delegate.php:490 +#: admin/import/class-csv-importer-delegate.php:496 msgid "" "No images directory was configured. Are you sure you uploaded a ZIP file or " "defined a local directory?" msgstr "" -#: admin/import/class-csv-importer-delegate.php:676 +#: admin/import/class-csv-importer-delegate.php:690 msgid "The value for Extra Field %s's is not allowed. Allowed values are: %%s" msgstr "" -#: admin/import/class-csv-importer-delegate.php:686 +#: admin/import/class-csv-importer-delegate.php:700 msgid "" "The value for Extra Field %s's is not allowed. Allowed value is one of: %%s" msgstr "" @@ -726,10 +736,32 @@ msgstr "" msgid "That Ad failed to delete." msgstr "Inzerát bol zmazaný" +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 +#, fuzzy +msgid "Thank you for signing up!" +msgstr "Ďakujeme za vašu platbu." + +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 +#, fuzzy +msgid "" +"Please check your email and click the link provided to confirm your " +"subscription." +msgstr "Pre obnovenie hesla, prosím skontrolujte si email." + #: admin/pointers/class-drip-autoresponder-ajax-handler.php:149 msgid "An unexpected error ocurred." msgstr "" +#: admin/pointers/class-drip-autoresponder.php:62 +msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" +msgstr "" + +#: admin/pointers/class-drip-autoresponder.php:63 +msgid "" +"Find out how to create a compelling, thriving classifieds site from scratch " +"in this ridiculously actionable (and free) 5-part email course." +msgstr "" + #: admin/pointers/class-drip-autoresponder.php:67 msgid "Email Address" msgstr "E-mailová adresa" @@ -738,28 +770,28 @@ msgstr "E-mailová adresa" msgid "Add" msgstr "Pridať" -#: admin/templates/admin-panel-credit-plans.tpl.php:10 +#: admin/templates/admin-panel-credit-plans.tpl.php:11 msgid "Credit System Settings" msgstr "Nastavenia systému kreditov" -#: admin/templates/admin-panel-credit-plans.tpl.php:21 +#: admin/templates/admin-panel-credit-plans.tpl.php:25 #: templates/admin/settings-admin-page.tpl.php:50 -#: templates/admin/settings-admin-page.tpl.php:64 +#: templates/admin/settings-admin-page.tpl.php:67 msgid "Save Changes" msgstr "Uložiť zmeny" -#: admin/templates/admin-panel-credit-plans.tpl.php:34 +#: admin/templates/admin-panel-credit-plans.tpl.php:38 msgid "Add Credit Plan" msgstr "Pridať plán kreditov" -#: admin/templates/admin-panel-debug.tpl.php:8 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:6 +#: admin/templates/admin-panel-debug.tpl.php:11 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:8 msgid "Are you seeing 404 Not Found errors?" msgstr "" #. translators: %1$s: Start link HTML, %2$s: end link HTML, %3$s: Start link #. HTML -#: admin/templates/admin-panel-debug.tpl.php:14 +#: admin/templates/admin-panel-debug.tpl.php:21 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -770,54 +802,84 @@ msgid "" "please contact %3$scustomer support%1$s." msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:49 +#: admin/templates/admin-panel-debug.tpl.php:84 msgid "Stored ID" msgstr "Uložené ID" -#: admin/templates/admin-panel-debug.tpl.php:50 +#: admin/templates/admin-panel-debug.tpl.php:85 msgid "Reference" msgstr "Odkaz" -#: admin/templates/admin-panel-debug.tpl.php:51 +#: admin/templates/admin-panel-debug.tpl.php:86 #: frontend/templates/widget-categories-form.tpl.php:2 #: frontend/templates/widget-latest-ads-form.tpl.php:2 #: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:5 msgid "Title" msgstr "Názov" -#: admin/templates/admin-panel-debug.tpl.php:60 +#: admin/templates/admin-panel-debug.tpl.php:95 msgid "Page not found" msgstr "Stránka nenájdená" -#: admin/templates/admin-panel-debug.tpl.php:74 +#: admin/templates/admin-panel-debug.tpl.php:117 msgid "Option Name" msgstr "Názov nastavenia" -#: admin/templates/admin-panel-debug.tpl.php:75 +#: admin/templates/admin-panel-debug.tpl.php:118 msgid "Option Value" msgstr "Hodnota nastavenia" -#: admin/templates/admin-panel-debug.tpl.php:96 +#: admin/templates/admin-panel-debug.tpl.php:147 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:9 msgid "Pattern" msgstr "Vzor" -#: admin/templates/admin-panel-debug.tpl.php:97 +#: admin/templates/admin-panel-debug.tpl.php:148 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:10 msgid "Replacement" msgstr "Nahradiť" -#: admin/templates/admin-panel-debug.tpl.php:133 +#: admin/templates/admin-panel-debug.tpl.php:181 +#, fuzzy +msgid "cURL" +msgstr "cURL" + +#: admin/templates/admin-panel-debug.tpl.php:185 +#, fuzzy +msgid "cURL's alternate CA info (cacert.pem)" +msgstr "Alternatívnie CA informácie o cURL (cacert.pem)" + +#: admin/templates/admin-panel-debug.tpl.php:189 +#, fuzzy +msgid "Exists" +msgstr "Existuje" + +#: admin/templates/admin-panel-debug.tpl.php:190 +#, fuzzy +msgid "Missing" +msgstr "Chýba" + +#: admin/templates/admin-panel-debug.tpl.php:195 +#: includes/settings/class-payment-general-settings.php:134 +msgid "PayPal" +msgstr "PayPal" + +#: admin/templates/admin-panel-debug.tpl.php:198 #, fuzzy msgid "Working" msgstr "Funguje" -#: admin/templates/admin-panel-debug.tpl.php:148 -#: templates/admin/debug/debug-admin-page.tpl.php:36 +#: admin/templates/admin-panel-debug.tpl.php:201 +#, fuzzy +msgid "Not Working" +msgstr "Nefunguje" + +#: admin/templates/admin-panel-debug.tpl.php:216 +#: templates/admin/debug/debug-admin-page.tpl.php:42 msgid "Debug & Development Tools" msgstr "" -#: admin/templates/admin-panel-fees-delete-form.tpl.php:6 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:7 #: admin/templates/delete_form.tpl.php:11 msgid "Are you sure you want to delete this item?" msgstr "Skutočne si želáte vymazať túto položku?" @@ -832,42 +894,41 @@ msgstr "" msgid "Switch" msgstr "Prepínač" -#: admin/templates/admin-panel-fees.tpl.php:7 -msgid "Payment Settings page" -msgstr "" - -#: admin/templates/admin-panel-fees.tpl.php:9 +#: admin/templates/admin-panel-fees.tpl.php:8 msgid "" "Currently your classifieds are in Free mode. Fee plans are not available or " -"used during free mode.

To change this, visit the and enable Charge Listing Fee setting." +"used during free mode.%1$s To change this, visit the %2$s and enable Charge " +"Listing Fee setting." +msgstr "" + +#: admin/templates/admin-panel-fees.tpl.php:11 +msgid "Payment Settings page" msgstr "" -#: admin/templates/admin-panel-fees.tpl.php:20 +#: admin/templates/admin-panel-fees.tpl.php:22 msgid "Add Fee Plan" msgstr "Pridať plán poplatkov" -#: admin/templates/admin-panel-fees.tpl.php:24 -msgid "Fee Plan sort order and sort direction Settings" -msgstr "" - #: admin/templates/admin-panel-fees.tpl.php:26 msgid "" -"If you wish to change the sorting of your fee plans, you can change the ." +"If you wish to change the sorting of your fee plans, you can change the %s." +msgstr "" + +#: admin/templates/admin-panel-fees.tpl.php:30 +msgid "Fee Plan sort order and sort direction Settings" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:14 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:17 msgid "Facebook Integration" msgstr "Facebook integrácia" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:16 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:23 msgid "" "We currently support two methods for posting new ads to Facebook: Facebook " "API and Zapier/IFTTT Webhooks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:18 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:25 msgid "" "Support for Facebook API will be removed in the future. Facebook " "significantly reduced access to their APIs across all apps on Apr, 2018. Now " @@ -878,45 +939,44 @@ msgid "" "integration method." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:22 -msgid "You can read more about Facebook changes here: {facebook_post_link}" +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:30 +msgid "You can read more about Facebook changes here: %s" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:29 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:38 msgid "" "If you are currently using the Facebook API integration method and not " "having any issues, you don't have to do anything right now. If you are " "having issues, please read the Diagnostics section below to try to fix them." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:40 #: includes/settings/class-general-settings.php:735 msgid "Facebook API" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:35 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:46 msgid "" "This integration method allows you to post ads to Facebook using a Facebook " -"Application. Please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"Application. Please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:45 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:79 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 msgid "" "Add the following URL to the list of Valid OAuth Redirect URIs for the " "configuration of the Facebook Application:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:59 #: includes/settings/class-general-settings.php:736 msgid "Zapier/IFTTT Webhooks" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:51 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:61 msgid "" "Webhooks allow the plugin to send a request to one of the configured webhook " "URLs the first time an ad becomes publicly available on the website. That " @@ -926,109 +986,108 @@ msgid "" "control." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:67 msgid "" -"Follow the instructiones to create the tasks on " -"{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} or " -"{webhook_instructions_for_ifttt}IFTTT{/webhook_instructions_for_ifttt}. Then " -"update the settings at the bottom of this page to enter the webhook URLs " -"associated with those tasks." +"Follow the instructiones to create the tasks on %1$sZapier or IFTTT%2$s. " +"Then update the settings at the bottom of this page to enter the webhook " +"URLs associated with those tasks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:65 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:74 msgid "Facebook Cache" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:69 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:80 msgid "" "If you are using Webhooks to send ads to Facebook, a Facebook Application " "can still be used to ask Facebook to clear the cache it has stored for ads " "pages. This is useful to ensure users always see the latest version when the " "ad is shared on Facebook Pages, Groups and user feeds. If you decide to use " -"this feature, please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook Application{/" -"link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these instructions{/" -"link_to_facebook_integration_documentation}." +"this feature, please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:83 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:93 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:120 msgid "Diagnostics" msgstr "Diagnostika" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:95 msgid "" "If you see the following error after trying to get a valid User Access Token:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:99 msgid "" "You have to submit your Facebook Application for Review and ask for those " "permissions or use the Webhooks integration method to send ads to Facebook " "using Zapier or IFTTT Webhooks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:91 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:101 msgid "If you see the following error trying to send ads to a Facebook Group:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:97 +#. translators: %1$s opening anchor link, %2$s closing anchor link +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 msgid "" -"Please make sure the Facebook Application " -"{link_to_how_to_add_apps_to_a_group}was added to the group{/" -"link_to_how_to_add_apps_to_a_group}." +"Please make sure the Facebook Application %1$swas added to the group%2$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:108 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:119 msgid "" "If you are having additional problems with Facebook API, click " "\"Diagnostics\" to check your settings." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:3 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:4 msgid "Restore AWPCP Pages" msgstr "Obnoviť stránky AWPCP" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:8 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:10 msgid "The following pages were restored: ." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:19 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:21 msgid "" "The pages listed below are missing. The plugin is looking for a page with a " "particular ID but it seems that the page was permanently deleted. Please a " "select a new one." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:23 -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:71 -msgid "%s (Default name: %s)." -msgstr "" +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:28 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:97 +#, fuzzy +msgid "%1$s (Default name: %2$s)." +msgstr "%s a %s." -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:39 msgid "" "The following pages are not published. Did you move them to the Trash by " "accident or saved them as Draft?" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:41 -msgid "%s — Selected page: %s (%s)" +#. translators: %1$s page label, %2$s link to the page, %3$s the page status. +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:57 +msgid "%1$s Selected page: %2$s (%3$s)" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:69 msgid "" "The following pages are not currently assigned. Please select an existing " "page or create a new one to use as the following plugin pages:" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:64 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 msgid "" -" — You can select one of these pages that already include " -"the necessary shortcode: or create a new one." +"%1$s You can select one of these pages that already include the necessary " +"shortcode: %2$s or %3$screate a new one%4$s." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:115 msgid "" "Use the button below to have the plugin attempt to find the necessary pages. " "If you continue to have problems or seeing page related warnings above, you " @@ -1036,35 +1095,35 @@ msgid "" "the plugin create them again." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:86 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:116 msgid "Restore Pages" msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:13 +#: admin/templates/admin-panel-uninstall.tpl.php:10 msgid "" "Thank you for using AWPCP. You have arrived at this page by clicking the " "Uninstall link. If you are certain you wish to uninstall the plugin, please " "click the button at the bottom to proceed." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "" "PLEASE NOTE: When you click the button below, ALL your data related to the " "plugin including your classifieds, images and everything else created by the " "plugin will be permanently deleted." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "We cannot recover the data after you click this." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:18 +#: admin/templates/admin-panel-uninstall.tpl.php:15 msgid "" "BEFORE YOU CLICK THE BUTTON BELOW — read carefully in case you want to " "extract your data first!" msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:21 +#: admin/templates/admin-panel-uninstall.tpl.php:18 msgid "" "If you plan to use the data created by the plugin please export the data " "from your mysql database before clicking the uninstall link." @@ -1072,42 +1131,45 @@ msgstr "" "Ak si želáte uložiť dáta vytvorené modulom, exportujte ich z mysql databázy " "pred odinštalovaním." -#: admin/templates/admin-panel-uninstall.tpl.php:22 +#: admin/templates/admin-panel-uninstall.tpl.php:21 msgid "" -"If you want to keep your user uploaded images, please download to " -"your local drive for later use or rename the folder to something else so the " +"If you want to keep your user uploaded images, please download %s to your " +"local drive for later use or rename the folder to something else so the " "uninstaller can bypass it." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:28 +#: admin/templates/admin-panel-uninstall.tpl.php:29 msgid "Proceed with Uninstalling AWP Classifieds Plugin" msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:33 +#: admin/templates/admin-panel-uninstall.tpl.php:35 msgid "Almost done... one more step!" msgstr "Už sme skoro hotoví.... iba jeden krok k dokončeniu!" -#: admin/templates/admin-panel-uninstall.tpl.php:36 -msgid "Please click here to complete the uninstallation process" +#: admin/templates/admin-panel-uninstall.tpl.php:39 +#, fuzzy +msgid "Please click here to deactivate plugins." msgstr "Prosím, pre dokončenie odinštalácie kliknite sem" #: admin/templates/admin-panel-users-balance-form.tpl.php:12 +#: frontend/templates/payments-transaction-items-table.tpl.php:5 +#: frontend/templates/payments-transaction-items-table.tpl.php:17 msgid "Amount" msgstr "Suma" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:12 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:14 msgid "Manual Upgrade Required" msgstr "Vyžaduje sa manuálna aktualizácia" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:17 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:26 msgid "Upgrade" msgstr "Aktualizácia" #: admin/templates/admin-quick-start-guide-notice.tpl.php:2 #, fuzzy msgid "" -"Hello and welcome to AWP Classifieds. This plugin is super " -"easy to use AND highly configurable." +"Hello and welcome to AWP Classifieds. This plugin is super easy to use AND " +"highly configurable." msgstr "" "Vitajte v inzerátoch Another WordPress Classifieds. Tento " "modul je jednoduchý na používanie a ľahko upraviteľný." @@ -1117,38 +1179,52 @@ msgid "Would you like some help getting started?" msgstr "Potrebovali by ste trochu pomoci na začiatok?" #: admin/templates/admin-quick-start-guide-notice.tpl.php:12 +#, fuzzy +msgid "I'll figure it out on my own." +msgstr "Dôjdem na to sám." + +#: admin/templates/admin-quick-start-guide-notice.tpl.php:15 msgid "Yes Please!" msgstr "Áno, prosím!" -#: admin/templates/admin-sidebar.tpl.php:14 +#: admin/templates/admin-quick-start-guide-notice.tpl.php:20 +#, fuzzy +msgid "Help me get my classifieds running quickly." +msgstr "Pomôžte mi zrýchliť moje inzeráty." + +#: admin/templates/admin-sidebar.tpl.php:15 msgid "Like this plugin?" msgstr "Páči sa vám tento modul?" -#: admin/templates/admin-sidebar.tpl.php:20 +#: admin/templates/admin-sidebar.tpl.php:24 msgid "Give a 5 star rating on WordPress.org." msgstr "" -#: admin/templates/admin-sidebar.tpl.php:36 +#: admin/templates/admin-sidebar.tpl.php:42 msgid "Get more features!" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:67 msgid "Found a bug?" msgstr "Našli ste chybu?" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:68 msgid "Need Support?" msgstr "Potrebujete podporu?" -#: admin/templates/admin-sidebar.tpl.php:70 -msgid "Quick Start Guide" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:80 +#, fuzzy +msgid "Browse the %1$sQuick Start Guide%2$s" msgstr "Príručka ako na to" -#: admin/templates/admin-sidebar.tpl.php:80 -msgid "Documentation" -msgstr "Dokumentácia" +#. translators: %1$s: open anchor link, %2$s close anchor link +#: admin/templates/admin-sidebar.tpl.php:90 +#, fuzzy +msgid "Read the full %1$sDocumentation%2$s." +msgstr "Prečítať celý %s." -#: admin/templates/admin-sidebar.tpl.php:91 +#: admin/templates/admin-sidebar.tpl.php:98 msgid "Get Help" msgstr "" @@ -1158,11 +1234,11 @@ msgid "Thank you for using AWP Classifieds Plugin." msgstr "Ďakujeme, že používate AWPCP modul." #: admin/templates/admin-widget-modification-notice.tpl.php:3 +#, fuzzy msgid "" -"AWPCP 3.0 includes several modifications to the Search Ads, " -"Featured Ads and Latest Ads widgets. For " -"example, the Latest Ads widget can now be used in multiple sidebars. Also, " -"there is a new Widget to show Random Ads." +"AWPCP 3.0 includes several modifications to the Search Ads, Featured Ads and " +"Latest Ads widgets. For example, the Latest Ads widget can now be used in " +"multiple sidebars. Also, there is a new Widget to show Random Ads." msgstr "" "AWPCP 3.0 obsahuje upravené widgety hľadania inzerátov, " "odporúčaných inzerátov a posledných inzerátov to understand more about PHP and how to upgrade." msgstr "" -#: awpcp.php:200 +#: awpcp.php:198 msgid "" "AWP Classifieds Plugin installation is incomplete. Please {support_link}" "contact support{/support_link}." msgstr "" #. translators: %s is the title of the listing. -#: frontend/ad-functions.php:155 +#: frontend/ad-functions.php:159 #: includes/listings/class-listing-renewed-email-notifications.php:85 msgid "The ad \"%s\" has been successfully renewed." msgstr "" -#: frontend/ad-functions.php:189 frontend/page-renew-ad.php:160 +#: frontend/ad-functions.php:193 frontend/page-renew-ad.php:160 msgid "The Ad has been successfully renewed. New expiration date is %s." msgstr "" -#: frontend/ad-functions.php:194 frontend/page-renew-ad.php:152 +#: frontend/ad-functions.php:198 frontend/page-renew-ad.php:151 #: templates/admin/listings/quick-view-listing-admin-page.tpl.php:18 #: templates/admin/listings-media-center.tpl.php:6 #: templates/admin/view-listing-admin-page.tpl.php:14 msgid "Return to Listings" msgstr "Návrat na inzeráty" -#: frontend/ad-functions.php:212 frontend/page-place-ad.php:151 +#: frontend/ad-functions.php:216 frontend/page-place-ad.php:154 msgid "" "You do not have permission to perform the function you are trying to " "perform. Access to this page has been denied" msgstr "" "Nemáte povolenie k vykonaniu tejto funkcie. Prístup ku stránke bol zamietnutý" -#: frontend/ad-functions.php:227 +#: frontend/ad-functions.php:231 msgid "The Ad has been deleted" msgstr "Inzerát bol zmazaný" -#: frontend/ad-functions.php:230 +#: frontend/ad-functions.php:234 msgid "" "Your Ad details and any photos you have uploaded have been deleted from the " "system" msgstr "Inzerát a fotky k nemu patriace boli vymazané zo systému." -#: frontend/ad-functions.php:234 +#: frontend/ad-functions.php:238 #: includes/frontend/class-edit-listing-page.php:188 msgid "The specified Ad doesn't exists." msgstr "Uvedený inzerát neexistuje" -#: frontend/ad-functions.php:236 +#: frontend/ad-functions.php:240 msgid "There was an error trying to delete the Ad. The Ad was not deleted." msgstr "Nastala chyba pri pokuse o vymazanie inzerátu. Inzerát nebol vymazaný." -#: frontend/ad-functions.php:239 +#: frontend/ad-functions.php:243 msgid "Problem encountered. Cannot complete request" msgstr "Vyskytol sa problém. Požiadavku nemožno splniť" @@ -1340,7 +1416,7 @@ msgstr "" "Nezadali ste kategóriu, ktorú chcete prezerať. Vidíte inzeráty zo všetkých " "kategórií." -#: frontend/page-place-ad.php:74 +#: frontend/page-place-ad.php:75 #: includes/views/class-verify-transaction-exists-step-decorator.php:17 msgid "" "There was an error processing your Payment Request. Please try again or " @@ -1349,19 +1425,20 @@ msgstr "" "Nastala chyba pri spracovaní platby. Prosím skúste platbu zopakovať alebo " "kontaktujte administrátora." -#: frontend/page-place-ad.php:132 +#: frontend/page-place-ad.php:133 msgid "Please select a category." msgstr "Prosím, vybete kategóriu." -#: frontend/page-place-ad.php:133 -msgid "Please select the Ad's owner." +#: frontend/page-place-ad.php:134 +#, fuzzy +msgid "Please select the Ad owner." msgstr "Prosím, vyberte majiteľa inzerátu." -#: frontend/page-place-ad.php:134 +#: frontend/page-place-ad.php:135 msgid "Please select a payment term." msgstr "Prosím, zvoľte ochodné podmienky." -#: frontend/page-place-ad.php:165 frontend/page-renew-ad.php:87 +#: frontend/page-place-ad.php:168 frontend/page-renew-ad.php:86 msgid "" "You are trying to post an Ad using a transaction created for a different " "purpose. Please go back to the %s page.
If you think " @@ -1369,7 +1446,7 @@ msgid "" "transaction ID: %s" msgstr "" -#: frontend/page-place-ad.php:174 +#: frontend/page-place-ad.php:177 #: includes/frontend/class-submit-listing-page.php:291 msgid "" "You can't post an Ad at this time because the payment associated with this " @@ -1378,35 +1455,35 @@ msgstr "" "Nemôžete odoslať inzerát, pretože platba tejto transakcie zlyhala. (Dôvody " "sú uvedené nižšie)" -#: frontend/page-place-ad.php:256 +#: frontend/page-place-ad.php:259 #: includes/listings/class-payment-information-validator.php:88 msgid "You should select an owner for this Ad." msgstr "Vyberte používateľa, ktorý bude vlastníkom inzerátu" -#: frontend/page-place-ad.php:260 frontend/page-renew-ad.php:197 +#: frontend/page-place-ad.php:263 frontend/page-renew-ad.php:199 #: includes/listings/class-payment-information-validator.php:64 #: includes/listings/class-payment-information-validator.php:73 msgid "You should choose one of the available Payment Terms." msgstr "Vyberte jednu z dostupných platobných podmienok" -#: frontend/page-place-ad.php:264 +#: frontend/page-place-ad.php:267 #: includes/listings/class-payment-information-validator.php:75 msgid "" "The Payment Term you selected is not available for non-administrator users." msgstr "" "Vybrané platobné podmienky nie sú dostupné pre obyčajných používateľov." -#: frontend/page-place-ad.php:280 +#: frontend/page-place-ad.php:283 #: includes/listings/class-payment-information-validator.php:108 msgid "Ad Category field is required" msgstr "Kategória inzerátu je povinné pole" -#: frontend/page-place-ad.php:285 +#: frontend/page-place-ad.php:288 #: includes/listings/class-payment-information-validator.php:119 msgid "You cannot list your Ad in top level categories." msgstr "" -#: frontend/page-place-ad.php:291 +#: frontend/page-place-ad.php:294 #: includes/frontend/class-submit-listing-page.php:190 msgid "" "Hi, You need to be a registered user to post Ads in this website. Please use " @@ -1415,7 +1492,7 @@ msgstr "" "Zdravím, pre uverejnenie inzerátu musíte byť registrovaný používateľ. " "Prosím, použite formulár pre prihlásenie alebo odkaz na registráciu." -#: frontend/page-place-ad.php:429 frontend/page-place-ad.php:836 +#: frontend/page-place-ad.php:432 frontend/page-place-ad.php:839 #: frontend/page-renew-ad.php:297 #: includes/frontend/class-order-submit-listing-section.php:119 msgid "" @@ -1425,7 +1502,7 @@ msgstr "Ste prihlásený ako administrátor. Platby budú vynechané." #. translators: %s is an alphanumeric string that identifies a payment #. transaction. #. translators: %s the transaction id -#: frontend/page-place-ad.php:511 frontend/page-renew-ad.php:347 +#: frontend/page-place-ad.php:514 frontend/page-renew-ad.php:347 #: includes/frontend/class-submit-listing-page.php:333 #: includes/views/class-verify-payment-can-be-processed-step-decorator.php:18 msgid "" @@ -1436,7 +1513,7 @@ msgstr "" "Práve nemôžeme spracovať platbu pre túto transakciu. Prosím, kontaktujte " "administrátora a poskytnite mu ID transakcie:" -#: frontend/page-place-ad.php:834 +#: frontend/page-place-ad.php:837 msgid "" "Your Ad details have been filled out in the form below. Make any changes " "needed and then resubmit the Ad to update it." @@ -1444,11 +1521,11 @@ msgstr "" "Podrobnosti inzerátu sú uvedené nižšie. Urobte zmeny a pre odoslanie " "inzerátu ho znova odošlite." -#: frontend/page-place-ad.php:838 +#: frontend/page-place-ad.php:841 msgid "Fill out the form below to post your classified ad." msgstr "" -#: frontend/page-place-ad.php:842 +#: frontend/page-place-ad.php:845 msgid "" "We found errors in the details you submitted. A detailed error message is " "shown in front or below each invalid field. Please fix the errors and submit " @@ -1457,11 +1534,11 @@ msgstr "" "Našli sme chyby v zadaných údajoch. Typ chyby je vypísaný pod každým chybným " "údajom. Prosím opravte chyby a odošlite formulár znova." -#: frontend/page-place-ad.php:861 +#: frontend/page-place-ad.php:864 msgid "Start & End Date" msgstr "Počiatočný a koncový dátum" -#: frontend/page-place-ad.php:863 +#: frontend/page-place-ad.php:866 #: includes/admin/import/class-csv-importer-columns.php:185 #: includes/admin/listings/class-listings-table-nav-handler.php:151 #: includes/form-fields/class-listing-form-fields.php:127 @@ -1469,7 +1546,7 @@ msgstr "Počiatočný a koncový dátum" msgid "Start Date" msgstr "Počiatočný dátum" -#: frontend/page-place-ad.php:865 +#: frontend/page-place-ad.php:868 #: includes/admin/import/class-csv-importer-columns.php:196 #: includes/admin/listings/class-listings-table-nav-handler.php:152 #: includes/form-fields/class-listing-form-fields.php:131 @@ -1477,48 +1554,48 @@ msgstr "Počiatočný dátum" msgid "End Date" msgstr "Konečný dátum" -#: frontend/page-place-ad.php:973 +#: frontend/page-place-ad.php:976 msgid "" "Hi, Payment is required for posting Ads in this website and we couldn't find " "a Payment Transaction assigned to you. You can't post Ads this time. If you " "think this is an error please contact the website Administrator." msgstr "" -#: frontend/page-place-ad.php:1000 +#: frontend/page-place-ad.php:1003 msgid "" "You did not select a Payment Term. Please select a Payment Term for this Ad." msgstr "" "Nevybrali ste platobné podmienky pre váš inzerát. Prosím, vyberte aspoň " "jednu z podmienok." -#: frontend/page-place-ad.php:1005 +#: frontend/page-place-ad.php:1008 msgid "Please enter a start date for the Ad." msgstr "Prosím zadajte začiatočný dátum inzerátu." -#: frontend/page-place-ad.php:1010 +#: frontend/page-place-ad.php:1013 msgid "Please enter an end date for the Ad." msgstr "Prosím zadajte koncový dátum inzerátu." -#: frontend/page-place-ad.php:1014 +#: frontend/page-place-ad.php:1017 #: includes/form-fields/class-form-fields-validator.php:71 msgid "The start date must occur before the end date." msgstr "Začiatočný dátum musí byť skôr ako koncový." -#: frontend/page-place-ad.php:1019 +#: frontend/page-place-ad.php:1022 msgid "You did not enter a title for your Ad" msgstr "Nezadali ste názov inzerátu" -#: frontend/page-place-ad.php:1024 +#: frontend/page-place-ad.php:1027 msgid "" "You did not enter any text for your Ad. Please enter some text for your Ad." msgstr "Nezadali ste text inzerátu. Napíšte o ňom niečo." -#: frontend/page-place-ad.php:1037 +#: frontend/page-place-ad.php:1040 msgid "" "You did not enter your website address. Your website address is required." msgstr "Nevložili ste webovú adresu. Webová adresa je povinná" -#: frontend/page-place-ad.php:1043 +#: frontend/page-place-ad.php:1046 msgid "" "Your website address is not properly formatted. Please make sure you have " "included the http:// part of your website address" @@ -1526,15 +1603,15 @@ msgstr "" "Vaša webová adresa nie je v správnom formáte. Uistite sa, že obsahuje " "http:// " -#: frontend/page-place-ad.php:1048 +#: frontend/page-place-ad.php:1051 msgid "You did not enter your name. Your name is required." msgstr "Nezadali ste vaše meno. Toto pole je povinné." -#: frontend/page-place-ad.php:1053 +#: frontend/page-place-ad.php:1056 msgid "You did not enter your email. Your email is required." msgstr "Nevložili ste váš email. Email je povinné pole." -#: frontend/page-place-ad.php:1058 frontend/page-reply-to-ad.php:160 +#: frontend/page-place-ad.php:1061 frontend/page-reply-to-ad.php:160 msgid "" "The email address you entered was not a valid email address. Please check " "for errors and try again." @@ -1542,7 +1619,7 @@ msgstr "" "Zadaná e-mailová adresa je zrejme neplatná. Prosím skontrolujte si chyby a " "skúste pokus opakovať." -#: frontend/page-place-ad.php:1060 +#: frontend/page-place-ad.php:1063 msgid "" "The email address you entered is not allowed in this website. Please use an " "email address from one of the following domains: %s." @@ -1550,35 +1627,35 @@ msgstr "" "Emailová adresa nie je na tejto stránke povolená. Prosím zadajte emailovú " "adresu od nasledujúcich poskytovateľov: %s." -#: frontend/page-place-ad.php:1071 +#: frontend/page-place-ad.php:1074 msgid "You did not enter your phone number. Your phone number is required." msgstr "Nevložili ste vaše telefónne číslo. Toto pole je povinné." -#: frontend/page-place-ad.php:1089 -#: includes/helpers/widgets/multiple-region-selector.php:124 +#: frontend/page-place-ad.php:1092 +#: includes/helpers/widgets/multiple-region-selector.php:144 msgid "You did not enter your country. Your country is required." msgstr "Nezadali ste krajinu. Toto pole je povinné." -#: frontend/page-place-ad.php:1098 -#: includes/helpers/widgets/multiple-region-selector.php:125 +#: frontend/page-place-ad.php:1101 +#: includes/helpers/widgets/multiple-region-selector.php:145 msgid "You did not enter your state. Your state is required." msgstr "Nezadali ste štát. Toto pole je povinné." -#: frontend/page-place-ad.php:1107 -#: includes/helpers/widgets/multiple-region-selector.php:127 +#: frontend/page-place-ad.php:1110 +#: includes/helpers/widgets/multiple-region-selector.php:147 msgid "You did not enter your city. Your city is required." msgstr "Nezadali ste vaše mesto. Toto pole je povinné." -#: frontend/page-place-ad.php:1116 -#: includes/helpers/widgets/multiple-region-selector.php:126 +#: frontend/page-place-ad.php:1119 +#: includes/helpers/widgets/multiple-region-selector.php:146 msgid "You did not enter your county/village. Your county/village is required." msgstr "Nezadali ste okres/sídlo. Toto pole je povinné." -#: frontend/page-place-ad.php:1123 +#: frontend/page-place-ad.php:1126 msgid "You did not enter the price of your item. The item price is required." msgstr "Nevložili ste cenu veci. Cena je povinná" -#: frontend/page-place-ad.php:1129 +#: frontend/page-place-ad.php:1132 msgid "" "You have entered an invalid item price. Make sure your price contains " "numbers only. Please do not include currency symbols." @@ -1586,18 +1663,18 @@ msgstr "" "Nevložili ste správnu cenu veci. Uistite sa, že obsahuje len číslice. " "Prosím, nevkladajte symboly meny." -#: frontend/page-place-ad.php:1147 +#: frontend/page-place-ad.php:1150 msgid "You did not accept the terms of service" msgstr "Nesúhlasili ste s podmienkami používania" -#: frontend/page-place-ad.php:1163 +#: frontend/page-place-ad.php:1166 msgid "" "Your Ad was flagged as spam. Please contact the administrator of this site." msgstr "" "Váš inzerát bola označený ako SPAM, prosím kontaktujte administrátora tejto " "stránky." -#: frontend/page-place-ad.php:1354 +#: frontend/page-place-ad.php:1357 msgid "" "We were unable to find a Payment Transaction assigned to this operation. No " "images can be added at this time." @@ -1605,28 +1682,28 @@ msgstr "" "Neboli sme schopní nájsť platbu k tejto transakcii. Teraz nemôžte pridať " "obrázky." -#: frontend/page-place-ad.php:1361 +#: frontend/page-place-ad.php:1364 msgid "The specified Ad doesn't exists. No images can be added at this time." msgstr "Uvedený inzerát neexistuje. Teraz nemôžete pridať obrázky." -#: frontend/page-place-ad.php:1440 frontend/page-place-ad.php:1492 +#: frontend/page-place-ad.php:1443 frontend/page-place-ad.php:1495 #: includes/frontend/class-submit-listing-page.php:393 msgid "" "We were unable to find a Payment Transaction assigned to this operation." msgstr "Neboli sme schopní nájsť platbu k tejto transakcii." -#: frontend/page-place-ad.php:1447 frontend/page-place-ad.php:1499 +#: frontend/page-place-ad.php:1450 frontend/page-place-ad.php:1502 #: frontend/page-renew-ad.php:408 #: includes/frontend/class-submit-listing-page.php:400 msgid "The Ad associated with this transaction doesn't exists." msgstr "Inzerát patriaci k tejto transakcii neexistuje." -#: frontend/page-renew-ad.php:73 +#: frontend/page-renew-ad.php:72 #, fuzzy msgid "That Ad doesn't need to be renewed." msgstr "Uvedený inzerát nepotrebuje byť obnovený." -#: frontend/page-renew-ad.php:78 +#: frontend/page-renew-ad.php:77 msgid "" "There was an error trying to renew your Ad. The URL is not valid. Please " "contact the Administrator of this site for further assistance." @@ -1634,7 +1711,7 @@ msgstr "" "Nastala chyba pri pokuse o obnovenie inzerátu. URL adresa nie je platná. " "Prosím, kontaktuje administrátora stránky." -#: frontend/page-renew-ad.php:94 +#: frontend/page-renew-ad.php:93 msgid "" "You can't renew your Ad at this time because the payment associated with " "this transaction failed (see reasons below)." @@ -1642,7 +1719,7 @@ msgstr "" "Nemôžete obnoviť váš inzerát, pretože platba tejto transakcie zlyhala. " "(Dôvody sú uvedené nižšie)" -#: frontend/page-renew-ad.php:117 +#: frontend/page-renew-ad.php:116 msgid "" "The Ad was posted under a Payment Term that no longer exists or is disabled. " "The Ad can't be renewed." @@ -1650,11 +1727,11 @@ msgstr "" "Inzerát bol odoslaný pod zrušenými platobnými podmienkami. Inzerát nemôže " "byť obnovený." -#: frontend/page-renew-ad.php:154 +#: frontend/page-renew-ad.php:153 msgid "You can see your Ad here" msgstr "Tu môžete vidieť váš inzerát" -#: frontend/page-renew-ad.php:200 +#: frontend/page-renew-ad.php:201 msgid "" "You are trying to renew your Ad using a different Payment Term. That's not " "allowed." @@ -1765,7 +1842,7 @@ msgstr "Predajca" msgid "Visit Website" msgstr "Navštívte stránku" -#: frontend/placeholders.php:655 includes/functions/listings.php:405 +#: frontend/placeholders.php:655 includes/functions/listings.php:415 msgid "Location" msgstr "Poloha" @@ -1839,30 +1916,30 @@ msgstr "" "Nastal problém pri pokuse o platbu. Podrobnosti o transakcii sú uvedené " "nižšie" -#: frontend/templates/email-abort-payment-admin.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:12 msgid "User Name" msgstr "Používateľské meno" -#: frontend/templates/email-abort-payment-admin.tpl.php:10 +#: frontend/templates/email-abort-payment-admin.tpl.php:13 msgid "User Login" msgstr "Používateľské meno" -#: frontend/templates/email-abort-payment-admin.tpl.php:11 +#: frontend/templates/email-abort-payment-admin.tpl.php:14 msgid "User Email" msgstr "Email" -#: frontend/templates/email-abort-payment-admin.tpl.php:15 +#: frontend/templates/email-abort-payment-admin.tpl.php:18 #: includes/admin/import/class-csv-importer-columns.php:219 msgid "Payment Term Type" msgstr "Obchodné podmienky" -#: frontend/templates/email-abort-payment-admin.tpl.php:16 +#: frontend/templates/email-abort-payment-admin.tpl.php:19 #: includes/admin/import/class-csv-importer-columns.php:207 msgid "Payment Term ID" msgstr "ID obchodných podmienok" -#: frontend/templates/email-abort-payment-admin.tpl.php:17 -#: frontend/templates/email-abort-payment-user.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:20 +#: frontend/templates/email-abort-payment-user.tpl.php:12 msgid "Payment transaction ID" msgstr "ID platobnej transakcie" @@ -1872,11 +1949,11 @@ msgid "Additional Details" msgstr "Ďaľšie detaily" #: frontend/templates/email-ad-enabled-user.tpl.php:3 -#: frontend/templates/email-send-ad-access-key.tpl.php:1 +#: frontend/templates/email-send-ad-access-key.tpl.php:3 msgid "Hello %s," msgstr "Zdravím pán/pani %s," -#: frontend/templates/email-ad-enabled-user.tpl.php:6 +#: frontend/templates/email-ad-enabled-user.tpl.php:8 msgid "" "Your Ad \"%1$s\" was recently approved by the admin. You should be able to " "see the Ad published here: %2$s." @@ -1942,8 +2019,8 @@ msgstr "" msgid "Ad Information" msgstr "Informácie o inzeráte" -#: frontend/templates/email-ad-updated-user.tpl.php:18 -#: frontend/templates/email-place-ad-success-user.tpl.php:45 +#: frontend/templates/email-ad-updated-user.tpl.php:20 +#: frontend/templates/email-place-ad-success-user.tpl.php:47 msgid "" "If you have questions about your listing contact %s. Thank you for your " "business." @@ -1977,19 +2054,20 @@ msgstr "" msgid "The next link will take you to a page where you can edit the listing:" msgstr "" -#: frontend/templates/email-send-ad-access-key.tpl.php:3 +#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#, fuzzy msgid "" -"Below you will find the access key for your Ad \"%s\" associated to the " +"Below you will find the access key for your Ad \"%s\" associated with the " "email address %s." msgstr "Nižšie nájdete prístupový kľúč k inzerátu \"%s\" patriacemu emailu %s." -#: frontend/templates/email-send-ad-access-key.tpl.php:6 +#: frontend/templates/email-send-ad-access-key.tpl.php:10 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:13 #: templates/admin/view-listing-admin-page.tpl.php:11 msgid "Access Key" msgstr "Prístupový kľúč" -#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#: frontend/templates/email-send-ad-access-key.tpl.php:11 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:14 msgid "Edit Link:" msgstr "" @@ -2024,6 +2102,12 @@ msgstr "Zabudli ste heslo?" msgid "Classifieds Menu" msgstr "Menu inzerátov" +#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 +#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 +#, fuzzy +msgid "Complete Payment" +msgstr "Zaplatiť" + #: frontend/templates/page-buy-credits-final-step.tpl.php:7 msgid "" "The credit in your account can be used to pay for posting your Ads. You can " @@ -2040,9 +2124,9 @@ msgstr "Vyberte plán kreditov" #: frontend/templates/page-buy-credits-select-credit-plan-step.tpl.php:18 #: frontend/templates/page-renew-ad-order-step.tpl.php:27 -#: frontend/templates/page-reply-to-ad.tpl.php:43 +#: frontend/templates/page-reply-to-ad.tpl.php:48 #: frontend/templates/payments-billing-form.tpl.php:124 -#: frontend/templates/payments-checkout-page.tpl.php:28 +#: frontend/templates/payments-checkout-page.tpl.php:27 #: frontend/templates/payments-payment-completed-page.tpl.php:18 msgid "Continue" msgstr "Pokračovať" @@ -2072,27 +2156,27 @@ msgstr "Znova odoslať prístupový kľúč" msgid "Enter Ad Details" msgstr "Zadajte podrobnosti inzerátu" -#: frontend/templates/page-place-ad-details-step.tpl.php:35 +#: frontend/templates/page-place-ad-details-step.tpl.php:36 #: includes/admin/import/class-csv-importer-columns.php:79 #: includes/admin/listings/class-listing-owner-metabox.php:59 msgid "Ad Owner" msgstr "Vlastník inzerátu" -#: frontend/templates/page-place-ad-details-step.tpl.php:41 -#: frontend/templates/page-place-ad-order-step.tpl.php:60 +#: frontend/templates/page-place-ad-details-step.tpl.php:43 +#: frontend/templates/page-place-ad-order-step.tpl.php:61 msgid "User" msgstr "Používateľa" -#: frontend/templates/page-place-ad-details-step.tpl.php:42 -#: frontend/templates/page-place-ad-order-step.tpl.php:61 +#: frontend/templates/page-place-ad-details-step.tpl.php:44 +#: frontend/templates/page-place-ad-order-step.tpl.php:62 msgid "Select an User owner for this Ad" msgstr "Vyberte používateľa, ktorý vlastní tento inzerát" -#: frontend/templates/page-place-ad-details-step.tpl.php:77 +#: frontend/templates/page-place-ad-details-step.tpl.php:81 msgid "Add Details and Contact Information" msgstr "Pridať detaily a kontaktné informácie" -#: frontend/templates/page-place-ad-order-step.tpl.php:73 +#: frontend/templates/page-place-ad-order-step.tpl.php:75 msgid "Please select a payment term for your Ad" msgstr "Prosím zvoľte ochodné podmienky pre váš inzerát" @@ -2135,7 +2219,12 @@ msgstr "" msgid "Your Ad has been renewed" msgstr "Váš inzerát bol obnovený." -#: frontend/templates/page-renew-ad.tpl.php:15 +#: frontend/templates/page-renew-ad-order-step.tpl.php:6 +#, fuzzy +msgid "Select Payment Term" +msgstr "Vyberte obchodné podmienky" + +#: frontend/templates/page-renew-ad.tpl.php:13 msgid "" "Please click the payment button below to proceed with Payment for your Ad " "renewal. You will be asked to pay %s." @@ -2143,19 +2232,19 @@ msgstr "" "Aby ste si obnovili inzerát musíte pokračovať v procese platby. Kliknite na " "tlačidlo nižšie. Cena obnovenia je: %s" -#: frontend/templates/page-reply-to-ad.tpl.php:7 +#: frontend/templates/page-reply-to-ad.tpl.php:10 msgid "You are responding to Ad: %s." msgstr "Vzťahuje sa na inzerát: %s." -#: frontend/templates/page-reply-to-ad.tpl.php:18 +#: frontend/templates/page-reply-to-ad.tpl.php:24 msgid "Your name" msgstr "Vaše meno" -#: frontend/templates/page-reply-to-ad.tpl.php:24 +#: frontend/templates/page-reply-to-ad.tpl.php:30 msgid "Your email address" msgstr "Vaša e-mailová adresa" -#: frontend/templates/page-reply-to-ad.tpl.php:30 +#: frontend/templates/page-reply-to-ad.tpl.php:36 msgid "Your message" msgstr "Vaša správa" @@ -2163,19 +2252,19 @@ msgstr "Vaša správa" msgid "Search for ads containing this word or phrase" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:37 +#: frontend/templates/page-search-ads.tpl.php:41 msgid "For ads posted by" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:39 +#: frontend/templates/page-search-ads.tpl.php:43 msgid "All Users" msgstr "Všetci používatelia" -#: frontend/templates/page-search-ads.tpl.php:48 +#: frontend/templates/page-search-ads.tpl.php:55 msgid "Min price" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:52 +#: frontend/templates/page-search-ads.tpl.php:59 msgid "Max price" msgstr "" @@ -2183,9 +2272,16 @@ msgstr "" msgid "Pay With 2Checkout" msgstr "Zaplatiť s 2Checkout" -#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:791 -#: includes/admin/class-listings-personal-data-provider.php:115 -#: includes/admin/class-listings-personal-data-provider.php:125 +#: frontend/templates/payments-billing-form.tpl.php:1 +#, fuzzy +msgid "" +"Please fill in the billing information in the form below to place your " +"payment." +msgstr "Prosím, vyplňte fakturačné informácie pre dokončenie platby." + +#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:797 +#: includes/admin/class-listings-personal-data-provider.php:117 +#: includes/admin/class-listings-personal-data-provider.php:127 #: includes/admin/import/class-csv-importer-columns.php:230 msgid "Country" msgstr "Krajina" @@ -2223,15 +2319,15 @@ msgid "Address Line 2" msgstr "Adresa 2. riadok" #: frontend/templates/payments-billing-form.tpl.php:92 -#: includes/admin/class-listings-personal-data-provider.php:116 -#: includes/admin/class-listings-personal-data-provider.php:126 +#: includes/admin/class-listings-personal-data-provider.php:118 +#: includes/admin/class-listings-personal-data-provider.php:128 #: includes/admin/import/class-csv-importer-columns.php:238 msgid "State" msgstr "Štát" -#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:811 -#: includes/admin/class-listings-personal-data-provider.php:117 -#: includes/admin/class-listings-personal-data-provider.php:127 +#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:817 +#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:129 #: includes/admin/import/class-csv-importer-columns.php:260 msgid "City" msgstr "Mesto" @@ -2245,14 +2341,55 @@ msgstr "PSČ" msgid "Email" msgstr "Email" +#: frontend/templates/payments-credit-plans-table.tpl.php:7 +#, fuzzy +msgid "" +"You can additionally purchase a Credit Plan to add credit to your account. " +"If you select to pay using credits, the price of the selected payment term " +"will be deducted from your account balance after you have completed payment." +msgstr "" +"Pre dodatočné pridanie kreditov, môžete kúpiť plán. Ak sa rozhodnete " +"zaplatiť kreditmi, bude suma stiahnutá z vašeho účtu po dokončení platby." + #: frontend/templates/payments-credit-plans-table.tpl.php:22 msgid "No credit plans available." msgstr "Nie je dostupný plán kreditov" +#: frontend/templates/payments-credit-plans-table.tpl.php:51 +#, fuzzy +msgid "clear selection" +msgstr "zrušiť výber" + +#: frontend/templates/payments-payment-completed-page.tpl.php:2 +#, fuzzy +msgid "Transaction Details" +msgstr "Detaily transakcie" + +#: frontend/templates/payments-payment-page.tpl.php:3 +#, fuzzy +msgid "You are about to pay for the following items." +msgstr "Chystáte sa zaplatiť nasledujúce položky." + +#: frontend/templates/payments-payment-page.tpl.php:5 +#, fuzzy +msgid "Payment Terms" +msgstr "Obchodné podmienky" + #: frontend/templates/payments-paypal-payment-button.tpl.php:30 msgid "Make payments with PayPal - it's fast, free and secure!" msgstr "Plaťte cez PayPal - je to rýchle, zadarmo a bezpečné!" +#: frontend/templates/payments-transaction-items-table.tpl.php:4 +#: frontend/templates/payments-transaction-items-table.tpl.php:13 +#, fuzzy +msgid "Item" +msgstr "Položka" + +#: frontend/templates/payments-transaction-items-table.tpl.php:34 +#, fuzzy +msgid "Total Amount (credit)" +msgstr "Suma celkom (kredity)" + #: frontend/templates/widget-categories-form.tpl.php:9 msgid "Hide empty categories." msgstr "Schovať prázdne kategórie." @@ -2324,7 +2461,7 @@ msgstr "Zobraziť pole slova?" msgid "Show Posted By field?" msgstr "Zobraziť prispevky podľa polí?" -#: frontend/templates/widget-search-form.tpl.php:28 +#: frontend/templates/widget-search-form.tpl.php:32 msgid "Show Category field?" msgstr "Zobraziť pole kategória?" @@ -2340,23 +2477,23 @@ msgstr "AWPCP kategórie" msgid "Ad Categories" msgstr "Kategórie inzerátu" -#: frontend/widget-latest-ads.php:13 +#: frontend/widget-latest-ads.php:17 msgid "AWPCP Latest Ads" msgstr "Posledné inzeráty AWPCP" -#: frontend/widget-latest-ads.php:14 +#: frontend/widget-latest-ads.php:18 msgid "Displays a list of latest Ads" msgstr "Zobrazí zoznam posledných inzerátov" -#: frontend/widget-latest-ads.php:30 +#: frontend/widget-latest-ads.php:34 msgid "Latest Ads" msgstr "Najnovšie inzeráty" -#: frontend/widget-latest-ads.php:72 +#: frontend/widget-latest-ads.php:76 msgid "There are currently no ads to show." msgstr "" -#: frontend/widget-latest-ads.php:114 +#: frontend/widget-latest-ads.php:118 msgid "Read more" msgstr "Čítaj viac" @@ -2388,67 +2525,67 @@ msgstr "Všetky mená predajcov" msgid "Select Option" msgstr "Zvoľte možnosť" -#: frontend/widget-search.php:105 +#: frontend/widget-search.php:106 msgid "Search by keyword" msgstr "Hľadať podľa kľúčového slova" -#: frontend/widget-search.php:119 +#: frontend/widget-search.php:121 msgid "Search by Category" msgstr "Hľadať podľa kategórie" -#: frontend/widget-search.php:137 +#: frontend/widget-search.php:141 msgid "Search" msgstr "Hľadať" -#: functions.php:427 +#: functions.php:431 msgid "%s ago" msgstr "pred %s" -#: functions.php:604 +#: functions.php:610 msgid "Ads per page:" msgstr "" -#: functions.php:621 +#: functions.php:627 msgid "Page {current_page_number} of {number_of_pages}" msgstr "" -#: functions.php:732 +#: functions.php:738 msgid "None" msgstr "Žiadne" -#: functions.php:792 +#: functions.php:798 msgid "separate countries by commas" msgstr "oddeliť krajiny čiarkami" -#: functions.php:801 +#: functions.php:807 msgid "State/Province" msgstr "Štát/provincia" -#: functions.php:802 +#: functions.php:808 msgid "separate states by commas" msgstr "oddeliť štáty čiarkami" -#: functions.php:812 +#: functions.php:818 msgid "separate cities by commas" msgstr "oddeliť mestá čiarkami" -#: functions.php:821 +#: functions.php:827 msgid "County/Village/Other" msgstr "Kraj/dedina/iné" -#: functions.php:822 +#: functions.php:828 msgid "separate counties by commas" msgstr "oddeliť kraje čiarkami" -#: functions.php:1036 +#: functions.php:1050 msgid "-- Choose a Country --" msgstr "-- Vyberte krajinu --" -#: functions.php:1507 templates/admin/main-classifieds-admin-page.tpl.php:58 +#: functions.php:1537 templates/admin/main-classifieds-admin-page.tpl.php:58 msgid "Free" msgstr "" -#: functions.php:1852 templates/components/media-center.tpl.php:14 +#: functions.php:1893 templates/components/media-center.tpl.php:14 msgid "" "The images or files with pale red background have been rejected by an " "administrator user. Likewise, files with a pale yellow background are " @@ -2460,7 +2597,7 @@ msgstr "" "Zamietnuté súbory a súbory čakajúce na schválenie nie sú zobrazované na " "stránke." -#: functions.php:1871 +#: functions.php:1912 msgid "" "This version of AWPCP %1$s module is not compatible with AWPCP version %2$s. " "Please get AWPCP %1$s %3$s or newer!" @@ -2468,68 +2605,68 @@ msgstr "" "Verzia tohto modulu AWPCP %1$s nie je kompatibilná s verziou AWPCP %2$s. " "Prosím nainštajute si verziu %1$s %3$s alebo novšiu" -#: functions.php:1873 +#: functions.php:1914 msgid "Error" msgstr "Chyba" -#: functions.php:2231 +#: functions.php:2287 msgid "No errors." msgstr "Žiadne chyby." -#: functions.php:2232 +#: functions.php:2288 msgid "The file is larger than upload_max_filesize." msgstr "Súbor je väčší než (maximálna dovolená veľkosť) upload_max_filesize." -#: functions.php:2233 +#: functions.php:2289 msgid "The file is larger than form MAX_FILE_SIZE." msgstr "Súbor je väčší než (maximálna dovolená veľkosť) MAX_FILE_SIZE." -#: functions.php:2234 +#: functions.php:2290 msgid "The file was only partially uploaded." msgstr "Súbor bol nahraný iba čiastočne." -#: functions.php:2235 +#: functions.php:2291 msgid "No file was uploaded." msgstr "Súbor nebol nahraný." -#: functions.php:2236 +#: functions.php:2292 msgid "Missing temporary directory." msgstr "Chýba dočasný priečinok." -#: functions.php:2237 +#: functions.php:2293 msgid "Can't write file to disk." msgstr "Nie je možné vykonať zápis súboru na disk." -#: functions.php:2238 +#: functions.php:2294 msgid "The file upload was stopped by extension." msgstr "Nahrávanie súboru bolo prerušené kvôli prípone súbora." -#: functions.php:2476 +#: functions.php:2536 msgid "Your Ad \"%s\" has been approved" msgstr "Váš inzerát \"%s\" bol schválený" -#: functions.php:2499 +#: functions.php:2559 msgid "Your Ad \"%s\" has been successfully updated" msgstr "Váš inzerát \"%s\" bol úspešne aktualizovaný" -#: functions.php:2521 +#: functions.php:2581 msgid "Images on Ad \"%s\" are awaiting approval" msgstr "Obrázky inzerátu \"%s\" čakajú na schválenie" -#: functions.php:2523 +#: functions.php:2583 msgid "" "Images on Ad \"%s\" are awaiting approval. You can approve the images going " "to the Manage Images section for that Ad and clicking the \"Enable\" button " "below each image. Click here to continue: %s." msgstr "" -#: functions.php:2526 +#: functions.php:2586 msgid "The Ad \"%s\" is awaiting approval" msgstr "Inzerát \"%s\" čaká na schválenie" #. translators: %1$s is the listing title. %2$s is the URL for managing #. listing. -#: functions.php:2529 includes/functions/notifications.php:157 +#: functions.php:2589 includes/functions/notifications.php:156 msgid "" "The Ad \"%1$s\" is awaiting approval. You can approve the Ad going to the " "Classified edit section and clicking the \"Publish\" button. Click here to " @@ -2537,34 +2674,34 @@ msgid "" msgstr "" #. translators: %s is the URL for managing listing images. -#: functions.php:2536 includes/functions/notifications.php:165 +#: functions.php:2596 includes/functions/notifications.php:164 msgid "" "Additionally, You can approve the images going to the Manage Images section " "for that Ad and clicking the \"Enable\" button below each image. Click here " "to continue: %s." msgstr "" -#: functions.php:3068 +#: functions.php:3123 msgid "Email sent %s." msgstr "Odoslaný email %s." -#: functions.php:3199 +#: functions.php:3254 msgid "Not Installed" msgstr "Nie je nainštalované" -#: functions.php:3203 +#: functions.php:3258 msgid "Installed" msgstr "Nainštalované" -#: functions.php:3211 +#: functions.php:3266 msgid "SSL Support: Yes." msgstr "" -#: functions.php:3213 +#: functions.php:3268 msgid "SSL Support: No." msgstr "" -#: functions.php:3216 +#: functions.php:3271 msgid "OpenSSL version:" msgstr "" @@ -2584,58 +2721,58 @@ msgstr "" msgid "Search for listings matching" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:110 +#: includes/admin/class-listings-personal-data-provider.php:112 msgid "Classified ID" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:111 +#: includes/admin/class-listings-personal-data-provider.php:113 msgid "Contact Name" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:112 +#: includes/admin/class-listings-personal-data-provider.php:114 msgid "Contact Phone Number" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:113 +#: includes/admin/class-listings-personal-data-provider.php:115 msgid "Contact Phone Number Digits" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:114 +#: includes/admin/class-listings-personal-data-provider.php:116 msgid "Contact Email" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:118 -#: includes/admin/class-listings-personal-data-provider.php:128 +#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:130 #: includes/admin/import/class-csv-importer-columns.php:249 msgid "County" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:121 msgid "Website URL" msgstr "URL adresa stránky" -#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:122 #: includes/admin/class-payment-personal-data-provider.php:47 msgid "Payer Email" msgstr "Email" -#: includes/admin/class-listings-personal-data-provider.php:121 +#: includes/admin/class-listings-personal-data-provider.php:123 msgid "Author IP" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:132 +#: includes/admin/class-listings-personal-data-provider.php:134 msgid "URL" msgstr "URL" -#: includes/admin/class-listings-personal-data-provider.php:146 +#: includes/admin/class-listings-personal-data-provider.php:148 msgid "Classifieds Listings" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:157 +#: includes/admin/class-listings-personal-data-provider.php:159 msgid "Classifieds Media" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:218 +#: includes/admin/class-listings-personal-data-provider.php:220 msgid "" "An unknown error occurred while trying to delete information for classified " "{listing_id}." @@ -2656,7 +2793,7 @@ msgid "Contact Address" msgstr "" #: includes/admin/class-user-personal-data-provider.php:55 -#: includes/settings/class-display-settings.php:476 +#: includes/settings/class-display-settings.php:475 msgid "Contact Phone" msgstr "" @@ -2754,8 +2891,8 @@ msgid "" msgstr "" #: includes/admin/import/class-importer-form-steps.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:17 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:88 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:14 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:80 msgid "Upload Source Files" msgstr "" @@ -2764,12 +2901,12 @@ msgid "Configuration" msgstr "Nastavenie" #: includes/admin/import/class-importer-form-steps.php:29 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:173 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:176 msgid "Import" msgstr "Import" #: includes/admin/import/class-importer-form-steps.php:32 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:172 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:175 msgid "Test Import" msgstr "Test importu" @@ -2828,7 +2965,7 @@ msgstr[2] "" msgstr[3] "" #: includes/admin/listings/class-listing-owner-metabox.php:62 -#: templates/frontend/order-submit-listing-section.tpl.php:45 +#: templates/frontend/order-submit-listing-section.tpl.php:42 msgid "Please select a user" msgstr "" @@ -3325,44 +3462,44 @@ msgstr "XML sitemapa" msgid "ZIP Code Search Module" msgstr "" -#: includes/class-awpcp.php:1445 +#: includes/class-awpcp.php:1436 msgid "This field is required." msgstr "Toto pole je povinné." -#: includes/class-awpcp.php:1446 +#: includes/class-awpcp.php:1437 #: includes/form-fields/class-form-fields-validator.php:101 #: includes/frontend/class-edit-listing-page.php:273 #: includes/frontend/class-edit-listing-page.php:350 -#: includes/settings/class-payment-general-settings.php:158 +#: includes/settings/class-payment-general-settings.php:157 msgid "Please enter a valid email address." msgstr "Prosím uveďte správnu/funkčnú emailovú adresu." -#: includes/class-awpcp.php:1447 includes/class-awpcp.php:1448 +#: includes/class-awpcp.php:1438 includes/class-awpcp.php:1439 msgid "Please enter a valid URL." msgstr "Prosím zadajte platnú URL adresu." -#: includes/class-awpcp.php:1449 +#: includes/class-awpcp.php:1440 msgid "Please enter a valid number." msgstr "Prosím zadajte platné číslo." -#: includes/class-awpcp.php:1450 +#: includes/class-awpcp.php:1441 msgid "Please enter a valid amount." msgstr "Prosím zadajte platnú sumu." -#: includes/class-awpcp.php:1451 +#: includes/class-awpcp.php:1442 msgid "" "You have reached the maximum allowed categories for the selected fee plan." msgstr "" -#: includes/class-awpcp.php:1470 +#: includes/class-awpcp.php:1461 msgid "There are files currently being uploaded." msgstr "" -#: includes/class-awpcp.php:1471 +#: includes/class-awpcp.php:1462 msgid "There are files pending to be uploaded." msgstr "" -#: includes/class-awpcp.php:1472 +#: includes/class-awpcp.php:1463 msgid "You haven't uploaded any images or files." msgstr "" @@ -3412,23 +3549,23 @@ msgid "" "site. Contact customer support for further assistance." msgstr "" -#: includes/class-listings-api.php:106 includes/class-listings-api.php:306 +#: includes/class-listings-api.php:106 includes/class-listings-api.php:310 msgid "" "There was an unexpected error trying to save the listing details. Please try " "again or contact an administrator." msgstr "" -#: includes/class-listings-api.php:197 +#: includes/class-listings-api.php:199 msgid "" "To avoid overwritting existing metadata, use fill_default_listing_metadata() " "instead." msgstr "" -#: includes/class-listings-api.php:302 +#: includes/class-listings-api.php:306 msgid "There was an error trying to save the listing details:" msgstr "" -#: includes/class-listings-api.php:730 +#: includes/class-listings-api.php:734 msgid "" "If you have uploaded images your images will not show up until an admin has " "approved them." @@ -3469,19 +3606,19 @@ msgid "" "customer support with a copy of your file." msgstr "" -#: includes/credit-plan.php:109 includes/payment-term.php:133 +#: includes/credit-plan.php:114 includes/payment-term.php:133 msgid "The name of the plan is required." msgstr "Názov plánu je povinné pole" -#: includes/credit-plan.php:112 includes/payment-term.php:151 +#: includes/credit-plan.php:117 includes/payment-term.php:151 msgid "The number of credits must be greater than zero." msgstr "Počet kreditov musí byť väčší alebo rovný nule." -#: includes/credit-plan.php:115 +#: includes/credit-plan.php:120 msgid "The price must be greater or equal than zero." msgstr "Cena musí byť väčšia alebo rovná nule." -#: includes/credit-plan.php:153 +#: includes/credit-plan.php:158 msgid "The Credit Plan doesn't exist." msgstr "Plán kreditov neexistuje." @@ -3567,7 +3704,7 @@ msgstr "" msgid "Please read and accept the Terms of Service." msgstr "" -#: includes/frontend/class-captcha.php:70 +#: includes/frontend/class-captcha.php:77 msgid "" "An unknown error ocurred trying to validate the answer to the CAPTCHA " "challenge." @@ -3585,12 +3722,12 @@ msgid "" "allowed to submit classifieds." msgstr "" -#: includes/frontend/class-default-captcha-provider.php:59 +#: includes/frontend/class-default-captcha-provider.php:76 msgid "" "You did not solve the math problem. Please solve the math problem to proceed." msgstr "Nevyriešili ste matematickú rovnicu. Prosím,vyriešte pre pokračovanie." -#: includes/frontend/class-default-captcha-provider.php:64 +#: includes/frontend/class-default-captcha-provider.php:81 msgid "Your solution to the math problem was incorrect. Please try again." msgstr "" "Riešenie matematického problému je chybné. Prosím skúste problém vyriešiť " @@ -3735,15 +3872,15 @@ msgstr "" #. translators: %s will become an A HTML tag pointing to reCAPTCHA admin #. console. -#: includes/frontend/class-recaptcha-provider.php:47 +#: includes/frontend/class-recaptcha-provider.php:68 msgid "To use reCAPTCHA you must get an API key from %s." msgstr "Pre použitie reCAPTCHA, musíte získať API kľúč z %s." -#: includes/frontend/class-recaptcha-provider.php:85 +#: includes/frontend/class-recaptcha-provider.php:106 msgid "Your answers couldn't be verified by the reCAPTCHA server." msgstr "" -#: includes/frontend/class-recaptcha-v2.php:51 +#: includes/frontend/class-recaptcha-v2.php:78 msgid "" "There was an error trying to verify the reCAPTCHA answer. " msgstr "" @@ -3757,8 +3894,8 @@ msgid "Login/Registration" msgstr "" #: includes/frontend/class-submit-listing-form-steps.php:48 -#: includes/ui/class-category-selector.php:125 -#: templates/components/category-selector.tpl.php:16 +#: includes/ui/class-category-selector.php:147 +#: templates/components/category-selector.tpl.php:15 msgid "Select a Category" msgstr "Vybete kategóriu" @@ -3900,12 +4037,12 @@ msgstr "Súbor %s nemohol byť presunutý do cieľového priečinka." msgid "Could not create resized versions of image %s." msgstr "Nedajú sa vytvoriť orezané verzie obrázku %s." -#: includes/functions/format.php:67 +#: includes/functions/format.php:50 msgid "Classifieds Management System" msgstr "" #. translators: example: and -#: includes/functions/format.php:84 +#: includes/functions/format.php:67 msgid " and " msgstr "" @@ -3957,28 +4094,28 @@ msgstr "" msgid "Top Level Category" msgstr "Kategória najvyššej úrovne" -#: includes/functions/listings.php:278 -#: includes/listings/class-listings-content-renderer.php:169 +#: includes/functions/listings.php:288 +#: includes/listings/class-listings-content-renderer.php:182 msgid "Are you sure you want to flag this ad?" msgstr "Ste si istý, že chcete označiť tento inzerát?" -#: includes/functions/listings.php:279 -#: includes/listings/class-listings-content-renderer.php:170 +#: includes/functions/listings.php:289 +#: includes/listings/class-listings-content-renderer.php:183 msgid "This Ad has been flagged." msgstr "Tento inzerát bol označený." -#: includes/functions/listings.php:280 -#: includes/listings/class-listings-content-renderer.php:171 +#: includes/functions/listings.php:290 +#: includes/listings/class-listings-content-renderer.php:184 msgid "An error occurred while trying to flag the Ad." msgstr "Nastala chyba pri pokuse o označenie inzerátu." -#: includes/functions/listings.php:317 +#: includes/functions/listings.php:327 msgid "" "Sorry, that listing is not available. Please try browsing or searching " "existing listings." msgstr "" -#: includes/functions/listings.php:334 +#: includes/functions/listings.php:344 msgid "" "The Ad you are trying to view is pending approval. Once the Administrator " "approves it, it will be active and visible." @@ -3986,12 +4123,12 @@ msgstr "" "Inzerát, ktorý si želáte zobraziť čaká na schválenie. Akonáhle ho " "administrátor schváli, bude aktívny a viditeľný." -#: includes/functions/listings.php:340 +#: includes/functions/listings.php:350 #: includes/listings/class-listings-content-renderer.php:106 msgid "Your email address was successfully verified." msgstr "Vaša e-mailová adresa bola úspešne overená." -#: includes/functions/listings.php:344 +#: includes/functions/listings.php:354 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the Administrator) and the author can see it." @@ -3999,7 +4136,7 @@ msgstr "" "Inzerát je vypnutý než ho administrátor schváli. Môžete ho vidieť iba vy " "(administrátor) a autor." -#: includes/functions/listings.php:347 +#: includes/functions/listings.php:357 msgid "" "This Ad is currently disabled until you verify the email address used for " "the contact information. Only you (the author) can see it." @@ -4007,7 +4144,7 @@ msgstr "" "Inzerát je vypnutý než overíme emailovú adresu. Môžete ho vidieť iba vy " "(administrátor) a autor." -#: includes/functions/listings.php:350 +#: includes/functions/listings.php:360 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the author) can see it." @@ -4025,13 +4162,13 @@ msgid "Listing \"%s\" was updated" msgstr "" #. translators: %s is the listing title. -#: includes/functions/notifications.php:147 +#: includes/functions/notifications.php:146 msgid "Images on listing \"%s\" are awaiting approval" msgstr "" #. translators: %1$s is the listing title. %2$s is the URL for managing listing #. images. -#: includes/functions/notifications.php:150 +#: includes/functions/notifications.php:149 msgid "" "Images on Ad \"%1$s\" are awaiting approval. You can approve the images " "going to the Manage Images section for that Ad and clicking the \"Enable\" " @@ -4039,11 +4176,11 @@ msgid "" msgstr "" #. translators: %s is the listing title. -#: includes/functions/notifications.php:154 +#: includes/functions/notifications.php:153 msgid "Listing \"%s\" is awaiting approval" msgstr "" -#: includes/functions/notifications.php:202 +#: includes/functions/notifications.php:201 msgid "Listing was flagged" msgstr "" @@ -4061,7 +4198,7 @@ msgid "Missing License Status parameter" msgstr "" #: includes/helpers/class-easy-digital-downloads.php:53 -msgid "License Status parameter was set to Failed" +msgid "License Status parameter was set to Failed" msgstr "" #: includes/helpers/class-easy-digital-downloads.php:57 @@ -4144,7 +4281,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: includes/helpers/class-modules-manager.php:217 +#: includes/helpers/class-modules-manager.php:220 msgid "" "The version of AWPCP {modules_names} is not compatible with version " "{awpcp_version}." @@ -4156,11 +4293,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: includes/helpers/class-modules-manager.php:219 +#: includes/helpers/class-modules-manager.php:222 msgid "Please get AWPCP {required_modules_versions} or newer!" msgstr "" -#: includes/helpers/class-modules-manager.php:250 +#: includes/helpers/class-modules-manager.php:256 msgid "" "The license for AWPCP is inactive. All features will remain " "disabled until you activate the license. Please go to the requires a license to be used. All features will " "remain disabled until a valid license is entered. Please go to the expired. The module will continue to " "work but you will not receive automatic updates when a new version is " @@ -4203,7 +4340,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: includes/helpers/class-modules-manager.php:281 +#: includes/helpers/class-modules-manager.php:299 msgid "" "The AWPCP is currently disabled because it requires you to " "perform a manual upgrade before continuing. Please go to the " @@ -4217,17 +4354,17 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: includes/helpers/class-modules-manager.php:294 +#: includes/helpers/class-modules-manager.php:312 msgid "The specified module does not exists!." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:56 +#: includes/helpers/class-recaptcha-v3.php:78 msgid "" "There was an error trying to analyze the current interaction with reCAPTCHA. " "" msgstr "" -#: includes/helpers/class-recaptcha-v3.php:98 +#: includes/helpers/class-recaptcha-v3.php:120 msgid "" "The current interaction was not approved by reCAPTCHA. Please try again." msgstr "" @@ -4288,11 +4425,11 @@ msgstr "" "Nastala chyba pri spracovaní platby. Prosím skúste platbu zopakovať alebo " "kontaktujte administrátora." -#: includes/helpers/widgets/class-user-field.php:32 +#: includes/helpers/widgets/class-user-field.php:48 msgid "Select an User" msgstr "" -#: includes/helpers/widgets/multiple-region-selector.php:123 +#: includes/helpers/widgets/multiple-region-selector.php:143 msgid "" "This particular region is already selected in another field. Please choose " "one or more sub-regions, to make the selection more specific, or change the " @@ -4301,19 +4438,19 @@ msgstr "" "Tento región je už vybraný v inom poli. Prosím vyberte jeden alebo viac pod " "regiónov pre lepšie určenie regiónu, alebo zmeňte vybraný región." -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Search Region" msgstr "Pridajte región do vyľadávania" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Region" msgstr "Pridať región" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Delete Search Region" msgstr "Odstráňte región z vyhľadávania" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Remove Region" msgstr "Odstrániť región" @@ -4375,6 +4512,11 @@ msgstr "" msgid "There was an error trying to update the database." msgstr "" +#: includes/media/class-attachment-action-ajax-handler.php:53 +#, fuzzy +msgid "You are not allowed to perform this action." +msgstr "Nemáte povolený nákup kreditov." + #: includes/media/class-attachment-action-ajax-handler.php:57 msgid "The specified file is not associated with Listing with ID %d." msgstr "" @@ -4462,43 +4604,43 @@ msgid "" "count> bytes. The file was not uploaded." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:51 +#: includes/media/class-listings-media-uploader-component.php:56 msgid "" "You can upload images of up to each, " " videos of up to each and " "other files of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:52 +#: includes/media/class-listings-media-uploader-component.php:57 msgid "" "You can upload images of up to each and " " other files (no videos) of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:53 +#: includes/media/class-listings-media-uploader-component.php:58 msgid "" "You can upload images of up to each and " " videos of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:54 +#: includes/media/class-listings-media-uploader-component.php:59 msgid "" "You can upload videos of up to each and " " other files (no images) of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:55 +#: includes/media/class-listings-media-uploader-component.php:60 msgid "" "You can upload images of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:56 +#: includes/media/class-listings-media-uploader-component.php:61 msgid "" "You can upload files (no videos or images) of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:57 +#: includes/media/class-listings-media-uploader-component.php:62 msgid "" "You can upload videos of up to each." msgstr "" @@ -4594,15 +4736,15 @@ msgstr "" msgid "General" msgstr "Všeobecné" -#: includes/models/payment-transaction.php:225 +#: includes/models/payment-transaction.php:232 msgid "The transaction must be assigned to a WordPress user." msgstr "Transakcia musí byť priradená používateľovi WordPress." -#: includes/models/payment-transaction.php:238 +#: includes/models/payment-transaction.php:245 msgid "The transaction has no items." msgstr "Transakcie neobsahuje položky." -#: includes/models/payment-transaction.php:250 +#: includes/models/payment-transaction.php:257 msgid "" "The amount of credit in your account is not enough to pay for the selected " "items. Please choose one of the available Credit Plans in addition to the " @@ -4614,7 +4756,7 @@ msgstr "" "kreditov alebo si dokúpte kredity na stránke vašeho účtu.
Počet " "chýbajúcich kreditov: %d" -#: includes/models/payment-transaction.php:252 +#: includes/models/payment-transaction.php:259 msgid "" "The selected Credit Plan is not enough to pay for the selected items. Please " "choose a bigger Credit Plan or add credit to your account from your Profile " @@ -4624,11 +4766,11 @@ msgstr "" "vyberte si väčsí plán kreditov pod položkou pre pridanie kreditov alebo si " "dokúpte kredity na stránke vašeho účtu.
Počet chýbajúcich kreditov: %d" -#: includes/models/payment-transaction.php:282 +#: includes/models/payment-transaction.php:289 msgid "You must select a payment method." msgstr "Musíte vybrať platnú metódu platby." -#: includes/models/payment-transaction.php:294 +#: includes/models/payment-transaction.php:301 msgid "The payment status for this transaction hasn't been defined." msgstr "Stav tejto transakcie nebol definovaný." @@ -4645,7 +4787,7 @@ msgstr "" "nevykonávali platbu, považujte túto správu za bezpredmetnú. Jedná sa o chybu." #: includes/payment-gateway-2checkout.php:101 -#: includes/payment-gateway-paypal-standard.php:140 +#: includes/payment-gateway-paypal-standard.php:142 msgid "" "The amount you have paid does not match the required amount for this " "transaction. Please contact us to clarify the problem." @@ -4654,7 +4796,7 @@ msgstr "" "nás pre vyriešenie problému." #: includes/payment-gateway-2checkout.php:109 -#: includes/payment-gateway-paypal-standard.php:148 +#: includes/payment-gateway-paypal-standard.php:150 msgid "" "There was an error processing your transaction. If funds have been deducted " "from your account, they have not been processed to our account. You will " @@ -4665,7 +4807,7 @@ msgstr "" "kontaktovať PayPal." #: includes/payment-gateway-2checkout.php:119 -#: includes/payment-gateway-paypal-standard.php:158 +#: includes/payment-gateway-paypal-standard.php:160 msgid "" "It appears this transaction has already been processed. If you do not see " "your ad in the system please contact the site adminstrator for assistance." @@ -4674,7 +4816,7 @@ msgstr "" "kontaktujte administrátora " #. translators: %s link url. -#: includes/payment-gateway-paypal-standard.php:58 +#: includes/payment-gateway-paypal-standard.php:60 msgid "" "We haven't received your payment information from PayPal yet and we are " "unable to verify your transaction. Please reload this page or visit admin section to change the order in which " "the fields mentioned below are shown to users in the Ad Details form." msgstr "" -#: includes/settings/class-display-settings.php:452 +#: includes/settings/class-display-settings.php:451 msgid "Form Fields Behavior" msgstr "" -#: includes/settings/class-display-settings.php:461 +#: includes/settings/class-display-settings.php:460 #: templates/admin/import/supported-csv-headers.tpl.php:18 msgid "Field" msgstr "" -#: includes/settings/class-display-settings.php:462 +#: includes/settings/class-display-settings.php:461 msgid "Show field on form" msgstr "" -#: includes/settings/class-display-settings.php:463 +#: includes/settings/class-display-settings.php:462 msgid "Show field on search form" msgstr "" -#: includes/settings/class-display-settings.php:464 +#: includes/settings/class-display-settings.php:463 #: templates/admin/import/supported-csv-headers.tpl.php:19 msgid "Required" msgstr "Požadovaný" -#: includes/settings/class-display-settings.php:465 +#: includes/settings/class-display-settings.php:464 msgid "Show value to registered users only" msgstr "" -#: includes/settings/class-display-settings.php:469 +#: includes/settings/class-display-settings.php:468 msgid "Website" msgstr "Adresa webu" @@ -5521,26 +5663,25 @@ msgstr "" "uistite sa, že vaša WordPress emailová adresa administrátora je viazaná na " "váš hosting." -#. translators: full-email-address=John Doe , -#. short-email-address=john.doe@example.com -#: includes/settings/class-email-settings.php:84 +#. translators: %1$s=John Doe , %2$s=john.doe@example.com +#: includes/settings/class-email-settings.php:85 msgid "" "If checked, whenever the name of the recipient is available, emails will be " -"sent to instead of just . Some " -"email servers, however, have problems handling email address that include " -"the name of the recipient. If emails sent by the plugin are not being " -"delivered properly, try unchecking this settting." +"sent to %1$s instead of just %2$s. Some email servers, however, have " +"problems handling email address that include the name of the recipient. If " +"emails sent by the plugin are not being delivered properly, try unchecking " +"this settting." msgstr "" -#: includes/settings/class-email-settings.php:91 +#: includes/settings/class-email-settings.php:93 msgid "Include the name of the recipient in the email address" msgstr "" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "Include Ad access key in email messages" msgstr "Vložiť do emailov prístupový kľúč inzerátu" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "" "Include Ad access key in email notifications. You may want to uncheck this " "option if you are using the Ad Management panel, but is not necessary." @@ -5548,94 +5689,94 @@ msgstr "" "Zahrnúť prístupový kľúč do emailových oznámení. Toto nastavenie možno budete " "chcieť zrušiť ak používate panel správy inzerátov. Nie je to však nutné." -#: includes/settings/class-email-settings.php:106 +#: includes/settings/class-email-settings.php:108 msgid "Messages" msgstr "Správy" -#: includes/settings/class-email-settings.php:118 +#: includes/settings/class-email-settings.php:120 msgid "Ad Posted Message" msgstr "Správa: Inzerát uverejnený" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject for Ad posted notification email" msgstr "Predmet správy: Inzerát uverejnený" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Your Classified Ad listing has been submitted" msgstr "Váš inzerát bol uverejnený." -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject line for email sent out when someone posts an Ad" msgstr "Predmet emailu, ktorý sa odosiela, keď niekto odošle inzerát" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Body for Ad posted notification email" msgstr "Telo oznamovacej správy: Inzerát uverejnený" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "" "Thank you for submitting your Classified Ad. The details of your ad are " "shown below." msgstr "Vďaka za odoslanie vašeho inzerátu. Podrobnosti nájdete nižšie." -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Message body text for email sent out when someone posts an Ad" msgstr "Telo emailu, ktorý sa odosiela, keď niekto odošle inzerát" -#: includes/settings/class-email-settings.php:127 +#: includes/settings/class-email-settings.php:129 msgid "Reply to Ad Message" msgstr "Správa: Odpoveď na inzerát" -#: includes/settings/class-email-settings.php:132 +#: includes/settings/class-email-settings.php:134 msgid "Response notification for listing owners" msgstr "" -#: includes/settings/class-email-settings.php:139 +#: includes/settings/class-email-settings.php:141 msgid "" "Subject and body template for email sent out when someone replies to an ad." msgstr "" -#: includes/settings/class-email-settings.php:141 -#: includes/settings/class-email-settings.php:167 -msgid "The name of the person who replied." -msgstr "" - -#: includes/settings/class-email-settings.php:142 -#: includes/settings/class-email-settings.php:168 -msgid "The email adderss of the person who replied." -msgstr "" - #: includes/settings/class-email-settings.php:143 #: includes/settings/class-email-settings.php:169 -#: includes/settings/class-email-settings.php:206 -msgid "The title of the ad where the reply was posted." +msgid "The name of the person who replied." msgstr "" #: includes/settings/class-email-settings.php:144 #: includes/settings/class-email-settings.php:170 -msgid "The URL for the ad where the reply was posted." +msgid "The email adderss of the person who replied." msgstr "" #: includes/settings/class-email-settings.php:145 #: includes/settings/class-email-settings.php:171 -msgid "The content of the reply." +#: includes/settings/class-email-settings.php:208 +msgid "The title of the ad where the reply was posted." msgstr "" #: includes/settings/class-email-settings.php:146 #: includes/settings/class-email-settings.php:172 -msgid "The title of this website" +msgid "The URL for the ad where the reply was posted." msgstr "" #: includes/settings/class-email-settings.php:147 #: includes/settings/class-email-settings.php:173 +msgid "The content of the reply." +msgstr "" + +#: includes/settings/class-email-settings.php:148 +#: includes/settings/class-email-settings.php:174 +msgid "The title of this website" +msgstr "" + +#: includes/settings/class-email-settings.php:149 +#: includes/settings/class-email-settings.php:175 msgid "The URL of this website's homepage" msgstr "" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "Notify admin about contact message" msgstr "Oznámiť administrátorovi odpoveď na inzerát" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "" "An email will be sent to the administrator every time a visitor sends a " "message to one of the Ad posters through the Reply to Ad page." @@ -5643,29 +5784,29 @@ msgstr "" "Email zasielaný administrátorovi, vždy keď niekto odpovie na inzerát pomocou " "stránky: Odpovedať na inzerát." -#: includes/settings/class-email-settings.php:158 +#: includes/settings/class-email-settings.php:160 msgid "Response notification for administrators" msgstr "" -#: includes/settings/class-email-settings.php:165 +#: includes/settings/class-email-settings.php:167 msgid "" "Subject and body template for email sent out to administrators when someone " "replies to an ad." msgstr "" -#: includes/settings/class-email-settings.php:183 +#: includes/settings/class-email-settings.php:185 msgid "Resend Access Key Message" msgstr "Znova odoslať správu s prístupovým kľúčom" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "Subject for Request Ad Access Key email" msgstr "Predmet správy: Vyžiadanie prístupového kľúča inzerátu" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "The Classified Ad's ad access key you requested" msgstr "Prístupový kľúč inzerátu, ktorý ste si vyžiadali." -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "" "Subject line for email sent out when someone requests their ad access key " "resent" @@ -5673,11 +5814,11 @@ msgstr "" "Predmet emailu, ktorý sa odosiela, keď niekto si vyžiadal znova zaslať " "prístupový kľúč." -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "Body for Request Ad Access Key email" msgstr "Telo správy: Žiadost o prístupový kľúč" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "You asked to have your Classified Ad's access key resent. Below are all the " "Ad access keys in the system that are tied to the email address you provided" @@ -5685,7 +5826,7 @@ msgstr "" "Žiadali ste o opakované zaslanie prístupového kľúča. Nižšie sú zobrazené " "prístupové kľúče spojené s poskytnutou emailovou adresou." -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "Message body text for email sent out when someone requests their ad access " "key resent" @@ -5693,61 +5834,82 @@ msgstr "" "Telo emailu, ktorý sa odosiela, keď niekto vyžiada opakované odoslanie " "prístupového kľúča" -#: includes/settings/class-email-settings.php:192 +#: includes/settings/class-email-settings.php:194 msgid "Verify Email Message" msgstr "" -#: includes/settings/class-email-settings.php:197 +#: includes/settings/class-email-settings.php:199 msgid "Subject and body for verify email message" msgstr "" -#: includes/settings/class-email-settings.php:200 +#: includes/settings/class-email-settings.php:202 msgid "Verify the email address used for Ad {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:204 +#: includes/settings/class-email-settings.php:203 +msgid "" +"Hello {author_name} \n" +"\n" +"You recently posted the Ad {listing_title} to {website_title}. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"{verification_link} \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"{website_title}\n" +"\n" +"{website_url}" +msgstr "" + +#: includes/settings/class-email-settings.php:206 msgid "" "Subject and body template for email sent out to verify the email address." msgstr "" -#: includes/settings/class-email-settings.php:207 +#: includes/settings/class-email-settings.php:209 msgid "The name of the owner of the listing." msgstr "" -#: includes/settings/class-email-settings.php:208 +#: includes/settings/class-email-settings.php:210 msgid "Verification link." msgstr "" -#: includes/settings/class-email-settings.php:209 +#: includes/settings/class-email-settings.php:211 msgid "The title of this website." msgstr "" -#: includes/settings/class-email-settings.php:210 +#: includes/settings/class-email-settings.php:212 msgid "The URL of this webiste's homepage." msgstr "" -#: includes/settings/class-email-settings.php:220 +#: includes/settings/class-email-settings.php:222 msgid "Incomplete Payment Message" msgstr "Správa pri nedokončenej platbe" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "Subject for Incomplete Payment email" msgstr "Predmet správy: Nedokončená platba" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "There was a problem processing your payment" msgstr "Nastala chyba pri spracovaní vašej platby" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "" "Subject line for email sent out when the payment processing does not complete" msgstr "Predmet emailu, ktorý sa odosiela, keď zlyhá spracovanie platby." -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "Body for Incomplete Payment email" msgstr "Telo správy: Nedokončená platba" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "There was a problem encountered during your attempt to submit payment. If " "funds were removed from the account you tried to use to make a payment " @@ -5758,36 +5920,36 @@ msgstr "" "účtu, prosím kontaktujte administrátora stránky alebo technickú podporu " "použitej služby pri platení." -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "Message body text for email sent out when the payment processing does not " "complete" msgstr "Telo emailu, ktorý sa odosiela, keď platba neprebehne správne" -#: includes/settings/class-email-settings.php:229 +#: includes/settings/class-email-settings.php:231 msgid "Renew Ad Message" msgstr "Správa: Obnoviť inzerát" -#: includes/settings/class-email-settings.php:234 +#: includes/settings/class-email-settings.php:236 msgid "Subject for Renew Ad email" msgstr "Predmet správy: Obnoviť inzerát" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:237 +#: includes/settings/class-email-settings.php:239 msgid "Your ad will expire in %d days." msgstr "" -#: includes/settings/class-email-settings.php:238 +#: includes/settings/class-email-settings.php:240 msgid "Subject line for email sent out when an Ad is about to expire." msgstr "Predmet emailu, ktorý sa odosiela, keď inzerát za chvíľu vyprší" -#: includes/settings/class-email-settings.php:244 -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:246 +#: includes/settings/class-email-settings.php:270 msgid "Body for Renew Ad email" msgstr "Telo správy: Obnoviť inzerát" #. translators: %d is the number of days until the ad expires. -#: includes/settings/class-email-settings.php:247 +#: includes/settings/class-email-settings.php:249 msgid "" "This is an automated notification that your Classified Ad will expire in %d " "days." @@ -5797,7 +5959,7 @@ msgstr "" #. translators: %d in this case is used to remind the user they can enter '%d' #. in the textarea where they want the plugin to replace the number of days #. until the ad expires. -#: includes/settings/class-email-settings.php:249 +#: includes/settings/class-email-settings.php:251 msgid "" "Message body text for email sent out when an Ad is about to expire. Use %d " "as placeholder for the number of days before the Ad expires." @@ -5805,117 +5967,117 @@ msgstr "" "Telo emailu, ktorý sa odosiela, keď inzerát za chvíľu vyprší. Použite " "zástupný znak %d pre zadanie počtu dní než inzerát vyprší." -#: includes/settings/class-email-settings.php:256 +#: includes/settings/class-email-settings.php:258 msgid "Ad Renewed Message" msgstr "Správa pri obnovení inzerátu" -#: includes/settings/class-email-settings.php:261 +#: includes/settings/class-email-settings.php:263 msgid "Subject for Ad Renewed email" msgstr "Predmet správy: Obnovený inzerát" #. translators: %s is the title of the ad. -#: includes/settings/class-email-settings.php:264 +#: includes/settings/class-email-settings.php:266 msgid "Your ad \"%s\" has been successfully renewed." msgstr "" -#: includes/settings/class-email-settings.php:265 +#: includes/settings/class-email-settings.php:267 msgid "Subject line for email sent out when an Ad is successfully renewed." msgstr "Predmet emailu, ktorý sa odosiela, keď je inzerát úspešne obnovený." -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "Your ad has been successfully renewed. More information below:" msgstr "" -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "" "Message body text for email sent out when an Ad is successfully renewed. " msgstr "Telo emailu, ktorý sa odosiela po úspešnom obnovení inzerátu." -#: includes/settings/class-email-settings.php:274 +#: includes/settings/class-email-settings.php:276 msgid "Ad Expired Message" msgstr "Správa: Inzerát vypršal" -#: includes/settings/class-email-settings.php:279 +#: includes/settings/class-email-settings.php:281 msgid "Subject for Ad Expired email" msgstr "Predmet správy: Inzerát vypršal" #. translators: %s is the name of the website. -#: includes/settings/class-email-settings.php:282 +#: includes/settings/class-email-settings.php:284 msgid "Your ad at %s has expired" msgstr "" -#: includes/settings/class-email-settings.php:283 +#: includes/settings/class-email-settings.php:285 msgid "Subject line for email sent out when an ad has auto-expired" msgstr "Predmet emailu, ktorý sa odosiela, keď je inzerát vypršal" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Body for Ad Expired email" msgstr "Telo správy: Inzerát vypršal" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "This is an automated notification that your ad has expired." msgstr "" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Message body text for email sent out when an ad has auto-expired" msgstr "Telo emailu, ktorý sa odosiela, keď je inzerát vypršal" -#: includes/settings/class-email-settings.php:295 +#: includes/settings/class-email-settings.php:297 #: includes/settings/class-general-settings.php:599 msgid "Advanced" msgstr "Pokročilé" -#: includes/settings/class-email-settings.php:305 +#: includes/settings/class-email-settings.php:307 msgid "Advanced Email Configuration" msgstr "Pokročilé nastavenie emailov" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enable external SMTP server" msgstr "Povoliť externý SMTP server" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enabled external SMTP server (if emails not processing normally)." msgstr "Povoliť externý SMTP server (ak emaily nefungujú správne)." -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host" msgstr "SMTP host" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host (if emails not processing normally)." msgstr "Povoliť externý SMTP server (ak emaily nefungujú správne)." -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port" msgstr "SMTP port" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port (if emails not processing normally)." msgstr "SMTP port (ak emaily nefungujú správne)." -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username" msgstr "SMTP používateľské meno" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username (if emails not processing normally)." msgstr "SMTP používateľské meno (ak emaily nefungujú správne)." -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password" msgstr "SMTP heslo" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password (if emails not processing normally)." msgstr "SMTP heslo (ak emaily nefungujú správne)." -#: includes/settings/class-email-settings.php:316 +#: includes/settings/class-email-settings.php:318 msgid "" " is not a valid email address. Please check the value you entered " "to use as the FROM email address for outgoing messages." msgstr "" -#: includes/settings/class-email-settings.php:317 +#: includes/settings/class-email-settings.php:319 msgid "" " is not a valid email address. Please check the value you entered " "to use as recipient email address for admin notifications." @@ -6833,14 +6995,17 @@ msgid "" "the Webhooks URL and Event Name you define." msgstr "" -#: includes/settings/class-general-settings.php:919 +#. translators: %1$s is the link to Facebook Developer Apps page. %2$s is the +#. closing anchor tag. +#: includes/settings/class-general-settings.php:921 +#, fuzzy msgid "" -"You can find your application information in the Facebook Developer Apps page." +"You can find your application information in the %1$sFacebook Developer " +"Apps%2$s page." msgstr "" "Informácie môžete nájsť na stránke Vývojárov Facebook aplikácii." -#: includes/settings/class-general-settings.php:935 +#: includes/settings/class-general-settings.php:936 msgid "" "AWPCP needs to get an authorization token from Facebook to work correctly. " "You'll be redirected to Facebook to login. AWPCP does not store or obtain " @@ -6849,70 +7014,67 @@ msgstr "" "AWPCP potrebuje autorizáciou pomocou tokenu z Facebooku. Budete presmerovaný " "na stránku Facebook. AWPCP neukladá žiadne osobné informácie z vášho profilu." -#: includes/settings/class-general-settings.php:936 +#: includes/settings/class-general-settings.php:937 msgid "" "Please choose Public as the audience for posts made by the application, even " "if you are just testing the integration. Facebook won't allow us to post " "content in some cases if you choose something else." msgstr "" -#: includes/settings/class-general-settings.php:945 +#: includes/settings/class-general-settings.php:947 msgid "Click here to obtain an access token from Facebook" msgstr "" -#: includes/settings/class-general-settings.php:947 +#: includes/settings/class-general-settings.php:951 msgid "" "Please provide a value for the App Id and App Secret settings before trying " "to get an access token from Facebook." msgstr "" -#: includes/settings/class-general-settings.php:958 +#: includes/settings/class-general-settings.php:960 msgid "" "Available Facebook Pages and Groups will be displayed after you enter a " "valid User Access Token." msgstr "" -#: includes/settings/class-general-settings.php:959 +#. translators: %1$s opening anchor tag, %2$s closing anchor tag, %3$s opening +#. anchor tag, %4$s closing anchor tag, %5$s opening anchor tag, %6$s closing +#. anchor tag, %7$s opening anchor tag, %8$s closing anchor tag +#: includes/settings/class-general-settings.php:964 msgid "" -"As of April 4, 2018, all applications need to go through App Review " -"in order to get access to the Page API and Groups API. That means that you may need to submit your app for review (ask for the " -"manage_pages, publish_pages, " -"publish_to_groups permissions), before AWPCP can display the " +"All applications need to go through %1$sApp Review%2$s in order to get " +"access to the %3$sPage API%4$s and %5$sGroups API%6$s. That means that you " +"may need to %7$ssubmit your app for review%8$s (ask for the manage_pages, " +"publish_pages, publish_to_groups permissions), before AWPCP can display the " "list of pages and groups you manage and be able to post classifieds ads to " "those groups and pages." msgstr "" -#: includes/settings/class-general-settings.php:977 +#: includes/settings/class-general-settings.php:989 msgid "None (Do not sent ads to a Facebook Page)" msgstr "" -#: includes/settings/class-general-settings.php:984 +#: includes/settings/class-general-settings.php:996 msgid "(Your own profile page)" msgstr "(Stránka vášho profilu)" -#: includes/settings/class-general-settings.php:1008 +#: includes/settings/class-general-settings.php:1020 msgid "None (Do not sent ads to a Facebook Group)" msgstr "" -#: includes/settings/class-general-settings.php:1064 +#: includes/settings/class-general-settings.php:1076 msgid "" "Akismet SPAM control cannot be enabled because Akismet plugin is not " "installed or activated." msgstr "" -#: includes/settings/class-general-settings.php:1068 +#: includes/settings/class-general-settings.php:1080 msgid "" "Akismet SPAM control cannot be enabled because Akismet is not properly " "configured." msgstr "" -#: includes/settings/class-general-settings.php:1094 +#: includes/settings/class-general-settings.php:1106 msgid "" "reCAPTCHA can't be used because the public key and private key settings are " "required for reCAPTCHA to work properly." @@ -6920,7 +7082,7 @@ msgstr "" "reCAPTCHA nemôže byť použitá pretože pre správnu funkčnosť vyžaduje " "nastavenie verejného a súkromného kľúča." -#: includes/settings/class-general-settings.php:1096 +#: includes/settings/class-general-settings.php:1108 msgid "" "reCAPTCHA can't be used because the public key setting is required for " "reCAPTCHA to work properly." @@ -6928,7 +7090,7 @@ msgstr "" "reCAPTCHA nemôže byť použitá pretože pre správnu funkčnosť vyžaduje " "nastavenie verejného kľúča." -#: includes/settings/class-general-settings.php:1098 +#: includes/settings/class-general-settings.php:1110 msgid "" "reCAPTCHA can't be used because the private key setting is required for " "reCAPTCHA to work properly." @@ -6936,11 +7098,11 @@ msgstr "" "reCAPTCHA nemôže byť použitá pretože pre správnu funkčnosť vyžaduje " "nastavenie súkromného kľúča." -#: includes/settings/class-general-settings.php:1145 +#: includes/settings/class-general-settings.php:1157 msgid "Thousands separator and decimal separator cant be the same." msgstr "" -#: includes/settings/class-general-settings.php:1159 +#: includes/settings/class-general-settings.php:1171 msgid "" "Credit System was automatically disabled because you disabled Require " "Registration setting." @@ -6957,10 +7119,17 @@ msgid "Licenses" msgstr "Licencie" #: includes/settings/class-licenses-settings.php:64 -#: templates/admin/debug/plugin-info-debug-section.tpl.php:18 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:24 msgid "Premium Modules" msgstr "Prémiové moduly" +#: includes/settings/class-licenses-settings.php:82 +msgid "" +"The IP address of your server is %s. Please make sure to include that " +"information if you need to contact support about problems trying to activate " +"your licenses." +msgstr "" + #: includes/settings/class-listings-moderation-settings.php:22 msgid "" "Email verification was disabled because you enabled Require Registration. " @@ -7319,97 +7488,97 @@ msgstr "Zobraziť kategóriu v nadpise inzerátu?" msgid "Show category in browser page title when viewing individual Ad" msgstr "Zobrazí kategóriu v názve stránky pri prezeraní inzerátu." -#: includes/settings/class-listings-settings.php:472 +#: includes/settings/class-listings-settings.php:473 msgid "" "Enable this setting to display each listing on its own page, instead of " -"showing the listing's content inside the page." +"showing the listing's content inside the %s page." msgstr "" -#: includes/settings/class-listings-settings.php:478 +#: includes/settings/class-listings-settings.php:480 msgid "Display listings on their own page" msgstr "" -#: includes/settings/class-listings-settings.php:486 +#: includes/settings/class-listings-settings.php:488 msgid "" "Portion of the URL that appears between the website's domain and the " "listing's information. Example: in ." msgstr "" -#: includes/settings/class-listings-settings.php:496 +#: includes/settings/class-listings-settings.php:498 msgid "Listings slug" msgstr "" -#: includes/settings/class-listings-settings.php:509 +#: includes/settings/class-listings-settings.php:511 msgid "" "Include the slug of the plugin's main page () in the URL " "that points to the page of an individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:512 +#: includes/settings/class-listings-settings.php:514 msgid "" "Include the slug of the plugin's main page in the URL that points to the " "page of an individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:518 +#: includes/settings/class-listings-settings.php:520 msgid "Include the slug of the plugin's main page in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:532 +#: includes/settings/class-listings-settings.php:534 msgid "Include the title in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:535 +#: includes/settings/class-listings-settings.php:537 msgid "" "Include the title in the URL that points to the page of an individual " "listing." msgstr "" -#: includes/settings/class-listings-settings.php:541 +#: includes/settings/class-listings-settings.php:543 msgid "Include the name of the category in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:544 +#: includes/settings/class-listings-settings.php:546 msgid "" "Include the name of the category in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:550 +#: includes/settings/class-listings-settings.php:552 msgid "Include the name of the country in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:553 +#: includes/settings/class-listings-settings.php:555 msgid "" "Include the name of the country in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:559 +#: includes/settings/class-listings-settings.php:561 msgid "Include the name of the state in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:562 +#: includes/settings/class-listings-settings.php:564 msgid "" "Include the name of the state in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:568 +#: includes/settings/class-listings-settings.php:570 msgid "Include the name of the city in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:571 +#: includes/settings/class-listings-settings.php:573 msgid "" "Include the name of the city in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:577 +#: includes/settings/class-listings-settings.php:579 msgid "Include the name of the county in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:580 +#: includes/settings/class-listings-settings.php:582 msgid "" "Include the name of the county in the URL that points to the page of an " "individual listing." @@ -7570,29 +7739,25 @@ msgid "" "not support HTTPS." msgstr "" -#: includes/settings/class-payment-general-settings.php:109 +#: includes/settings/class-payment-general-settings.php:108 msgid "" "Force Secure URLs was not enabled because your website couldn't be accessed " "using a secure connection." msgstr "" -#: includes/settings/class-payment-general-settings.php:135 -msgid "PayPal" -msgstr "PayPal" - -#: includes/settings/class-payment-general-settings.php:140 +#: includes/settings/class-payment-general-settings.php:139 msgid "PayPal Settings" msgstr "Nastavenia PayPal" -#: includes/settings/class-payment-general-settings.php:142 +#: includes/settings/class-payment-general-settings.php:141 msgid "Activate PayPal?" msgstr "Aktivovať PayPal?" -#: includes/settings/class-payment-general-settings.php:146 +#: includes/settings/class-payment-general-settings.php:145 msgid "PayPal receiver email" msgstr "Email prijímateľa PayPal" -#: includes/settings/class-payment-general-settings.php:149 +#: includes/settings/class-payment-general-settings.php:148 msgid "" "Email address for PayPal payments (if running in pay mode and if PayPal is " "activated)." @@ -7600,111 +7765,109 @@ msgstr "" "Emailová adresa na prijímanie platieb. (ak je stránka v platobnom móde a " "PayPal je aktívny)" -#: includes/settings/class-payment-general-settings.php:167 +#: includes/settings/class-payment-general-settings.php:166 msgid "PayPal Merchant ID" msgstr "" #: includes/settings/class-payment-general-settings.php:170 msgid "" "Merchant ID associated with the PayPal account that will receive the " -"payments. Go to https://www.paypal.com/myaccount/settings/ to obtain " -"your Merchant ID." +"payments. Go to %s to obtain your Merchant ID." msgstr "" -#: includes/settings/class-payment-general-settings.php:178 +#: includes/settings/class-payment-general-settings.php:180 msgid "The PayPal Currency Code must be one of ." msgstr "" -#: includes/settings/class-payment-general-settings.php:183 +#: includes/settings/class-payment-general-settings.php:185 msgid "PayPal currency code" msgstr "Kód meny PayPal" -#: includes/settings/class-payment-general-settings.php:186 +#: includes/settings/class-payment-general-settings.php:188 msgid "The currency in which you would like to receive your PayPal payments" msgstr "Mena v ktorej by ste radi dostávali platby cez službu PayPal" -#: includes/settings/class-payment-general-settings.php:209 +#: includes/settings/class-payment-general-settings.php:211 msgid "2Checkout" msgstr "2Checkout" -#: includes/settings/class-payment-general-settings.php:214 +#: includes/settings/class-payment-general-settings.php:216 msgid "2Checkout Settings" msgstr "Nastavenia 2Checkout" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout" msgstr "Aktivavať 2Checkout " -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout?" msgstr "Aktivovať 2Checkout?" -#: includes/settings/class-payment-general-settings.php:220 +#: includes/settings/class-payment-general-settings.php:222 msgid "2Checkout account" msgstr "Účet 2Checkout" -#: includes/settings/class-payment-general-settings.php:223 +#: includes/settings/class-payment-general-settings.php:225 msgid "Account for 2Checkout payments." msgstr "" -#: includes/settings/class-payment-general-settings.php:238 +#: includes/settings/class-payment-general-settings.php:240 msgid "2Checkout Currency Code" msgstr "" -#: includes/settings/class-payment-general-settings.php:249 +#: includes/settings/class-payment-general-settings.php:251 msgid "The currency in which you would like to receive your 2Checkout payments" msgstr "" -#: includes/settings/class-payment-general-settings.php:261 -#: includes/settings/class-payment-general-settings.php:266 +#: includes/settings/class-payment-general-settings.php:263 +#: includes/settings/class-payment-general-settings.php:268 msgid "Credit System" msgstr "Systém kreditov" -#: includes/settings/class-payment-general-settings.php:269 +#: includes/settings/class-payment-general-settings.php:271 msgid "Currency" msgstr "Mena" -#: includes/settings/class-payment-general-settings.php:271 +#: includes/settings/class-payment-general-settings.php:273 msgid "Currency & Credits" msgstr "Mena a kredity" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "Enable Credit System" msgstr "Povoliť systém kreditov" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "" "The Credit System allows users to purchase credit that can later be used to " "pay for placing Ads." msgstr "" -#: includes/settings/class-payment-general-settings.php:279 +#: includes/settings/class-payment-general-settings.php:281 msgid "Accepted payment type" msgstr "Akceptované typy platieb." -#: includes/settings/class-payment-general-settings.php:282 +#: includes/settings/class-payment-general-settings.php:284 msgid "Select the type of payment that can be used to purchase Ads." msgstr "Vyberte typ platby, ktorý môže byť použitý na nákup inzerátov." -#: includes/settings/class-payment-general-settings.php:294 +#: includes/settings/class-payment-general-settings.php:296 msgid "" "You cannot configure Credits as the only accepted payment type unless you " "enable the Credit System as well. The setting was set to accept both " "Currency and Credits." msgstr "" -#: includes/settings/class-payment-general-settings.php:311 +#: includes/settings/class-payment-general-settings.php:313 msgid "" "There is a problem with the PayPal Currency Code you have entered. It does " "not match any of the codes in our list of curencies supported by PayPal." msgstr "" -#: includes/settings/class-payment-general-settings.php:312 +#: includes/settings/class-payment-general-settings.php:314 msgid "The available currency codes are" msgstr "Dostupné kódy mien sú" -#: includes/settings/class-payment-general-settings.php:321 +#: includes/settings/class-payment-general-settings.php:323 msgid "" "Require Registration setting was enabled automatically because you activated " "the Credit System." @@ -7712,7 +7875,7 @@ msgstr "" "Vyžadovanie registrácie bolo automaticky zapnuté, aktivovali ste systém " "kreditov, ktorý ju vyžaduje." -#: includes/settings/class-payment-general-settings.php:326 +#: includes/settings/class-payment-general-settings.php:328 msgid "" "Charge Listing Fee setting was enabled automatically because you activated " "the Credit System." @@ -7720,19 +7883,19 @@ msgstr "" "Spoplatnenie inzerátov bolo automaticky zapnuté, aktivovali ste systém " "kreditov, ktorý ho vyžaduje." -#: includes/settings/class-payment-general-settings.php:332 +#: includes/settings/class-payment-general-settings.php:334 msgid "" "Credit System was disabled automatically because you disabled Charge Listing " "Fee." msgstr "Systém kreditov bol vypnutý, pretože ste vypli spoplatnenie inzerátov." -#: includes/settings/renderers/class-button-settings-renderer.php:39 +#: includes/settings/renderers/class-button-settings-renderer.php:40 msgid "" "Resetting to the default layout will cause any custom HTML layout changes " "you've made to be lost. Are you sure?" msgstr "" -#: includes/settings/renderers/class-button-settings-renderer.php:42 +#: includes/settings/renderers/class-button-settings-renderer.php:47 msgid "Reset" msgstr "Obnoviť" @@ -7740,52 +7903,50 @@ msgstr "Obnoviť" msgid "Deactivate" msgstr "Deaktivovať" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -msgid "active" -msgstr "" - -#: includes/settings/renderers/class-license-settings-renderer.php:43 #: includes/settings/renderers/class-license-settings-renderer.php:46 -#: includes/settings/renderers/class-license-settings-renderer.php:56 -#: includes/settings/renderers/class-license-settings-renderer.php:58 -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "Status: " -msgstr "" - -#: includes/settings/renderers/class-license-settings-renderer.php:45 -#: includes/settings/renderers/class-license-settings-renderer.php:48 +#: includes/settings/renderers/class-license-settings-renderer.php:50 msgid "Activate" msgstr "Aktivovať" -#: includes/settings/renderers/class-license-settings-renderer.php:46 -msgid "inactive" +#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag +#: includes/settings/renderers/class-license-settings-renderer.php:55 +msgid "" +"Click the button above to check the status of your license. Please " +"%1$scontact customer support%2$s if you think the reported status is wrong." msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:51 -msgid "" -"Click the button above to check the status of your license. Please contact customer support if you think the reported status is wrong." +#: includes/settings/renderers/class-license-settings-renderer.php:75 +msgid "disabled" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:56 -msgid "expired" +#: includes/settings/renderers/class-license-settings-renderer.php:76 +msgid "inactive" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:58 -msgid "disabled" +#: includes/settings/renderers/class-license-settings-renderer.php:77 +msgid "active" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:60 +#: includes/settings/renderers/class-license-settings-renderer.php:78 +msgid "expired" +msgstr "" + +#: includes/settings/renderers/class-license-settings-renderer.php:79 msgid "unknown" msgstr "" +#: includes/settings/renderers/class-license-settings-renderer.php:84 +#, fuzzy +msgid "Status: %s" +msgstr "Stav:" + #. translators: screen reader text label for individual settings on a settings #. grid -#: includes/settings/renderers/class-settings-grid-renderer.php:75 +#: includes/settings/renderers/class-settings-grid-renderer.php:80 msgid " setting for field" msgstr "" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:35 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:38 msgid "Create Page" msgstr "" @@ -7793,26 +7954,26 @@ msgstr "" msgid "Ad Category" msgstr "Kategória inzerátu" -#: includes/ui/class-category-selector.php:122 +#: includes/ui/class-category-selector.php:144 msgid "All Categories" msgstr "Všetky kategórie" -#: includes/ui/class-category-selector.php:171 +#: includes/ui/class-category-selector.php:193 msgid "Select a Sub-category" msgstr "Výyete podkategóriu" -#: includes/ui/class-payment-terms-list.php:86 +#: includes/ui/class-payment-terms-list.php:103 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price})" msgstr "" -#: includes/ui/class-payment-terms-list.php:91 +#: includes/ui/class-payment-terms-list.php:108 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" msgstr "" -#: includes/ui/class-payment-terms-list.php:152 +#: includes/ui/class-payment-terms-list.php:169 msgid " listing allowed." msgid_plural " listings allowed." msgstr[0] "" @@ -7820,11 +7981,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: includes/ui/class-payment-terms-list.php:160 +#: includes/ui/class-payment-terms-list.php:177 msgid "No images allowed." msgstr "" -#: includes/ui/class-payment-terms-list.php:163 +#: includes/ui/class-payment-terms-list.php:180 msgid " image allowed." msgid_plural " images allowed." msgstr[0] "" @@ -7832,45 +7993,45 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: includes/ui/class-payment-terms-list.php:170 +#: includes/ui/class-payment-terms-list.php:187 msgid "Unlimited characters in listing's title." msgstr "" -#: includes/ui/class-payment-terms-list.php:173 +#: includes/ui/class-payment-terms-list.php:190 msgid "Up to characters in listing's title." msgstr "" -#: includes/ui/class-payment-terms-list.php:180 +#: includes/ui/class-payment-terms-list.php:197 msgid "Up to categories allowed." msgstr "" -#: includes/ui/class-payment-terms-list.php:187 +#: includes/ui/class-payment-terms-list.php:204 msgid "Unlimited characters in listing's content." msgstr "" -#: includes/ui/class-payment-terms-list.php:190 +#: includes/ui/class-payment-terms-list.php:207 msgid "Up to characters in listing's content." msgstr "" -#: includes/ui/class-payment-terms-list.php:196 +#: includes/ui/class-payment-terms-list.php:213 msgid "Purchase this plan" msgstr "" -#: includes/ui/class-payment-terms-list.php:197 +#: includes/ui/class-payment-terms-list.php:214 msgid "Pay for this plan with credits" msgstr "" -#: includes/ui/class-payment-terms-list.php:200 -#: includes/ui/class-payment-terms-list.php:204 +#: includes/ui/class-payment-terms-list.php:217 +#: includes/ui/class-payment-terms-list.php:221 msgid "Use this plan for free!" msgstr "" -#: includes/ui/class-payment-terms-list.php:209 -#: includes/ui/class-payment-terms-list.php:214 +#: includes/ui/class-payment-terms-list.php:226 +#: includes/ui/class-payment-terms-list.php:231 msgid "Select" msgstr "Vybrať" -#: includes/ui/class-payment-terms-list.php:213 +#: includes/ui/class-payment-terms-list.php:230 msgid "credits" msgstr "" @@ -8006,11 +8167,11 @@ msgstr "" "a>." #. translators: %s the step name -#: includes/views/class-base-page.php:82 +#: includes/views/class-base-page.php:83 msgid "Unkown step \"%s\". Please contact the administrator about this error." msgstr "Neznámy krok \"%s\". Prosím, kontaktujte administrátora." -#: includes/views/class-base-page.php:135 +#: includes/views/class-base-page.php:136 msgid "" "Your request cannot be processed at this time. Please try again or contact " "the administrator about the incident." @@ -8020,7 +8181,7 @@ msgstr "" #. translators: %1$s back link, %2$s transaction id #: includes/views/class-payment-step-decorator.php:41 -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:74 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:76 #, fuzzy msgid "" "You are trying to buy credits using a transaction created for a different " @@ -8046,16 +8207,16 @@ msgstr "Nebol nastavený plán kreditov. Vyberte jeden z dostupných plánov" msgid "Congratulations. You have successfully added credit to your account." msgstr "Gratulujeme, Úspešne ste pridali kredity na váš účet." -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:12 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:14 msgid "Buy Credits" msgstr "Kúpiť kredity" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:87 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:89 msgid "" "The payment associated with this transaction failed (see reasons below)." msgstr "Zlyhala platba tejto transakcie (dôvod je uvedený nižšie)" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:118 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:120 msgid "You are not allowed to buy credits." msgstr "Nemáte povolený nákup kreditov." @@ -8069,33 +8230,54 @@ msgstr "" msgid "The instance of WP_Scripts is not ready!" msgstr "" -#: installer.php:154 +#: installer.php:160 msgid "30 Day Listing" msgstr "Ponúkať 30 dní" -#: installer.php:822 +#: installer.php:307 msgid "Response to your AWPCP Demo Ad" msgstr "Odpovedajte na AWPCP demo inzerát" -#: installer.php:823 +#: installer.php:308 msgid "Someone has responded to your AWPCP Demo Ad" msgstr "Niekto odpovedal na váš DEMO inzerát" -#: installer.php:848 +#: installer.php:333 msgid "Verify the email address used for Ad $title" msgstr "" +#: installer.php:334 +msgid "" +"Hello $author_name \n" +"\n" +"You recently posted the Ad $title to $website_name. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"$verification_link \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" +msgstr "" + #: templates/admin/debug/environment-debug-section.tpl.php:19 msgid "" "Click the button below to contact and get a report about " "you server's SSL/TSL features." msgstr "" -#: templates/admin/debug/environment-debug-section.tpl.php:30 +#: templates/admin/debug/environment-debug-section.tpl.php:32 msgid "Test your SSL Client" msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:16 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:20 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -8103,7 +8285,7 @@ msgid "" "Settings page." msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:23 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:27 msgid "" "Opening that page in your browser will flush the Rewrite Rules in your site. " "WordPress will then ask all installed and active plugins to register their " @@ -8111,24 +8293,29 @@ msgid "" "please contact customer support." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:3 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#, fuzzy +msgid "Plugin Pages" +msgstr "Stránky AWPCP" + +#: templates/admin/delete-browse-categories-page-notice.tpl.php:4 msgid "" -"The page is no longer necessary. From now on, " -"all listings will be displayed in the page, even " -"when they are filtered by a particular category." +"The %1$s page is no longer necessary. From now on, all listings will be " +"displayed in the %2$s page, even when they are filtered by a particular " +"category." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:9 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:11 msgid "" -"The plugin will start redirecting all traffic to the page to make sure no broken links are created." +"The plugin will start redirecting all traffic to the %s page to make sure no " +"broken links are created." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:13 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:15 msgid "Click the button below to delete the page." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:14 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:18 msgid "Delete Page" msgstr "" @@ -8151,22 +8338,32 @@ msgid "" "new parent of the children categories." msgstr "" -#: templates/admin/delete-category-admin-page.tpl.php:32 +#. translators: %1$s: Cancel button , %2$s: Submit button label +#: templates/admin/delete-category-admin-page.tpl.php:34 msgid "" -"Click to go back to the list of categories or click " -" to proceed." +"Click %1$s to go back to the list of categories or click %2$s to proceed." msgstr "" #: templates/admin/delete-category-admin-page.tpl.php:51 msgid "Selected Category" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:158 +#: templates/admin/export-listings-admin-page.tpl.php:137 +#, fuzzy +msgid "Export Complete" +msgstr "Dokončené" + +#: templates/admin/export-listings-admin-page.tpl.php:153 msgid "" "Click \"Cleanup\" once the file has been downloaded in order to remove all " "temporary data created by AWP Classifieds Plugin during the export process." msgstr "" +#: templates/admin/export-listings-admin-page.tpl.php:160 +#, fuzzy +msgid "Export Canceled" +msgstr "Platba bola zrušená" + #: templates/admin/form-fields-admin-page.tpl.php:7 msgid "" "The table below shows all the form fields that users may need to fill to " @@ -8175,24 +8372,25 @@ msgid "" "Ad Details form." msgstr "" -#: templates/admin/form-fields-admin-page.tpl.php:11 -msgid "Form" -msgstr "Typ" - +#. translators: %s is a link to the Form Fields settings page. #: templates/admin/form-fields-admin-page.tpl.php:13 msgid "" -"Go to the settings section to control which of " -"the standard fields appear and if the user is required to enter a value. If " -"you have the Extra Fields module, the rest of the fields can be configured " -"from the Extra Fields admin section." +"Go to the %s settings section to control which of the standard fields appear " +"and if the user is required to enter a value. If you have the Extra Fields " +"module, the rest of the fields can be configured from the Extra Fields admin " +"section." msgstr "" +#: templates/admin/form-fields-admin-page.tpl.php:14 +msgid "Form" +msgstr "Typ" + #: templates/admin/import/example-csv-file.tpl.php:8 msgid "Import Listings: Example CSV File" msgstr "" #: templates/admin/import/example-csv-file.tpl.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:84 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:76 msgid "See Supported CSV Headers" msgstr "" @@ -8211,7 +8409,7 @@ msgid "Header" msgstr "Hlavička" #: templates/admin/import/supported-csv-headers.tpl.php:39 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:86 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:78 msgid "See Example CSV File" msgstr "" @@ -8314,7 +8512,7 @@ msgstr "" msgid "Default user" msgstr "Predvolený používateľ" -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:178 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 #: templates/admin/import-listings-admin-page-import-form.tpl.php:44 msgid "" "Press the button below to cancel the current import operation and discard " @@ -8345,36 +8543,36 @@ msgstr "" msgid "Pause" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:24 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:21 msgid "CSV file" msgstr "CSV súbor" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:37 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:31 msgid "Images source" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:40 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:34 msgid "Don't import images" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:42 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:36 msgid "ZIP file" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:44 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:38 msgid "Local directory" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:49 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:43 msgid "Zip file containing images" msgstr "Zip súbor obsahujúci obrázky" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:62 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:54 msgid "Local directory path" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:74 -msgid "The relative path to a directory inside ." +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:64 +msgid "The relative path to a directory inside %s." msgstr "" #: templates/admin/listings/listing-information-metabox.tpl.php:56 @@ -8458,112 +8656,111 @@ msgid "Payment Options" msgstr "Nastavenia platieb" #. translators: %s is the link the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:84 +#: templates/admin/main-classifieds-admin-page.tpl.php:87 msgid "" "Go to the %s section to edit/delete current categories or add new categories." msgstr "" "Navštívte sekciu %s pre úpravu/vymazanie aktuálnych kategórií alebo pridanie " "nových." -#: templates/admin/main-classifieds-admin-page.tpl.php:90 +#: templates/admin/main-classifieds-admin-page.tpl.php:95 msgid "Total number of categories in the system" msgstr "Celkový počet kategórií v systéme" -#: templates/admin/main-classifieds-admin-page.tpl.php:95 +#: templates/admin/main-classifieds-admin-page.tpl.php:100 msgid "Number of Top Level parent categories" msgstr "Počet top kategórií" -#: templates/admin/main-classifieds-admin-page.tpl.php:100 +#: templates/admin/main-classifieds-admin-page.tpl.php:105 msgid "Number of sub level children categories" msgstr "Počet podkategórií" #. translators: %s is the link to the Manage Categories admin page. -#: templates/admin/main-classifieds-admin-page.tpl.php:109 +#: templates/admin/main-classifieds-admin-page.tpl.php:114 msgid "" "You have not categories defined. Go to the %s section to set up your " "categories." msgstr "Nemáte definované kategórie. Nastavíte ich v sekcii %s." -#: templates/admin/manage-categories-admin-page.tpl.php:43 +#: templates/admin/manage-categories-admin-page.tpl.php:44 msgid "Parent Category" msgstr "Nadradená kategória" -#: templates/admin/manage-categories-admin-page.tpl.php:52 +#: templates/admin/manage-categories-admin-page.tpl.php:53 msgid "Category list order" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:75 +#: templates/admin/manage-categories-admin-page.tpl.php:76 msgid "Icon Meanings:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:85 +#: templates/admin/manage-categories-admin-page.tpl.php:89 msgid "Move categories or ads under:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:92 +#: templates/admin/manage-categories-admin-page.tpl.php:96 msgid "Delete categories should do this with existing ads:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:93 +#: templates/admin/manage-categories-admin-page.tpl.php:97 msgid "Move ads to new category" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:94 +#: templates/admin/manage-categories-admin-page.tpl.php:98 msgid "Delete ads too" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:101 +#: templates/admin/manage-categories-admin-page.tpl.php:108 msgid "Move Selected Categories" msgstr "Presunúť označené kategórie" -#: templates/admin/manage-categories-admin-page.tpl.php:102 +#: templates/admin/manage-categories-admin-page.tpl.php:109 msgid "Delete Selected Categories" msgstr "Zmazať označené kategórie" -#: templates/admin/manage-categories-admin-page.tpl.php:119 +#: templates/admin/manage-categories-admin-page.tpl.php:126 msgid "Select all categories" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:122 -#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:129 +#: templates/admin/manage-categories-admin-page.tpl.php:145 msgid "Category ID" msgstr "ID kategórie" -#: templates/admin/manage-categories-admin-page.tpl.php:124 -#: templates/admin/manage-categories-admin-page.tpl.php:136 +#: templates/admin/manage-categories-admin-page.tpl.php:131 +#: templates/admin/manage-categories-admin-page.tpl.php:146 msgid "Category Name (Total Ads)" msgstr "Názov kategórie (Celkovo inzerátov)" -#: templates/admin/manage-categories-admin-page.tpl.php:126 -#: templates/admin/manage-categories-admin-page.tpl.php:137 +#: templates/admin/manage-categories-admin-page.tpl.php:133 +#: templates/admin/manage-categories-admin-page.tpl.php:147 msgid "Parent" msgstr "Rodič" -#: templates/admin/manage-categories-admin-page.tpl.php:127 -#: templates/admin/manage-categories-admin-page.tpl.php:138 +#: templates/admin/manage-categories-admin-page.tpl.php:134 +#: templates/admin/manage-categories-admin-page.tpl.php:148 msgid "Order" msgstr "Poradie" -#: templates/admin/manage-categories-admin-page.tpl.php:128 -#: templates/admin/manage-categories-admin-page.tpl.php:139 +#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:149 msgid "Action" msgstr "Akcia" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:2 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 msgid "What's your PayPal Merchant ID?" msgstr "" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:3 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:10 msgid "" "In order to verify payments made through PayPal, AWP Classifieds Plugin " "needs to know your PayPal Merchant ID." msgstr "" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:13 msgid "" -"Go to to obtain the Merchant ID and then go to the Payment Settings page to enter the " -"value." +"Go to %1$s to obtain the Merchant ID and then go to the %2$sPayment " +"Settings%3$s page to enter the value." msgstr "" #: templates/admin/profile/contact-information-fields.tpl.php:1 @@ -8753,7 +8950,8 @@ msgstr "Odoslané" msgid "Expires on" msgstr "Vyprší" -#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:9 +#. translators: %s: URL to renew the ad +#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:12 msgid "You can renew your Ad visiting this link: %s" msgstr "Inzerát môžete obnoviť pomocou odkazu: %s" @@ -8762,12 +8960,34 @@ msgstr "Inzerát môžete obnoviť pomocou odkazu: %s" msgid "Hello" msgstr "Vitajte" -#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:2 +#: templates/email/listing-media-upload-notification.plain.tpl.php:2 +#, fuzzy +msgid "Hello," +msgstr "Vitajte" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:9 +msgid "The following media files were recently uploaded to listing \"%s\":" +msgstr "" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:23 +msgid "" +"The following media files were recently uploaded to listing \"%s\" and are " +"awaiting approval:" +msgstr "" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:36 +msgid "Click here to manage media uploaded to the listing: %s." +msgstr "" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:44 +msgid "Click here to view the listing: %s." +msgstr "" + +#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:3 msgid "" -"The ad \"\" was modified. A copy of the details sent to the " -"customer can be found below. You can follow this link " -"to go to the Manage Ad Listing section to approve/reject/spam and see the " -"full version of the Ad." +"The ad \"%s\" was modified. A copy of the details sent to the customer can " +"be found below. You can follow this link %s to go to the Manage Ad Listing " +"section to approve/reject/spam and see the full version of the Ad." msgstr "" #: templates/email/listing-was-flagged.plain.tpl.php:4 @@ -8776,64 +8996,164 @@ msgid "" "them out here ." msgstr "" -#: templates/frontend/listings.tpl.php:24 +#: templates/frontend/listings.tpl.php:37 msgid "There were no listings found." msgstr "" +#: templates/frontend/order-submit-listing-section.tpl.php:41 +#, fuzzy +msgid "Who is the owner of this ad?" +msgstr "Vyberte používateľa, ktorý vlastní tento inzerát" + +#: templates/frontend/order-submit-listing-section.tpl.php:86 +msgid "Your ad will be posted on the following categories: %s." +msgstr "" + #: templates/privacy-policy.tpl.php:10 msgid "Suggested text:" msgstr "" -#. Author URI of the plugin/theme -msgid "https://awpcp.com/" +#: templates/privacy-policy.tpl.php:11 +msgid "" +"When you submit a classified listing, the content of the listing and its " +"metadata are retained indefinitely. All users can see, edit or delete the " +"personal information included on their listings at any time. Website " +"administrators can also see and edit that information." msgstr "" -#. Description of the plugin/theme -msgid "Run a free or paid classified ads service on your WordPress site." +#: templates/privacy-policy.tpl.php:14 +msgid "" +"Website visitors can see the contact name, website URL, phone number, " +"address and other information included in your submission to describe the " +"classified listing." msgstr "" -#. Author of the plugin/theme -#, fuzzy -msgid "AWP Classifieds Team" -msgstr "Stránky inzerátov" - -#: admin/admin-panel-fees-table.php:254 -msgctxt "all categories" -msgid "All" -msgstr "Všetko" - -#: admin/admin-panel-users.php:42 -msgctxt "credit system on users table" -msgid "Account Balance" -msgstr "Stav úučtu" +#: templates/privacy-policy.tpl.php:18 +msgid "" +"Contact name, email address, website URL and content of submitted classified " +"listings may be checked through Akismet's spam detection service. The " +"Akismet service privacy policy is available %1$shere%2$s." +msgstr "" -#: admin/admin-panel.php:28 -msgctxt "awpcp admin menu" -msgid "Classifieds" -msgstr "Inzeráty" +#: templates/privacy-policy.tpl.php:24 +#, fuzzy +msgid "Payment Information" +msgstr "Viac informácií" -#: admin/admin-panel.php:810 includes/settings/class-listings-settings.php:469 -msgctxt "page name" -msgid "Show Ad" +#: templates/privacy-policy.tpl.php:28 +msgid "" +"If you pay to post a classified listing entering your credit card and " +"billing information directly on %s, the credit card information won't be " +"stored but it will be shared through a secure connection with the following " +"payment gateways to process the payment:" msgstr "" -#: admin/admin-panel.php:818 +#: templates/privacy-policy.tpl.php:36 +#, fuzzy +msgid "PayPal - %1$s" +msgstr "PayPal" + +#: templates/privacy-policy.tpl.php:42 +#, fuzzy +msgid "Authorize.Net - %s" +msgstr "Authorize.Net" + +#: templates/privacy-policy.tpl.php:48 +msgid "Stripe - %s" +msgstr "" + +#: templates/privacy-policy.tpl.php:54 +#, fuzzy +msgid "Regions" +msgstr "Pridať región" + +#: templates/privacy-policy.tpl.php:56 +msgid "" +"If you choose to see listings published on a specific region, a cookie will " +"be stored on your browser for the remainder of the session to remember the " +"selected region." +msgstr "" + +#: templates/privacy-policy.tpl.php:58 +#, fuzzy +msgid "Comments and Ratings" +msgstr "Komentátre a hotnotenia" + +#: templates/privacy-policy.tpl.php:60 +msgid "" +"When visitors leave comments and reviews for classified listings we collect " +"the data shown in the comments form, and also the visitor’s IP address to " +"help spam detection." +msgstr "" + +#: templates/privacy-policy.tpl.php:64 +msgid "" +"Visitor comments may be checked through Akismet's spam detection service. " +"The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" + +#: templates/privacy-policy.tpl.php:70 +#, fuzzy +msgid "Restricted Categories" +msgstr "Zmazať označené kategórie" + +#: templates/privacy-policy.tpl.php:72 +msgid "" +"When you agree to see listings or publish a listing on a restricted " +"category, a cookie will be stored in your browser to remember your decision. " +"The cookie will be stored on your browser for the remainder of that session." +msgstr "" + +#. Author URI of the plugin/theme +msgid "https://awpcp.com/" +msgstr "" + +#. Description of the plugin/theme +msgid "Run a free or paid classified ads service on your WordPress site." +msgstr "" + +#. Author of the plugin/theme +#, fuzzy +msgid "AWP Classifieds Team" +msgstr "Stránky inzerátov" + +#: admin/admin-panel-fees-table.php:254 +msgctxt "all categories" +msgid "All" +msgstr "Všetko" + +#: admin/admin-panel-users.php:42 +msgctxt "credit system on users table" +msgid "Account Balance" +msgstr "Stav úučtu" + +#: admin/admin-panel.php:28 +msgctxt "awpcp admin menu" +msgid "Classifieds" +msgstr "Inzeráty" + +#: admin/admin-panel.php:794 includes/settings/class-listings-settings.php:469 +msgctxt "page name" +msgid "Show Ad" +msgstr "" + +#: admin/admin-panel.php:802 msgctxt "page name" msgid "Edit Ad" msgstr "" -#: admin/class-csv-exporter.php:82 +#: admin/class-csv-exporter.php:83 msgctxt "admin csv-export" msgid "Could not create a temporary directory for handling this CSV export." msgstr "" -#: admin/class-csv-exporter.php:85 +#: admin/class-csv-exporter.php:86 msgctxt "admin csv-export" msgid "Could not create awpcp-csv-exports directory." msgstr "" #. translators: %s the error. -#: admin/class-csv-exporter.php:91 +#: admin/class-csv-exporter.php:95 msgctxt "admin csv-export" msgid "Error while creating a temporary directory for CSV export: %s" msgstr "" @@ -8843,76 +9163,73 @@ msgctxt "admin csv-export" msgid "Could not decode export state information." msgstr "" -#: admin/class-debug-admin-page.php:136 +#: admin/class-debug-admin-page.php:137 msgctxt "debug page" msgid "Plugin Info" msgstr "" -#: admin/class-debug-admin-page.php:137 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:33 +#: admin/class-debug-admin-page.php:138 msgctxt "debug page" msgid "Plugin Pages" msgstr "" -#: admin/class-debug-admin-page.php:138 +#: admin/class-debug-admin-page.php:139 msgctxt "debug page" msgid "Plugin Settings" msgstr "" -#: admin/class-debug-admin-page.php:139 +#: admin/class-debug-admin-page.php:140 msgctxt "debug page" msgid "Environment" msgstr "" -#: admin/class-debug-admin-page.php:140 -#: admin/templates/admin-panel-debug.tpl.php:32 +#: admin/class-debug-admin-page.php:141 +#: admin/templates/admin-panel-debug.tpl.php:59 msgctxt "debug page" msgid "Rewrite Rules" msgstr "Prepísať pravidlá" -#: admin/class-debug-admin-page.php:177 +#: admin/class-debug-admin-page.php:178 msgctxt "debug page" msgid "Plugin Version" msgstr "" -#: admin/class-debug-admin-page.php:283 -#: admin/templates/admin-panel-debug.tpl.php:126 +#: admin/class-debug-admin-page.php:284 msgctxt "debug page" msgid "cURL's alternate CA info (cacert.pem)" msgstr "Alternatívnie CA informácie o cURL (cacert.pem)" -#: admin/class-debug-admin-page.php:287 -#: admin/templates/admin-panel-debug.tpl.php:130 +#: admin/class-debug-admin-page.php:288 msgctxt "debug page" msgid "PayPal Connection" msgstr "Prepojenie na PayPal" -#: admin/class-debug-admin-page.php:359 +#: admin/class-debug-admin-page.php:360 msgctxt "debug page" msgid "Working" msgstr "Funguje" -#: admin/class-debug-admin-page.php:362 -#: admin/templates/admin-panel-debug.tpl.php:136 +#: admin/class-debug-admin-page.php:363 msgctxt "debug page" msgid "Not Working" msgstr "Nefunguje" -#: admin/templates/admin-panel-debug.tpl.php:22 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:31 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:34 msgctxt "debug page" msgid "Flush Rewrite Rules" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:26 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s Linked +#. URL in anchor link +#: admin/templates/admin-panel-debug.tpl.php:48 +#, fuzzy msgctxt "debug page" msgid "" -"This information can help AWPCP Developers to debug possible problems. If " -"you are submitting a bug report please Download the " -"Debug Information and attach it to your bug report or take a " -"minute to copy the information below to http://fpaste.org and provide the resulting URL in " -"your report." +"This information can help the AWP Team to debug possible problems. If you " +"are submitting a bug report please %1$sDownload the Debug Information%2$s " +"and attach it to your bug report or take a minute to copy the information " +"below to %3$s and provide the resulting URL in your report." msgstr "" "Táto informácia môže pomôcť vývojárom AWPCP pri riešení problémov. Ak " "odosielate správu o chybe, prosím, stiahnite http://fpaste.org a poskytnúť nám URL odkaz." -#: admin/templates/admin-panel-debug.tpl.php:29 +#: admin/templates/admin-panel-debug.tpl.php:56 msgctxt "debug page" msgid "AWPCP Pages" msgstr "Stránky AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:57 msgctxt "debug page" msgid "PHP Info" msgstr "Informácie o PHP" -#: admin/templates/admin-panel-debug.tpl.php:31 +#: admin/templates/admin-panel-debug.tpl.php:58 msgctxt "debug page" msgid "AWPCP Settings" msgstr "Nastavenie AWPCP" -#: admin/templates/admin-panel-debug.tpl.php:118 -msgctxt "debug page" -msgid "PHP Version" -msgstr "Verzia PHP" - -#: admin/templates/admin-panel-debug.tpl.php:122 -msgctxt "debug page" -msgid "cURL" -msgstr "cURL" - #. translators: %s is the URL to download the debug information #: templates/admin/debug/debug-admin-page.tpl.php:17 msgctxt "debug page" @@ -8954,22 +9261,22 @@ msgid "" "Debug Information and attach it to your bug report." msgstr "" -#: templates/admin/debug/plugin-info-debug-section.tpl.php:29 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:38 msgctxt "debug page" msgid "There are no premium modules activated right now." msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:38 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:49 msgctxt "debug page" msgid "Reference" msgstr "Odkaz" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:39 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:50 msgctxt "debug page" msgid "Page Title" msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:51 msgctxt "debug page" msgid "Stored ID" msgstr "Uložené ID" @@ -8984,96 +9291,45 @@ msgctxt "debug page" msgid "Setting Value" msgstr "" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Exists" msgstr "Existuje" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Missing" msgstr "Chýba" -#: admin/class-import-listings-admin-page.php:358 +#: admin/class-import-listings-admin-page.php:362 msgctxt "" "description for messages used to show feedback for the Import Listings " "operation" msgid " in line " msgstr "" -#: admin/class-import-listings-admin-page.php:369 +#: admin/class-import-listings-admin-page.php:373 msgctxt "text for page subtitle and submit button" msgid "Test Import" msgstr "Test importu" -#: admin/class-import-listings-admin-page.php:371 +#: admin/class-import-listings-admin-page.php:375 msgctxt "text for page subtitle and submit button" msgid "Import" msgstr "Import" -#: admin/class-import-settings-admin-page.php:104 +#: admin/class-import-settings-admin-page.php:102 msgctxt "import settings" msgid "Are you sure you want to do this?" msgstr "Skutočne to chcete urobiť?" -#: admin/class-import-settings-admin-page.php:116 +#: admin/class-import-settings-admin-page.php:115 msgctxt "import settings" msgid "" "There was a problem trying to read the settings file; it appears the file " "wasn't uploaded correctly. Please try again." msgstr "" -#: admin/class-import-settings-admin-page.php:122 -msgctxt "another-wordpress-classifieds-plugin" -msgid "Your settings have been successfully imported." -msgstr "" - -#: includes/settings/class-email-settings.php:201 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello {author_name} \n" -"\n" -"You recently posted the Ad {listing_title} to {website_title}. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"{verification_link} \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" -msgstr "" - -#: installer.php:849 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello $author_name \n" -"\n" -"You recently posted the Ad $title to $website_name. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"$verification_link \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" -msgstr "" - #: admin/credit-plans/class-delete-credit-plan-action-handler.php:30 #: admin/credit-plans/class-edit-credit-plan-action-handler.php:27 msgctxt "credit plans ajax" @@ -9095,17 +9351,17 @@ msgctxt "form field slug" msgid "Slug" msgstr "Slug" -#: admin/import/class-csv-importer-delegate.php:98 +#: admin/import/class-csv-importer-delegate.php:101 msgctxt "csv importer" msgid "Required value for column \"\" is missing." msgstr "" -#: admin/import/class-csv-importer-delegate.php:181 +#: admin/import/class-csv-importer-delegate.php:184 msgctxt "csv importer" msgid "A new user '%s' with email address '%s' and password '%s' was created." msgstr "" -#: admin/import/class-csv-importer-delegate.php:252 +#: admin/import/class-csv-importer-delegate.php:256 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9114,7 +9370,7 @@ msgid "" "user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:255 +#: admin/import/class-csv-importer-delegate.php:258 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9122,7 +9378,7 @@ msgid "" "a username or select a default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:258 +#: admin/import/class-csv-importer-delegate.php:260 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -9130,65 +9386,65 @@ msgid "" "include a contact_email or select a default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:312 +#: admin/import/class-csv-importer-delegate.php:316 msgctxt "csv importer" msgid "No category with name \"\" was found." msgstr "" -#: admin/import/class-csv-importer-delegate.php:328 +#: admin/import/class-csv-importer-delegate.php:332 msgctxt "csv importer" msgid "There was an error trying to create category \"\"." msgstr "" -#: admin/import/class-csv-importer-delegate.php:337 +#: admin/import/class-csv-importer-delegate.php:342 msgctxt "csv importer" msgid "" "A category with name \"\" was created, but there was an error " "trying to retrieve its information from the database." msgstr "" -#: admin/import/class-csv-importer-delegate.php:349 +#: admin/import/class-csv-importer-delegate.php:355 msgctxt "csv importer" msgid "Item price must be a number." msgstr "" -#: admin/import/class-csv-importer-delegate.php:363 +#: admin/import/class-csv-importer-delegate.php:369 msgctxt "csv importer" msgid "The start date is missing and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:364 +#: admin/import/class-csv-importer-delegate.php:370 msgctxt "csv importer" msgid "The start date is invalid and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:365 +#: admin/import/class-csv-importer-delegate.php:371 msgctxt "csv importer" msgid "Invalid default start date." msgstr "" -#: admin/import/class-csv-importer-delegate.php:430 -#: admin/import/class-csv-importer-delegate.php:431 +#: admin/import/class-csv-importer-delegate.php:436 +#: admin/import/class-csv-importer-delegate.php:437 msgctxt "csv importer" msgid "The end date is missing and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:432 +#: admin/import/class-csv-importer-delegate.php:438 msgctxt "csv importer" msgid "Invalid default end date." msgstr "" -#: admin/import/class-csv-importer-delegate.php:499 +#: admin/import/class-csv-importer-delegate.php:505 msgctxt "csv importer" msgid "Image file with name not found." msgstr "" -#: admin/import/class-csv-importer-delegate.php:566 +#: admin/import/class-csv-importer-delegate.php:576 msgctxt "csv importer" msgid "There was an error trying to store imported data into the database." msgstr "" -#: admin/import/class-csv-importer-delegate.php:587 +#: admin/import/class-csv-importer-delegate.php:599 msgctxt "csv importer" msgid "" "There was an error trying to import one of the images: {image-validation-" @@ -9210,18 +9466,6 @@ msgctxt "drip-autoresponder" msgid "The email address entered is not valid." msgstr "" -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 -msgctxt "drip-autoresponder" -msgid "Thank you for signing up!" -msgstr "" - -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 -msgctxt "drip-autoresponder" -msgid "" -"Please check your email and click the link provided to confirm your " -"subscription." -msgstr "" - #: admin/pointers/class-drip-autoresponder.php:22 msgctxt "drip-autoresponder" msgid "Yes, I'd like my course, please" @@ -9232,18 +9476,6 @@ msgctxt "drip-autoresponder" msgid "No, thanks" msgstr "" -#: admin/pointers/class-drip-autoresponder.php:62 -msgctxt "drip-autoresponder" -msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" -msgstr "" - -#: admin/pointers/class-drip-autoresponder.php:63 -msgctxt "drip-autoresponder" -msgid "" -"Find out how to create a compelling, thriving classifieds site from scratch " -"in this ridiculously actionable (and free) 5-part email course." -msgstr "" - #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:6 msgctxt "credit plans form" msgid "Edit Credit Plan Details" @@ -9259,28 +9491,6 @@ msgctxt "Quick Start Guide" msgid "No Thanks" msgstr "Nie ďakujem" -#: admin/templates/admin-quick-start-guide-notice.tpl.php:9 -msgctxt "Quick Start Guide" -msgid "I'll figure it out on my own." -msgstr "Dôjdem na to sám." - -#: admin/templates/admin-quick-start-guide-notice.tpl.php:17 -msgctxt "Quick Start Guide" -msgid "Help me get my classifieds running quickly." -msgstr "Pomôžte mi zrýchliť moje inzeráty." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:75 -msgctxt "Browse the Quick Start Guide" -msgid "Browse the %s." -msgstr "Prezerať %s." - -#. translators: %s: translated link -#: admin/templates/admin-sidebar.tpl.php:85 -msgctxt "Read the full Documentation" -msgid "Read the full %s." -msgstr "Prečítať celý %s." - #: admin/templates/admin-widget-modification-notice.tpl.php:7 msgctxt "widget modification notice" msgid "Close this, I'll check my Widget configuration." @@ -9330,17 +9540,17 @@ msgctxt "404 HTTP status description" msgid "Listing not found" msgstr "" -#: frontend/page-place-ad.php:1417 +#: frontend/page-place-ad.php:1420 msgctxt "upload listing images form" msgid "Preview Ad" msgstr "Náhľad inzerátu" -#: frontend/page-place-ad.php:1419 +#: frontend/page-place-ad.php:1422 msgctxt "upload listing images form" msgid "Place Ad" msgstr "Umiestniť inzerát" -#: frontend/page-place-ad.php:1421 +#: frontend/page-place-ad.php:1424 msgctxt "upload listing images form" msgid "Checkout" msgstr "Pokladňa" @@ -9421,7 +9631,7 @@ msgctxt "listing row action" msgid "Unflag" msgstr "Zrušiť označenie" -#: frontend/templates/email-send-ad-access-key.tpl.php:9 +#: frontend/templates/email-send-ad-access-key.tpl.php:13 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:18 #: templates/email/listing-edit-link-with-access-token.tpl.php:9 msgctxt "edit link email" @@ -9471,11 +9681,6 @@ msgctxt "loading region options" msgid "loading..." msgstr "načítavam.." -#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 -msgctxt "add credit checkout step" -msgid "Complete Payment" -msgstr "Zaplatiť" - #: frontend/templates/page-edit-ad-email-key-step.tpl.php:34 msgctxt "enter email and access key form" msgid "Continue" @@ -9486,33 +9691,28 @@ msgctxt "send ad access key form" msgid "Continue" msgstr "Pokračovať" -#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 -msgctxt "place ad checkout step" -msgid "Complete Payment" -msgstr "Zaplatiť" - -#: frontend/templates/page-place-ad-details-step.tpl.php:59 +#: frontend/templates/page-place-ad-details-step.tpl.php:63 msgctxt "ad details form" msgid "Start Date" msgstr "Počiatočný dátum" -#: frontend/templates/page-place-ad-details-step.tpl.php:69 +#: frontend/templates/page-place-ad-details-step.tpl.php:73 msgctxt "ad details form" msgid "End Date" msgstr "Konečný dátum" -#: frontend/templates/page-place-ad-details-step.tpl.php:98 +#: frontend/templates/page-place-ad-details-step.tpl.php:104 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:9 msgctxt "ad details form" msgid "Read our Terms of Service" msgstr "Prečítať si podmienky používania" -#: frontend/templates/page-place-ad-details-step.tpl.php:100 +#: frontend/templates/page-place-ad-details-step.tpl.php:106 msgctxt "ad details form" msgid "Terms of service:" msgstr "Podmienky používania:" -#: frontend/templates/page-place-ad-details-step.tpl.php:105 +#: frontend/templates/page-place-ad-details-step.tpl.php:111 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:17 msgctxt "ad details form" msgid "I agree to the terms of service" @@ -9577,12 +9777,12 @@ msgctxt "ad details form" msgid "Terms of Service" msgstr "Podmienky používania" -#: frontend/templates/page-place-ad-details-step.tpl.php:120 +#: frontend/templates/page-place-ad-details-step.tpl.php:126 msgctxt "listing details form" msgid "Preview Ad" msgstr "Náhľad inzerátu" -#: frontend/templates/page-place-ad-details-step.tpl.php:122 +#: frontend/templates/page-place-ad-details-step.tpl.php:128 msgctxt "listing details form" msgid "Continue" msgstr "Pokračovať" @@ -9612,7 +9812,7 @@ msgctxt "place ad order step" msgid "Please select the owner for this Ad" msgstr "Vyberte používateľa, ktorý vlastní tento inzerát" -#: frontend/templates/page-place-ad-order-step.tpl.php:82 +#: frontend/templates/page-place-ad-order-step.tpl.php:84 msgctxt "listing order form" msgid "Continue" msgstr "Pokračovať" @@ -9623,24 +9823,12 @@ msgctxt "images upload step" msgid "Thumbnails of already uploaded images are shown below." msgstr "Náhľady nahraných obrázkov sú zobrazené nižšie." -#: frontend/templates/page-renew-ad-order-step.tpl.php:6 -msgctxt "renew ad order step" -msgid "Select Payment Term" -msgstr "Vyberte obchodné podmienky" - -#: frontend/templates/page-search-ads.tpl.php:88 +#: frontend/templates/page-search-ads.tpl.php:95 msgctxt "ad search form" msgid "Find Ads" msgstr "" -#: frontend/templates/payments-billing-form.tpl.php:1 -msgctxt "awpcp billing form" -msgid "" -"Please fill in the billing information in the form below to place your " -"payment." -msgstr "Prosím, vyplňte fakturačné informácie pre dokončenie platby." - -#: frontend/templates/payments-checkout-page.tpl.php:13 +#: frontend/templates/payments-checkout-page.tpl.php:12 msgctxt "checkout step" msgid "" "You are about to pay for the following items. Please review the order and " @@ -9649,106 +9837,47 @@ msgstr "" "Chystáte sa zaplatiť nasledujúce položky. Prezrite si objednávku a vyberte " "si spôsob platby." -#: frontend/templates/payments-checkout-page.tpl.php:17 +#: frontend/templates/payments-checkout-page.tpl.php:16 msgctxt "checkout step" msgid "Payment Terms" msgstr "Obchodné podmienky" -#: frontend/templates/payments-checkout-page.tpl.php:23 +#: frontend/templates/payments-checkout-page.tpl.php:22 msgctxt "checkout step" msgid "Payment Method" msgstr "Spôsopb platby" #: frontend/templates/payments-checkout-payment-page.tpl.php:8 -#: frontend/templates/payments-payment-page.tpl.php:3 msgctxt "checkout-payment page" msgid "You are about to pay for the following items." msgstr "Chystáte sa zaplatiť nasledujúce položky." #: frontend/templates/payments-checkout-payment-page.tpl.php:10 -#: frontend/templates/payments-payment-page.tpl.php:5 msgctxt "checkout-payment page" msgid "Payment Terms" msgstr "Obchodné podmienky" -#: includes/payments-api.php:802 +#: includes/payments-api.php:889 msgctxt "checkout-payment page" msgid "Please use the button below to complete your payment." msgstr "Použite tlačidlo nižšie, pre dokončenie platby." -#: frontend/templates/payments-credit-plans-table.tpl.php:7 -msgctxt "credit plans table" -msgid "" -"You can additionally purchase a Credit Plan to add credit to your account. " -"If you select to pay using credits, the price of the selected payment term " -"will be deducted from your account balance after you have completed payment." -msgstr "" -"Pre dodatočné pridanie kreditov, môžete kúpiť plán. Ak sa rozhodnete " -"zaplatiť kreditmi, bude suma stiahnutá z vašeho účtu po dokončení platby." - -#: frontend/templates/payments-credit-plans-table.tpl.php:51 -msgctxt "credit plans table" -msgid "clear selection" -msgstr "zrušiť výber" - -#: includes/payments-api.php:722 -msgctxt "credit plans table" -msgid "Plan" -msgstr "Plán" - -#: includes/payments-api.php:723 -msgctxt "credit plans table" -msgid "Description" -msgstr "Popis" - -#: includes/payments-api.php:724 -msgctxt "credit plans table" -msgid "Credits" -msgstr "Kredity" - -#: includes/payments-api.php:725 -msgctxt "credit plans table" -msgid "Price" -msgstr "Cena" - -#: frontend/templates/payments-payment-completed-page.tpl.php:2 -msgctxt "payment completed page" -msgid "Transaction Details" -msgstr "Detaily transakcie" - #: frontend/templates/payments-paypal-payment-button.tpl.php:27 msgctxt "paypal-checkout-form" msgid "Return to %s" msgstr "Návrat na %s" -#: frontend/templates/payments-transaction-items-table.tpl.php:4 -#: frontend/templates/payments-transaction-items-table.tpl.php:13 -msgctxt "transaction items" -msgid "Item" -msgstr "Položka" - -#: frontend/templates/payments-transaction-items-table.tpl.php:5 -#: frontend/templates/payments-transaction-items-table.tpl.php:17 -msgctxt "transaction items" -msgid "Amount" -msgstr "Suma" - -#: frontend/templates/payments-transaction-items-table.tpl.php:34 -msgctxt "transaction items" -msgid "Total Amount (credit)" -msgstr "Suma celkom (kredity)" - #: frontend/templates/payments-transaction-items-table.tpl.php:40 msgctxt "transaction items" msgid "Total Amount" msgstr "Suma celkom" -#: functions.php:743 +#: functions.php:749 msgctxt "comma separated list of things" msgid "%s and %d more." msgstr "%s a %d a viac." -#: functions.php:1200 +#: functions.php:1222 msgctxt "default blog title" msgid "Classifieds Website" msgstr "Stránka inzerátov" @@ -9977,27 +10106,27 @@ msgctxt "listing status" msgid "Active" msgstr "Aktívna" -#: includes/admin/listings/class-listings-table-columns-handler.php:211 +#: includes/admin/listings/class-listings-table-columns-handler.php:212 msgctxt "listing status" msgid "Pending Approval" msgstr "" -#: includes/admin/listings/class-listings-table-columns-handler.php:215 +#: includes/admin/listings/class-listings-table-columns-handler.php:217 msgctxt "listing status" msgid "Expired" msgstr "Vypršané" -#: includes/admin/listings/class-listings-table-columns-handler.php:219 +#: includes/admin/listings/class-listings-table-columns-handler.php:222 msgctxt "listing status" msgid "Disabled" msgstr "Zablokované" -#: includes/admin/listings/class-listings-table-columns-handler.php:223 +#: includes/admin/listings/class-listings-table-columns-handler.php:227 msgctxt "listing status" msgid "Pending Payment" msgstr "" -#: includes/admin/listings/class-listings-table-columns-handler.php:227 +#: includes/admin/listings/class-listings-table-columns-handler.php:232 msgctxt "listing status" msgid "Pending Verification" msgstr "" @@ -10012,17 +10141,17 @@ msgctxt "listings row action" msgid "Quick View" msgstr "" -#: includes/class-awpcp.php:1458 +#: includes/class-awpcp.php:1449 msgctxt "[UI Datepicker] Display text for previous month link" msgid "<Prev" msgstr "" -#: includes/class-awpcp.php:1459 +#: includes/class-awpcp.php:1450 msgctxt "[UI Datepicker] Display text for next month link" msgid "Next>" msgstr "" -#: includes/class-awpcp.php:1465 +#: includes/class-awpcp.php:1456 msgctxt "[UI Datepicker] The first day of the week, Sun = 0, Mon = 1, ..." msgid "0" msgstr "2" @@ -10074,7 +10203,7 @@ msgid "Regions" msgstr "" #. translators: the numbers that need to be added up for the math challenge. -#: includes/frontend/class-default-captcha-provider.php:34 +#: includes/frontend/class-default-captcha-provider.php:45 msgctxt "CAPTCHA" msgid "Enter the value of the following sum: %1$d + %2$d" msgstr "" @@ -10104,79 +10233,69 @@ msgctxt "order submit listing section" msgid "Please select a category for your ad" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:44 -msgctxt "order submit listing section" -msgid "Who is the owner of this ad?" -msgstr "" - -#: templates/frontend/order-submit-listing-section.tpl.php:59 +#: templates/frontend/order-submit-listing-section.tpl.php:57 msgctxt "order submit listing section" msgid "" "Please select the duration and features that will be available for this ad" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:81 +#: templates/frontend/order-submit-listing-section.tpl.php:77 msgctxt "order submit listing section" msgid "Continue" msgstr "Pokračovať" -#: templates/frontend/order-submit-listing-section.tpl.php:87 -msgctxt "order submit listing section" -msgid "Your ad will be posted on the following categories: {categories}." -msgstr "" - -#: templates/frontend/order-submit-listing-section.tpl.php:95 +#: templates/frontend/order-submit-listing-section.tpl.php:98 msgctxt "order submit listing section" msgid "Credit Plan:" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:96 +#: templates/frontend/order-submit-listing-section.tpl.php:99 msgctxt "order submit listing section" msgid "Owner:" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:99 +#: templates/frontend/order-submit-listing-section.tpl.php:102 msgctxt "order submit listing section" msgid "Loading ad fields" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:100 +#: templates/frontend/order-submit-listing-section.tpl.php:103 msgctxt "order submit listing section" msgid "Change selection" msgstr "" -#: includes/frontend/class-recaptcha-v2.php:66 +#: includes/frontend/class-recaptcha-v2.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing" msgstr "" -#: includes/frontend/class-recaptcha-v2.php:69 -#: includes/helpers/class-recaptcha-v3.php:74 +#: includes/frontend/class-recaptcha-v2.php:96 +#: includes/helpers/class-recaptcha-v3.php:96 msgctxt "recaptcha-error" msgid "The secret parameter is invalid or malformed." msgstr "" -#: includes/frontend/class-recaptcha-v2.php:72 +#: includes/frontend/class-recaptcha-v2.php:99 msgctxt "recaptcha-error" msgid "The response parameter is missing." msgstr "" -#: includes/frontend/class-recaptcha-v2.php:76 +#: includes/frontend/class-recaptcha-v2.php:103 msgctxt "recaptcha-error" msgid "The response parameter is invalid or malformed." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:71 +#: includes/helpers/class-recaptcha-v3.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:77 +#: includes/helpers/class-recaptcha-v3.php:99 msgctxt "recaptcha-error" msgid "reCAPTCHA score was not included." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:81 +#: includes/helpers/class-recaptcha-v3.php:103 msgctxt "recaptcha-error" msgid "reCAPTCHA couldn't analyze the current interaction." msgstr "" @@ -10306,7 +10425,7 @@ msgid "remaining" msgstr "" #. translators: %s is the type of region. -#: includes/helpers/widgets/multiple-region-selector.php:122 +#: includes/helpers/widgets/multiple-region-selector.php:142 msgctxt "Select in Multiple Region Selector" msgid "Select %s" msgstr "Vybrať %s" @@ -10327,7 +10446,7 @@ msgid "Add New" msgstr "Pridať nový" #: includes/models/class-custom-post-types.php:157 -#: includes/settings/class-listings-settings.php:595 +#: includes/settings/class-listings-settings.php:597 msgctxt "listing post type slug" msgid "classifieds" msgstr "" @@ -10347,7 +10466,7 @@ msgctxt "payment gateways" msgid "2Checkout" msgstr "2Checkout" -#: includes/payment-gateway-paypal-standard.php:24 +#: includes/payment-gateway-paypal-standard.php:26 msgctxt "payment gateways" msgid "PayPal" msgstr "PayPal" @@ -10393,57 +10512,77 @@ msgstr[1] "Roky" msgstr[2] "Rokov" msgstr[3] "Rokov" -#: includes/payment-terms-table.php:33 +#: includes/payment-terms-table.php:38 msgctxt "place ad payment terms column headers" msgid "Payment Term" msgstr "Obchodné podmienky" -#: includes/payment-terms-table.php:34 +#: includes/payment-terms-table.php:39 msgctxt "place ad payment terms column headers" msgid "Ads Allowed" msgstr "Inzeráty povolené" -#: includes/payment-terms-table.php:35 +#: includes/payment-terms-table.php:40 msgctxt "place ad payment terms column headers" msgid "Images Allowed" msgstr "Povolených obrázkov" -#: includes/payment-terms-table.php:36 +#: includes/payment-terms-table.php:41 msgctxt "place ad payment terms column headers" msgid "Characters in Title" msgstr "Znakov v nadpise" -#: includes/payment-terms-table.php:37 +#: includes/payment-terms-table.php:42 msgctxt "place ad payment terms column headers" msgid "Chars in Description" msgstr "Znakov v popise" -#: includes/payment-terms-table.php:38 +#: includes/payment-terms-table.php:43 msgctxt "place ad payment terms column headers" msgid "Duration" msgstr "Trvanie" -#: includes/payment-terms-table.php:44 +#: includes/payment-terms-table.php:49 msgctxt "place ad payment terms column headers" msgid "Price (currency)" msgstr "Cena (vo finančnej hodnote)" -#: includes/payment-terms-table.php:49 +#: includes/payment-terms-table.php:54 msgctxt "place ad payment terms column headers" msgid "Price (credits)" msgstr "Cena (v kreditoch)" -#: includes/payment-terms-table.php:106 includes/payment-terms-table.php:111 +#: includes/payment-terms-table.php:139 includes/payment-terms-table.php:145 msgctxt "payment term duration" msgid "No Limit" msgstr "Bez limitu" -#: includes/settings/class-email-settings.php:135 +#: includes/payments-api.php:757 +msgctxt "credit plans table" +msgid "Plan" +msgstr "Plán" + +#: includes/payments-api.php:758 +msgctxt "credit plans table" +msgid "Description" +msgstr "Popis" + +#: includes/payments-api.php:759 +msgctxt "credit plans table" +msgid "Credits" +msgstr "Kredity" + +#: includes/payments-api.php:760 +msgctxt "credit plans table" +msgid "Price" +msgstr "Cena" + +#: includes/settings/class-email-settings.php:137 msgctxt "reply to ad email" msgid "Response to your classified ad: {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:136 +#: includes/settings/class-email-settings.php:138 msgctxt "reply to ad email" msgid "" "Someone has responded to your classified ad.\n" @@ -10462,12 +10601,12 @@ msgid "" "{website_url}" msgstr "" -#: includes/settings/class-email-settings.php:161 +#: includes/settings/class-email-settings.php:163 msgctxt "reply to ad email" msgid "Notification about a response regarding ad: {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:162 +#: includes/settings/class-email-settings.php:164 msgctxt "reply to ad email" msgid "" "Someone has responded to one of the classified ads on your website.\n" @@ -10486,12 +10625,12 @@ msgid "" "{website_url}" msgstr "" -#: installer.php:833 +#: installer.php:318 msgctxt "reply to ad email" msgid "{__previous_subject__} regarding: {listing_title}" msgstr "" -#: installer.php:834 +#: installer.php:319 msgctxt "reply to ad email" msgid "" "{__previous_body__}\n" @@ -10572,14 +10711,6 @@ msgstr "" "Zrušte označenie pre zobrazenie cien bez desatiných miest. Hodnota bude " "zaokrúhlená" -#: includes/settings/class-licenses-settings.php:81 -msgctxt "settings" -msgid "" -"The IP address of your server is . Please make sure to include " -"that information if you need to contact support about problems trying to " -"activate your licenses." -msgstr "" - #: includes/settings/class-payment-general-settings.php:100 msgctxt "settings" msgid "Pay before entering Ad details" @@ -10617,26 +10748,30 @@ msgid "" "the listing. You can include or remove certain elements if you wish." msgstr "" -#: includes/settings/class-listings-settings.php:599 +#: includes/settings/class-listings-settings.php:601 msgctxt "listing url settings section" msgid "" "These settings affect the URL path shown for listings. You can include or " "remove elements for SEO purposes." msgstr "" -#: includes/settings/class-listings-settings.php:605 +#. translators: %s: example URL +#: includes/settings/class-listings-settings.php:610 +#, fuzzy msgctxt "listing url settings section" -msgid "Example path: ." -msgstr "" +msgid "Example path: %s." +msgstr "Vzorový výstup" #: includes/settings/renderers/class-wordpress-page-settings-renderer.php:27 msgctxt "page settings" msgid "— Select —" msgstr "" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:40 +#. translators: %1$s is a dropdown with existing pages, %2$s is a link to +#. create a new page +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:34 msgctxt "page settings" -msgid "Select existing page {dropdown} -or- {create_page_button}" +msgid "Select existing page %1$s -or- %2$s" msgstr "" #. translators: %1$s the success message, %2$s the error message @@ -10654,142 +10789,138 @@ msgid "" "for details." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:25 +#. translators: %1$s: memory_limit link, %2$s: max_execution_time link +#: templates/admin/export-listings-admin-page.tpl.php:27 msgctxt "listings-csv-export" msgid "" "Please note that the export process is a resource intensive task. If your " "export does not succeed try disabling other plugins first and/or increasing " -"the values of the 'memory_limit' and 'max_execution_time' directives in your " -"server's php.ini configuration file." +"the values of the %1$s and %2$s directives in your server php.ini " +"configuration file." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:44 +#: templates/admin/export-listings-admin-page.tpl.php:39 msgctxt "listings-csv-export" msgid "Export Configuration" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:47 +#: templates/admin/export-listings-admin-page.tpl.php:42 msgctxt "listings-csv-export" msgid "Export settings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:51 +#: templates/admin/export-listings-admin-page.tpl.php:46 msgctxt "listings-csv-export" msgid "Which listings to export?" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:55 +#: templates/admin/export-listings-admin-page.tpl.php:50 msgctxt "listings-csv-export" msgid "All" msgstr "Všetky" -#: templates/admin/export-listings-admin-page.tpl.php:56 +#: templates/admin/export-listings-admin-page.tpl.php:51 msgctxt "listings-csv-export" msgid "Active Only" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:57 +#: templates/admin/export-listings-admin-page.tpl.php:52 msgctxt "listings-csv-export" msgid "Active + Pending Renewal" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:63 +#: templates/admin/export-listings-admin-page.tpl.php:58 msgctxt "listings-csv-export" msgid "Export images?" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:68 +#: templates/admin/export-listings-admin-page.tpl.php:63 msgctxt "listings-csv-export" msgid "Export images" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:71 +#: templates/admin/export-listings-admin-page.tpl.php:66 msgctxt "listings-csv-export" msgid "" "When checked, instead of just a CSV file a ZIP file will be generated with " "both a CSV file and listing images." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:77 +#: templates/admin/export-listings-admin-page.tpl.php:72 msgctxt "listings-csv-export" msgid "Additional metadata to export:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:82 +#: templates/admin/export-listings-admin-page.tpl.php:77 msgctxt "listings-csv-export" msgid "Include unique IDs for each listing (sequence_id column)." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:85 +#: templates/admin/export-listings-admin-page.tpl.php:80 msgctxt "listings-csv-export" msgid "" "If you plan to re-import the listings into AWPCP and don't want new ones " "created, select this option!" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:90 +#: templates/admin/export-listings-admin-page.tpl.php:85 msgctxt "listings-csv-export" msgid "Author information (username)" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:96 +#: templates/admin/export-listings-admin-page.tpl.php:91 msgctxt "listings-csv-export" msgid "CSV File Settings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:100 +#: templates/admin/export-listings-admin-page.tpl.php:95 msgctxt "listings-csv-export" msgid "Image Separator" msgstr "Oddeľovač obrázkov" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "Category Separator" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "required" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:118 +#: templates/admin/export-listings-admin-page.tpl.php:113 msgctxt "listings-csv-export" msgid "Export Listings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:124 +#: templates/admin/export-listings-admin-page.tpl.php:119 msgctxt "listings-csv-export" msgid "Export in Progress..." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:125 +#: templates/admin/export-listings-admin-page.tpl.php:120 msgctxt "listings-csv-export" msgid "" "Your export file is being prepared. Please do not leave this page until the " "export finishes." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:128 +#: templates/admin/export-listings-admin-page.tpl.php:123 msgctxt "listings-csv-export" msgid "No. of listings:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:130 +#: templates/admin/export-listings-admin-page.tpl.php:125 msgctxt "listings-csv-export" msgid "Approximate export file size:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:137 +#: templates/admin/export-listings-admin-page.tpl.php:132 msgctxt "listings-csv-export" msgid "Cancel Export" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:142 -msgctxt "listings-csv-export" -msgid "Export Complete" -msgstr "" - -#: templates/admin/export-listings-admin-page.tpl.php:143 +#: templates/admin/export-listings-admin-page.tpl.php:138 msgctxt "listings-csv-export" msgid "" "Your export file has been successfully created and it is now ready for " @@ -10797,32 +10928,27 @@ msgid "" msgstr "" #. translators: %1$s filename %2$s filesize. -#: templates/admin/export-listings-admin-page.tpl.php:149 +#: templates/admin/export-listings-admin-page.tpl.php:144 msgctxt "listings-csv-export" msgid "Download %1$s (%2$s)" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:160 +#: templates/admin/export-listings-admin-page.tpl.php:155 msgctxt "listings-csv-export" msgid "Cleanup" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:165 -msgctxt "listings-csv-export" -msgid "Export Canceled" -msgstr "" - -#: templates/admin/export-listings-admin-page.tpl.php:166 +#: templates/admin/export-listings-admin-page.tpl.php:161 msgctxt "listings-csv-export" msgid "The export has been canceled." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:167 +#: templates/admin/export-listings-admin-page.tpl.php:162 msgctxt "listings-csv-export" msgid "← Return to CSV Export" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:101 +#: templates/admin/export-listings-admin-page.tpl.php:96 msgctxt "admin forms" msgid "required" msgstr "" @@ -10870,37 +10996,6 @@ msgctxt "The 'or' after 'Drop files here to upload' in Media Uploader" msgid "or" msgstr "alebo" -#: templates/email/listing-media-upload-notification.plain.tpl.php:1 -msgctxt "listing media uploaded notification" -msgid "Hello," -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:5 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\":" -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:16 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing \"\" and are awaiting approval:" -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:26 -msgctxt "listing media uploaded notification" -msgid "" -"Click here to manage media uploaded to the listing: ." -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:31 -msgctxt "listing media uploaded notification" -msgid "Click here to view the listing: ." -msgstr "" - #: templates/frontend/actions-submit-listing-section.tpl.php:7 msgctxt "actions submit listing section" msgid "Actions" @@ -10936,113 +11031,24 @@ msgctxt "upload media submit listing section" msgid "Loading..." msgstr "" -#: templates/privacy-policy.tpl.php:10 -msgctxt "privacy policy" -msgid "" -"When you submit a classified listing, the content of the listing and its " -"metadata are retained indefinitely. All users can see, edit or delete the " -"personal information included on their listings at any time. Website " -"administrators can also see and edit that information." -msgstr "" - -#: templates/privacy-policy.tpl.php:12 -msgctxt "privacy policy" -msgid "" -"Website visitors can see the contact name, website URL, phone number, " -"address and other information included in your submission to describe the " -"classified listing." -msgstr "" - -#: templates/privacy-policy.tpl.php:14 -msgctxt "privacy policy" -msgid "" -"Contact name, email address, website URL and content of submitted classified " -"listings may be checked through Akismet's spam detection service. The " -"Akismet service privacy policy is available here." -msgstr "" - -#: templates/privacy-policy.tpl.php:16 -msgctxt "privacy policy" -msgid "Payment Information" -msgstr "" +#~ msgid "Documentation" +#~ msgstr "Dokumentácia" -#: templates/privacy-policy.tpl.php:18 -msgctxt "privacy policy" -msgid "" -"If you pay to post a classified listing entering your credit card and " -"billing information directly on {home_url}, the " -"credit card information won't be stored but it will be shared through a " -"secure connection with the following payment gateways to process the payment:" -msgstr "" +#~ msgctxt "debug page" +#~ msgid "PHP Version" +#~ msgstr "Verzia PHP" -#: templates/privacy-policy.tpl.php:21 -msgctxt "privacy policy" -msgid "" -"PayPal — https://www.paypal.com/webapps/mpp/ua/privacy-full" -msgstr "" +#~ msgctxt "Browse the Quick Start Guide" +#~ msgid "Browse the %s." +#~ msgstr "Prezerať %s." -#: templates/privacy-policy.tpl.php:22 -msgctxt "privacy policy" -msgid "" -"Authorize.Net — https://www.authorize.net/company/privacy/" -msgstr "" - -#: templates/privacy-policy.tpl.php:23 -msgctxt "privacy policy" -msgid "" -"Stripe — https://stripe.com/" -"us/privacy/" -msgstr "" - -#: templates/privacy-policy.tpl.php:26 -msgctxt "privacy policy" -msgid "Regions" -msgstr "" +#~ msgctxt "place ad checkout step" +#~ msgid "Complete Payment" +#~ msgstr "Zaplatiť" -#: templates/privacy-policy.tpl.php:28 -msgctxt "privacy policy" -msgid "" -"If you choose to see listings published on a specific region, a cookie will " -"be stored on your browser for the remainder of the session to remember the " -"selected region." -msgstr "" - -#: templates/privacy-policy.tpl.php:30 -msgctxt "privacy policy" -msgid "Comments and Ratings" -msgstr "" - -#: templates/privacy-policy.tpl.php:32 -msgctxt "privacy policy" -msgid "" -"When visitors leave comments and reviews for classified listings we collect " -"the data shown in the comments form, and also the visitor’s IP address to " -"help spam detection." -msgstr "" - -#: templates/privacy-policy.tpl.php:34 -msgctxt "privacy policy" -msgid "" -"Visitor comments may be checked through Akismet's spam detection service. " -"The Akismet service privacy policy is available here." -msgstr "" - -#: templates/privacy-policy.tpl.php:36 -msgctxt "privacy policy" -msgid "Restricted Categories" -msgstr "" - -#: templates/privacy-policy.tpl.php:38 -msgctxt "privacy policy" -msgid "" -"When you agree to see listings or publish a listing on a restricted " -"category, a cookie will be stored in your browser to remember your decision. " -"The cookie will be stored on your browser for the remainder of that session." -msgstr "" +#~ msgctxt "transaction items" +#~ msgid "Amount" +#~ msgstr "Suma" #~ msgid "AWPCP" #~ msgstr "AWPCP" diff --git a/languages/another-wordpress-classifieds-plugin.pot b/languages/another-wordpress-classifieds-plugin.pot index c6d64b51e..bc2064618 100644 --- a/languages/another-wordpress-classifieds-plugin.pot +++ b/languages/another-wordpress-classifieds-plugin.pot @@ -2,10 +2,10 @@ # This file is distributed under the GPLv2 or any later version. msgid "" msgstr "" -"Project-Id-Version: AWP Classifieds Plugin 4.3.2\n" +"Project-Id-Version: AWP Classifieds Plugin 4.3.3\n" "Report-Msgid-Bugs-To: " "https://wordpress.org/support/plugin/another-wordpress-classifieds-plugin\n" -"POT-Creation-Date: 2024-03-20 20:22:37+00:00\n" +"POT-Creation-Date: 2024-06-13 20:37:03+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,21 +19,21 @@ msgstr "" #: admin/fees/class-fee-details-form.php:39 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:9 #: includes/settings/class-payment-general-settings.php:60 -#: templates/admin/manage-categories-admin-page.tpl.php:31 +#: templates/admin/manage-categories-admin-page.tpl.php:32 msgid "Name" msgstr "" #: admin/admin-panel-credit-plans-table.php:80 #: admin/fees/class-fee-details-form.php:45 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:25 -#: templates/admin/manage-categories-admin-page.tpl.php:36 +#: templates/admin/manage-categories-admin-page.tpl.php:37 msgid "Description" msgstr "" #: admin/admin-panel-credit-plans-table.php:81 #: admin/admin-panel-fees-table.php:121 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:14 -#: includes/settings/class-payment-general-settings.php:270 +#: includes/settings/class-payment-general-settings.php:272 msgid "Credits" msgstr "" @@ -42,7 +42,7 @@ msgstr "" #: admin/fees/class-fee-details-form.php:222 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:19 #: frontend/placeholders.php:514 -#: includes/settings/class-display-settings.php:483 +#: includes/settings/class-display-settings.php:482 #: includes/settings/class-payment-general-settings.php:61 msgid "Price" msgstr "" @@ -68,24 +68,24 @@ msgstr "" msgid " " msgstr "" -#: admin/admin-panel-fees-table.php:196 -msgid "Duration: " +#: admin/admin-panel-fees-table.php:197 +msgid "Duration: %s" msgstr "" -#: admin/admin-panel-fees-table.php:206 -msgid "# of images: " +#: admin/admin-panel-fees-table.php:207 +msgid "# of images: %s" msgstr "" #: admin/admin-panel-fees-table.php:219 admin/admin-panel-fees-table.php:235 msgid "unlimited" msgstr "" -#: admin/admin-panel-fees-table.php:222 -msgid "Chars in title: " +#: admin/admin-panel-fees-table.php:223 +msgid "Chars in title: %s" msgstr "" -#: admin/admin-panel-fees-table.php:238 -msgid "Chars in description: " +#: admin/admin-panel-fees-table.php:239 +msgid "Chars in description: %s" msgstr "" #: admin/admin-panel-fees-table.php:265 admin/admin-panel-fees-table.php:269 @@ -118,7 +118,7 @@ msgstr "" msgid "Manual Upgrade" msgstr "" -#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:799 +#: admin/admin-panel.php:78 admin/admin-panel.php:136 admin/admin-panel.php:783 #: includes/models/class-custom-post-types.php:97 #: includes/models/class-custom-post-types.php:99 #: includes/settings/class-listings-settings.php:30 @@ -134,20 +134,20 @@ msgid "Dashboard" msgstr "" #: admin/admin-panel.php:140 admin/admin-panel.php:141 -#: admin/admin-panel.php:509 +#: admin/admin-panel.php:492 msgid "Settings" msgstr "" #: admin/admin-panel.php:154 -#: templates/admin/main-classifieds-admin-page.tpl.php:86 -#: templates/admin/main-classifieds-admin-page.tpl.php:111 +#: templates/admin/main-classifieds-admin-page.tpl.php:88 +#: templates/admin/main-classifieds-admin-page.tpl.php:116 msgid "Manage Categories" msgstr "" #: admin/admin-panel.php:203 admin/admin-panel.php:204 #: admin/form-fields/class-form-fields-admin-page.php:12 -#: includes/settings/class-display-settings.php:298 -#: includes/settings/class-display-settings.php:438 +#: includes/settings/class-display-settings.php:297 +#: includes/settings/class-display-settings.php:437 msgid "Form Fields" msgstr "" @@ -180,7 +180,7 @@ msgstr "" msgid "Debug" msgstr "" -#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:24 +#: admin/admin-panel.php:325 admin/templates/admin-panel-debug.tpl.php:38 msgid "Debug Information" msgstr "" @@ -189,24 +189,24 @@ msgid "Uninstall" msgstr "" #: admin/admin-panel.php:354 admin/admin-panel.php:355 -#: admin/admin-panel.php:826 frontend/templates/page-renew-ad.tpl.php:3 +#: admin/admin-panel.php:810 frontend/templates/page-renew-ad.tpl.php:3 #: includes/admin/class-admin-container-configuration.php:175 msgid "Renew Ad" msgstr "" -#: admin/admin-panel.php:427 +#: admin/admin-panel.php:417 msgid "" "Use the Account Balance column on the table below to manage credit balance " "for users." msgstr "" -#: admin/admin-panel.php:446 +#: admin/admin-panel.php:436 msgid "" "AWPCP features are currently disabled because the plugin needs you to " "perform a manual upgrade before continuing." msgstr "" -#: admin/admin-panel.php:447 +#: admin/admin-panel.php:437 msgid "" "The duration for this upgrade operation varies between several minutes and " "a few hours, depending on the size of your database, the current network " @@ -215,7 +215,7 @@ msgid "" "until the upgrade is complete." msgstr "" -#: admin/admin-panel.php:450 +#: admin/admin-panel.php:440 #. translators: %1$s is the opening tag for the link to the page explaining how #. to downgrade to a previous version of the plugin, %2$s is the closing tag #. for the link. @@ -225,7 +225,7 @@ msgid "" "tonight or later this week when you have more time." msgstr "" -#: admin/admin-panel.php:456 +#: admin/admin-panel.php:446 #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. msgid "" @@ -233,7 +233,7 @@ msgid "" "button below." msgstr "" -#: admin/admin-panel.php:466 +#: admin/admin-panel.php:456 #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. msgid "" @@ -242,7 +242,7 @@ msgid "" "Classifieds admin section to Upgrade%2$s or click the button below." msgstr "" -#: admin/admin-panel.php:488 +#: admin/admin-panel.php:471 #. translators: %1$s is the opening tag for the link to the upgrade page, %2$s #. is the closing tag for the link. msgid "" @@ -252,7 +252,7 @@ msgid "" "admin section to Upgrade%2$s or click the button below." msgstr "" -#: admin/admin-panel.php:562 +#: admin/admin-panel.php:545 msgid "" "Page %1$s has the same URL as the %2$s from AWPCP. The WordPress page %1$s " "is going to be unreachable until this changes." @@ -262,7 +262,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: admin/admin-panel.php:570 +#: admin/admin-panel.php:553 msgid "" "The %1$s is dynamic; you don't need to create a real WordPress page to show " "the list of categories, the plugin will generate it for you. If the " @@ -278,142 +278,142 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: admin/admin-panel.php:765 admin/class-categories-admin-page.php:60 +#: admin/admin-panel.php:749 admin/class-categories-admin-page.php:60 #: admin/class-categories-admin-page.php:64 msgid "Manage Category Icon" msgstr "" -#: admin/admin-panel.php:770 admin/class-categories-admin-page.php:35 +#: admin/admin-panel.php:754 admin/class-categories-admin-page.php:35 #: admin/class-categories-admin-page.php:39 #: admin/class-categories-admin-page.php:133 msgid "Edit Category" msgstr "" -#: admin/admin-panel.php:771 admin/class-categories-admin-page.php:46 +#: admin/admin-panel.php:755 admin/class-categories-admin-page.php:46 #: admin/class-categories-admin-page.php:50 msgid "Delete Category" msgstr "" -#: admin/admin-panel.php:776 +#: admin/admin-panel.php:760 msgid "Select {category_name}" msgstr "" -#: admin/admin-panel.php:814 frontend/page-reply-to-ad.php:11 +#: admin/admin-panel.php:798 frontend/page-reply-to-ad.php:11 msgid "Reply to Ad" msgstr "" -#: admin/admin-panel.php:822 admin/templates/admin-panel-listings.tpl.php:5 +#: admin/admin-panel.php:806 admin/templates/admin-panel-listings.tpl.php:5 msgid "Place Ad" msgstr "" -#: admin/admin-panel.php:830 frontend/page-browse-ads.php:9 +#: admin/admin-panel.php:814 frontend/page-browse-ads.php:9 msgid "Browse Ads" msgstr "" -#: admin/admin-panel.php:834 admin/templates/admin-panel-listings.tpl.php:11 +#: admin/admin-panel.php:818 admin/templates/admin-panel-listings.tpl.php:20 #: frontend/page-search-ads.php:9 msgid "Search Ads" msgstr "" -#: admin/categories/class-create-category-admin-page.php:38 -#: admin/categories/class-delete-categories-admin-page.php:55 -#: admin/categories/class-delete-category-admin-page.php:68 -#: admin/categories/class-move-categories-admin-page.php:54 -#: admin/categories/class-update-category-admin-page.php:50 +#: admin/categories/class-create-category-admin-page.php:39 +#: admin/categories/class-delete-categories-admin-page.php:57 +#: admin/categories/class-delete-category-admin-page.php:69 +#: admin/categories/class-move-categories-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:51 msgid "invalid nonce" msgstr "" -#: admin/categories/class-create-category-admin-page.php:42 +#: admin/categories/class-create-category-admin-page.php:43 msgid "The new category was successfully added." msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:61 +#: admin/categories/class-delete-categories-admin-page.php:64 msgid "" "The categories couldn't be deleted because there was an error trying to " -"load the categoery that you selecetd to become the new category associated " -"to affected ads. " +"load the categoery that you selected to become the new category associated " +"to affected ads. %s" msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:71 +#: admin/categories/class-delete-categories-admin-page.php:75 msgid "The selected categories have been deleted." msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:76 +#: admin/categories/class-delete-categories-admin-page.php:80 msgid "There was an error trying to delete the selected categories." msgstr "" -#: admin/categories/class-delete-categories-admin-page.php:80 +#: admin/categories/class-delete-categories-admin-page.php:84 msgid "" " (out of ) categories were deleted. " "However, there was an error trying to delete the other " " categories." msgstr "" -#: admin/categories/class-delete-category-admin-page.php:41 +#: admin/categories/class-delete-category-admin-page.php:42 msgid "The category you are trying to delete doesn't exist." msgstr "" -#: admin/categories/class-delete-category-admin-page.php:53 +#: admin/categories/class-delete-category-admin-page.php:54 msgid "There was an error trying to delete the category. " msgstr "" -#: admin/categories/class-delete-category-admin-page.php:74 +#: admin/categories/class-delete-category-admin-page.php:75 msgid "There was an error trying to load the selected category. " msgstr "" -#: admin/categories/class-delete-category-admin-page.php:85 +#: admin/categories/class-delete-category-admin-page.php:86 msgid "The category was deleted successfully" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:103 +#: admin/categories/class-delete-category-admin-page.php:104 msgid "Are you sure you want to delete \"\" category?" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:116 +#: admin/categories/class-delete-category-admin-page.php:117 msgid "Delete category" msgstr "" -#: admin/categories/class-delete-category-admin-page.php:117 +#: admin/categories/class-delete-category-admin-page.php:118 #: admin/fees/class-fee-details-form.php:80 #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:31 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:12 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:23 #: admin/templates/admin-panel-fees-delete.tpl.php:12 #: admin/templates/admin-panel-users-balance-form.tpl.php:19 #: admin/templates/delete_form.tpl.php:16 #: frontend/templates/payments-billing-form.tpl.php:123 #: includes/listings/class-listing-action-with-confirmation.php:8 -#: includes/settings/renderers/class-button-settings-renderer.php:41 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 +#: includes/settings/renderers/class-button-settings-renderer.php:44 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:184 #: templates/admin/import-listings-admin-page-import-form.tpl.php:47 msgid "Cancel" msgstr "" -#: admin/categories/class-move-categories-admin-page.php:59 +#: admin/categories/class-move-categories-admin-page.php:60 msgid "" "The categories couldn't be moved because there was an error trying to load " "the target category. " msgstr "" -#: admin/categories/class-move-categories-admin-page.php:68 +#: admin/categories/class-move-categories-admin-page.php:69 msgid "The selected categories have been moved." msgstr "" -#: admin/categories/class-move-categories-admin-page.php:73 +#: admin/categories/class-move-categories-admin-page.php:74 msgid "There was an error trying to move the selected categories." msgstr "" -#: admin/categories/class-move-categories-admin-page.php:77 +#: admin/categories/class-move-categories-admin-page.php:78 msgid "" " (out of ) categories were moved. " "However, there was an error trying to move the other " "categories." msgstr "" -#: admin/categories/class-update-category-admin-page.php:55 +#: admin/categories/class-update-category-admin-page.php:56 msgid "The category you're trying to update doesn't exist." msgstr "" -#: admin/categories/class-update-category-admin-page.php:66 +#: admin/categories/class-update-category-admin-page.php:67 msgid "The category was successfully updated." msgstr "" @@ -439,106 +439,112 @@ msgstr "" msgid "Update" msgstr "" -#: admin/class-debug-admin-page.php:255 +#: admin/class-debug-admin-page.php:256 msgid "WordPress version" msgstr "" -#: admin/class-debug-admin-page.php:259 +#: admin/class-debug-admin-page.php:260 msgid "OS" msgstr "" -#: admin/class-debug-admin-page.php:263 +#: admin/class-debug-admin-page.php:264 msgid "Apache Version" msgstr "" -#: admin/class-debug-admin-page.php:267 +#: admin/class-debug-admin-page.php:268 +#: admin/templates/admin-panel-debug.tpl.php:177 msgid "PHP Version" msgstr "" -#: admin/class-debug-admin-page.php:271 +#: admin/class-debug-admin-page.php:272 msgid "MySQL Version" msgstr "" -#: admin/class-debug-admin-page.php:275 +#: admin/class-debug-admin-page.php:276 msgid "cURL Version" msgstr "" -#: admin/class-debug-admin-page.php:279 +#: admin/class-debug-admin-page.php:280 msgid "cURL SSL Version" msgstr "" -#: admin/class-debug-admin-page.php:332 admin/class-debug-admin-page.php:338 +#: admin/class-debug-admin-page.php:333 admin/class-debug-admin-page.php:339 msgid "N/A" msgstr "" -#: admin/class-import-listings-admin-page.php:100 +#: admin/class-import-listings-admin-page.php:102 msgid "" "The uploaded file doesn't look like a CSV file. Please upload a valid CSV " "file." msgstr "" -#: admin/class-import-listings-admin-page.php:104 +#: admin/class-import-listings-admin-page.php:106 msgid "There was an error moving the uploaded CSV file to a proper location." msgstr "" -#: admin/class-import-listings-admin-page.php:121 +#: admin/class-import-listings-admin-page.php:125 msgid "" "The uploaded file doesn't look like a ZIP file. Please upload a valid ZIP " "file." msgstr "" -#: admin/class-import-listings-admin-page.php:125 +#: admin/class-import-listings-admin-page.php:129 msgid "There was an error moving the uploaded ZIP file to a proper location." msgstr "" -#: admin/class-import-listings-admin-page.php:137 +#: admin/class-import-listings-admin-page.php:141 msgid "Incompatible ZIP Archive" msgstr "" -#: admin/class-import-listings-admin-page.php:139 +#: admin/class-import-listings-admin-page.php:143 msgid "Empty ZIP Archive" msgstr "" -#: admin/class-import-listings-admin-page.php:165 +#: admin/class-import-listings-admin-page.php:169 msgid "Could not write temporary file %s" msgstr "" -#: admin/class-import-listings-admin-page.php:174 +#: admin/class-import-listings-admin-page.php:178 msgid "The specified directory is not a valid path." msgstr "" -#: admin/class-import-listings-admin-page.php:176 +#: admin/class-import-listings-admin-page.php:180 msgid "The specified directory does not exists." msgstr "" -#: admin/class-import-listings-admin-page.php:357 +#: admin/class-import-listings-admin-page.php:361 msgid "" "() of rows " "processed. rows imported and " " rows rejected." msgstr "" -#: admin/class-settings-admin-page.php:230 +#: admin/class-import-settings-admin-page.php:121 +msgid "Your settings have been successfully imported." +msgstr "" + +#: admin/class-settings-admin-page.php:224 msgid "" "We could not obtain a valid access token from Facebook. The API returned " "the following error: %s" msgstr "" -#: admin/class-settings-admin-page.php:235 +#: admin/class-settings-admin-page.php:229 msgid "We could not obtain a valid access token from Facebook. Please try again." msgstr "" -#: admin/class-settings-admin-page.php:243 +#: admin/class-settings-admin-page.php:237 msgid "Facebook Config Diagnostics" msgstr "" -#: admin/class-settings-admin-page.php:250 +#: admin/class-settings-admin-page.php:244 msgid "Everything looks OK." msgstr "" #: admin/class-table-entry-action-ajax-handler.php:16 +#: admin/class-uninstall-admin-page.php:52 #: admin/pointers/class-drip-autoresponder-ajax-handler.php:23 -#: functions.php:531 +#: functions.php:537 #: includes/frontend/class-create-empty-listing-ajax-handler.php:104 #: includes/frontend/class-execute-listing-action-ajax-handler.php:58 #: includes/frontend/class-save-listing-information-ajax-handler.php:117 @@ -559,7 +565,7 @@ msgstr "" #: admin/credit-plans/class-credit-plans-admin-page.php:23 #: admin/fees/class-fees-admin-page.php:65 -#: admin/templates/admin-panel-fees-delete-form.tpl.php:13 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:24 #: admin/templates/delete_form.tpl.php:17 msgid "Delete" msgstr "" @@ -661,33 +667,33 @@ msgid "" "operation again. AWPCP will help you to switch existing Ads to the new fee." msgstr "" -#: admin/import/class-csv-importer-delegate.php:271 +#: admin/import/class-csv-importer-delegate.php:275 msgid "" "No user could be assigned to this listing. Our attempt to create a new user " "failed with the following error: ." msgstr "" -#: admin/import/class-csv-importer-delegate.php:470 +#: admin/import/class-csv-importer-delegate.php:476 msgid "The payment term type must be 'fee' or 'subscription'." msgstr "" -#: admin/import/class-csv-importer-delegate.php:476 +#: admin/import/class-csv-importer-delegate.php:482 msgid "" "There is no payment term with type {payment_term_type} and ID " "{payment_term_id}." msgstr "" -#: admin/import/class-csv-importer-delegate.php:490 +#: admin/import/class-csv-importer-delegate.php:496 msgid "" "No images directory was configured. Are you sure you uploaded a ZIP file or " "defined a local directory?" msgstr "" -#: admin/import/class-csv-importer-delegate.php:676 +#: admin/import/class-csv-importer-delegate.php:690 msgid "The value for Extra Field %s's is not allowed. Allowed values are: %%s" msgstr "" -#: admin/import/class-csv-importer-delegate.php:686 +#: admin/import/class-csv-importer-delegate.php:700 msgid "The value for Extra Field %s's is not allowed. Allowed value is one of: %%s" msgstr "" @@ -705,10 +711,30 @@ msgstr "" msgid "That Ad failed to delete." msgstr "" +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 +msgid "Thank you for signing up!" +msgstr "" + +#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 +msgid "" +"Please check your email and click the link provided to confirm your " +"subscription." +msgstr "" + #: admin/pointers/class-drip-autoresponder-ajax-handler.php:149 msgid "An unexpected error ocurred." msgstr "" +#: admin/pointers/class-drip-autoresponder.php:62 +msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" +msgstr "" + +#: admin/pointers/class-drip-autoresponder.php:63 +msgid "" +"Find out how to create a compelling, thriving classifieds site from scratch " +"in this ridiculously actionable (and free) 5-part email course." +msgstr "" + #: admin/pointers/class-drip-autoresponder.php:67 msgid "Email Address" msgstr "" @@ -717,26 +743,26 @@ msgstr "" msgid "Add" msgstr "" -#: admin/templates/admin-panel-credit-plans.tpl.php:10 +#: admin/templates/admin-panel-credit-plans.tpl.php:11 msgid "Credit System Settings" msgstr "" -#: admin/templates/admin-panel-credit-plans.tpl.php:21 +#: admin/templates/admin-panel-credit-plans.tpl.php:25 #: templates/admin/settings-admin-page.tpl.php:50 -#: templates/admin/settings-admin-page.tpl.php:64 +#: templates/admin/settings-admin-page.tpl.php:67 msgid "Save Changes" msgstr "" -#: admin/templates/admin-panel-credit-plans.tpl.php:34 +#: admin/templates/admin-panel-credit-plans.tpl.php:38 msgid "Add Credit Plan" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:8 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:6 +#: admin/templates/admin-panel-debug.tpl.php:11 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:8 msgid "Are you seeing 404 Not Found errors?" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:14 +#: admin/templates/admin-panel-debug.tpl.php:21 #. translators: %1$s: Start link HTML, %2$s: end link HTML, %3$s: Start link #. HTML msgid "" @@ -749,53 +775,78 @@ msgid "" "case, please contact %3$scustomer support%1$s." msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:49 +#: admin/templates/admin-panel-debug.tpl.php:84 msgid "Stored ID" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:50 +#: admin/templates/admin-panel-debug.tpl.php:85 msgid "Reference" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:51 +#: admin/templates/admin-panel-debug.tpl.php:86 #: frontend/templates/widget-categories-form.tpl.php:2 #: frontend/templates/widget-latest-ads-form.tpl.php:2 #: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:5 msgid "Title" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:60 +#: admin/templates/admin-panel-debug.tpl.php:95 msgid "Page not found" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:74 +#: admin/templates/admin-panel-debug.tpl.php:117 msgid "Option Name" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:75 +#: admin/templates/admin-panel-debug.tpl.php:118 msgid "Option Value" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:96 +#: admin/templates/admin-panel-debug.tpl.php:147 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:9 msgid "Pattern" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:97 +#: admin/templates/admin-panel-debug.tpl.php:148 #: templates/admin/debug/rewrite-rules-debug-section.tpl.php:10 msgid "Replacement" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:133 +#: admin/templates/admin-panel-debug.tpl.php:181 +msgid "cURL" +msgstr "" + +#: admin/templates/admin-panel-debug.tpl.php:185 +msgid "cURL's alternate CA info (cacert.pem)" +msgstr "" + +#: admin/templates/admin-panel-debug.tpl.php:189 +msgid "Exists" +msgstr "" + +#: admin/templates/admin-panel-debug.tpl.php:190 +msgid "Missing" +msgstr "" + +#: admin/templates/admin-panel-debug.tpl.php:195 +#: includes/settings/class-payment-general-settings.php:134 +msgid "PayPal" +msgstr "" + +#: admin/templates/admin-panel-debug.tpl.php:198 msgid "Working" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:148 -#: templates/admin/debug/debug-admin-page.tpl.php:36 +#: admin/templates/admin-panel-debug.tpl.php:201 +msgid "Not Working" +msgstr "" + +#: admin/templates/admin-panel-debug.tpl.php:216 +#: templates/admin/debug/debug-admin-page.tpl.php:42 msgid "Debug & Development Tools" msgstr "" -#: admin/templates/admin-panel-fees-delete-form.tpl.php:6 +#: admin/templates/admin-panel-fees-delete-form.tpl.php:7 #: admin/templates/delete_form.tpl.php:11 msgid "Are you sure you want to delete this item?" msgstr "" @@ -810,42 +861,40 @@ msgstr "" msgid "Switch" msgstr "" -#: admin/templates/admin-panel-fees.tpl.php:7 -msgid "Payment Settings page" -msgstr "" - -#: admin/templates/admin-panel-fees.tpl.php:9 +#: admin/templates/admin-panel-fees.tpl.php:8 msgid "" "Currently your classifieds are in Free mode. Fee plans are not available or " -"used during free mode.

To change this, visit the " -" and enable Charge Listing Fee setting." +"used during free mode.%1$s To change this, visit the %2$s and enable Charge " +"Listing Fee setting." msgstr "" -#: admin/templates/admin-panel-fees.tpl.php:20 -msgid "Add Fee Plan" +#: admin/templates/admin-panel-fees.tpl.php:11 +msgid "Payment Settings page" msgstr "" -#: admin/templates/admin-panel-fees.tpl.php:24 -msgid "Fee Plan sort order and sort direction Settings" +#: admin/templates/admin-panel-fees.tpl.php:22 +msgid "Add Fee Plan" msgstr "" #: admin/templates/admin-panel-fees.tpl.php:26 -msgid "" -"If you wish to change the sorting of your fee plans, you can change the " -"." +msgid "If you wish to change the sorting of your fee plans, you can change the %s." +msgstr "" + +#: admin/templates/admin-panel-fees.tpl.php:30 +msgid "Fee Plan sort order and sort direction Settings" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:14 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:17 msgid "Facebook Integration" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:16 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:23 msgid "" "We currently support two methods for posting new ads to Facebook: Facebook " "API and Zapier/IFTTT Webhooks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:18 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:25 msgid "" "Support for Facebook API will be removed in the future. Facebook " "significantly reduced access to their APIs across all apps on Apr, 2018. " @@ -856,45 +905,44 @@ msgid "" "that integration method." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:22 -msgid "You can read more about Facebook changes here: {facebook_post_link}" +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:30 +msgid "You can read more about Facebook changes here: %s" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:29 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:38 msgid "" "If you are currently using the Facebook API integration method and not " "having any issues, you don't have to do anything right now. If you are " "having issues, please read the Diagnostics section below to try to fix them." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:40 #: includes/settings/class-general-settings.php:735 msgid "Facebook API" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:35 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:46 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link msgid "" "This integration method allows you to post ads to Facebook using a Facebook " -"Application. Please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook " -"Application{/link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these " -"instructions{/link_to_facebook_integration_documentation}." +"Application. Please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:45 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:79 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 msgid "" "Add the following URL to the list of Valid OAuth Redirect URIs for the " "configuration of the Facebook Application:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:59 #: includes/settings/class-general-settings.php:736 msgid "Zapier/IFTTT Webhooks" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:51 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:61 msgid "" "Webhooks allow the plugin to send a request to one of the configured " "webhook URLs the first time an ad becomes publicly available on the " @@ -904,110 +952,107 @@ msgid "" "Facebook Page you control." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:55 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:67 +#. translators: %1$s opening anchor link, %2$s closing anchor link msgid "" -"Follow the instructiones to create the tasks on " -"{webhook_instructions_for_zapier}Zapier{/webhook_instructions_for_zapier} " -"or {webhook_instructions_for_ifttt}IFTTT{/webhook_instructions_for_ifttt}. " +"Follow the instructiones to create the tasks on %1$sZapier or IFTTT%2$s. " "Then update the settings at the bottom of this page to enter the webhook " "URLs associated with those tasks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:65 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:74 msgid "Facebook Cache" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:69 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:80 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s +#. opening anchor link, %4$s closing anchor link msgid "" "If you are using Webhooks to send ads to Facebook, a Facebook Application " "can still be used to ask Facebook to clear the cache it has stored for ads " "pages. This is useful to ensure users always see the latest version when " "the ad is shared on Facebook Pages, Groups and user feeds. If you decide to " -"use this feature, please read {link_to_how_to_register_facebook_apps}How to " -"Register and Configure a Facebook " -"Application{/link_to_how_to_register_facebook_apps} and follow " -"{link_to_facebook_integration_documentation}these " -"instructions{/link_to_facebook_integration_documentation}." +"use this feature, please read %1$sHow to Register and Configure a Facebook " +"Application%2$s and follow %3$sthese instructions%4$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:83 -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:93 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:120 msgid "Diagnostics" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:95 msgid "" "If you see the following error after trying to get a valid User Access " "Token:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:89 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:99 msgid "" "You have to submit your Facebook Application for Review and ask for those " "permissions or use the Webhooks integration method to send ads to Facebook " "using Zapier or IFTTT Webhooks." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:91 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:101 msgid "If you see the following error trying to send ads to a Facebook Group:" msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:97 -msgid "" -"Please make sure the Facebook Application " -"{link_to_how_to_add_apps_to_a_group}was added to the " -"group{/link_to_how_to_add_apps_to_a_group}." +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:109 +#. translators: %1$s opening anchor link, %2$s closing anchor link +msgid "Please make sure the Facebook Application %1$swas added to the group%2$s." msgstr "" -#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:108 +#: admin/templates/admin-panel-settings-facebook-settings.tpl.php:119 msgid "" "If you are having additional problems with Facebook API, click " "\"Diagnostics\" to check your settings." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:3 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:4 msgid "Restore AWPCP Pages" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:8 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:10 msgid "The following pages were restored: ." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:19 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:21 msgid "" "The pages listed below are missing. The plugin is looking for a page with a " "particular ID but it seems that the page was permanently deleted. Please a " "select a new one." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:23 -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:71 -msgid "%s (Default name: %s)." +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:28 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:97 +msgid "%1$s (Default name: %2$s)." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:31 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:39 msgid "" "The following pages are not published. Did you move them to the Trash by " "accident or saved them as Draft?" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:41 -msgid "%s — Selected page: %s (%s)" +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:57 +#. translators: %1$s page label, %2$s link to the page, %3$s the page status. +msgid "%1$s Selected page: %2$s (%3$s)" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:49 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:69 msgid "" "The following pages are not currently assigned. Please select an existing " "page or create a new one to use as the following plugin pages:" msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:64 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 msgid "" -" — You can select one of these pages that already include " -"the necessary shortcode: or create a new one." +"%1$s You can select one of these pages that already include the necessary " +"shortcode: %2$s or %3$screate a new one%4$s." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:85 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:115 msgid "" "Use the button below to have the plugin attempt to find the necessary " "pages. If you continue to have problems or seeing page related warnings " @@ -1015,75 +1060,77 @@ msgid "" "button to have the plugin create them again." msgstr "" -#: admin/templates/admin-panel-settings-pages-settings.tpl.php:86 +#: admin/templates/admin-panel-settings-pages-settings.tpl.php:116 msgid "Restore Pages" msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:13 +#: admin/templates/admin-panel-uninstall.tpl.php:10 msgid "" "Thank you for using AWPCP. You have arrived at this page by clicking the " "Uninstall link. If you are certain you wish to uninstall the plugin, please " "click the button at the bottom to proceed." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "" "PLEASE NOTE: When you click the button below, ALL your data related to the " "plugin including your classifieds, images and everything else created by " "the plugin will be permanently deleted." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:15 +#: admin/templates/admin-panel-uninstall.tpl.php:12 msgid "We cannot recover the data after you click this." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:18 +#: admin/templates/admin-panel-uninstall.tpl.php:15 msgid "" "BEFORE YOU CLICK THE BUTTON BELOW — read carefully in case you want " "to extract your data first!" msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:21 +#: admin/templates/admin-panel-uninstall.tpl.php:18 msgid "" "If you plan to use the data created by the plugin please export the data " "from your mysql database before clicking the uninstall link." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:22 +#: admin/templates/admin-panel-uninstall.tpl.php:21 msgid "" -"If you want to keep your user uploaded images, please download to " -"your local drive for later use or rename the folder to something else so " -"the uninstaller can bypass it." +"If you want to keep your user uploaded images, please download %s to your " +"local drive for later use or rename the folder to something else so the " +"uninstaller can bypass it." msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:28 +#: admin/templates/admin-panel-uninstall.tpl.php:29 msgid "Proceed with Uninstalling AWP Classifieds Plugin" msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:33 +#: admin/templates/admin-panel-uninstall.tpl.php:35 msgid "Almost done... one more step!" msgstr "" -#: admin/templates/admin-panel-uninstall.tpl.php:36 -msgid "Please click here to complete the uninstallation process" +#: admin/templates/admin-panel-uninstall.tpl.php:39 +msgid "Please click here to deactivate plugins." msgstr "" #: admin/templates/admin-panel-users-balance-form.tpl.php:12 +#: frontend/templates/payments-transaction-items-table.tpl.php:5 +#: frontend/templates/payments-transaction-items-table.tpl.php:17 msgid "Amount" msgstr "" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:12 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:14 msgid "Manual Upgrade Required" msgstr "" -#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:17 +#: admin/templates/admin-pending-manual-upgrade-notice.tpl.php:26 msgid "Upgrade" msgstr "" #: admin/templates/admin-quick-start-guide-notice.tpl.php:2 msgid "" -"Hello and welcome to AWP Classifieds. This plugin is super " -"easy to use AND highly configurable." +"Hello and welcome to AWP Classifieds. This plugin is super easy to use AND " +"highly configurable." msgstr "" #: admin/templates/admin-quick-start-guide-notice.tpl.php:3 @@ -1091,38 +1138,48 @@ msgid "Would you like some help getting started?" msgstr "" #: admin/templates/admin-quick-start-guide-notice.tpl.php:12 +msgid "I'll figure it out on my own." +msgstr "" + +#: admin/templates/admin-quick-start-guide-notice.tpl.php:15 msgid "Yes Please!" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:14 +#: admin/templates/admin-quick-start-guide-notice.tpl.php:20 +msgid "Help me get my classifieds running quickly." +msgstr "" + +#: admin/templates/admin-sidebar.tpl.php:15 msgid "Like this plugin?" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:20 +#: admin/templates/admin-sidebar.tpl.php:24 msgid "Give a 5 star rating on WordPress.org." msgstr "" -#: admin/templates/admin-sidebar.tpl.php:36 +#: admin/templates/admin-sidebar.tpl.php:42 msgid "Get more features!" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:67 msgid "Found a bug?" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:61 +#: admin/templates/admin-sidebar.tpl.php:68 msgid "Need Support?" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:70 -msgid "Quick Start Guide" +#: admin/templates/admin-sidebar.tpl.php:80 +#. translators: %1$s: open anchor link, %2$s close anchor link +msgid "Browse the %1$sQuick Start Guide%2$s" msgstr "" -#: admin/templates/admin-sidebar.tpl.php:80 -msgid "Documentation" +#: admin/templates/admin-sidebar.tpl.php:90 +#. translators: %1$s: open anchor link, %2$s close anchor link +msgid "Read the full %1$sDocumentation%2$s." msgstr "" -#: admin/templates/admin-sidebar.tpl.php:91 +#: admin/templates/admin-sidebar.tpl.php:98 msgid "Get Help" msgstr "" @@ -1132,10 +1189,9 @@ msgstr "" #: admin/templates/admin-widget-modification-notice.tpl.php:3 msgid "" -"AWPCP 3.0 includes several modifications to the Search " -"Ads, Featured Ads and Latest Ads " -"widgets. For example, the Latest Ads widget can now be used in multiple " -"sidebars. Also, there is a new Widget to show Random Ads." +"AWPCP 3.0 includes several modifications to the Search Ads, Featured Ads " +"and Latest Ads widgets. For example, the Latest Ads widget can now be used " +"in multiple sidebars. Also, there is a new Widget to show Random Ads." msgstr "" #: admin/templates/admin-widget-modification-notice.tpl.php:4 @@ -1236,55 +1292,55 @@ msgid "" "understand more about PHP and how to upgrade." msgstr "" -#: awpcp.php:200 +#: awpcp.php:198 msgid "" "AWP Classifieds Plugin installation is incomplete. Please " "{support_link}contact support{/support_link}." msgstr "" -#: frontend/ad-functions.php:155 +#: frontend/ad-functions.php:159 #: includes/listings/class-listing-renewed-email-notifications.php:85 #. translators: %s is the title of the listing. msgid "The ad \"%s\" has been successfully renewed." msgstr "" -#: frontend/ad-functions.php:189 frontend/page-renew-ad.php:160 +#: frontend/ad-functions.php:193 frontend/page-renew-ad.php:160 msgid "The Ad has been successfully renewed. New expiration date is %s." msgstr "" -#: frontend/ad-functions.php:194 frontend/page-renew-ad.php:152 +#: frontend/ad-functions.php:198 frontend/page-renew-ad.php:151 #: templates/admin/listings/quick-view-listing-admin-page.tpl.php:18 #: templates/admin/listings-media-center.tpl.php:6 #: templates/admin/view-listing-admin-page.tpl.php:14 msgid "Return to Listings" msgstr "" -#: frontend/ad-functions.php:212 frontend/page-place-ad.php:151 +#: frontend/ad-functions.php:216 frontend/page-place-ad.php:154 msgid "" "You do not have permission to perform the function you are trying to " "perform. Access to this page has been denied" msgstr "" -#: frontend/ad-functions.php:227 +#: frontend/ad-functions.php:231 msgid "The Ad has been deleted" msgstr "" -#: frontend/ad-functions.php:230 +#: frontend/ad-functions.php:234 msgid "" "Your Ad details and any photos you have uploaded have been deleted from the " "system" msgstr "" -#: frontend/ad-functions.php:234 +#: frontend/ad-functions.php:238 #: includes/frontend/class-edit-listing-page.php:188 msgid "The specified Ad doesn't exists." msgstr "" -#: frontend/ad-functions.php:236 +#: frontend/ad-functions.php:240 msgid "There was an error trying to delete the Ad. The Ad was not deleted." msgstr "" -#: frontend/ad-functions.php:239 +#: frontend/ad-functions.php:243 msgid "Problem encountered. Cannot complete request" msgstr "" @@ -1302,26 +1358,26 @@ msgid "" "from all categories." msgstr "" -#: frontend/page-place-ad.php:74 +#: frontend/page-place-ad.php:75 #: includes/views/class-verify-transaction-exists-step-decorator.php:17 msgid "" "There was an error processing your Payment Request. Please try again or " "contact an Administrator." msgstr "" -#: frontend/page-place-ad.php:132 +#: frontend/page-place-ad.php:133 msgid "Please select a category." msgstr "" -#: frontend/page-place-ad.php:133 -msgid "Please select the Ad's owner." +#: frontend/page-place-ad.php:134 +msgid "Please select the Ad owner." msgstr "" -#: frontend/page-place-ad.php:134 +#: frontend/page-place-ad.php:135 msgid "Please select a payment term." msgstr "" -#: frontend/page-place-ad.php:165 frontend/page-renew-ad.php:87 +#: frontend/page-place-ad.php:168 frontend/page-renew-ad.php:86 msgid "" "You are trying to post an Ad using a transaction created for a different " "purpose. Please go back to the %s page.
If you think " @@ -1329,53 +1385,53 @@ msgid "" "transaction ID: %s" msgstr "" -#: frontend/page-place-ad.php:174 +#: frontend/page-place-ad.php:177 #: includes/frontend/class-submit-listing-page.php:291 msgid "" "You can't post an Ad at this time because the payment associated with this " "transaction failed (see reasons below)." msgstr "" -#: frontend/page-place-ad.php:256 +#: frontend/page-place-ad.php:259 #: includes/listings/class-payment-information-validator.php:88 msgid "You should select an owner for this Ad." msgstr "" -#: frontend/page-place-ad.php:260 frontend/page-renew-ad.php:197 +#: frontend/page-place-ad.php:263 frontend/page-renew-ad.php:199 #: includes/listings/class-payment-information-validator.php:64 #: includes/listings/class-payment-information-validator.php:73 msgid "You should choose one of the available Payment Terms." msgstr "" -#: frontend/page-place-ad.php:264 +#: frontend/page-place-ad.php:267 #: includes/listings/class-payment-information-validator.php:75 msgid "The Payment Term you selected is not available for non-administrator users." msgstr "" -#: frontend/page-place-ad.php:280 +#: frontend/page-place-ad.php:283 #: includes/listings/class-payment-information-validator.php:108 msgid "Ad Category field is required" msgstr "" -#: frontend/page-place-ad.php:285 +#: frontend/page-place-ad.php:288 #: includes/listings/class-payment-information-validator.php:119 msgid "You cannot list your Ad in top level categories." msgstr "" -#: frontend/page-place-ad.php:291 +#: frontend/page-place-ad.php:294 #: includes/frontend/class-submit-listing-page.php:190 msgid "" "Hi, You need to be a registered user to post Ads in this website. Please " "use the form below to login or click the link to register." msgstr "" -#: frontend/page-place-ad.php:429 frontend/page-place-ad.php:836 +#: frontend/page-place-ad.php:432 frontend/page-place-ad.php:839 #: frontend/page-renew-ad.php:297 #: includes/frontend/class-order-submit-listing-section.php:119 msgid "You are logged in as an administrator. Any payment steps will be skipped." msgstr "" -#: frontend/page-place-ad.php:511 frontend/page-renew-ad.php:347 +#: frontend/page-place-ad.php:514 frontend/page-renew-ad.php:347 #: includes/frontend/class-submit-listing-page.php:333 #: includes/views/class-verify-payment-can-be-processed-step-decorator.php:18 #. translators: %s is an alphanumeric string that identifies a payment @@ -1387,28 +1443,28 @@ msgid "" "%s" msgstr "" -#: frontend/page-place-ad.php:834 +#: frontend/page-place-ad.php:837 msgid "" "Your Ad details have been filled out in the form below. Make any changes " "needed and then resubmit the Ad to update it." msgstr "" -#: frontend/page-place-ad.php:838 +#: frontend/page-place-ad.php:841 msgid "Fill out the form below to post your classified ad." msgstr "" -#: frontend/page-place-ad.php:842 +#: frontend/page-place-ad.php:845 msgid "" "We found errors in the details you submitted. A detailed error message is " "shown in front or below each invalid field. Please fix the errors and " "submit the form again." msgstr "" -#: frontend/page-place-ad.php:861 +#: frontend/page-place-ad.php:864 msgid "Start & End Date" msgstr "" -#: frontend/page-place-ad.php:863 +#: frontend/page-place-ad.php:866 #: includes/admin/import/class-csv-importer-columns.php:185 #: includes/admin/listings/class-listings-table-nav-handler.php:151 #: includes/form-fields/class-listing-form-fields.php:127 @@ -1416,7 +1472,7 @@ msgstr "" msgid "Start Date" msgstr "" -#: frontend/page-place-ad.php:865 +#: frontend/page-place-ad.php:868 #: includes/admin/import/class-csv-importer-columns.php:196 #: includes/admin/listings/class-listings-table-nav-handler.php:152 #: includes/form-fields/class-listing-form-fields.php:131 @@ -1424,158 +1480,158 @@ msgstr "" msgid "End Date" msgstr "" -#: frontend/page-place-ad.php:973 +#: frontend/page-place-ad.php:976 msgid "" "Hi, Payment is required for posting Ads in this website and we couldn't " "find a Payment Transaction assigned to you. You can't post Ads this time. " "If you think this is an error please contact the website Administrator." msgstr "" -#: frontend/page-place-ad.php:1000 +#: frontend/page-place-ad.php:1003 msgid "You did not select a Payment Term. Please select a Payment Term for this Ad." msgstr "" -#: frontend/page-place-ad.php:1005 +#: frontend/page-place-ad.php:1008 msgid "Please enter a start date for the Ad." msgstr "" -#: frontend/page-place-ad.php:1010 +#: frontend/page-place-ad.php:1013 msgid "Please enter an end date for the Ad." msgstr "" -#: frontend/page-place-ad.php:1014 +#: frontend/page-place-ad.php:1017 #: includes/form-fields/class-form-fields-validator.php:71 msgid "The start date must occur before the end date." msgstr "" -#: frontend/page-place-ad.php:1019 +#: frontend/page-place-ad.php:1022 msgid "You did not enter a title for your Ad" msgstr "" -#: frontend/page-place-ad.php:1024 +#: frontend/page-place-ad.php:1027 msgid "You did not enter any text for your Ad. Please enter some text for your Ad." msgstr "" -#: frontend/page-place-ad.php:1037 +#: frontend/page-place-ad.php:1040 msgid "You did not enter your website address. Your website address is required." msgstr "" -#: frontend/page-place-ad.php:1043 +#: frontend/page-place-ad.php:1046 msgid "" "Your website address is not properly formatted. Please make sure you have " "included the http:// part of your website address" msgstr "" -#: frontend/page-place-ad.php:1048 +#: frontend/page-place-ad.php:1051 msgid "You did not enter your name. Your name is required." msgstr "" -#: frontend/page-place-ad.php:1053 +#: frontend/page-place-ad.php:1056 msgid "You did not enter your email. Your email is required." msgstr "" -#: frontend/page-place-ad.php:1058 frontend/page-reply-to-ad.php:160 +#: frontend/page-place-ad.php:1061 frontend/page-reply-to-ad.php:160 msgid "" "The email address you entered was not a valid email address. Please check " "for errors and try again." msgstr "" -#: frontend/page-place-ad.php:1060 +#: frontend/page-place-ad.php:1063 msgid "" "The email address you entered is not allowed in this website. Please use an " "email address from one of the following domains: %s." msgstr "" -#: frontend/page-place-ad.php:1071 +#: frontend/page-place-ad.php:1074 msgid "You did not enter your phone number. Your phone number is required." msgstr "" -#: frontend/page-place-ad.php:1089 -#: includes/helpers/widgets/multiple-region-selector.php:124 +#: frontend/page-place-ad.php:1092 +#: includes/helpers/widgets/multiple-region-selector.php:144 msgid "You did not enter your country. Your country is required." msgstr "" -#: frontend/page-place-ad.php:1098 -#: includes/helpers/widgets/multiple-region-selector.php:125 +#: frontend/page-place-ad.php:1101 +#: includes/helpers/widgets/multiple-region-selector.php:145 msgid "You did not enter your state. Your state is required." msgstr "" -#: frontend/page-place-ad.php:1107 -#: includes/helpers/widgets/multiple-region-selector.php:127 +#: frontend/page-place-ad.php:1110 +#: includes/helpers/widgets/multiple-region-selector.php:147 msgid "You did not enter your city. Your city is required." msgstr "" -#: frontend/page-place-ad.php:1116 -#: includes/helpers/widgets/multiple-region-selector.php:126 +#: frontend/page-place-ad.php:1119 +#: includes/helpers/widgets/multiple-region-selector.php:146 msgid "You did not enter your county/village. Your county/village is required." msgstr "" -#: frontend/page-place-ad.php:1123 +#: frontend/page-place-ad.php:1126 msgid "You did not enter the price of your item. The item price is required." msgstr "" -#: frontend/page-place-ad.php:1129 +#: frontend/page-place-ad.php:1132 msgid "" "You have entered an invalid item price. Make sure your price contains " "numbers only. Please do not include currency symbols." msgstr "" -#: frontend/page-place-ad.php:1147 +#: frontend/page-place-ad.php:1150 msgid "You did not accept the terms of service" msgstr "" -#: frontend/page-place-ad.php:1163 +#: frontend/page-place-ad.php:1166 msgid "Your Ad was flagged as spam. Please contact the administrator of this site." msgstr "" -#: frontend/page-place-ad.php:1354 +#: frontend/page-place-ad.php:1357 msgid "" "We were unable to find a Payment Transaction assigned to this operation. No " "images can be added at this time." msgstr "" -#: frontend/page-place-ad.php:1361 +#: frontend/page-place-ad.php:1364 msgid "The specified Ad doesn't exists. No images can be added at this time." msgstr "" -#: frontend/page-place-ad.php:1440 frontend/page-place-ad.php:1492 +#: frontend/page-place-ad.php:1443 frontend/page-place-ad.php:1495 #: includes/frontend/class-submit-listing-page.php:393 msgid "We were unable to find a Payment Transaction assigned to this operation." msgstr "" -#: frontend/page-place-ad.php:1447 frontend/page-place-ad.php:1499 +#: frontend/page-place-ad.php:1450 frontend/page-place-ad.php:1502 #: frontend/page-renew-ad.php:408 #: includes/frontend/class-submit-listing-page.php:400 msgid "The Ad associated with this transaction doesn't exists." msgstr "" -#: frontend/page-renew-ad.php:73 +#: frontend/page-renew-ad.php:72 msgid "That Ad doesn't need to be renewed." msgstr "" -#: frontend/page-renew-ad.php:78 +#: frontend/page-renew-ad.php:77 msgid "" "There was an error trying to renew your Ad. The URL is not valid. Please " "contact the Administrator of this site for further assistance." msgstr "" -#: frontend/page-renew-ad.php:94 +#: frontend/page-renew-ad.php:93 msgid "" "You can't renew your Ad at this time because the payment associated with " "this transaction failed (see reasons below)." msgstr "" -#: frontend/page-renew-ad.php:117 +#: frontend/page-renew-ad.php:116 msgid "" "The Ad was posted under a Payment Term that no longer exists or is " "disabled. The Ad can't be renewed." msgstr "" -#: frontend/page-renew-ad.php:154 +#: frontend/page-renew-ad.php:153 msgid "You can see your Ad here" msgstr "" -#: frontend/page-renew-ad.php:200 +#: frontend/page-renew-ad.php:201 msgid "" "You are trying to renew your Ad using a different Payment Term. That's not " "allowed." @@ -1674,7 +1730,7 @@ msgstr "" msgid "Visit Website" msgstr "" -#: frontend/placeholders.php:655 includes/functions/listings.php:405 +#: frontend/placeholders.php:655 includes/functions/listings.php:415 msgid "Location" msgstr "" @@ -1742,30 +1798,30 @@ msgid "" "Transaction details are shown below" msgstr "" -#: frontend/templates/email-abort-payment-admin.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:12 msgid "User Name" msgstr "" -#: frontend/templates/email-abort-payment-admin.tpl.php:10 +#: frontend/templates/email-abort-payment-admin.tpl.php:13 msgid "User Login" msgstr "" -#: frontend/templates/email-abort-payment-admin.tpl.php:11 +#: frontend/templates/email-abort-payment-admin.tpl.php:14 msgid "User Email" msgstr "" -#: frontend/templates/email-abort-payment-admin.tpl.php:15 +#: frontend/templates/email-abort-payment-admin.tpl.php:18 #: includes/admin/import/class-csv-importer-columns.php:219 msgid "Payment Term Type" msgstr "" -#: frontend/templates/email-abort-payment-admin.tpl.php:16 +#: frontend/templates/email-abort-payment-admin.tpl.php:19 #: includes/admin/import/class-csv-importer-columns.php:207 msgid "Payment Term ID" msgstr "" -#: frontend/templates/email-abort-payment-admin.tpl.php:17 -#: frontend/templates/email-abort-payment-user.tpl.php:9 +#: frontend/templates/email-abort-payment-admin.tpl.php:20 +#: frontend/templates/email-abort-payment-user.tpl.php:12 msgid "Payment transaction ID" msgstr "" @@ -1775,11 +1831,11 @@ msgid "Additional Details" msgstr "" #: frontend/templates/email-ad-enabled-user.tpl.php:3 -#: frontend/templates/email-send-ad-access-key.tpl.php:1 +#: frontend/templates/email-send-ad-access-key.tpl.php:3 msgid "Hello %s," msgstr "" -#: frontend/templates/email-ad-enabled-user.tpl.php:6 +#: frontend/templates/email-ad-enabled-user.tpl.php:8 msgid "" "Your Ad \"%1$s\" was recently approved by the admin. You should be able to " "see the Ad published here: %2$s." @@ -1843,8 +1899,8 @@ msgstr "" msgid "Ad Information" msgstr "" -#: frontend/templates/email-ad-updated-user.tpl.php:18 -#: frontend/templates/email-place-ad-success-user.tpl.php:45 +#: frontend/templates/email-ad-updated-user.tpl.php:20 +#: frontend/templates/email-place-ad-success-user.tpl.php:47 msgid "" "If you have questions about your listing contact %s. Thank you for your " "business." @@ -1878,19 +1934,19 @@ msgstr "" msgid "The next link will take you to a page where you can edit the listing:" msgstr "" -#: frontend/templates/email-send-ad-access-key.tpl.php:3 +#: frontend/templates/email-send-ad-access-key.tpl.php:7 msgid "" -"Below you will find the access key for your Ad \"%s\" associated to the " +"Below you will find the access key for your Ad \"%s\" associated with the " "email address %s." msgstr "" -#: frontend/templates/email-send-ad-access-key.tpl.php:6 +#: frontend/templates/email-send-ad-access-key.tpl.php:10 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:13 #: templates/admin/view-listing-admin-page.tpl.php:11 msgid "Access Key" msgstr "" -#: frontend/templates/email-send-ad-access-key.tpl.php:7 +#: frontend/templates/email-send-ad-access-key.tpl.php:11 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:14 msgid "Edit Link:" msgstr "" @@ -1925,6 +1981,11 @@ msgstr "" msgid "Classifieds Menu" msgstr "" +#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 +#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 +msgid "Complete Payment" +msgstr "" + #: frontend/templates/page-buy-credits-final-step.tpl.php:7 msgid "" "The credit in your account can be used to pay for posting your Ads. You can " @@ -1938,9 +1999,9 @@ msgstr "" #: frontend/templates/page-buy-credits-select-credit-plan-step.tpl.php:18 #: frontend/templates/page-renew-ad-order-step.tpl.php:27 -#: frontend/templates/page-reply-to-ad.tpl.php:43 +#: frontend/templates/page-reply-to-ad.tpl.php:48 #: frontend/templates/payments-billing-form.tpl.php:124 -#: frontend/templates/payments-checkout-page.tpl.php:28 +#: frontend/templates/payments-checkout-page.tpl.php:27 #: frontend/templates/payments-payment-completed-page.tpl.php:18 msgid "Continue" msgstr "" @@ -1970,27 +2031,27 @@ msgstr "" msgid "Enter Ad Details" msgstr "" -#: frontend/templates/page-place-ad-details-step.tpl.php:35 +#: frontend/templates/page-place-ad-details-step.tpl.php:36 #: includes/admin/import/class-csv-importer-columns.php:79 #: includes/admin/listings/class-listing-owner-metabox.php:59 msgid "Ad Owner" msgstr "" -#: frontend/templates/page-place-ad-details-step.tpl.php:41 -#: frontend/templates/page-place-ad-order-step.tpl.php:60 +#: frontend/templates/page-place-ad-details-step.tpl.php:43 +#: frontend/templates/page-place-ad-order-step.tpl.php:61 msgid "User" msgstr "" -#: frontend/templates/page-place-ad-details-step.tpl.php:42 -#: frontend/templates/page-place-ad-order-step.tpl.php:61 +#: frontend/templates/page-place-ad-details-step.tpl.php:44 +#: frontend/templates/page-place-ad-order-step.tpl.php:62 msgid "Select an User owner for this Ad" msgstr "" -#: frontend/templates/page-place-ad-details-step.tpl.php:77 +#: frontend/templates/page-place-ad-details-step.tpl.php:81 msgid "Add Details and Contact Information" msgstr "" -#: frontend/templates/page-place-ad-order-step.tpl.php:73 +#: frontend/templates/page-place-ad-order-step.tpl.php:75 msgid "Please select a payment term for your Ad" msgstr "" @@ -2029,25 +2090,29 @@ msgstr "" msgid "Your Ad has been renewed" msgstr "" -#: frontend/templates/page-renew-ad.tpl.php:15 +#: frontend/templates/page-renew-ad-order-step.tpl.php:6 +msgid "Select Payment Term" +msgstr "" + +#: frontend/templates/page-renew-ad.tpl.php:13 msgid "" "Please click the payment button below to proceed with Payment for your Ad " "renewal. You will be asked to pay %s." msgstr "" -#: frontend/templates/page-reply-to-ad.tpl.php:7 +#: frontend/templates/page-reply-to-ad.tpl.php:10 msgid "You are responding to Ad: %s." msgstr "" -#: frontend/templates/page-reply-to-ad.tpl.php:18 +#: frontend/templates/page-reply-to-ad.tpl.php:24 msgid "Your name" msgstr "" -#: frontend/templates/page-reply-to-ad.tpl.php:24 +#: frontend/templates/page-reply-to-ad.tpl.php:30 msgid "Your email address" msgstr "" -#: frontend/templates/page-reply-to-ad.tpl.php:30 +#: frontend/templates/page-reply-to-ad.tpl.php:36 msgid "Your message" msgstr "" @@ -2055,19 +2120,19 @@ msgstr "" msgid "Search for ads containing this word or phrase" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:37 +#: frontend/templates/page-search-ads.tpl.php:41 msgid "For ads posted by" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:39 +#: frontend/templates/page-search-ads.tpl.php:43 msgid "All Users" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:48 +#: frontend/templates/page-search-ads.tpl.php:55 msgid "Min price" msgstr "" -#: frontend/templates/page-search-ads.tpl.php:52 +#: frontend/templates/page-search-ads.tpl.php:59 msgid "Max price" msgstr "" @@ -2075,9 +2140,15 @@ msgstr "" msgid "Pay With 2Checkout" msgstr "" -#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:791 -#: includes/admin/class-listings-personal-data-provider.php:115 -#: includes/admin/class-listings-personal-data-provider.php:125 +#: frontend/templates/payments-billing-form.tpl.php:1 +msgid "" +"Please fill in the billing information in the form below to place your " +"payment." +msgstr "" + +#: frontend/templates/payments-billing-form.tpl.php:6 functions.php:797 +#: includes/admin/class-listings-personal-data-provider.php:117 +#: includes/admin/class-listings-personal-data-provider.php:127 #: includes/admin/import/class-csv-importer-columns.php:230 msgid "Country" msgstr "" @@ -2115,15 +2186,15 @@ msgid "Address Line 2" msgstr "" #: frontend/templates/payments-billing-form.tpl.php:92 -#: includes/admin/class-listings-personal-data-provider.php:116 -#: includes/admin/class-listings-personal-data-provider.php:126 +#: includes/admin/class-listings-personal-data-provider.php:118 +#: includes/admin/class-listings-personal-data-provider.php:128 #: includes/admin/import/class-csv-importer-columns.php:238 msgid "State" msgstr "" -#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:811 -#: includes/admin/class-listings-personal-data-provider.php:117 -#: includes/admin/class-listings-personal-data-provider.php:127 +#: frontend/templates/payments-billing-form.tpl.php:101 functions.php:817 +#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:129 #: includes/admin/import/class-csv-importer-columns.php:260 msgid "City" msgstr "" @@ -2137,14 +2208,46 @@ msgstr "" msgid "Email" msgstr "" +#: frontend/templates/payments-credit-plans-table.tpl.php:7 +msgid "" +"You can additionally purchase a Credit Plan to add credit to your account. " +"If you select to pay using credits, the price of the selected payment term " +"will be deducted from your account balance after you have completed payment." +msgstr "" + #: frontend/templates/payments-credit-plans-table.tpl.php:22 msgid "No credit plans available." msgstr "" +#: frontend/templates/payments-credit-plans-table.tpl.php:51 +msgid "clear selection" +msgstr "" + +#: frontend/templates/payments-payment-completed-page.tpl.php:2 +msgid "Transaction Details" +msgstr "" + +#: frontend/templates/payments-payment-page.tpl.php:3 +msgid "You are about to pay for the following items." +msgstr "" + +#: frontend/templates/payments-payment-page.tpl.php:5 +msgid "Payment Terms" +msgstr "" + #: frontend/templates/payments-paypal-payment-button.tpl.php:30 msgid "Make payments with PayPal - it's fast, free and secure!" msgstr "" +#: frontend/templates/payments-transaction-items-table.tpl.php:4 +#: frontend/templates/payments-transaction-items-table.tpl.php:13 +msgid "Item" +msgstr "" + +#: frontend/templates/payments-transaction-items-table.tpl.php:34 +msgid "Total Amount (credit)" +msgstr "" + #: frontend/templates/widget-categories-form.tpl.php:9 msgid "Hide empty categories." msgstr "" @@ -2216,7 +2319,7 @@ msgstr "" msgid "Show Posted By field?" msgstr "" -#: frontend/templates/widget-search-form.tpl.php:28 +#: frontend/templates/widget-search-form.tpl.php:32 msgid "Show Category field?" msgstr "" @@ -2232,23 +2335,23 @@ msgstr "" msgid "Ad Categories" msgstr "" -#: frontend/widget-latest-ads.php:13 +#: frontend/widget-latest-ads.php:17 msgid "AWPCP Latest Ads" msgstr "" -#: frontend/widget-latest-ads.php:14 +#: frontend/widget-latest-ads.php:18 msgid "Displays a list of latest Ads" msgstr "" -#: frontend/widget-latest-ads.php:30 +#: frontend/widget-latest-ads.php:34 msgid "Latest Ads" msgstr "" -#: frontend/widget-latest-ads.php:72 +#: frontend/widget-latest-ads.php:76 msgid "There are currently no ads to show." msgstr "" -#: frontend/widget-latest-ads.php:114 +#: frontend/widget-latest-ads.php:118 msgid "Read more" msgstr "" @@ -2280,67 +2383,67 @@ msgstr "" msgid "Select Option" msgstr "" -#: frontend/widget-search.php:105 +#: frontend/widget-search.php:106 msgid "Search by keyword" msgstr "" -#: frontend/widget-search.php:119 +#: frontend/widget-search.php:121 msgid "Search by Category" msgstr "" -#: frontend/widget-search.php:137 +#: frontend/widget-search.php:141 msgid "Search" msgstr "" -#: functions.php:427 +#: functions.php:431 msgid "%s ago" msgstr "" -#: functions.php:604 +#: functions.php:610 msgid "Ads per page:" msgstr "" -#: functions.php:621 +#: functions.php:627 msgid "Page {current_page_number} of {number_of_pages}" msgstr "" -#: functions.php:732 +#: functions.php:738 msgid "None" msgstr "" -#: functions.php:792 +#: functions.php:798 msgid "separate countries by commas" msgstr "" -#: functions.php:801 +#: functions.php:807 msgid "State/Province" msgstr "" -#: functions.php:802 +#: functions.php:808 msgid "separate states by commas" msgstr "" -#: functions.php:812 +#: functions.php:818 msgid "separate cities by commas" msgstr "" -#: functions.php:821 +#: functions.php:827 msgid "County/Village/Other" msgstr "" -#: functions.php:822 +#: functions.php:828 msgid "separate counties by commas" msgstr "" -#: functions.php:1036 +#: functions.php:1050 msgid "-- Choose a Country --" msgstr "" -#: functions.php:1507 templates/admin/main-classifieds-admin-page.tpl.php:58 +#: functions.php:1537 templates/admin/main-classifieds-admin-page.tpl.php:58 msgid "Free" msgstr "" -#: functions.php:1852 templates/components/media-center.tpl.php:14 +#: functions.php:1893 templates/components/media-center.tpl.php:14 msgid "" "The images or files with pale red background have been rejected by an " "administrator user. Likewise, files with a pale yellow background are " @@ -2348,72 +2451,72 @@ msgid "" "cannot be shown in the frontend." msgstr "" -#: functions.php:1871 +#: functions.php:1912 msgid "" "This version of AWPCP %1$s module is not compatible with AWPCP version " "%2$s. Please get AWPCP %1$s %3$s or newer!" msgstr "" -#: functions.php:1873 +#: functions.php:1914 msgid "Error" msgstr "" -#: functions.php:2231 +#: functions.php:2287 msgid "No errors." msgstr "" -#: functions.php:2232 +#: functions.php:2288 msgid "The file is larger than upload_max_filesize." msgstr "" -#: functions.php:2233 +#: functions.php:2289 msgid "The file is larger than form MAX_FILE_SIZE." msgstr "" -#: functions.php:2234 +#: functions.php:2290 msgid "The file was only partially uploaded." msgstr "" -#: functions.php:2235 +#: functions.php:2291 msgid "No file was uploaded." msgstr "" -#: functions.php:2236 +#: functions.php:2292 msgid "Missing temporary directory." msgstr "" -#: functions.php:2237 +#: functions.php:2293 msgid "Can't write file to disk." msgstr "" -#: functions.php:2238 +#: functions.php:2294 msgid "The file upload was stopped by extension." msgstr "" -#: functions.php:2476 +#: functions.php:2536 msgid "Your Ad \"%s\" has been approved" msgstr "" -#: functions.php:2499 +#: functions.php:2559 msgid "Your Ad \"%s\" has been successfully updated" msgstr "" -#: functions.php:2521 +#: functions.php:2581 msgid "Images on Ad \"%s\" are awaiting approval" msgstr "" -#: functions.php:2523 +#: functions.php:2583 msgid "" "Images on Ad \"%s\" are awaiting approval. You can approve the images going " "to the Manage Images section for that Ad and clicking the \"Enable\" button " "below each image. Click here to continue: %s." msgstr "" -#: functions.php:2526 +#: functions.php:2586 msgid "The Ad \"%s\" is awaiting approval" msgstr "" -#: functions.php:2529 includes/functions/notifications.php:157 +#: functions.php:2589 includes/functions/notifications.php:156 #. translators: %1$s is the listing title. %2$s is the URL for managing #. listing. msgid "" @@ -2422,7 +2525,7 @@ msgid "" "continue: %2$s." msgstr "" -#: functions.php:2536 includes/functions/notifications.php:165 +#: functions.php:2596 includes/functions/notifications.php:164 #. translators: %s is the URL for managing listing images. msgid "" "Additionally, You can approve the images going to the Manage Images section " @@ -2430,27 +2533,27 @@ msgid "" "to continue: %s." msgstr "" -#: functions.php:3068 +#: functions.php:3123 msgid "Email sent %s." msgstr "" -#: functions.php:3199 +#: functions.php:3254 msgid "Not Installed" msgstr "" -#: functions.php:3203 +#: functions.php:3258 msgid "Installed" msgstr "" -#: functions.php:3211 +#: functions.php:3266 msgid "SSL Support: Yes." msgstr "" -#: functions.php:3213 +#: functions.php:3268 msgid "SSL Support: No." msgstr "" -#: functions.php:3216 +#: functions.php:3271 msgid "OpenSSL version:" msgstr "" @@ -2470,58 +2573,58 @@ msgstr "" msgid "Search for listings matching" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:110 +#: includes/admin/class-listings-personal-data-provider.php:112 msgid "Classified ID" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:111 +#: includes/admin/class-listings-personal-data-provider.php:113 msgid "Contact Name" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:112 +#: includes/admin/class-listings-personal-data-provider.php:114 msgid "Contact Phone Number" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:113 +#: includes/admin/class-listings-personal-data-provider.php:115 msgid "Contact Phone Number Digits" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:114 +#: includes/admin/class-listings-personal-data-provider.php:116 msgid "Contact Email" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:118 -#: includes/admin/class-listings-personal-data-provider.php:128 +#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:130 #: includes/admin/import/class-csv-importer-columns.php:249 msgid "County" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:119 +#: includes/admin/class-listings-personal-data-provider.php:121 msgid "Website URL" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:120 +#: includes/admin/class-listings-personal-data-provider.php:122 #: includes/admin/class-payment-personal-data-provider.php:47 msgid "Payer Email" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:121 +#: includes/admin/class-listings-personal-data-provider.php:123 msgid "Author IP" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:132 +#: includes/admin/class-listings-personal-data-provider.php:134 msgid "URL" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:146 +#: includes/admin/class-listings-personal-data-provider.php:148 msgid "Classifieds Listings" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:157 +#: includes/admin/class-listings-personal-data-provider.php:159 msgid "Classifieds Media" msgstr "" -#: includes/admin/class-listings-personal-data-provider.php:218 +#: includes/admin/class-listings-personal-data-provider.php:220 msgid "" "An unknown error occurred while trying to delete information for classified " "{listing_id}." @@ -2542,7 +2645,7 @@ msgid "Contact Address" msgstr "" #: includes/admin/class-user-personal-data-provider.php:55 -#: includes/settings/class-display-settings.php:476 +#: includes/settings/class-display-settings.php:475 msgid "Contact Phone" msgstr "" @@ -2641,8 +2744,8 @@ msgid "" msgstr "" #: includes/admin/import/class-importer-form-steps.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:17 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:88 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:14 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:80 msgid "Upload Source Files" msgstr "" @@ -2651,12 +2754,12 @@ msgid "Configuration" msgstr "" #: includes/admin/import/class-importer-form-steps.php:29 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:173 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:176 msgid "Import" msgstr "" #: includes/admin/import/class-importer-form-steps.php:32 -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:172 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:175 msgid "Test Import" msgstr "" @@ -2703,7 +2806,7 @@ msgstr[0] "" msgstr[1] "" #: includes/admin/listings/class-listing-owner-metabox.php:62 -#: templates/frontend/order-submit-listing-section.tpl.php:45 +#: templates/frontend/order-submit-listing-section.tpl.php:42 msgid "Please select a user" msgstr "" @@ -3127,43 +3230,43 @@ msgstr "" msgid "ZIP Code Search Module" msgstr "" -#: includes/class-awpcp.php:1445 +#: includes/class-awpcp.php:1436 msgid "This field is required." msgstr "" -#: includes/class-awpcp.php:1446 +#: includes/class-awpcp.php:1437 #: includes/form-fields/class-form-fields-validator.php:101 #: includes/frontend/class-edit-listing-page.php:273 #: includes/frontend/class-edit-listing-page.php:350 -#: includes/settings/class-payment-general-settings.php:158 +#: includes/settings/class-payment-general-settings.php:157 msgid "Please enter a valid email address." msgstr "" -#: includes/class-awpcp.php:1447 includes/class-awpcp.php:1448 +#: includes/class-awpcp.php:1438 includes/class-awpcp.php:1439 msgid "Please enter a valid URL." msgstr "" -#: includes/class-awpcp.php:1449 +#: includes/class-awpcp.php:1440 msgid "Please enter a valid number." msgstr "" -#: includes/class-awpcp.php:1450 +#: includes/class-awpcp.php:1441 msgid "Please enter a valid amount." msgstr "" -#: includes/class-awpcp.php:1451 +#: includes/class-awpcp.php:1442 msgid "You have reached the maximum allowed categories for the selected fee plan." msgstr "" -#: includes/class-awpcp.php:1470 +#: includes/class-awpcp.php:1461 msgid "There are files currently being uploaded." msgstr "" -#: includes/class-awpcp.php:1471 +#: includes/class-awpcp.php:1462 msgid "There are files pending to be uploaded." msgstr "" -#: includes/class-awpcp.php:1472 +#: includes/class-awpcp.php:1463 msgid "You haven't uploaded any images or files." msgstr "" @@ -3212,23 +3315,23 @@ msgid "" "site. Contact customer support for further assistance." msgstr "" -#: includes/class-listings-api.php:106 includes/class-listings-api.php:306 +#: includes/class-listings-api.php:106 includes/class-listings-api.php:310 msgid "" "There was an unexpected error trying to save the listing details. Please " "try again or contact an administrator." msgstr "" -#: includes/class-listings-api.php:197 +#: includes/class-listings-api.php:199 msgid "" "To avoid overwritting existing metadata, use " "fill_default_listing_metadata() instead." msgstr "" -#: includes/class-listings-api.php:302 +#: includes/class-listings-api.php:306 msgid "There was an error trying to save the listing details:" msgstr "" -#: includes/class-listings-api.php:730 +#: includes/class-listings-api.php:734 msgid "" "If you have uploaded images your images will not show up until an admin has " "approved them." @@ -3268,19 +3371,19 @@ msgid "" "contact customer support with a copy of your file." msgstr "" -#: includes/credit-plan.php:109 includes/payment-term.php:133 +#: includes/credit-plan.php:114 includes/payment-term.php:133 msgid "The name of the plan is required." msgstr "" -#: includes/credit-plan.php:112 includes/payment-term.php:151 +#: includes/credit-plan.php:117 includes/payment-term.php:151 msgid "The number of credits must be greater than zero." msgstr "" -#: includes/credit-plan.php:115 +#: includes/credit-plan.php:120 msgid "The price must be greater or equal than zero." msgstr "" -#: includes/credit-plan.php:153 +#: includes/credit-plan.php:158 msgid "The Credit Plan doesn't exist." msgstr "" @@ -3366,7 +3469,7 @@ msgstr "" msgid "Please read and accept the Terms of Service." msgstr "" -#: includes/frontend/class-captcha.php:70 +#: includes/frontend/class-captcha.php:77 msgid "" "An unknown error ocurred trying to validate the answer to the CAPTCHA " "challenge." @@ -3384,13 +3487,13 @@ msgid "" "allowed to submit classifieds." msgstr "" -#: includes/frontend/class-default-captcha-provider.php:59 +#: includes/frontend/class-default-captcha-provider.php:76 msgid "" "You did not solve the math problem. Please solve the math problem to " "proceed." msgstr "" -#: includes/frontend/class-default-captcha-provider.php:64 +#: includes/frontend/class-default-captcha-provider.php:81 msgid "Your solution to the math problem was incorrect. Please try again." msgstr "" @@ -3526,17 +3629,17 @@ msgstr "" msgid "The selected payment term couldn't be found." msgstr "" -#: includes/frontend/class-recaptcha-provider.php:47 +#: includes/frontend/class-recaptcha-provider.php:68 #. translators: %s will become an A HTML tag pointing to reCAPTCHA admin #. console. msgid "To use reCAPTCHA you must get an API key from %s." msgstr "" -#: includes/frontend/class-recaptcha-provider.php:85 +#: includes/frontend/class-recaptcha-provider.php:106 msgid "Your answers couldn't be verified by the reCAPTCHA server." msgstr "" -#: includes/frontend/class-recaptcha-v2.php:51 +#: includes/frontend/class-recaptcha-v2.php:78 msgid "There was an error trying to verify the reCAPTCHA answer. " msgstr "" @@ -3549,8 +3652,8 @@ msgid "Login/Registration" msgstr "" #: includes/frontend/class-submit-listing-form-steps.php:48 -#: includes/ui/class-category-selector.php:125 -#: templates/components/category-selector.tpl.php:16 +#: includes/ui/class-category-selector.php:147 +#: templates/components/category-selector.tpl.php:15 msgid "Select a Category" msgstr "" @@ -3685,11 +3788,11 @@ msgstr "" msgid "Could not create resized versions of image %s." msgstr "" -#: includes/functions/format.php:67 +#: includes/functions/format.php:50 msgid "Classifieds Management System" msgstr "" -#: includes/functions/format.php:84 +#: includes/functions/format.php:67 #. translators: example: and msgid " and " msgstr "" @@ -3742,51 +3845,51 @@ msgstr "" msgid "Top Level Category" msgstr "" -#: includes/functions/listings.php:278 -#: includes/listings/class-listings-content-renderer.php:169 +#: includes/functions/listings.php:288 +#: includes/listings/class-listings-content-renderer.php:182 msgid "Are you sure you want to flag this ad?" msgstr "" -#: includes/functions/listings.php:279 -#: includes/listings/class-listings-content-renderer.php:170 +#: includes/functions/listings.php:289 +#: includes/listings/class-listings-content-renderer.php:183 msgid "This Ad has been flagged." msgstr "" -#: includes/functions/listings.php:280 -#: includes/listings/class-listings-content-renderer.php:171 +#: includes/functions/listings.php:290 +#: includes/listings/class-listings-content-renderer.php:184 msgid "An error occurred while trying to flag the Ad." msgstr "" -#: includes/functions/listings.php:317 +#: includes/functions/listings.php:327 msgid "" "Sorry, that listing is not available. Please try browsing or searching " "existing listings." msgstr "" -#: includes/functions/listings.php:334 +#: includes/functions/listings.php:344 msgid "" "The Ad you are trying to view is pending approval. Once the Administrator " "approves it, it will be active and visible." msgstr "" -#: includes/functions/listings.php:340 +#: includes/functions/listings.php:350 #: includes/listings/class-listings-content-renderer.php:106 msgid "Your email address was successfully verified." msgstr "" -#: includes/functions/listings.php:344 +#: includes/functions/listings.php:354 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the Administrator) and the author can see it." msgstr "" -#: includes/functions/listings.php:347 +#: includes/functions/listings.php:357 msgid "" "This Ad is currently disabled until you verify the email address used for " "the contact information. Only you (the author) can see it." msgstr "" -#: includes/functions/listings.php:350 +#: includes/functions/listings.php:360 msgid "" "This Ad is currently disabled until the Administrator approves it. Only you " "(the author) can see it." @@ -3801,12 +3904,12 @@ msgstr "" msgid "Listing \"%s\" was updated" msgstr "" -#: includes/functions/notifications.php:147 +#: includes/functions/notifications.php:146 #. translators: %s is the listing title. msgid "Images on listing \"%s\" are awaiting approval" msgstr "" -#: includes/functions/notifications.php:150 +#: includes/functions/notifications.php:149 #. translators: %1$s is the listing title. %2$s is the URL for managing listing #. images. msgid "" @@ -3815,12 +3918,12 @@ msgid "" "button below each image. Click here to continue: %2$s." msgstr "" -#: includes/functions/notifications.php:154 +#: includes/functions/notifications.php:153 #. translators: %s is the listing title. msgid "Listing \"%s\" is awaiting approval" msgstr "" -#: includes/functions/notifications.php:202 +#: includes/functions/notifications.php:201 msgid "Listing was flagged" msgstr "" @@ -3837,7 +3940,7 @@ msgid "Missing License Status parameter" msgstr "" #: includes/helpers/class-easy-digital-downloads.php:53 -msgid "License Status parameter was set to Failed" +msgid "License Status parameter was set to Failed" msgstr "" #: includes/helpers/class-easy-digital-downloads.php:57 @@ -3918,7 +4021,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:217 +#: includes/helpers/class-modules-manager.php:220 msgid "" "The version of AWPCP {modules_names} is not compatible with version " "{awpcp_version}." @@ -3928,11 +4031,11 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:219 +#: includes/helpers/class-modules-manager.php:222 msgid "Please get AWPCP {required_modules_versions} or newer!" msgstr "" -#: includes/helpers/class-modules-manager.php:250 +#: includes/helpers/class-modules-manager.php:256 msgid "" "The license for AWPCP is inactive. All features will remain " "disabled until you activate the license. Please go to the " @@ -3945,7 +4048,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:264 +#: includes/helpers/class-modules-manager.php:276 msgid "" "The AWPCP requires a license to be used. All features will " "remain disabled until a valid license is entered. Please go to the " @@ -3959,7 +4062,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:269 +#: includes/helpers/class-modules-manager.php:284 msgid "" "The license for AWPCP expired. The module will continue to " "work but you will not receive automatic updates when a new version is " @@ -3971,7 +4074,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:281 +#: includes/helpers/class-modules-manager.php:299 msgid "" "The AWPCP is currently disabled because it requires you to " "perform a manual upgrade before continuing. Please go to the " @@ -3983,17 +4086,17 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: includes/helpers/class-modules-manager.php:294 +#: includes/helpers/class-modules-manager.php:312 msgid "The specified module does not exists!." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:56 +#: includes/helpers/class-recaptcha-v3.php:78 msgid "" "There was an error trying to analyze the current interaction with " "reCAPTCHA. " msgstr "" -#: includes/helpers/class-recaptcha-v3.php:98 +#: includes/helpers/class-recaptcha-v3.php:120 msgid "The current interaction was not approved by reCAPTCHA. Please try again." msgstr "" @@ -4050,30 +4153,30 @@ msgid "" "Administrator." msgstr "" -#: includes/helpers/widgets/class-user-field.php:32 +#: includes/helpers/widgets/class-user-field.php:48 msgid "Select an User" msgstr "" -#: includes/helpers/widgets/multiple-region-selector.php:123 +#: includes/helpers/widgets/multiple-region-selector.php:143 msgid "" "This particular region is already selected in another field. Please choose " "one or more sub-regions, to make the selection more specific, or change the " "selected region." msgstr "" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Search Region" msgstr "" -#: includes/helpers/widgets/multiple-region-selector.php:128 +#: includes/helpers/widgets/multiple-region-selector.php:148 msgid "Add Region" msgstr "" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Delete Search Region" msgstr "" -#: includes/helpers/widgets/multiple-region-selector.php:129 +#: includes/helpers/widgets/multiple-region-selector.php:149 msgid "Remove Region" msgstr "" @@ -4136,6 +4239,10 @@ msgstr "" msgid "There was an error trying to update the database." msgstr "" +#: includes/media/class-attachment-action-ajax-handler.php:53 +msgid "You are not allowed to perform this action." +msgstr "" + #: includes/media/class-attachment-action-ajax-handler.php:57 msgid "The specified file is not associated with Listing with ID %d." msgstr "" @@ -4221,44 +4328,44 @@ msgid "" " bytes. The file was not uploaded." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:51 +#: includes/media/class-listings-media-uploader-component.php:56 msgid "" "You can upload images of up to each, " " videos of up to each and " "other files of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:52 +#: includes/media/class-listings-media-uploader-component.php:57 msgid "" "You can upload images of up to each " "and other files (no videos) of up to " "each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:53 +#: includes/media/class-listings-media-uploader-component.php:58 msgid "" "You can upload images of up to each " "and videos of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:54 +#: includes/media/class-listings-media-uploader-component.php:59 msgid "" "You can upload videos of up to each " "and other files (no images) of up to " "each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:55 +#: includes/media/class-listings-media-uploader-component.php:60 msgid "You can upload images of up to each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:56 +#: includes/media/class-listings-media-uploader-component.php:61 msgid "" "You can upload files (no videos or images) of up to " " each." msgstr "" -#: includes/media/class-listings-media-uploader-component.php:57 +#: includes/media/class-listings-media-uploader-component.php:62 msgid "You can upload videos of up to each." msgstr "" @@ -4351,15 +4458,15 @@ msgstr "" msgid "General" msgstr "" -#: includes/models/payment-transaction.php:225 +#: includes/models/payment-transaction.php:232 msgid "The transaction must be assigned to a WordPress user." msgstr "" -#: includes/models/payment-transaction.php:238 +#: includes/models/payment-transaction.php:245 msgid "The transaction has no items." msgstr "" -#: includes/models/payment-transaction.php:250 +#: includes/models/payment-transaction.php:257 msgid "" "The amount of credit in your account is not enough to pay for the selected " "items. Please choose one of the available Credit Plans in addition to the " @@ -4367,18 +4474,18 @@ msgid "" "Profile Page.
You need %d extra credit." msgstr "" -#: includes/models/payment-transaction.php:252 +#: includes/models/payment-transaction.php:259 msgid "" "The selected Credit Plan is not enough to pay for the selected items. " "Please choose a bigger Credit Plan or add credit to your account from your " "Profile Page.
You need %d extra credit." msgstr "" -#: includes/models/payment-transaction.php:282 +#: includes/models/payment-transaction.php:289 msgid "You must select a payment method." msgstr "" -#: includes/models/payment-transaction.php:294 +#: includes/models/payment-transaction.php:301 msgid "The payment status for this transaction hasn't been defined." msgstr "" @@ -4392,14 +4499,14 @@ msgid "" msgstr "" #: includes/payment-gateway-2checkout.php:101 -#: includes/payment-gateway-paypal-standard.php:140 +#: includes/payment-gateway-paypal-standard.php:142 msgid "" "The amount you have paid does not match the required amount for this " "transaction. Please contact us to clarify the problem." msgstr "" #: includes/payment-gateway-2checkout.php:109 -#: includes/payment-gateway-paypal-standard.php:148 +#: includes/payment-gateway-paypal-standard.php:150 msgid "" "There was an error processing your transaction. If funds have been deducted " "from your account, they have not been processed to our account. You will " @@ -4407,13 +4514,13 @@ msgid "" msgstr "" #: includes/payment-gateway-2checkout.php:119 -#: includes/payment-gateway-paypal-standard.php:158 +#: includes/payment-gateway-paypal-standard.php:160 msgid "" "It appears this transaction has already been processed. If you do not see " "your ad in the system please contact the site adminstrator for assistance." msgstr "" -#: includes/payment-gateway-paypal-standard.php:58 +#: includes/payment-gateway-paypal-standard.php:60 #. translators: %s link url. msgid "" "We haven't received your payment information from PayPal yet and we are " @@ -4421,25 +4528,25 @@ msgid "" "href=\"%1$s\">%2$s in 30 seconds to continue placing your Ad." msgstr "" -#: includes/payment-gateway-paypal-standard.php:62 +#: includes/payment-gateway-paypal-standard.php:64 #. translators: %s status %d variables count. msgid "" "PayPal returned the following status from your payment: %1$s. %2$d payment " "variables were posted." msgstr "" -#: includes/payment-gateway-paypal-standard.php:64 +#: includes/payment-gateway-paypal-standard.php:66 msgid "" "If this status is not COMPLETED or VERIFIED, then you may need to wait a " "bit before your payment is approved, or contact PayPal directly as to the " "reason the payment is having a problem." msgstr "" -#: includes/payment-gateway-paypal-standard.php:67 +#: includes/payment-gateway-paypal-standard.php:69 msgid "If you have any further questions, please contact this site administrator." msgstr "" -#: includes/payment-gateway-paypal-standard.php:183 +#: includes/payment-gateway-paypal-standard.php:185 msgid "" "We couldn't determine the payment status for your transaction. Please " "contact customer service if you are viewing this message after having made " @@ -4448,7 +4555,7 @@ msgid "" "disregarded." msgstr "" -#: includes/payment-gateway-paypal-standard.php:289 +#: includes/payment-gateway-paypal-standard.php:291 msgid "The payment transaction was canceled by the user." msgstr "" @@ -4504,17 +4611,17 @@ msgstr "" msgid "Free Listing" msgstr "" -#: includes/payment-term-fee.php:129 +#: includes/payment-term-fee.php:145 msgid "The Fee doesn't exist." msgstr "" -#: includes/payment-term-fee.php:149 +#: includes/payment-term-fee.php:165 msgid "" "The Fee can't be deleted because there are active Ads in the system that " "are associated with the Fee ID." msgstr "" -#: includes/payment-term-fee.php:255 +#: includes/payment-term-fee.php:269 msgid "The recipient Fee doesn't exists." msgstr "" @@ -4544,25 +4651,31 @@ msgstr "" msgid "The price must be equal or greater than zero." msgstr "" -#: includes/payment-terms-table.php:156 includes/payments-api.php:441 +#: includes/payment-terms-table.php:200 includes/payments-api.php:446 msgid "The selected payment type can't be used in this kind of transaction." msgstr "" -#: includes/payment-terms-table.php:161 includes/payments-api.php:446 +#: includes/payment-terms-table.php:205 includes/payments-api.php:451 msgid "The selected payment term can't be used in this kind of transaction." msgstr "" -#: includes/payments-api.php:184 +#: includes/payments-api.php:189 msgid "{credit-plan-name} ({credit-plan-credits} credits for {credit-plan-price})" msgstr "" -#: includes/payments-api.php:489 +#: includes/payments-api.php:497 msgid "" "The specified payment transaction doesn't exists. We can't process your " "payment." msgstr "" -#: includes/payments-api.php:490 includes/payments-api.php:502 +#: includes/payments-api.php:502 +msgid "" +"The payment method associated with this transaction is not available at " +"this time. We can't process your payment." +msgstr "" + +#: includes/payments-api.php:507 msgid "" "Please contact customer service if you are viewing this message after " "having made a payment. If you have not tried to make a payment and you are " @@ -4570,96 +4683,90 @@ msgid "" "be disregarded." msgstr "" -#: includes/payments-api.php:493 includes/payments-api.php:505 +#: includes/payments-api.php:511 #. translators: %s link HTML msgid "Return to %shome page" msgstr "" -#: includes/payments-api.php:501 -msgid "" -"The payment method associated with this transaction is not available at " -"this time. We can't process your payment." -msgstr "" - -#: includes/payments-api.php:687 +#: includes/payments-api.php:695 msgid "" "You currently have %1$s credits in your account. The balance after this " "transaction is completed successfully will be %2$s." msgstr "" -#: includes/payments-api.php:702 +#: includes/payments-api.php:721 #. translators: %s credit balance msgid "You currently have %s credits in your account." msgstr "" -#: includes/payments-api.php:818 includes/payments-api.php:869 +#: includes/payments-api.php:923 includes/payments-api.php:987 msgid "Payment Completed" msgstr "" -#: includes/payments-api.php:821 +#: includes/payments-api.php:926 msgid "" "Your Payment has been processed successfully. Please press the button below " "to continue with the process." msgstr "" -#: includes/payments-api.php:823 +#: includes/payments-api.php:928 msgid "" "Your Payment has been processed successfully. However is still pending " "approvation from the payment gateway. Please press the button below to " "continue with the process." msgstr "" -#: includes/payments-api.php:828 +#: includes/payments-api.php:933 msgid "Payment Not Required" msgstr "" -#: includes/payments-api.php:829 +#: includes/payments-api.php:934 msgid "" "No Payment is required for this transaction. Please press the button below " "to continue with the process." msgstr "" -#: includes/payments-api.php:834 includes/payments-api.php:875 +#: includes/payments-api.php:939 includes/payments-api.php:993 msgid "Payment Failed" msgstr "" -#: includes/payments-api.php:835 +#: includes/payments-api.php:940 msgid "" "Your Payment has been processed successfully. However, the payment gateway " "didn't return a payment status that allows us to continue with the process. " "Please contact the website administrator to solve this issue." msgstr "" -#: includes/payments-api.php:838 includes/payments-api.php:871 +#: includes/payments-api.php:943 includes/payments-api.php:989 msgid "Payment Canceled" msgstr "" -#: includes/payments-api.php:839 +#: includes/payments-api.php:944 msgid "The Payment transaction was canceled. You can't post an Ad this time." msgstr "" -#: includes/payments-api.php:842 +#: includes/payments-api.php:947 msgid "Waiting on Confirmation" msgstr "" -#: includes/payments-api.php:843 +#: includes/payments-api.php:948 msgid "" "The payment gateway is taking a bit longer than expected to confirm your " "payment. Please wait a few seconds while we verify the transaction. The " "page will reload automatically." msgstr "" -#: includes/payments-api.php:846 +#: includes/payments-api.php:950 msgid "Payment Error" msgstr "" -#: includes/payments-api.php:847 +#: includes/payments-api.php:951 msgid "" "There was an error processing your payment. The payment status couldn't be " "found. Please contact the website admin to solve this issue." msgstr "" -#: includes/payments-api.php:873 +#: includes/payments-api.php:991 msgid "Payment Not Verified" msgstr "" @@ -4909,73 +5016,73 @@ msgstr "" msgid "Add no follow to links in Ads" msgstr "" -#: includes/settings/class-display-settings.php:220 -#: includes/settings/class-display-settings.php:225 +#: includes/settings/class-display-settings.php:219 +#: includes/settings/class-display-settings.php:224 msgid "Classifieds Bar" msgstr "" -#: includes/settings/class-display-settings.php:230 +#: includes/settings/class-display-settings.php:229 msgid "Show Classifieds Bar" msgstr "" -#: includes/settings/class-display-settings.php:233 +#: includes/settings/class-display-settings.php:232 msgid "" "The Classifieds Bar is a section shown at the top of the plugin pages, " "displaying a Search Bar and multiple menu items. Each element of the bar " "can be enabled or disabled using the settings below." msgstr "" -#: includes/settings/class-display-settings.php:238 +#: includes/settings/class-display-settings.php:237 msgid "Show Search Bar" msgstr "" -#: includes/settings/class-display-settings.php:249 +#: includes/settings/class-display-settings.php:248 msgid "Show Place Ad menu item" msgstr "" -#: includes/settings/class-display-settings.php:260 +#: includes/settings/class-display-settings.php:259 msgid "Show Edit Ad menu item" msgstr "" -#: includes/settings/class-display-settings.php:271 +#: includes/settings/class-display-settings.php:270 msgid "Show Browse Ads menu item" msgstr "" -#: includes/settings/class-display-settings.php:282 +#: includes/settings/class-display-settings.php:281 msgid "Show Search Ads menu item" msgstr "" -#: includes/settings/class-display-settings.php:308 +#: includes/settings/class-display-settings.php:307 msgid "Form Steps" msgstr "" -#: includes/settings/class-display-settings.php:317 +#: includes/settings/class-display-settings.php:316 msgid "Show Form Steps" msgstr "" -#: includes/settings/class-display-settings.php:320 +#: includes/settings/class-display-settings.php:319 msgid "" "If checked, when a user is creating a new listing, a list of steps will be " "shown at the top of the forms." msgstr "" -#: includes/settings/class-display-settings.php:328 +#: includes/settings/class-display-settings.php:327 msgid "User Field" msgstr "" -#: includes/settings/class-display-settings.php:330 +#: includes/settings/class-display-settings.php:329 msgid "Dropdown" msgstr "" -#: includes/settings/class-display-settings.php:330 +#: includes/settings/class-display-settings.php:329 msgid "Autocomplete" msgstr "" -#: includes/settings/class-display-settings.php:332 +#: includes/settings/class-display-settings.php:331 msgid "HTML Widget for User field" msgstr "" -#: includes/settings/class-display-settings.php:332 +#: includes/settings/class-display-settings.php:331 msgid "" "The user field can be represented with an HTML dropdown or a text field " "with autocomplete capabilities. Using the dropdown is faster if you have a " @@ -4984,21 +5091,21 @@ msgid "" "autocomplete version may be a better idea." msgstr "" -#: includes/settings/class-display-settings.php:333 +#: includes/settings/class-display-settings.php:332 msgid "Show User Field on Search" msgstr "" -#: includes/settings/class-display-settings.php:333 +#: includes/settings/class-display-settings.php:332 msgid "Show as \"Posted By\" in search form?" msgstr "" -#: includes/settings/class-display-settings.php:338 +#: includes/settings/class-display-settings.php:337 msgid "" "Overwrite information in contact fields when a different listing owner is " "selected" msgstr "" -#: includes/settings/class-display-settings.php:341 +#: includes/settings/class-display-settings.php:340 msgid "" "If this setting is enabled, when an administrator is editing a listing and " "he changes the selected value in the User/Owner field, the information in " @@ -5008,25 +5115,25 @@ msgid "" "will not be persisted until you click the Continue button." msgstr "" -#: includes/settings/class-display-settings.php:347 +#: includes/settings/class-display-settings.php:346 msgid "User's name format" msgstr "" -#: includes/settings/class-display-settings.php:350 +#: includes/settings/class-display-settings.php:349 msgid "" "The selected format will be used to show a user's name in dropdown fields, " "text fields and templates." msgstr "" -#: includes/settings/class-display-settings.php:365 +#: includes/settings/class-display-settings.php:364 msgid "Contact Fields" msgstr "" -#: includes/settings/class-display-settings.php:370 +#: includes/settings/class-display-settings.php:369 msgid "Allow logged in users to overwrite Contact Name and Contact Email" msgstr "" -#: includes/settings/class-display-settings.php:373 +#: includes/settings/class-display-settings.php:372 msgid "" "Normally registered users who are not administrators are not allowed to " "change the email address or contact name. The fields are rendered as " @@ -5035,121 +5142,121 @@ msgid "" "fields." msgstr "" -#: includes/settings/class-display-settings.php:380 +#: includes/settings/class-display-settings.php:379 msgid "Show Phone field" msgstr "" -#: includes/settings/class-display-settings.php:380 +#: includes/settings/class-display-settings.php:379 msgid "Show phone field?" msgstr "" -#: includes/settings/class-display-settings.php:382 +#: includes/settings/class-display-settings.php:381 msgid "Require Phone" msgstr "" -#: includes/settings/class-display-settings.php:382 +#: includes/settings/class-display-settings.php:381 msgid "Require phone on Place Ad and Edit Ad forms?" msgstr "" -#: includes/settings/class-display-settings.php:387 +#: includes/settings/class-display-settings.php:386 msgid "Show Phone Field only to registered users" msgstr "" -#: includes/settings/class-display-settings.php:390 -#: includes/settings/class-display-settings.php:405 -#: includes/settings/class-display-settings.php:430 +#: includes/settings/class-display-settings.php:389 +#: includes/settings/class-display-settings.php:404 +#: includes/settings/class-display-settings.php:429 msgid "" "This setting restricts viewing of this field so that only registered users " "that are logged in can see it." msgstr "" -#: includes/settings/class-display-settings.php:395 +#: includes/settings/class-display-settings.php:394 msgid "Show Website field" msgstr "" -#: includes/settings/class-display-settings.php:395 +#: includes/settings/class-display-settings.php:394 msgid "Show website field?" msgstr "" -#: includes/settings/class-display-settings.php:397 +#: includes/settings/class-display-settings.php:396 msgid "Require Website" msgstr "" -#: includes/settings/class-display-settings.php:397 +#: includes/settings/class-display-settings.php:396 msgid "Require website on Place Ad and Edit Ad forms?" msgstr "" -#: includes/settings/class-display-settings.php:402 +#: includes/settings/class-display-settings.php:401 msgid "Show Website Field only to registered users" msgstr "" -#: includes/settings/class-display-settings.php:410 +#: includes/settings/class-display-settings.php:409 msgid "Show Price field" msgstr "" -#: includes/settings/class-display-settings.php:410 +#: includes/settings/class-display-settings.php:409 msgid "Show price field?" msgstr "" -#: includes/settings/class-display-settings.php:415 +#: includes/settings/class-display-settings.php:414 msgid "Show price field on search form" msgstr "" -#: includes/settings/class-display-settings.php:422 +#: includes/settings/class-display-settings.php:421 msgid "Require Price" msgstr "" -#: includes/settings/class-display-settings.php:422 +#: includes/settings/class-display-settings.php:421 msgid "Require price on Place Ad and Edit Ad forms?" msgstr "" -#: includes/settings/class-display-settings.php:427 +#: includes/settings/class-display-settings.php:426 msgid "Show Price Field only to registered users" msgstr "" -#: includes/settings/class-display-settings.php:433 +#: includes/settings/class-display-settings.php:432 msgid "Hide Price field if empty or zero" msgstr "" -#: includes/settings/class-display-settings.php:433 +#: includes/settings/class-display-settings.php:432 msgid "" "If checked all price placeholders will be replaced with an empty string " "when the price of the Ad is zero or was not set." msgstr "" -#: includes/settings/class-display-settings.php:440 +#: includes/settings/class-display-settings.php:439 msgid "" "Go to the admin section to change the order in which " "the fields mentioned below are shown to users in the Ad Details form." msgstr "" -#: includes/settings/class-display-settings.php:452 +#: includes/settings/class-display-settings.php:451 msgid "Form Fields Behavior" msgstr "" -#: includes/settings/class-display-settings.php:461 +#: includes/settings/class-display-settings.php:460 #: templates/admin/import/supported-csv-headers.tpl.php:18 msgid "Field" msgstr "" -#: includes/settings/class-display-settings.php:462 +#: includes/settings/class-display-settings.php:461 msgid "Show field on form" msgstr "" -#: includes/settings/class-display-settings.php:463 +#: includes/settings/class-display-settings.php:462 msgid "Show field on search form" msgstr "" -#: includes/settings/class-display-settings.php:464 +#: includes/settings/class-display-settings.php:463 #: templates/admin/import/supported-csv-headers.tpl.php:19 msgid "Required" msgstr "" -#: includes/settings/class-display-settings.php:465 +#: includes/settings/class-display-settings.php:464 msgid "Show value to registered users only" msgstr "" -#: includes/settings/class-display-settings.php:469 +#: includes/settings/class-display-settings.php:468 msgid "Website" msgstr "" @@ -5216,222 +5323,242 @@ msgid "" "to your hosting account." msgstr "" -#: includes/settings/class-email-settings.php:84 -#. translators: full-email-address=John Doe , -#. short-email-address=john.doe@example.com +#: includes/settings/class-email-settings.php:85 +#. translators: %1$s=John Doe , %2$s=john.doe@example.com msgid "" "If checked, whenever the name of the recipient is available, emails will be " -"sent to instead of just . Some " -"email servers, however, have problems handling email address that include " -"the name of the recipient. If emails sent by the plugin are not being " -"delivered properly, try unchecking this settting." +"sent to %1$s instead of just %2$s. Some email servers, however, have " +"problems handling email address that include the name of the recipient. If " +"emails sent by the plugin are not being delivered properly, try unchecking " +"this settting." msgstr "" -#: includes/settings/class-email-settings.php:91 +#: includes/settings/class-email-settings.php:93 msgid "Include the name of the recipient in the email address" msgstr "" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "Include Ad access key in email messages" msgstr "" -#: includes/settings/class-email-settings.php:97 +#: includes/settings/class-email-settings.php:99 msgid "" "Include Ad access key in email notifications. You may want to uncheck this " "option if you are using the Ad Management panel, but is not necessary." msgstr "" -#: includes/settings/class-email-settings.php:106 +#: includes/settings/class-email-settings.php:108 msgid "Messages" msgstr "" -#: includes/settings/class-email-settings.php:118 +#: includes/settings/class-email-settings.php:120 msgid "Ad Posted Message" msgstr "" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject for Ad posted notification email" msgstr "" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Your Classified Ad listing has been submitted" msgstr "" -#: includes/settings/class-email-settings.php:120 +#: includes/settings/class-email-settings.php:122 msgid "Subject line for email sent out when someone posts an Ad" msgstr "" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Body for Ad posted notification email" msgstr "" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "" "Thank you for submitting your Classified Ad. The details of your ad are " "shown below." msgstr "" -#: includes/settings/class-email-settings.php:121 +#: includes/settings/class-email-settings.php:123 msgid "Message body text for email sent out when someone posts an Ad" msgstr "" -#: includes/settings/class-email-settings.php:127 +#: includes/settings/class-email-settings.php:129 msgid "Reply to Ad Message" msgstr "" -#: includes/settings/class-email-settings.php:132 +#: includes/settings/class-email-settings.php:134 msgid "Response notification for listing owners" msgstr "" -#: includes/settings/class-email-settings.php:139 -msgid "Subject and body template for email sent out when someone replies to an ad." -msgstr "" - #: includes/settings/class-email-settings.php:141 -#: includes/settings/class-email-settings.php:167 -msgid "The name of the person who replied." -msgstr "" - -#: includes/settings/class-email-settings.php:142 -#: includes/settings/class-email-settings.php:168 -msgid "The email adderss of the person who replied." +msgid "Subject and body template for email sent out when someone replies to an ad." msgstr "" #: includes/settings/class-email-settings.php:143 #: includes/settings/class-email-settings.php:169 -#: includes/settings/class-email-settings.php:206 -msgid "The title of the ad where the reply was posted." +msgid "The name of the person who replied." msgstr "" #: includes/settings/class-email-settings.php:144 #: includes/settings/class-email-settings.php:170 -msgid "The URL for the ad where the reply was posted." +msgid "The email adderss of the person who replied." msgstr "" #: includes/settings/class-email-settings.php:145 #: includes/settings/class-email-settings.php:171 -msgid "The content of the reply." +#: includes/settings/class-email-settings.php:208 +msgid "The title of the ad where the reply was posted." msgstr "" #: includes/settings/class-email-settings.php:146 #: includes/settings/class-email-settings.php:172 -msgid "The title of this website" +msgid "The URL for the ad where the reply was posted." msgstr "" #: includes/settings/class-email-settings.php:147 #: includes/settings/class-email-settings.php:173 +msgid "The content of the reply." +msgstr "" + +#: includes/settings/class-email-settings.php:148 +#: includes/settings/class-email-settings.php:174 +msgid "The title of this website" +msgstr "" + +#: includes/settings/class-email-settings.php:149 +#: includes/settings/class-email-settings.php:175 msgid "The URL of this website's homepage" msgstr "" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "Notify admin about contact message" msgstr "" -#: includes/settings/class-email-settings.php:153 +#: includes/settings/class-email-settings.php:155 msgid "" "An email will be sent to the administrator every time a visitor sends a " "message to one of the Ad posters through the Reply to Ad page." msgstr "" -#: includes/settings/class-email-settings.php:158 +#: includes/settings/class-email-settings.php:160 msgid "Response notification for administrators" msgstr "" -#: includes/settings/class-email-settings.php:165 +#: includes/settings/class-email-settings.php:167 msgid "" "Subject and body template for email sent out to administrators when someone " "replies to an ad." msgstr "" -#: includes/settings/class-email-settings.php:183 +#: includes/settings/class-email-settings.php:185 msgid "Resend Access Key Message" msgstr "" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "Subject for Request Ad Access Key email" msgstr "" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "The Classified Ad's ad access key you requested" msgstr "" -#: includes/settings/class-email-settings.php:185 +#: includes/settings/class-email-settings.php:187 msgid "" "Subject line for email sent out when someone requests their ad access key " "resent" msgstr "" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "Body for Request Ad Access Key email" msgstr "" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "You asked to have your Classified Ad's access key resent. Below are all the " "Ad access keys in the system that are tied to the email address you provided" msgstr "" -#: includes/settings/class-email-settings.php:186 +#: includes/settings/class-email-settings.php:188 msgid "" "Message body text for email sent out when someone requests their ad access " "key resent" msgstr "" -#: includes/settings/class-email-settings.php:192 +#: includes/settings/class-email-settings.php:194 msgid "Verify Email Message" msgstr "" -#: includes/settings/class-email-settings.php:197 +#: includes/settings/class-email-settings.php:199 msgid "Subject and body for verify email message" msgstr "" -#: includes/settings/class-email-settings.php:200 +#: includes/settings/class-email-settings.php:202 msgid "Verify the email address used for Ad {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:204 -msgid "Subject and body template for email sent out to verify the email address." -msgstr "" - -#: includes/settings/class-email-settings.php:207 +#: includes/settings/class-email-settings.php:203 +msgid "" +"Hello {author_name} \n" +"\n" +"You recently posted the Ad {listing_title} to {website_title}. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"{verification_link} \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"{website_title}\n" +"\n" +"{website_url}" +msgstr "" + +#: includes/settings/class-email-settings.php:206 +msgid "Subject and body template for email sent out to verify the email address." +msgstr "" + +#: includes/settings/class-email-settings.php:209 msgid "The name of the owner of the listing." msgstr "" -#: includes/settings/class-email-settings.php:208 +#: includes/settings/class-email-settings.php:210 msgid "Verification link." msgstr "" -#: includes/settings/class-email-settings.php:209 +#: includes/settings/class-email-settings.php:211 msgid "The title of this website." msgstr "" -#: includes/settings/class-email-settings.php:210 +#: includes/settings/class-email-settings.php:212 msgid "The URL of this webiste's homepage." msgstr "" -#: includes/settings/class-email-settings.php:220 +#: includes/settings/class-email-settings.php:222 msgid "Incomplete Payment Message" msgstr "" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "Subject for Incomplete Payment email" msgstr "" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "There was a problem processing your payment" msgstr "" -#: includes/settings/class-email-settings.php:222 +#: includes/settings/class-email-settings.php:224 msgid "" "Subject line for email sent out when the payment processing does not " "complete" msgstr "" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "Body for Incomplete Payment email" msgstr "" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "There was a problem encountered during your attempt to submit payment. If " "funds were removed from the account you tried to use to make a payment " @@ -5439,42 +5566,42 @@ msgid "" "for assistance." msgstr "" -#: includes/settings/class-email-settings.php:223 +#: includes/settings/class-email-settings.php:225 msgid "" "Message body text for email sent out when the payment processing does not " "complete" msgstr "" -#: includes/settings/class-email-settings.php:229 +#: includes/settings/class-email-settings.php:231 msgid "Renew Ad Message" msgstr "" -#: includes/settings/class-email-settings.php:234 +#: includes/settings/class-email-settings.php:236 msgid "Subject for Renew Ad email" msgstr "" -#: includes/settings/class-email-settings.php:237 +#: includes/settings/class-email-settings.php:239 #. translators: %d is the number of days until the ad expires. msgid "Your ad will expire in %d days." msgstr "" -#: includes/settings/class-email-settings.php:238 +#: includes/settings/class-email-settings.php:240 msgid "Subject line for email sent out when an Ad is about to expire." msgstr "" -#: includes/settings/class-email-settings.php:244 -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:246 +#: includes/settings/class-email-settings.php:270 msgid "Body for Renew Ad email" msgstr "" -#: includes/settings/class-email-settings.php:247 +#: includes/settings/class-email-settings.php:249 #. translators: %d is the number of days until the ad expires. msgid "" "This is an automated notification that your Classified Ad will expire in %d " "days." msgstr "" -#: includes/settings/class-email-settings.php:249 +#: includes/settings/class-email-settings.php:251 #. translators: %d in this case is used to remind the user they can enter '%d' #. in the textarea where they want the plugin to replace the number of days #. until the ad expires. @@ -5483,116 +5610,116 @@ msgid "" "as placeholder for the number of days before the Ad expires." msgstr "" -#: includes/settings/class-email-settings.php:256 +#: includes/settings/class-email-settings.php:258 msgid "Ad Renewed Message" msgstr "" -#: includes/settings/class-email-settings.php:261 +#: includes/settings/class-email-settings.php:263 msgid "Subject for Ad Renewed email" msgstr "" -#: includes/settings/class-email-settings.php:264 +#: includes/settings/class-email-settings.php:266 #. translators: %s is the title of the ad. msgid "Your ad \"%s\" has been successfully renewed." msgstr "" -#: includes/settings/class-email-settings.php:265 +#: includes/settings/class-email-settings.php:267 msgid "Subject line for email sent out when an Ad is successfully renewed." msgstr "" -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "Your ad has been successfully renewed. More information below:" msgstr "" -#: includes/settings/class-email-settings.php:268 +#: includes/settings/class-email-settings.php:270 msgid "Message body text for email sent out when an Ad is successfully renewed. " msgstr "" -#: includes/settings/class-email-settings.php:274 +#: includes/settings/class-email-settings.php:276 msgid "Ad Expired Message" msgstr "" -#: includes/settings/class-email-settings.php:279 +#: includes/settings/class-email-settings.php:281 msgid "Subject for Ad Expired email" msgstr "" -#: includes/settings/class-email-settings.php:282 +#: includes/settings/class-email-settings.php:284 #. translators: %s is the name of the website. msgid "Your ad at %s has expired" msgstr "" -#: includes/settings/class-email-settings.php:283 +#: includes/settings/class-email-settings.php:285 msgid "Subject line for email sent out when an ad has auto-expired" msgstr "" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Body for Ad Expired email" msgstr "" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "This is an automated notification that your ad has expired." msgstr "" -#: includes/settings/class-email-settings.php:286 +#: includes/settings/class-email-settings.php:288 msgid "Message body text for email sent out when an ad has auto-expired" msgstr "" -#: includes/settings/class-email-settings.php:295 +#: includes/settings/class-email-settings.php:297 #: includes/settings/class-general-settings.php:599 msgid "Advanced" msgstr "" -#: includes/settings/class-email-settings.php:305 +#: includes/settings/class-email-settings.php:307 msgid "Advanced Email Configuration" msgstr "" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enable external SMTP server" msgstr "" -#: includes/settings/class-email-settings.php:307 +#: includes/settings/class-email-settings.php:309 msgid "Enabled external SMTP server (if emails not processing normally)." msgstr "" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host" msgstr "" -#: includes/settings/class-email-settings.php:308 +#: includes/settings/class-email-settings.php:310 msgid "SMTP host (if emails not processing normally)." msgstr "" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port" msgstr "" -#: includes/settings/class-email-settings.php:309 +#: includes/settings/class-email-settings.php:311 msgid "SMTP port (if emails not processing normally)." msgstr "" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username" msgstr "" -#: includes/settings/class-email-settings.php:310 +#: includes/settings/class-email-settings.php:312 msgid "SMTP username (if emails not processing normally)." msgstr "" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password" msgstr "" -#: includes/settings/class-email-settings.php:311 +#: includes/settings/class-email-settings.php:313 msgid "SMTP password (if emails not processing normally)." msgstr "" -#: includes/settings/class-email-settings.php:316 +#: includes/settings/class-email-settings.php:318 msgid "" " is not a valid email address. Please check the value you " "entered to use as the FROM email address for outgoing messages." msgstr "" -#: includes/settings/class-email-settings.php:317 +#: includes/settings/class-email-settings.php:319 msgid "" " is not a valid email address. Please check the value you " "entered to use as recipient email address for admin notifications." @@ -6482,106 +6609,104 @@ msgid "" "the Webhooks URL and Event Name you define." msgstr "" -#: includes/settings/class-general-settings.php:919 +#: includes/settings/class-general-settings.php:921 +#. translators: %1$s is the link to Facebook Developer Apps page. %2$s is the +#. closing anchor tag. msgid "" -"You can find your application information in the Facebook Developer " -"Apps page." +"You can find your application information in the %1$sFacebook Developer " +"Apps%2$s page." msgstr "" -#: includes/settings/class-general-settings.php:935 +#: includes/settings/class-general-settings.php:936 msgid "" "AWPCP needs to get an authorization token from Facebook to work correctly. " "You'll be redirected to Facebook to login. AWPCP does not store or obtain " "any personal information from your profile." msgstr "" -#: includes/settings/class-general-settings.php:936 +#: includes/settings/class-general-settings.php:937 msgid "" "Please choose Public as the audience for posts made by the application, " "even if you are just testing the integration. Facebook won't allow us to " "post content in some cases if you choose something else." msgstr "" -#: includes/settings/class-general-settings.php:945 +#: includes/settings/class-general-settings.php:947 msgid "Click here to obtain an access token from Facebook" msgstr "" -#: includes/settings/class-general-settings.php:947 +#: includes/settings/class-general-settings.php:951 msgid "" "Please provide a value for the App Id and App Secret settings before trying " "to get an access token from Facebook." msgstr "" -#: includes/settings/class-general-settings.php:958 +#: includes/settings/class-general-settings.php:960 msgid "" "Available Facebook Pages and Groups will be displayed after you enter a " "valid User Access Token." msgstr "" -#: includes/settings/class-general-settings.php:959 +#: includes/settings/class-general-settings.php:964 +#. translators: %1$s opening anchor tag, %2$s closing anchor tag, %3$s opening +#. anchor tag, %4$s closing anchor tag, %5$s opening anchor tag, %6$s closing +#. anchor tag, %7$s opening anchor tag, %8$s closing anchor tag msgid "" -"As of April 4, 2018, all applications need to go through App Review in order to get access to the Page API and Groups API. That means that you may need to submit your app for review (ask for the " -"manage_pages, publish_pages, " -"publish_to_groups permissions), before AWPCP can display the " +"All applications need to go through %1$sApp Review%2$s in order to get " +"access to the %3$sPage API%4$s and %5$sGroups API%6$s. That means that you " +"may need to %7$ssubmit your app for review%8$s (ask for the manage_pages, " +"publish_pages, publish_to_groups permissions), before AWPCP can display the " "list of pages and groups you manage and be able to post classifieds ads to " "those groups and pages." msgstr "" -#: includes/settings/class-general-settings.php:977 +#: includes/settings/class-general-settings.php:989 msgid "None (Do not sent ads to a Facebook Page)" msgstr "" -#: includes/settings/class-general-settings.php:984 +#: includes/settings/class-general-settings.php:996 msgid "(Your own profile page)" msgstr "" -#: includes/settings/class-general-settings.php:1008 +#: includes/settings/class-general-settings.php:1020 msgid "None (Do not sent ads to a Facebook Group)" msgstr "" -#: includes/settings/class-general-settings.php:1064 +#: includes/settings/class-general-settings.php:1076 msgid "" "Akismet SPAM control cannot be enabled because Akismet plugin is not " "installed or activated." msgstr "" -#: includes/settings/class-general-settings.php:1068 +#: includes/settings/class-general-settings.php:1080 msgid "" "Akismet SPAM control cannot be enabled because Akismet is not properly " "configured." msgstr "" -#: includes/settings/class-general-settings.php:1094 +#: includes/settings/class-general-settings.php:1106 msgid "" "reCAPTCHA can't be used because the public key and private key settings are " "required for reCAPTCHA to work properly." msgstr "" -#: includes/settings/class-general-settings.php:1096 +#: includes/settings/class-general-settings.php:1108 msgid "" "reCAPTCHA can't be used because the public key setting is required for " "reCAPTCHA to work properly." msgstr "" -#: includes/settings/class-general-settings.php:1098 +#: includes/settings/class-general-settings.php:1110 msgid "" "reCAPTCHA can't be used because the private key setting is required for " "reCAPTCHA to work properly." msgstr "" -#: includes/settings/class-general-settings.php:1145 +#: includes/settings/class-general-settings.php:1157 msgid "Thousands separator and decimal separator cant be the same." msgstr "" -#: includes/settings/class-general-settings.php:1159 +#: includes/settings/class-general-settings.php:1171 msgid "" "Credit System was automatically disabled because you disabled Require " "Registration setting." @@ -6597,10 +6722,17 @@ msgid "Licenses" msgstr "" #: includes/settings/class-licenses-settings.php:64 -#: templates/admin/debug/plugin-info-debug-section.tpl.php:18 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:24 msgid "Premium Modules" msgstr "" +#: includes/settings/class-licenses-settings.php:82 +msgid "" +"The IP address of your server is %s. Please make sure to include that " +"information if you need to contact support about problems trying to " +"activate your licenses." +msgstr "" + #: includes/settings/class-listings-moderation-settings.php:22 msgid "" "Email verification was disabled because you enabled Require Registration. " @@ -6951,97 +7083,97 @@ msgstr "" msgid "Show category in browser page title when viewing individual Ad" msgstr "" -#: includes/settings/class-listings-settings.php:472 +#: includes/settings/class-listings-settings.php:473 msgid "" "Enable this setting to display each listing on its own page, instead of " -"showing the listing's content inside the page." +"showing the listing's content inside the %s page." msgstr "" -#: includes/settings/class-listings-settings.php:478 +#: includes/settings/class-listings-settings.php:480 msgid "Display listings on their own page" msgstr "" -#: includes/settings/class-listings-settings.php:486 +#: includes/settings/class-listings-settings.php:488 msgid "" "Portion of the URL that appears between the website's domain and the " "listing's information. Example: in ." msgstr "" -#: includes/settings/class-listings-settings.php:496 +#: includes/settings/class-listings-settings.php:498 msgid "Listings slug" msgstr "" -#: includes/settings/class-listings-settings.php:509 +#: includes/settings/class-listings-settings.php:511 msgid "" "Include the slug of the plugin's main page () in the URL " "that points to the page of an individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:512 +#: includes/settings/class-listings-settings.php:514 msgid "" "Include the slug of the plugin's main page in the URL that points to the " "page of an individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:518 +#: includes/settings/class-listings-settings.php:520 msgid "Include the slug of the plugin's main page in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:532 +#: includes/settings/class-listings-settings.php:534 msgid "Include the title in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:535 +#: includes/settings/class-listings-settings.php:537 msgid "" "Include the title in the URL that points to the page of an individual " "listing." msgstr "" -#: includes/settings/class-listings-settings.php:541 +#: includes/settings/class-listings-settings.php:543 msgid "Include the name of the category in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:544 +#: includes/settings/class-listings-settings.php:546 msgid "" "Include the name of the category in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:550 +#: includes/settings/class-listings-settings.php:552 msgid "Include the name of the country in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:553 +#: includes/settings/class-listings-settings.php:555 msgid "" "Include the name of the country in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:559 +#: includes/settings/class-listings-settings.php:561 msgid "Include the name of the state in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:562 +#: includes/settings/class-listings-settings.php:564 msgid "" "Include the name of the state in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:568 +#: includes/settings/class-listings-settings.php:570 msgid "Include the name of the city in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:571 +#: includes/settings/class-listings-settings.php:573 msgid "" "Include the name of the city in the URL that points to the page of an " "individual listing." msgstr "" -#: includes/settings/class-listings-settings.php:577 +#: includes/settings/class-listings-settings.php:579 msgid "Include the name of the county in the listing URL" msgstr "" -#: includes/settings/class-listings-settings.php:580 +#: includes/settings/class-listings-settings.php:582 msgid "" "Include the name of the county in the URL that points to the page of an " "individual listing." @@ -7201,163 +7333,157 @@ msgid "" "does not support HTTPS." msgstr "" -#: includes/settings/class-payment-general-settings.php:109 +#: includes/settings/class-payment-general-settings.php:108 msgid "" "Force Secure URLs was not enabled because your website couldn't be accessed " "using a secure connection." msgstr "" -#: includes/settings/class-payment-general-settings.php:135 -msgid "PayPal" -msgstr "" - -#: includes/settings/class-payment-general-settings.php:140 +#: includes/settings/class-payment-general-settings.php:139 msgid "PayPal Settings" msgstr "" -#: includes/settings/class-payment-general-settings.php:142 +#: includes/settings/class-payment-general-settings.php:141 msgid "Activate PayPal?" msgstr "" -#: includes/settings/class-payment-general-settings.php:146 +#: includes/settings/class-payment-general-settings.php:145 msgid "PayPal receiver email" msgstr "" -#: includes/settings/class-payment-general-settings.php:149 +#: includes/settings/class-payment-general-settings.php:148 msgid "" "Email address for PayPal payments (if running in pay mode and if PayPal is " "activated)." msgstr "" -#: includes/settings/class-payment-general-settings.php:167 +#: includes/settings/class-payment-general-settings.php:166 msgid "PayPal Merchant ID" msgstr "" #: includes/settings/class-payment-general-settings.php:170 msgid "" "Merchant ID associated with the PayPal account that will receive the " -"payments. Go to https://www.paypal.com/myaccount/settings/ to obtain " -"your Merchant ID." +"payments. Go to %s to obtain your Merchant ID." msgstr "" -#: includes/settings/class-payment-general-settings.php:178 +#: includes/settings/class-payment-general-settings.php:180 msgid "The PayPal Currency Code must be one of ." msgstr "" -#: includes/settings/class-payment-general-settings.php:183 +#: includes/settings/class-payment-general-settings.php:185 msgid "PayPal currency code" msgstr "" -#: includes/settings/class-payment-general-settings.php:186 +#: includes/settings/class-payment-general-settings.php:188 msgid "The currency in which you would like to receive your PayPal payments" msgstr "" -#: includes/settings/class-payment-general-settings.php:209 +#: includes/settings/class-payment-general-settings.php:211 msgid "2Checkout" msgstr "" -#: includes/settings/class-payment-general-settings.php:214 +#: includes/settings/class-payment-general-settings.php:216 msgid "2Checkout Settings" msgstr "" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout" msgstr "" -#: includes/settings/class-payment-general-settings.php:216 +#: includes/settings/class-payment-general-settings.php:218 msgid "Activate 2Checkout?" msgstr "" -#: includes/settings/class-payment-general-settings.php:220 +#: includes/settings/class-payment-general-settings.php:222 msgid "2Checkout account" msgstr "" -#: includes/settings/class-payment-general-settings.php:223 +#: includes/settings/class-payment-general-settings.php:225 msgid "Account for 2Checkout payments." msgstr "" -#: includes/settings/class-payment-general-settings.php:238 +#: includes/settings/class-payment-general-settings.php:240 msgid "2Checkout Currency Code" msgstr "" -#: includes/settings/class-payment-general-settings.php:249 +#: includes/settings/class-payment-general-settings.php:251 msgid "The currency in which you would like to receive your 2Checkout payments" msgstr "" -#: includes/settings/class-payment-general-settings.php:261 -#: includes/settings/class-payment-general-settings.php:266 +#: includes/settings/class-payment-general-settings.php:263 +#: includes/settings/class-payment-general-settings.php:268 msgid "Credit System" msgstr "" -#: includes/settings/class-payment-general-settings.php:269 +#: includes/settings/class-payment-general-settings.php:271 msgid "Currency" msgstr "" -#: includes/settings/class-payment-general-settings.php:271 +#: includes/settings/class-payment-general-settings.php:273 msgid "Currency & Credits" msgstr "" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "Enable Credit System" msgstr "" -#: includes/settings/class-payment-general-settings.php:274 +#: includes/settings/class-payment-general-settings.php:276 msgid "" "The Credit System allows users to purchase credit that can later be used to " "pay for placing Ads." msgstr "" -#: includes/settings/class-payment-general-settings.php:279 +#: includes/settings/class-payment-general-settings.php:281 msgid "Accepted payment type" msgstr "" -#: includes/settings/class-payment-general-settings.php:282 +#: includes/settings/class-payment-general-settings.php:284 msgid "Select the type of payment that can be used to purchase Ads." msgstr "" -#: includes/settings/class-payment-general-settings.php:294 +#: includes/settings/class-payment-general-settings.php:296 msgid "" "You cannot configure Credits as the only accepted payment type unless you " "enable the Credit System as well. The setting was set to accept both " "Currency and Credits." msgstr "" -#: includes/settings/class-payment-general-settings.php:311 +#: includes/settings/class-payment-general-settings.php:313 msgid "" "There is a problem with the PayPal Currency Code you have entered. It does " "not match any of the codes in our list of curencies supported by PayPal." msgstr "" -#: includes/settings/class-payment-general-settings.php:312 +#: includes/settings/class-payment-general-settings.php:314 msgid "The available currency codes are" msgstr "" -#: includes/settings/class-payment-general-settings.php:321 +#: includes/settings/class-payment-general-settings.php:323 msgid "" "Require Registration setting was enabled automatically because you " "activated the Credit System." msgstr "" -#: includes/settings/class-payment-general-settings.php:326 +#: includes/settings/class-payment-general-settings.php:328 msgid "" "Charge Listing Fee setting was enabled automatically because you activated " "the Credit System." msgstr "" -#: includes/settings/class-payment-general-settings.php:332 +#: includes/settings/class-payment-general-settings.php:334 msgid "" "Credit System was disabled automatically because you disabled Charge " "Listing Fee." msgstr "" -#: includes/settings/renderers/class-button-settings-renderer.php:39 +#: includes/settings/renderers/class-button-settings-renderer.php:40 msgid "" "Resetting to the default layout will cause any custom HTML layout changes " "you've made to be lost. Are you sure?" msgstr "" -#: includes/settings/renderers/class-button-settings-renderer.php:42 +#: includes/settings/renderers/class-button-settings-renderer.php:47 msgid "Reset" msgstr "" @@ -7365,53 +7491,49 @@ msgstr "" msgid "Deactivate" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -msgid "active" +#: includes/settings/renderers/class-license-settings-renderer.php:46 +#: includes/settings/renderers/class-license-settings-renderer.php:50 +msgid "Activate" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:43 -#: includes/settings/renderers/class-license-settings-renderer.php:46 -#: includes/settings/renderers/class-license-settings-renderer.php:56 -#: includes/settings/renderers/class-license-settings-renderer.php:58 -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "Status: " +#: includes/settings/renderers/class-license-settings-renderer.php:55 +#. translators: %1$s is the opening anchor tag, %2$s is the closing anchor tag +msgid "" +"Click the button above to check the status of your license. Please " +"%1$scontact customer support%2$s if you think the reported status is wrong." msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:45 -#: includes/settings/renderers/class-license-settings-renderer.php:48 -msgid "Activate" +#: includes/settings/renderers/class-license-settings-renderer.php:75 +msgid "disabled" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:46 +#: includes/settings/renderers/class-license-settings-renderer.php:76 msgid "inactive" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:51 -msgid "" -"Click the button above to check the status of your license. Please " -"contact customer support if you think the reported status " -"is wrong." +#: includes/settings/renderers/class-license-settings-renderer.php:77 +msgid "active" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:56 +#: includes/settings/renderers/class-license-settings-renderer.php:78 msgid "expired" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:58 -msgid "disabled" +#: includes/settings/renderers/class-license-settings-renderer.php:79 +msgid "unknown" msgstr "" -#: includes/settings/renderers/class-license-settings-renderer.php:60 -msgid "unknown" +#: includes/settings/renderers/class-license-settings-renderer.php:84 +msgid "Status: %s" msgstr "" -#: includes/settings/renderers/class-settings-grid-renderer.php:75 +#: includes/settings/renderers/class-settings-grid-renderer.php:80 #. translators: screen reader text label for individual settings on a settings #. grid msgid " setting for field" msgstr "" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:35 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:38 msgid "Create Page" msgstr "" @@ -7419,79 +7541,79 @@ msgstr "" msgid "Ad Category" msgstr "" -#: includes/ui/class-category-selector.php:122 +#: includes/ui/class-category-selector.php:144 msgid "All Categories" msgstr "" -#: includes/ui/class-category-selector.php:171 +#: includes/ui/class-category-selector.php:193 msgid "Select a Sub-category" msgstr "" -#: includes/ui/class-payment-terms-list.php:86 +#: includes/ui/class-payment-terms-list.php:103 msgid "{payment-term-name} – {payment-term-duration} ({payment-term-price})" msgstr "" -#: includes/ui/class-payment-terms-list.php:91 +#: includes/ui/class-payment-terms-list.php:108 msgid "" "{payment-term-name} – {payment-term-duration} ({payment-term-price} " "credits)" msgstr "" -#: includes/ui/class-payment-terms-list.php:152 +#: includes/ui/class-payment-terms-list.php:169 msgid " listing allowed." msgid_plural " listings allowed." msgstr[0] "" msgstr[1] "" -#: includes/ui/class-payment-terms-list.php:160 +#: includes/ui/class-payment-terms-list.php:177 msgid "No images allowed." msgstr "" -#: includes/ui/class-payment-terms-list.php:163 +#: includes/ui/class-payment-terms-list.php:180 msgid " image allowed." msgid_plural " images allowed." msgstr[0] "" msgstr[1] "" -#: includes/ui/class-payment-terms-list.php:170 +#: includes/ui/class-payment-terms-list.php:187 msgid "Unlimited characters in listing's title." msgstr "" -#: includes/ui/class-payment-terms-list.php:173 +#: includes/ui/class-payment-terms-list.php:190 msgid "Up to characters in listing's title." msgstr "" -#: includes/ui/class-payment-terms-list.php:180 +#: includes/ui/class-payment-terms-list.php:197 msgid "Up to categories allowed." msgstr "" -#: includes/ui/class-payment-terms-list.php:187 +#: includes/ui/class-payment-terms-list.php:204 msgid "Unlimited characters in listing's content." msgstr "" -#: includes/ui/class-payment-terms-list.php:190 +#: includes/ui/class-payment-terms-list.php:207 msgid "Up to characters in listing's content." msgstr "" -#: includes/ui/class-payment-terms-list.php:196 +#: includes/ui/class-payment-terms-list.php:213 msgid "Purchase this plan" msgstr "" -#: includes/ui/class-payment-terms-list.php:197 +#: includes/ui/class-payment-terms-list.php:214 msgid "Pay for this plan with credits" msgstr "" -#: includes/ui/class-payment-terms-list.php:200 -#: includes/ui/class-payment-terms-list.php:204 +#: includes/ui/class-payment-terms-list.php:217 +#: includes/ui/class-payment-terms-list.php:221 msgid "Use this plan for free!" msgstr "" -#: includes/ui/class-payment-terms-list.php:209 -#: includes/ui/class-payment-terms-list.php:214 +#: includes/ui/class-payment-terms-list.php:226 +#: includes/ui/class-payment-terms-list.php:231 msgid "Select" msgstr "" -#: includes/ui/class-payment-terms-list.php:213 +#: includes/ui/class-payment-terms-list.php:230 msgid "credits" msgstr "" @@ -7617,19 +7739,19 @@ msgid "" "or configure the website as a free board." msgstr "" -#: includes/views/class-base-page.php:82 +#: includes/views/class-base-page.php:83 #. translators: %s the step name msgid "Unkown step \"%s\". Please contact the administrator about this error." msgstr "" -#: includes/views/class-base-page.php:135 +#: includes/views/class-base-page.php:136 msgid "" "Your request cannot be processed at this time. Please try again or contact " "the administrator about the incident." msgstr "" #: includes/views/class-payment-step-decorator.php:41 -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:74 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:76 #. translators: %1$s back link, %2$s transaction id msgid "" "You are trying to buy credits using a transaction created for a different " @@ -7652,15 +7774,15 @@ msgstr "" msgid "Congratulations. You have successfully added credit to your account." msgstr "" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:12 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:14 msgid "Buy Credits" msgstr "" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:87 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:89 msgid "The payment associated with this transaction failed (see reasons below)." msgstr "" -#: includes/views/frontend/buy-credits/class-buy-credits-page.php:118 +#: includes/views/frontend/buy-credits/class-buy-credits-page.php:120 msgid "You are not allowed to buy credits." msgstr "" @@ -7674,33 +7796,54 @@ msgstr "" msgid "The instance of WP_Scripts is not ready!" msgstr "" -#: installer.php:154 +#: installer.php:160 msgid "30 Day Listing" msgstr "" -#: installer.php:822 +#: installer.php:307 msgid "Response to your AWPCP Demo Ad" msgstr "" -#: installer.php:823 +#: installer.php:308 msgid "Someone has responded to your AWPCP Demo Ad" msgstr "" -#: installer.php:848 +#: installer.php:333 msgid "Verify the email address used for Ad $title" msgstr "" +#: installer.php:334 +msgid "" +"Hello $author_name \n" +"\n" +"You recently posted the Ad $title to $website_name. \n" +"\n" +"In order to complete the posting process you have to verify your email " +"address. Please click the link below to complete the verification process. " +"You will be redirected to the website where you can see your Ad. \n" +"\n" +"$verification_link \n" +"\n" +"After you verify your email address, the administrator will be notified " +"about the new Ad. If moderation is enabled, your Ad will remain in a " +"disabled status until the administrator approves it.\n" +"\n" +"$website_name\n" +"\n" +"$website_url" +msgstr "" + #: templates/admin/debug/environment-debug-section.tpl.php:19 msgid "" "Click the button below to contact and get a report about " "you server's SSL/TSL features." msgstr "" -#: templates/admin/debug/environment-debug-section.tpl.php:30 +#: templates/admin/debug/environment-debug-section.tpl.php:32 msgid "Test your SSL Client" msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:16 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:20 msgid "" "If you are seeing multiple 404 Not Found errors in your website, it is " "possible that some Rewrite Rules are missing or corrupted. Please click the " @@ -7708,7 +7851,7 @@ msgid "" "Settings page." msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:23 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:27 msgid "" "Opening that page in your browser will flush the Rewrite Rules in your " "site. WordPress will then ask all installed and active plugins to register " @@ -7716,24 +7859,28 @@ msgid "" "the case, please contact customer support." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:3 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +msgid "Plugin Pages" +msgstr "" + +#: templates/admin/delete-browse-categories-page-notice.tpl.php:4 msgid "" -"The page is no longer necessary. From now on, " -"all listings will be displayed in the page, " -"even when they are filtered by a particular category." +"The %1$s page is no longer necessary. From now on, all listings will be " +"displayed in the %2$s page, even when they are filtered by a particular " +"category." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:9 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:11 msgid "" -"The plugin will start redirecting all traffic to the " -" page to make sure no broken links are created." +"The plugin will start redirecting all traffic to the %s page to make sure " +"no broken links are created." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:13 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:15 msgid "Click the button below to delete the page." msgstr "" -#: templates/admin/delete-browse-categories-page-notice.tpl.php:14 +#: templates/admin/delete-browse-categories-page-notice.tpl.php:18 msgid "Delete Page" msgstr "" @@ -7756,22 +7903,29 @@ msgid "" "the new parent of the children categories." msgstr "" -#: templates/admin/delete-category-admin-page.tpl.php:32 -msgid "" -"Click to go back to the list of categories or click " -" to proceed." +#: templates/admin/delete-category-admin-page.tpl.php:34 +#. translators: %1$s: Cancel button , %2$s: Submit button label +msgid "Click %1$s to go back to the list of categories or click %2$s to proceed." msgstr "" #: templates/admin/delete-category-admin-page.tpl.php:51 msgid "Selected Category" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:158 +#: templates/admin/export-listings-admin-page.tpl.php:137 +msgid "Export Complete" +msgstr "" + +#: templates/admin/export-listings-admin-page.tpl.php:153 msgid "" "Click \"Cleanup\" once the file has been downloaded in order to remove all " "temporary data created by AWP Classifieds Plugin during the export process." msgstr "" +#: templates/admin/export-listings-admin-page.tpl.php:160 +msgid "Export Canceled" +msgstr "" + #: templates/admin/form-fields-admin-page.tpl.php:7 msgid "" "The table below shows all the form fields that users may need to fill to " @@ -7780,16 +7934,17 @@ msgid "" "Ad Details form." msgstr "" -#: templates/admin/form-fields-admin-page.tpl.php:11 -msgid "Form" -msgstr "" - #: templates/admin/form-fields-admin-page.tpl.php:13 +#. translators: %s is a link to the Form Fields settings page. msgid "" -"Go to the settings section to control which of " -"the standard fields appear and if the user is required to enter a value. If " -"you have the Extra Fields module, the rest of the fields can be configured " -"from the Extra Fields admin section." +"Go to the %s settings section to control which of the standard fields " +"appear and if the user is required to enter a value. If you have the Extra " +"Fields module, the rest of the fields can be configured from the Extra " +"Fields admin section." +msgstr "" + +#: templates/admin/form-fields-admin-page.tpl.php:14 +msgid "Form" msgstr "" #: templates/admin/import/example-csv-file.tpl.php:8 @@ -7797,7 +7952,7 @@ msgid "Import Listings: Example CSV File" msgstr "" #: templates/admin/import/example-csv-file.tpl.php:16 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:84 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:76 msgid "See Supported CSV Headers" msgstr "" @@ -7816,7 +7971,7 @@ msgid "Header" msgstr "" #: templates/admin/import/supported-csv-headers.tpl.php:39 -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:86 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:78 msgid "See Example CSV File" msgstr "" @@ -7918,7 +8073,7 @@ msgstr "" msgid "Default user" msgstr "" -#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:178 +#: templates/admin/import-listings-admin-page-configuration-form.tpl.php:181 #: templates/admin/import-listings-admin-page-import-form.tpl.php:44 msgid "" "Press the button below to cancel the current import operation and discard " @@ -7949,36 +8104,36 @@ msgstr "" msgid "Pause" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:24 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:21 msgid "CSV file" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:37 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:31 msgid "Images source" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:40 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:34 msgid "Don't import images" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:42 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:36 msgid "ZIP file" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:44 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:38 msgid "Local directory" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:49 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:43 msgid "Zip file containing images" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:62 +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:54 msgid "Local directory path" msgstr "" -#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:74 -msgid "The relative path to a directory inside ." +#: templates/admin/import-listings-admin-page-upload-files-form.tpl.php:64 +msgid "The relative path to a directory inside %s." msgstr "" #: templates/admin/listings/listing-information-metabox.tpl.php:56 @@ -8060,112 +8215,111 @@ msgstr "" msgid "Payment Options" msgstr "" -#: templates/admin/main-classifieds-admin-page.tpl.php:84 +#: templates/admin/main-classifieds-admin-page.tpl.php:87 #. translators: %s is the link the Manage Categories admin page. msgid "" "Go to the %s section to edit/delete current categories or add new " "categories." msgstr "" -#: templates/admin/main-classifieds-admin-page.tpl.php:90 +#: templates/admin/main-classifieds-admin-page.tpl.php:95 msgid "Total number of categories in the system" msgstr "" -#: templates/admin/main-classifieds-admin-page.tpl.php:95 +#: templates/admin/main-classifieds-admin-page.tpl.php:100 msgid "Number of Top Level parent categories" msgstr "" -#: templates/admin/main-classifieds-admin-page.tpl.php:100 +#: templates/admin/main-classifieds-admin-page.tpl.php:105 msgid "Number of sub level children categories" msgstr "" -#: templates/admin/main-classifieds-admin-page.tpl.php:109 +#: templates/admin/main-classifieds-admin-page.tpl.php:114 #. translators: %s is the link to the Manage Categories admin page. msgid "" "You have not categories defined. Go to the %s section to set up your " "categories." msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:43 +#: templates/admin/manage-categories-admin-page.tpl.php:44 msgid "Parent Category" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:52 +#: templates/admin/manage-categories-admin-page.tpl.php:53 msgid "Category list order" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:75 +#: templates/admin/manage-categories-admin-page.tpl.php:76 msgid "Icon Meanings:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:85 +#: templates/admin/manage-categories-admin-page.tpl.php:89 msgid "Move categories or ads under:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:92 +#: templates/admin/manage-categories-admin-page.tpl.php:96 msgid "Delete categories should do this with existing ads:" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:93 +#: templates/admin/manage-categories-admin-page.tpl.php:97 msgid "Move ads to new category" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:94 +#: templates/admin/manage-categories-admin-page.tpl.php:98 msgid "Delete ads too" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:101 +#: templates/admin/manage-categories-admin-page.tpl.php:108 msgid "Move Selected Categories" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:102 +#: templates/admin/manage-categories-admin-page.tpl.php:109 msgid "Delete Selected Categories" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:119 +#: templates/admin/manage-categories-admin-page.tpl.php:126 msgid "Select all categories" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:122 -#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:129 +#: templates/admin/manage-categories-admin-page.tpl.php:145 msgid "Category ID" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:124 -#: templates/admin/manage-categories-admin-page.tpl.php:136 +#: templates/admin/manage-categories-admin-page.tpl.php:131 +#: templates/admin/manage-categories-admin-page.tpl.php:146 msgid "Category Name (Total Ads)" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:126 -#: templates/admin/manage-categories-admin-page.tpl.php:137 +#: templates/admin/manage-categories-admin-page.tpl.php:133 +#: templates/admin/manage-categories-admin-page.tpl.php:147 msgid "Parent" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:127 -#: templates/admin/manage-categories-admin-page.tpl.php:138 +#: templates/admin/manage-categories-admin-page.tpl.php:134 +#: templates/admin/manage-categories-admin-page.tpl.php:148 msgid "Order" msgstr "" -#: templates/admin/manage-categories-admin-page.tpl.php:128 -#: templates/admin/manage-categories-admin-page.tpl.php:139 +#: templates/admin/manage-categories-admin-page.tpl.php:135 +#: templates/admin/manage-categories-admin-page.tpl.php:149 msgid "Action" msgstr "" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:2 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 msgid "What's your PayPal Merchant ID?" msgstr "" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:3 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:10 msgid "" "In order to verify payments made through PayPal, AWP Classifieds Plugin " "needs to know your PayPal Merchant ID." msgstr "" -#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:5 +#: templates/admin/missing-paypal-merchant-id-setting-notice.tpl.php:13 msgid "" -"Go to to obtain the Merchant ID and then go to the " -"Payment Settings page to " -"enter the value." +"Go to %1$s to obtain the Merchant ID and then go to the %2$sPayment " +"Settings%3$s page to enter the value." msgstr "" #: templates/admin/profile/contact-information-fields.tpl.php:1 @@ -8355,7 +8509,8 @@ msgstr "" msgid "Expires on" msgstr "" -#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:9 +#: templates/email/listing-is-about-to-expire-notification.plain.tpl.php:12 +#. translators: %s: URL to renew the ad msgid "You can renew your Ad visiting this link: %s" msgstr "" @@ -8364,12 +8519,33 @@ msgstr "" msgid "Hello" msgstr "" -#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:2 +#: templates/email/listing-media-upload-notification.plain.tpl.php:2 +msgid "Hello," +msgstr "" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:9 +msgid "The following media files were recently uploaded to listing \"%s\":" +msgstr "" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:23 +msgid "" +"The following media files were recently uploaded to listing \"%s\" and are " +"awaiting approval:" +msgstr "" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:36 +msgid "Click here to manage media uploaded to the listing: %s." +msgstr "" + +#: templates/email/listing-media-upload-notification.plain.tpl.php:44 +msgid "Click here to view the listing: %s." +msgstr "" + +#: templates/email/listing-updated-nofitication-moderators.plain.tpl.php:3 msgid "" -"The ad \"\" was modified. A copy of the details sent to the " -"customer can be found below. You can follow this link " -"to go to the Manage Ad Listing section to approve/reject/spam and see the " -"full version of the Ad." +"The ad \"%s\" was modified. A copy of the details sent to the customer can " +"be found below. You can follow this link %s to go to the Manage Ad Listing " +"section to approve/reject/spam and see the full version of the Ad." msgstr "" #: templates/email/listing-was-flagged.plain.tpl.php:4 @@ -8378,14 +8554,108 @@ msgid "" "them out here ." msgstr "" -#: templates/frontend/listings.tpl.php:24 +#: templates/frontend/listings.tpl.php:37 msgid "There were no listings found." msgstr "" +#: templates/frontend/order-submit-listing-section.tpl.php:41 +msgid "Who is the owner of this ad?" +msgstr "" + +#: templates/frontend/order-submit-listing-section.tpl.php:86 +msgid "Your ad will be posted on the following categories: %s." +msgstr "" + #: templates/privacy-policy.tpl.php:10 msgid "Suggested text:" msgstr "" +#: templates/privacy-policy.tpl.php:11 +msgid "" +"When you submit a classified listing, the content of the listing and its " +"metadata are retained indefinitely. All users can see, edit or delete the " +"personal information included on their listings at any time. Website " +"administrators can also see and edit that information." +msgstr "" + +#: templates/privacy-policy.tpl.php:14 +msgid "" +"Website visitors can see the contact name, website URL, phone number, " +"address and other information included in your submission to describe the " +"classified listing." +msgstr "" + +#: templates/privacy-policy.tpl.php:18 +msgid "" +"Contact name, email address, website URL and content of submitted " +"classified listings may be checked through Akismet's spam detection " +"service. The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" + +#: templates/privacy-policy.tpl.php:24 +msgid "Payment Information" +msgstr "" + +#: templates/privacy-policy.tpl.php:28 +msgid "" +"If you pay to post a classified listing entering your credit card and " +"billing information directly on %s, the credit card information won't be " +"stored but it will be shared through a secure connection with the following " +"payment gateways to process the payment:" +msgstr "" + +#: templates/privacy-policy.tpl.php:36 +msgid "PayPal - %1$s" +msgstr "" + +#: templates/privacy-policy.tpl.php:42 +msgid "Authorize.Net - %s" +msgstr "" + +#: templates/privacy-policy.tpl.php:48 +msgid "Stripe - %s" +msgstr "" + +#: templates/privacy-policy.tpl.php:54 +msgid "Regions" +msgstr "" + +#: templates/privacy-policy.tpl.php:56 +msgid "" +"If you choose to see listings published on a specific region, a cookie will " +"be stored on your browser for the remainder of the session to remember the " +"selected region." +msgstr "" + +#: templates/privacy-policy.tpl.php:58 +msgid "Comments and Ratings" +msgstr "" + +#: templates/privacy-policy.tpl.php:60 +msgid "" +"When visitors leave comments and reviews for classified listings we collect " +"the data shown in the comments form, and also the visitor’s IP address to " +"help spam detection." +msgstr "" + +#: templates/privacy-policy.tpl.php:64 +msgid "" +"Visitor comments may be checked through Akismet's spam detection service. " +"The Akismet service privacy policy is available %1$shere%2$s." +msgstr "" + +#: templates/privacy-policy.tpl.php:70 +msgid "Restricted Categories" +msgstr "" + +#: templates/privacy-policy.tpl.php:72 +msgid "" +"When you agree to see listings or publish a listing on a restricted " +"category, a cookie will be stored in your browser to remember your " +"decision. The cookie will be stored on your browser for the remainder of " +"that session." +msgstr "" + #. Author URI of the plugin/theme msgid "https://awpcp.com/" msgstr "" @@ -8413,27 +8683,27 @@ msgctxt "awpcp admin menu" msgid "Classifieds" msgstr "" -#: admin/admin-panel.php:810 includes/settings/class-listings-settings.php:469 +#: admin/admin-panel.php:794 includes/settings/class-listings-settings.php:469 msgctxt "page name" msgid "Show Ad" msgstr "" -#: admin/admin-panel.php:818 +#: admin/admin-panel.php:802 msgctxt "page name" msgid "Edit Ad" msgstr "" -#: admin/class-csv-exporter.php:82 +#: admin/class-csv-exporter.php:83 msgctxt "admin csv-export" msgid "Could not create a temporary directory for handling this CSV export." msgstr "" -#: admin/class-csv-exporter.php:85 +#: admin/class-csv-exporter.php:86 msgctxt "admin csv-export" msgid "Could not create awpcp-csv-exports directory." msgstr "" -#: admin/class-csv-exporter.php:91 +#: admin/class-csv-exporter.php:95 #. translators: %s the error. msgctxt "admin csv-export" msgid "Error while creating a temporary directory for CSV export: %s" @@ -8444,103 +8714,89 @@ msgctxt "admin csv-export" msgid "Could not decode export state information." msgstr "" -#: admin/class-debug-admin-page.php:136 +#: admin/class-debug-admin-page.php:137 msgctxt "debug page" msgid "Plugin Info" msgstr "" -#: admin/class-debug-admin-page.php:137 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:33 +#: admin/class-debug-admin-page.php:138 msgctxt "debug page" msgid "Plugin Pages" msgstr "" -#: admin/class-debug-admin-page.php:138 +#: admin/class-debug-admin-page.php:139 msgctxt "debug page" msgid "Plugin Settings" msgstr "" -#: admin/class-debug-admin-page.php:139 +#: admin/class-debug-admin-page.php:140 msgctxt "debug page" msgid "Environment" msgstr "" -#: admin/class-debug-admin-page.php:140 -#: admin/templates/admin-panel-debug.tpl.php:32 +#: admin/class-debug-admin-page.php:141 +#: admin/templates/admin-panel-debug.tpl.php:59 msgctxt "debug page" msgid "Rewrite Rules" msgstr "" -#: admin/class-debug-admin-page.php:177 +#: admin/class-debug-admin-page.php:178 msgctxt "debug page" msgid "Plugin Version" msgstr "" -#: admin/class-debug-admin-page.php:283 -#: admin/templates/admin-panel-debug.tpl.php:126 +#: admin/class-debug-admin-page.php:284 msgctxt "debug page" msgid "cURL's alternate CA info (cacert.pem)" msgstr "" -#: admin/class-debug-admin-page.php:287 -#: admin/templates/admin-panel-debug.tpl.php:130 +#: admin/class-debug-admin-page.php:288 msgctxt "debug page" msgid "PayPal Connection" msgstr "" -#: admin/class-debug-admin-page.php:359 +#: admin/class-debug-admin-page.php:360 msgctxt "debug page" msgid "Working" msgstr "" -#: admin/class-debug-admin-page.php:362 -#: admin/templates/admin-panel-debug.tpl.php:136 +#: admin/class-debug-admin-page.php:363 msgctxt "debug page" msgid "Not Working" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:22 -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:31 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:34 msgctxt "debug page" msgid "Flush Rewrite Rules" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:26 +#: admin/templates/admin-panel-debug.tpl.php:48 +#. translators: %1$s opening anchor link, %2$s closing anchor link, %3$s Linked +#. URL in anchor link msgctxt "debug page" msgid "" -"This information can help AWPCP Developers to debug possible problems. If " -"you are submitting a bug report please Download the " -"Debug Information and attach it to your bug report or take a " -"minute to copy the information below to http://fpaste.org and provide the resulting URL in " -"your report." +"This information can help the AWP Team to debug possible problems. If you " +"are submitting a bug report please %1$sDownload the Debug Information%2$s " +"and attach it to your bug report or take a minute to copy the information " +"below to %3$s and provide the resulting URL in your report." msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:29 +#: admin/templates/admin-panel-debug.tpl.php:56 msgctxt "debug page" msgid "AWPCP Pages" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:30 +#: admin/templates/admin-panel-debug.tpl.php:57 msgctxt "debug page" msgid "PHP Info" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:31 +#: admin/templates/admin-panel-debug.tpl.php:58 msgctxt "debug page" msgid "AWPCP Settings" msgstr "" -#: admin/templates/admin-panel-debug.tpl.php:118 -msgctxt "debug page" -msgid "PHP Version" -msgstr "" - -#: admin/templates/admin-panel-debug.tpl.php:122 -msgctxt "debug page" -msgid "cURL" -msgstr "" - #: templates/admin/debug/debug-admin-page.tpl.php:17 #. translators: %s is the URL to download the debug information msgctxt "debug page" @@ -8550,22 +8806,22 @@ msgid "" "Debug Information
and attach it to your bug report." msgstr "" -#: templates/admin/debug/plugin-info-debug-section.tpl.php:29 +#: templates/admin/debug/plugin-info-debug-section.tpl.php:38 msgctxt "debug page" msgid "There are no premium modules activated right now." msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:38 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:49 msgctxt "debug page" msgid "Reference" msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:39 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:50 msgctxt "debug page" msgid "Page Title" msgstr "" -#: templates/admin/debug/plugin-pages-debug-section.tpl.php:40 +#: templates/admin/debug/plugin-pages-debug-section.tpl.php:51 msgctxt "debug page" msgid "Stored ID" msgstr "" @@ -8580,96 +8836,45 @@ msgctxt "debug page" msgid "Setting Value" msgstr "" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Exists" msgstr "" -#: admin/class-debug-admin-page.php:284 -#: admin/templates/admin-panel-debug.tpl.php:127 +#: admin/class-debug-admin-page.php:285 msgctxt "alternate CA info for cURL" msgid "Missing" msgstr "" -#: admin/class-import-listings-admin-page.php:358 +#: admin/class-import-listings-admin-page.php:362 msgctxt "" "description for messages used to show feedback for the Import Listings " "operation" msgid " in line " msgstr "" -#: admin/class-import-listings-admin-page.php:369 +#: admin/class-import-listings-admin-page.php:373 msgctxt "text for page subtitle and submit button" msgid "Test Import" msgstr "" -#: admin/class-import-listings-admin-page.php:371 +#: admin/class-import-listings-admin-page.php:375 msgctxt "text for page subtitle and submit button" msgid "Import" msgstr "" -#: admin/class-import-settings-admin-page.php:104 +#: admin/class-import-settings-admin-page.php:102 msgctxt "import settings" msgid "Are you sure you want to do this?" msgstr "" -#: admin/class-import-settings-admin-page.php:116 +#: admin/class-import-settings-admin-page.php:115 msgctxt "import settings" msgid "" "There was a problem trying to read the settings file; it appears the file " "wasn't uploaded correctly. Please try again." msgstr "" -#: admin/class-import-settings-admin-page.php:122 -msgctxt "another-wordpress-classifieds-plugin" -msgid "Your settings have been successfully imported." -msgstr "" - -#: includes/settings/class-email-settings.php:201 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello {author_name} \n" -"\n" -"You recently posted the Ad {listing_title} to {website_title}. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"{verification_link} \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"{website_title}\n" -"\n" -"{website_url}" -msgstr "" - -#: installer.php:849 -msgctxt "another-wordpress-classifieds-plugin" -msgid "" -"Hello $author_name \n" -"\n" -"You recently posted the Ad $title to $website_name. \n" -"\n" -"In order to complete the posting process you have to verify your email " -"address. Please click the link below to complete the verification process. " -"You will be redirected to the website where you can see your Ad. \n" -"\n" -"$verification_link \n" -"\n" -"After you verify your email address, the administrator will be notified " -"about the new Ad. If moderation is enabled, your Ad will remain in a " -"disabled status until the administrator approves it.\n" -"\n" -"$website_name\n" -"\n" -"$website_url" -msgstr "" - #: admin/credit-plans/class-delete-credit-plan-action-handler.php:30 #: admin/credit-plans/class-edit-credit-plan-action-handler.php:27 msgctxt "credit plans ajax" @@ -8691,17 +8896,17 @@ msgctxt "form field slug" msgid "Slug" msgstr "" -#: admin/import/class-csv-importer-delegate.php:98 +#: admin/import/class-csv-importer-delegate.php:101 msgctxt "csv importer" msgid "Required value for column \"\" is missing." msgstr "" -#: admin/import/class-csv-importer-delegate.php:181 +#: admin/import/class-csv-importer-delegate.php:184 msgctxt "csv importer" msgid "A new user '%s' with email address '%s' and password '%s' was created." msgstr "" -#: admin/import/class-csv-importer-delegate.php:252 +#: admin/import/class-csv-importer-delegate.php:256 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -8710,7 +8915,7 @@ msgid "" "default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:255 +#: admin/import/class-csv-importer-delegate.php:258 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -8718,7 +8923,7 @@ msgid "" "include a username or select a default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:258 +#: admin/import/class-csv-importer-delegate.php:260 msgctxt "csv importer" msgid "" "No user could be assigned to this listing. A new user couldn't be created " @@ -8726,65 +8931,65 @@ msgid "" "include a contact_email or select a default user." msgstr "" -#: admin/import/class-csv-importer-delegate.php:312 +#: admin/import/class-csv-importer-delegate.php:316 msgctxt "csv importer" msgid "No category with name \"\" was found." msgstr "" -#: admin/import/class-csv-importer-delegate.php:328 +#: admin/import/class-csv-importer-delegate.php:332 msgctxt "csv importer" msgid "There was an error trying to create category \"\"." msgstr "" -#: admin/import/class-csv-importer-delegate.php:337 +#: admin/import/class-csv-importer-delegate.php:342 msgctxt "csv importer" msgid "" "A category with name \"\" was created, but there was an " "error trying to retrieve its information from the database." msgstr "" -#: admin/import/class-csv-importer-delegate.php:349 +#: admin/import/class-csv-importer-delegate.php:355 msgctxt "csv importer" msgid "Item price must be a number." msgstr "" -#: admin/import/class-csv-importer-delegate.php:363 +#: admin/import/class-csv-importer-delegate.php:369 msgctxt "csv importer" msgid "The start date is missing and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:364 +#: admin/import/class-csv-importer-delegate.php:370 msgctxt "csv importer" msgid "The start date is invalid and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:365 +#: admin/import/class-csv-importer-delegate.php:371 msgctxt "csv importer" msgid "Invalid default start date." msgstr "" -#: admin/import/class-csv-importer-delegate.php:430 -#: admin/import/class-csv-importer-delegate.php:431 +#: admin/import/class-csv-importer-delegate.php:436 +#: admin/import/class-csv-importer-delegate.php:437 msgctxt "csv importer" msgid "The end date is missing and no default value was defined." msgstr "" -#: admin/import/class-csv-importer-delegate.php:432 +#: admin/import/class-csv-importer-delegate.php:438 msgctxt "csv importer" msgid "Invalid default end date." msgstr "" -#: admin/import/class-csv-importer-delegate.php:499 +#: admin/import/class-csv-importer-delegate.php:505 msgctxt "csv importer" msgid "Image file with name not found." msgstr "" -#: admin/import/class-csv-importer-delegate.php:566 +#: admin/import/class-csv-importer-delegate.php:576 msgctxt "csv importer" msgid "There was an error trying to store imported data into the database." msgstr "" -#: admin/import/class-csv-importer-delegate.php:587 +#: admin/import/class-csv-importer-delegate.php:599 msgctxt "csv importer" msgid "" "There was an error trying to import one of the images: " @@ -8806,18 +9011,6 @@ msgctxt "drip-autoresponder" msgid "The email address entered is not valid." msgstr "" -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:119 -msgctxt "drip-autoresponder" -msgid "Thank you for signing up!" -msgstr "" - -#: admin/pointers/class-drip-autoresponder-ajax-handler.php:120 -msgctxt "drip-autoresponder" -msgid "" -"Please check your email and click the link provided to confirm your " -"subscription." -msgstr "" - #: admin/pointers/class-drip-autoresponder.php:22 msgctxt "drip-autoresponder" msgid "Yes, I'd like my course, please" @@ -8828,18 +9021,6 @@ msgctxt "drip-autoresponder" msgid "No, thanks" msgstr "" -#: admin/pointers/class-drip-autoresponder.php:62 -msgctxt "drip-autoresponder" -msgid "Want to know the Secrets of Building an Awesome Classifieds Website?" -msgstr "" - -#: admin/pointers/class-drip-autoresponder.php:63 -msgctxt "drip-autoresponder" -msgid "" -"Find out how to create a compelling, thriving classifieds site from scratch " -"in this ridiculously actionable (and free) 5-part email course." -msgstr "" - #: admin/templates/admin-panel-credit-plans-entry-form.tpl.php:6 msgctxt "credit plans form" msgid "Edit Credit Plan Details" @@ -8855,28 +9036,6 @@ msgctxt "Quick Start Guide" msgid "No Thanks" msgstr "" -#: admin/templates/admin-quick-start-guide-notice.tpl.php:9 -msgctxt "Quick Start Guide" -msgid "I'll figure it out on my own." -msgstr "" - -#: admin/templates/admin-quick-start-guide-notice.tpl.php:17 -msgctxt "Quick Start Guide" -msgid "Help me get my classifieds running quickly." -msgstr "" - -#: admin/templates/admin-sidebar.tpl.php:75 -#. translators: %s: translated link -msgctxt "Browse the Quick Start Guide" -msgid "Browse the %s." -msgstr "" - -#: admin/templates/admin-sidebar.tpl.php:85 -#. translators: %s: translated link -msgctxt "Read the full Documentation" -msgid "Read the full %s." -msgstr "" - #: admin/templates/admin-widget-modification-notice.tpl.php:7 msgctxt "widget modification notice" msgid "Close this, I'll check my Widget configuration." @@ -8926,17 +9085,17 @@ msgctxt "404 HTTP status description" msgid "Listing not found" msgstr "" -#: frontend/page-place-ad.php:1417 +#: frontend/page-place-ad.php:1420 msgctxt "upload listing images form" msgid "Preview Ad" msgstr "" -#: frontend/page-place-ad.php:1419 +#: frontend/page-place-ad.php:1422 msgctxt "upload listing images form" msgid "Place Ad" msgstr "" -#: frontend/page-place-ad.php:1421 +#: frontend/page-place-ad.php:1424 msgctxt "upload listing images form" msgid "Checkout" msgstr "" @@ -9017,7 +9176,7 @@ msgctxt "listing row action" msgid "Unflag" msgstr "" -#: frontend/templates/email-send-ad-access-key.tpl.php:9 +#: frontend/templates/email-send-ad-access-key.tpl.php:13 #: frontend/templates/email-send-all-ad-access-keys.tpl.php:18 #: templates/email/listing-edit-link-with-access-token.tpl.php:9 msgctxt "edit link email" @@ -9068,11 +9227,6 @@ msgctxt "loading region options" msgid "loading..." msgstr "" -#: frontend/templates/page-buy-credits-checkout-step.tpl.php:1 -msgctxt "add credit checkout step" -msgid "Complete Payment" -msgstr "" - #: frontend/templates/page-edit-ad-email-key-step.tpl.php:34 msgctxt "enter email and access key form" msgid "Continue" @@ -9083,33 +9237,28 @@ msgctxt "send ad access key form" msgid "Continue" msgstr "" -#: frontend/templates/page-place-ad-checkout-step.tpl.php:1 -msgctxt "place ad checkout step" -msgid "Complete Payment" -msgstr "" - -#: frontend/templates/page-place-ad-details-step.tpl.php:59 +#: frontend/templates/page-place-ad-details-step.tpl.php:63 msgctxt "ad details form" msgid "Start Date" msgstr "" -#: frontend/templates/page-place-ad-details-step.tpl.php:69 +#: frontend/templates/page-place-ad-details-step.tpl.php:73 msgctxt "ad details form" msgid "End Date" msgstr "" -#: frontend/templates/page-place-ad-details-step.tpl.php:98 +#: frontend/templates/page-place-ad-details-step.tpl.php:104 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:9 msgctxt "ad details form" msgid "Read our Terms of Service" msgstr "" -#: frontend/templates/page-place-ad-details-step.tpl.php:100 +#: frontend/templates/page-place-ad-details-step.tpl.php:106 msgctxt "ad details form" msgid "Terms of service:" msgstr "" -#: frontend/templates/page-place-ad-details-step.tpl.php:105 +#: frontend/templates/page-place-ad-details-step.tpl.php:111 #: templates/frontend/form-fields/terms-of-service-form-field.tpl.php:17 msgctxt "ad details form" msgid "I agree to the terms of service" @@ -9174,12 +9323,12 @@ msgctxt "ad details form" msgid "Terms of Service" msgstr "" -#: frontend/templates/page-place-ad-details-step.tpl.php:120 +#: frontend/templates/page-place-ad-details-step.tpl.php:126 msgctxt "listing details form" msgid "Preview Ad" msgstr "" -#: frontend/templates/page-place-ad-details-step.tpl.php:122 +#: frontend/templates/page-place-ad-details-step.tpl.php:128 msgctxt "listing details form" msgid "Continue" msgstr "" @@ -9209,7 +9358,7 @@ msgctxt "place ad order step" msgid "Please select the owner for this Ad" msgstr "" -#: frontend/templates/page-place-ad-order-step.tpl.php:82 +#: frontend/templates/page-place-ad-order-step.tpl.php:84 msgctxt "listing order form" msgid "Continue" msgstr "" @@ -9220,128 +9369,59 @@ msgctxt "images upload step" msgid "Thumbnails of already uploaded images are shown below." msgstr "" -#: frontend/templates/page-renew-ad-order-step.tpl.php:6 -msgctxt "renew ad order step" -msgid "Select Payment Term" -msgstr "" - -#: frontend/templates/page-search-ads.tpl.php:88 +#: frontend/templates/page-search-ads.tpl.php:95 msgctxt "ad search form" msgid "Find Ads" msgstr "" -#: frontend/templates/payments-billing-form.tpl.php:1 -msgctxt "awpcp billing form" -msgid "" -"Please fill in the billing information in the form below to place your " -"payment." -msgstr "" - -#: frontend/templates/payments-checkout-page.tpl.php:13 +#: frontend/templates/payments-checkout-page.tpl.php:12 msgctxt "checkout step" msgid "" "You are about to pay for the following items. Please review the order and " "choose a payment method." msgstr "" -#: frontend/templates/payments-checkout-page.tpl.php:17 +#: frontend/templates/payments-checkout-page.tpl.php:16 msgctxt "checkout step" msgid "Payment Terms" msgstr "" -#: frontend/templates/payments-checkout-page.tpl.php:23 +#: frontend/templates/payments-checkout-page.tpl.php:22 msgctxt "checkout step" msgid "Payment Method" msgstr "" #: frontend/templates/payments-checkout-payment-page.tpl.php:8 -#: frontend/templates/payments-payment-page.tpl.php:3 msgctxt "checkout-payment page" msgid "You are about to pay for the following items." msgstr "" #: frontend/templates/payments-checkout-payment-page.tpl.php:10 -#: frontend/templates/payments-payment-page.tpl.php:5 msgctxt "checkout-payment page" msgid "Payment Terms" msgstr "" -#: includes/payments-api.php:802 +#: includes/payments-api.php:889 msgctxt "checkout-payment page" msgid "Please use the button below to complete your payment." msgstr "" -#: frontend/templates/payments-credit-plans-table.tpl.php:7 -msgctxt "credit plans table" -msgid "" -"You can additionally purchase a Credit Plan to add credit to your account. " -"If you select to pay using credits, the price of the selected payment term " -"will be deducted from your account balance after you have completed payment." -msgstr "" - -#: frontend/templates/payments-credit-plans-table.tpl.php:51 -msgctxt "credit plans table" -msgid "clear selection" -msgstr "" - -#: includes/payments-api.php:722 -msgctxt "credit plans table" -msgid "Plan" -msgstr "" - -#: includes/payments-api.php:723 -msgctxt "credit plans table" -msgid "Description" -msgstr "" - -#: includes/payments-api.php:724 -msgctxt "credit plans table" -msgid "Credits" -msgstr "" - -#: includes/payments-api.php:725 -msgctxt "credit plans table" -msgid "Price" -msgstr "" - -#: frontend/templates/payments-payment-completed-page.tpl.php:2 -msgctxt "payment completed page" -msgid "Transaction Details" -msgstr "" - #: frontend/templates/payments-paypal-payment-button.tpl.php:27 msgctxt "paypal-checkout-form" msgid "Return to %s" msgstr "" -#: frontend/templates/payments-transaction-items-table.tpl.php:4 -#: frontend/templates/payments-transaction-items-table.tpl.php:13 -msgctxt "transaction items" -msgid "Item" -msgstr "" - -#: frontend/templates/payments-transaction-items-table.tpl.php:5 -#: frontend/templates/payments-transaction-items-table.tpl.php:17 -msgctxt "transaction items" -msgid "Amount" -msgstr "" - -#: frontend/templates/payments-transaction-items-table.tpl.php:34 -msgctxt "transaction items" -msgid "Total Amount (credit)" -msgstr "" - #: frontend/templates/payments-transaction-items-table.tpl.php:40 msgctxt "transaction items" msgid "Total Amount" msgstr "" -#: functions.php:743 +#: functions.php:749 msgctxt "comma separated list of things" msgid "%s and %d more." msgstr "" -#: functions.php:1200 +#: functions.php:1222 msgctxt "default blog title" msgid "Classifieds Website" msgstr "" @@ -9570,27 +9650,27 @@ msgctxt "listing status" msgid "Active" msgstr "" -#: includes/admin/listings/class-listings-table-columns-handler.php:211 +#: includes/admin/listings/class-listings-table-columns-handler.php:212 msgctxt "listing status" msgid "Pending Approval" msgstr "" -#: includes/admin/listings/class-listings-table-columns-handler.php:215 +#: includes/admin/listings/class-listings-table-columns-handler.php:217 msgctxt "listing status" msgid "Expired" msgstr "" -#: includes/admin/listings/class-listings-table-columns-handler.php:219 +#: includes/admin/listings/class-listings-table-columns-handler.php:222 msgctxt "listing status" msgid "Disabled" msgstr "" -#: includes/admin/listings/class-listings-table-columns-handler.php:223 +#: includes/admin/listings/class-listings-table-columns-handler.php:227 msgctxt "listing status" msgid "Pending Payment" msgstr "" -#: includes/admin/listings/class-listings-table-columns-handler.php:227 +#: includes/admin/listings/class-listings-table-columns-handler.php:232 msgctxt "listing status" msgid "Pending Verification" msgstr "" @@ -9605,17 +9685,17 @@ msgctxt "listings row action" msgid "Quick View" msgstr "" -#: includes/class-awpcp.php:1458 +#: includes/class-awpcp.php:1449 msgctxt "[UI Datepicker] Display text for previous month link" msgid "<Prev" msgstr "" -#: includes/class-awpcp.php:1459 +#: includes/class-awpcp.php:1450 msgctxt "[UI Datepicker] Display text for next month link" msgid "Next>" msgstr "" -#: includes/class-awpcp.php:1465 +#: includes/class-awpcp.php:1456 msgctxt "[UI Datepicker] The first day of the week, Sun = 0, Mon = 1, ..." msgid "0" msgstr "" @@ -9666,7 +9746,7 @@ msgctxt "listing form field" msgid "Regions" msgstr "" -#: includes/frontend/class-default-captcha-provider.php:34 +#: includes/frontend/class-default-captcha-provider.php:45 #. translators: the numbers that need to be added up for the math challenge. msgctxt "CAPTCHA" msgid "Enter the value of the following sum: %1$d + %2$d" @@ -9697,78 +9777,68 @@ msgctxt "order submit listing section" msgid "Please select a category for your ad" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:44 -msgctxt "order submit listing section" -msgid "Who is the owner of this ad?" -msgstr "" - -#: templates/frontend/order-submit-listing-section.tpl.php:59 +#: templates/frontend/order-submit-listing-section.tpl.php:57 msgctxt "order submit listing section" msgid "Please select the duration and features that will be available for this ad" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:81 +#: templates/frontend/order-submit-listing-section.tpl.php:77 msgctxt "order submit listing section" msgid "Continue" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:87 -msgctxt "order submit listing section" -msgid "Your ad will be posted on the following categories: {categories}." -msgstr "" - -#: templates/frontend/order-submit-listing-section.tpl.php:95 +#: templates/frontend/order-submit-listing-section.tpl.php:98 msgctxt "order submit listing section" msgid "Credit Plan:" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:96 +#: templates/frontend/order-submit-listing-section.tpl.php:99 msgctxt "order submit listing section" msgid "Owner:" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:99 +#: templates/frontend/order-submit-listing-section.tpl.php:102 msgctxt "order submit listing section" msgid "Loading ad fields" msgstr "" -#: templates/frontend/order-submit-listing-section.tpl.php:100 +#: templates/frontend/order-submit-listing-section.tpl.php:103 msgctxt "order submit listing section" msgid "Change selection" msgstr "" -#: includes/frontend/class-recaptcha-v2.php:66 +#: includes/frontend/class-recaptcha-v2.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing" msgstr "" -#: includes/frontend/class-recaptcha-v2.php:69 -#: includes/helpers/class-recaptcha-v3.php:74 +#: includes/frontend/class-recaptcha-v2.php:96 +#: includes/helpers/class-recaptcha-v3.php:96 msgctxt "recaptcha-error" msgid "The secret parameter is invalid or malformed." msgstr "" -#: includes/frontend/class-recaptcha-v2.php:72 +#: includes/frontend/class-recaptcha-v2.php:99 msgctxt "recaptcha-error" msgid "The response parameter is missing." msgstr "" -#: includes/frontend/class-recaptcha-v2.php:76 +#: includes/frontend/class-recaptcha-v2.php:103 msgctxt "recaptcha-error" msgid "The response parameter is invalid or malformed." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:71 +#: includes/helpers/class-recaptcha-v3.php:93 msgctxt "recaptcha-error" msgid "The secret parameter is missing." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:77 +#: includes/helpers/class-recaptcha-v3.php:99 msgctxt "recaptcha-error" msgid "reCAPTCHA score was not included." msgstr "" -#: includes/helpers/class-recaptcha-v3.php:81 +#: includes/helpers/class-recaptcha-v3.php:103 msgctxt "recaptcha-error" msgid "reCAPTCHA couldn't analyze the current interaction." msgstr "" @@ -9893,7 +9963,7 @@ msgctxt "as in: 2 minutes remaining" msgid "remaining" msgstr "" -#: includes/helpers/widgets/multiple-region-selector.php:122 +#: includes/helpers/widgets/multiple-region-selector.php:142 #. translators: %s is the type of region. msgctxt "Select in Multiple Region Selector" msgid "Select %s" @@ -9915,7 +9985,7 @@ msgid "Add New" msgstr "" #: includes/models/class-custom-post-types.php:157 -#: includes/settings/class-listings-settings.php:595 +#: includes/settings/class-listings-settings.php:597 msgctxt "listing post type slug" msgid "classifieds" msgstr "" @@ -9935,7 +10005,7 @@ msgctxt "payment gateways" msgid "2Checkout" msgstr "" -#: includes/payment-gateway-paypal-standard.php:24 +#: includes/payment-gateway-paypal-standard.php:26 msgctxt "payment gateways" msgid "PayPal" msgstr "" @@ -9973,57 +10043,77 @@ msgid_plural "Years" msgstr[0] "" msgstr[1] "" -#: includes/payment-terms-table.php:33 +#: includes/payment-terms-table.php:38 msgctxt "place ad payment terms column headers" msgid "Payment Term" msgstr "" -#: includes/payment-terms-table.php:34 +#: includes/payment-terms-table.php:39 msgctxt "place ad payment terms column headers" msgid "Ads Allowed" msgstr "" -#: includes/payment-terms-table.php:35 +#: includes/payment-terms-table.php:40 msgctxt "place ad payment terms column headers" msgid "Images Allowed" msgstr "" -#: includes/payment-terms-table.php:36 +#: includes/payment-terms-table.php:41 msgctxt "place ad payment terms column headers" msgid "Characters in Title" msgstr "" -#: includes/payment-terms-table.php:37 +#: includes/payment-terms-table.php:42 msgctxt "place ad payment terms column headers" msgid "Chars in Description" msgstr "" -#: includes/payment-terms-table.php:38 +#: includes/payment-terms-table.php:43 msgctxt "place ad payment terms column headers" msgid "Duration" msgstr "" -#: includes/payment-terms-table.php:44 +#: includes/payment-terms-table.php:49 msgctxt "place ad payment terms column headers" msgid "Price (currency)" msgstr "" -#: includes/payment-terms-table.php:49 +#: includes/payment-terms-table.php:54 msgctxt "place ad payment terms column headers" msgid "Price (credits)" msgstr "" -#: includes/payment-terms-table.php:106 includes/payment-terms-table.php:111 +#: includes/payment-terms-table.php:139 includes/payment-terms-table.php:145 msgctxt "payment term duration" msgid "No Limit" msgstr "" -#: includes/settings/class-email-settings.php:135 +#: includes/payments-api.php:757 +msgctxt "credit plans table" +msgid "Plan" +msgstr "" + +#: includes/payments-api.php:758 +msgctxt "credit plans table" +msgid "Description" +msgstr "" + +#: includes/payments-api.php:759 +msgctxt "credit plans table" +msgid "Credits" +msgstr "" + +#: includes/payments-api.php:760 +msgctxt "credit plans table" +msgid "Price" +msgstr "" + +#: includes/settings/class-email-settings.php:137 msgctxt "reply to ad email" msgid "Response to your classified ad: {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:136 +#: includes/settings/class-email-settings.php:138 msgctxt "reply to ad email" msgid "" "Someone has responded to your classified ad.\n" @@ -10042,12 +10132,12 @@ msgid "" "{website_url}" msgstr "" -#: includes/settings/class-email-settings.php:161 +#: includes/settings/class-email-settings.php:163 msgctxt "reply to ad email" msgid "Notification about a response regarding ad: {listing_title}" msgstr "" -#: includes/settings/class-email-settings.php:162 +#: includes/settings/class-email-settings.php:164 msgctxt "reply to ad email" msgid "" "Someone has responded to one of the classified ads on your website.\n" @@ -10066,12 +10156,12 @@ msgid "" "{website_url}" msgstr "" -#: installer.php:833 +#: installer.php:318 msgctxt "reply to ad email" msgid "{__previous_subject__} regarding: {listing_title}" msgstr "" -#: installer.php:834 +#: installer.php:319 msgctxt "reply to ad email" msgid "" "{__previous_body__}\n" @@ -10145,14 +10235,6 @@ msgctxt "settings" msgid "Uncheck to show prices without decimals. The value will be rounded." msgstr "" -#: includes/settings/class-licenses-settings.php:81 -msgctxt "settings" -msgid "" -"The IP address of your server is . Please make sure to include " -"that information if you need to contact support about problems trying to " -"activate your licenses." -msgstr "" - #: includes/settings/class-payment-general-settings.php:100 msgctxt "settings" msgid "Pay before entering Ad details" @@ -10187,16 +10269,17 @@ msgid "" "the listing. You can include or remove certain elements if you wish." msgstr "" -#: includes/settings/class-listings-settings.php:599 +#: includes/settings/class-listings-settings.php:601 msgctxt "listing url settings section" msgid "" "These settings affect the URL path shown for listings. You can include or " "remove elements for SEO purposes." msgstr "" -#: includes/settings/class-listings-settings.php:605 +#: includes/settings/class-listings-settings.php:610 +#. translators: %s: example URL msgctxt "listing url settings section" -msgid "Example path: ." +msgid "Example path: %s." msgstr "" #: includes/settings/renderers/class-wordpress-page-settings-renderer.php:27 @@ -10204,9 +10287,11 @@ msgctxt "page settings" msgid "— Select —" msgstr "" -#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:40 +#: includes/settings/renderers/class-wordpress-page-settings-renderer.php:34 +#. translators: %1$s is a dropdown with existing pages, %2$s is a link to +#. create a new page msgctxt "page settings" -msgid "Select existing page {dropdown} -or- {create_page_button}" +msgid "Select existing page %1$s -or- %2$s" msgstr "" #: includes/views/admin/listings/class-listing-action-admin-page.php:22 @@ -10223,175 +10308,166 @@ msgid "" "for details." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:25 +#: templates/admin/export-listings-admin-page.tpl.php:27 +#. translators: %1$s: memory_limit link, %2$s: max_execution_time link msgctxt "listings-csv-export" msgid "" "Please note that the export process is a resource intensive task. If your " "export does not succeed try disabling other plugins first and/or increasing " -"the values of the 'memory_limit' and 'max_execution_time' directives in " -"your server's php.ini configuration file." +"the values of the %1$s and %2$s directives in your server php.ini " +"configuration file." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:44 +#: templates/admin/export-listings-admin-page.tpl.php:39 msgctxt "listings-csv-export" msgid "Export Configuration" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:47 +#: templates/admin/export-listings-admin-page.tpl.php:42 msgctxt "listings-csv-export" msgid "Export settings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:51 +#: templates/admin/export-listings-admin-page.tpl.php:46 msgctxt "listings-csv-export" msgid "Which listings to export?" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:55 +#: templates/admin/export-listings-admin-page.tpl.php:50 msgctxt "listings-csv-export" msgid "All" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:56 +#: templates/admin/export-listings-admin-page.tpl.php:51 msgctxt "listings-csv-export" msgid "Active Only" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:57 +#: templates/admin/export-listings-admin-page.tpl.php:52 msgctxt "listings-csv-export" msgid "Active + Pending Renewal" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:63 +#: templates/admin/export-listings-admin-page.tpl.php:58 msgctxt "listings-csv-export" msgid "Export images?" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:68 +#: templates/admin/export-listings-admin-page.tpl.php:63 msgctxt "listings-csv-export" msgid "Export images" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:71 +#: templates/admin/export-listings-admin-page.tpl.php:66 msgctxt "listings-csv-export" msgid "" "When checked, instead of just a CSV file a ZIP file will be generated with " "both a CSV file and listing images." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:77 +#: templates/admin/export-listings-admin-page.tpl.php:72 msgctxt "listings-csv-export" msgid "Additional metadata to export:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:82 +#: templates/admin/export-listings-admin-page.tpl.php:77 msgctxt "listings-csv-export" msgid "Include unique IDs for each listing (sequence_id column)." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:85 +#: templates/admin/export-listings-admin-page.tpl.php:80 msgctxt "listings-csv-export" msgid "" "If you plan to re-import the listings into AWPCP and don't want new ones " "created, select this option!" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:90 +#: templates/admin/export-listings-admin-page.tpl.php:85 msgctxt "listings-csv-export" msgid "Author information (username)" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:96 +#: templates/admin/export-listings-admin-page.tpl.php:91 msgctxt "listings-csv-export" msgid "CSV File Settings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:100 +#: templates/admin/export-listings-admin-page.tpl.php:95 msgctxt "listings-csv-export" msgid "Image Separator" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "Category Separator" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:109 +#: templates/admin/export-listings-admin-page.tpl.php:104 msgctxt "listings-csv-export" msgid "required" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:118 +#: templates/admin/export-listings-admin-page.tpl.php:113 msgctxt "listings-csv-export" msgid "Export Listings" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:124 +#: templates/admin/export-listings-admin-page.tpl.php:119 msgctxt "listings-csv-export" msgid "Export in Progress..." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:125 +#: templates/admin/export-listings-admin-page.tpl.php:120 msgctxt "listings-csv-export" msgid "" "Your export file is being prepared. Please do not leave this page until the " "export finishes." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:128 +#: templates/admin/export-listings-admin-page.tpl.php:123 msgctxt "listings-csv-export" msgid "No. of listings:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:130 +#: templates/admin/export-listings-admin-page.tpl.php:125 msgctxt "listings-csv-export" msgid "Approximate export file size:" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:137 +#: templates/admin/export-listings-admin-page.tpl.php:132 msgctxt "listings-csv-export" msgid "Cancel Export" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:142 -msgctxt "listings-csv-export" -msgid "Export Complete" -msgstr "" - -#: templates/admin/export-listings-admin-page.tpl.php:143 +#: templates/admin/export-listings-admin-page.tpl.php:138 msgctxt "listings-csv-export" msgid "" "Your export file has been successfully created and it is now ready for " "download." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:149 +#: templates/admin/export-listings-admin-page.tpl.php:144 #. translators: %1$s filename %2$s filesize. msgctxt "listings-csv-export" msgid "Download %1$s (%2$s)" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:160 +#: templates/admin/export-listings-admin-page.tpl.php:155 msgctxt "listings-csv-export" msgid "Cleanup" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:165 -msgctxt "listings-csv-export" -msgid "Export Canceled" -msgstr "" - -#: templates/admin/export-listings-admin-page.tpl.php:166 +#: templates/admin/export-listings-admin-page.tpl.php:161 msgctxt "listings-csv-export" msgid "The export has been canceled." msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:167 +#: templates/admin/export-listings-admin-page.tpl.php:162 msgctxt "listings-csv-export" msgid "← Return to CSV Export" msgstr "" -#: templates/admin/export-listings-admin-page.tpl.php:101 +#: templates/admin/export-listings-admin-page.tpl.php:96 msgctxt "admin forms" msgid "required" msgstr "" @@ -10440,37 +10516,6 @@ msgctxt "The 'or' after 'Drop files here to upload' in Media Uploader" msgid "or" msgstr "" -#: templates/email/listing-media-upload-notification.plain.tpl.php:1 -msgctxt "listing media uploaded notification" -msgid "Hello," -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:5 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing " -"\"\":" -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:16 -msgctxt "listing media uploaded notification" -msgid "" -"The following media files were recently uploaded to listing " -"\"\" and are awaiting approval:" -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:26 -msgctxt "listing media uploaded notification" -msgid "" -"Click here to manage media uploaded to the listing: " -"." -msgstr "" - -#: templates/email/listing-media-upload-notification.plain.tpl.php:31 -msgctxt "listing media uploaded notification" -msgid "Click here to view the listing: ." -msgstr "" - #: templates/frontend/actions-submit-listing-section.tpl.php:7 msgctxt "actions submit listing section" msgid "Actions" @@ -10504,116 +10549,4 @@ msgstr "" #: templates/frontend/upload-media-submit-listing-section.tpl.php:11 msgctxt "upload media submit listing section" msgid "Loading..." -msgstr "" - -#: templates/privacy-policy.tpl.php:10 -msgctxt "privacy policy" -msgid "" -"When you submit a classified listing, the content of the listing and its " -"metadata are retained indefinitely. All users can see, edit or delete the " -"personal information included on their listings at any time. Website " -"administrators can also see and edit that information." -msgstr "" - -#: templates/privacy-policy.tpl.php:12 -msgctxt "privacy policy" -msgid "" -"Website visitors can see the contact name, website URL, phone number, " -"address and other information included in your submission to describe the " -"classified listing." -msgstr "" - -#: templates/privacy-policy.tpl.php:14 -msgctxt "privacy policy" -msgid "" -"Contact name, email address, website URL and content of submitted " -"classified listings may be checked through Akismet's spam detection " -"service. The Akismet service privacy policy is available here." -msgstr "" - -#: templates/privacy-policy.tpl.php:16 -msgctxt "privacy policy" -msgid "Payment Information" -msgstr "" - -#: templates/privacy-policy.tpl.php:18 -msgctxt "privacy policy" -msgid "" -"If you pay to post a classified listing entering your credit card and " -"billing information directly on {home_url}, the " -"credit card information won't be stored but it will be shared through a " -"secure connection with the following payment gateways to process the " -"payment:" -msgstr "" - -#: templates/privacy-policy.tpl.php:21 -msgctxt "privacy policy" -msgid "" -"PayPal — https://www." -"paypal.com/webapps/mpp/ua/privacy-full" -msgstr "" - -#: templates/privacy-policy.tpl.php:22 -msgctxt "privacy policy" -msgid "" -"Authorize.Net — https://www.authorize." -"net/company/privacy/" -msgstr "" - -#: templates/privacy-policy.tpl.php:23 -msgctxt "privacy policy" -msgid "" -"Stripe — https://stripe.com/us/privacy/" -msgstr "" - -#: templates/privacy-policy.tpl.php:26 -msgctxt "privacy policy" -msgid "Regions" -msgstr "" - -#: templates/privacy-policy.tpl.php:28 -msgctxt "privacy policy" -msgid "" -"If you choose to see listings published on a specific region, a cookie will " -"be stored on your browser for the remainder of the session to remember the " -"selected region." -msgstr "" - -#: templates/privacy-policy.tpl.php:30 -msgctxt "privacy policy" -msgid "Comments and Ratings" -msgstr "" - -#: templates/privacy-policy.tpl.php:32 -msgctxt "privacy policy" -msgid "" -"When visitors leave comments and reviews for classified listings we collect " -"the data shown in the comments form, and also the visitor’s IP address to " -"help spam detection." -msgstr "" - -#: templates/privacy-policy.tpl.php:34 -msgctxt "privacy policy" -msgid "" -"Visitor comments may be checked through Akismet's spam detection service. " -"The Akismet service privacy policy is available here." -msgstr "" - -#: templates/privacy-policy.tpl.php:36 -msgctxt "privacy policy" -msgid "Restricted Categories" -msgstr "" - -#: templates/privacy-policy.tpl.php:38 -msgctxt "privacy policy" -msgid "" -"When you agree to see listings or publish a listing on a restricted " -"category, a cookie will be stored in your browser to remember your " -"decision. The cookie will be stored on your browser for the remainder of " -"that session." msgstr "" \ No newline at end of file