Version Description
Download this release
Release Info
Developer | businessdirectoryplugin |
Plugin | Business Directory Plugin |
Version | 5.17 |
Comparing to | |
See all releases |
Code changes from version 5.16.1 to 5.17
- README.TXT +9 -13
- assets/css/admin.min.css +1 -1
- business-directory-plugin.php +1 -1
- includes/admin/class-admin.php +1 -1
- includes/admin/class-listing-fields-metabox.php +1 -1
- includes/admin/controllers/class-admin-fees.php +1 -2
- includes/admin/controllers/class-settings-admin.php +0 -1
- includes/admin/controllers/class-themes-admin.php +1 -0
- includes/admin/csv-import.php +1 -1
- includes/admin/helpers/tables/class-fees-table.php +8 -19
- includes/admin/settings/class-settings-bootstrap.php +10 -16
- includes/admin/upgrades/migrations/migration-18_5.php +49 -0
- includes/class-fees-api.php +22 -0
- includes/class-payment-gateways.php +14 -36
- includes/class-wpbdp.php +1 -1
- includes/controllers/pages/class-submit-listing.php +40 -19
- includes/fields/class-fieldtypes-image.php +0 -1
- includes/helpers/class-listing-image.php +6 -1
- includes/helpers/functions/general.php +45 -20
- includes/installer.php +2 -2
- includes/licensing.php +51 -25
- includes/models/class-fee-plan.php +0 -1
- includes/models/class-listing.php +32 -5
- includes/utils.php +3 -6
- languages/business-directory-plugin-ar.mo +0 -0
- languages/business-directory-plugin-ar.po +297 -341
- languages/business-directory-plugin-de_DE.mo +0 -0
- languages/business-directory-plugin-de_DE.po +299 -346
- languages/business-directory-plugin-en_US.po +255 -325
- languages/business-directory-plugin-fr_FR.mo +0 -0
- languages/business-directory-plugin-fr_FR.po +295 -342
- languages/business-directory-plugin-it_IT.mo +0 -0
- languages/business-directory-plugin-it_IT.po +297 -342
- languages/business-directory-plugin-nl_NL.po +270 -328
- languages/business-directory-plugin-pl_PL.mo +0 -0
- languages/business-directory-plugin-pl_PL.po +307 -356
- languages/business-directory-plugin-ru_RU.mo +0 -0
- languages/business-directory-plugin-ru_RU.po +299 -347
- languages/business-directory-plugin-sv_SE.mo +0 -0
- languages/business-directory-plugin-sv_SE.po +296 -342
- languages/business-directory-plugin.pot +257 -326
- templates/admin/fees-index.tpl.php +0 -25
- templates/admin/home.tpl.php +0 -80
- templates/admin/themes-item.tpl.php +9 -1
- themes/default/theme.json +1 -1
README.TXT
CHANGED
@@ -4,7 +4,7 @@ Tags: business directory, listings, directory plugin, staff directory, member di
|
|
4 |
Requires at least: 4.8
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 5.8.1
|
7 |
-
Stable tag: 5.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
The best WordPress Business Directory Plugin. Build an easy team directory, member directory, staff directory, church directory, and more.
|
@@ -158,6 +158,14 @@ Yes it is. However, you cannot "network activate" the plugin (as this will share
|
|
158 |
This can be done under Plugins -> Add New as the Administrator user. Do not "network activate" as the "super admin".
|
159 |
|
160 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
= 5.16.1 =
|
162 |
* Fix: The message to create a page on install wasn't updating when it was successful.
|
163 |
* Fix: Exclude admin test fees in the stats for the plan total amount collected.
|
@@ -179,16 +187,4 @@ This can be done under Plugins -> Add New as the Administrator user. Do not "net
|
|
179 |
* Fix: When the plan selector was used in other places, the buttons didn't always have labels.
|
180 |
* Code update: Errors for a field returned by the wpbdp_listing_submit_validate_field will be shown with the field.
|
181 |
|
182 |
-
= 5.15.4 =
|
183 |
-
* Fix: Sites without a field selected for the address were getting errors.
|
184 |
-
|
185 |
-
= 5.15.3 =
|
186 |
-
* New: When the number of images on a plan changes, offer the option to update the image limit on existing listings.
|
187 |
-
* New: Update the plan table to include the number of listings and amount earned.
|
188 |
-
* In the default theme, combine the address fields into one section on the excerpt page.
|
189 |
-
* Stop loading the external Font Awesome css, and use a Font Awesome plugin for WordPress instead.
|
190 |
-
* Switch to current standards for WordPress admin notices.
|
191 |
-
* Fix: Some widget settings weren't getting saved.
|
192 |
-
* Remove the option to set a height for category multiselect fields since it wasn't being used.
|
193 |
-
|
194 |
<a href="https://businessdirectoryplugin.com/plugins/business-directory/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">See changelog for all versions</a>
|
4 |
Requires at least: 4.8
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 5.8.1
|
7 |
+
Stable tag: 5.17
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
The best WordPress Business Directory Plugin. Build an easy team directory, member directory, staff directory, church directory, and more.
|
158 |
This can be done under Plugins -> Add New as the Administrator user. Do not "network activate" as the "super admin".
|
159 |
|
160 |
== Changelog ==
|
161 |
+
= 5.17 =
|
162 |
+
* New: Simplify setting up plans. Now, there's no free vs paid mode. If paid plans are created, a gateway needs to be set up.
|
163 |
+
* Add more caching to speed up page loading.
|
164 |
+
* Fix: The category wasn't getting auto selected with only one category.
|
165 |
+
* Fix: Some images weren't uploading in the admin settings or in social fields.
|
166 |
+
* Fix: Images can now be removed from a listing if it is used in another listing too.
|
167 |
+
* Add more helpful info if a BD theme is missing an Activate button.
|
168 |
+
|
169 |
= 5.16.1 =
|
170 |
* Fix: The message to create a page on install wasn't updating when it was successful.
|
171 |
* Fix: Exclude admin test fees in the stats for the plan total amount collected.
|
187 |
* Fix: When the plan selector was used in other places, the buttons didn't always have labels.
|
188 |
* Code update: Errors for a field returned by the wpbdp_listing_submit_validate_field will be shown with the field.
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
<a href="https://businessdirectoryplugin.com/plugins/business-directory/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">See changelog for all versions</a>
|
assets/css/admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wpdbp-wrap{--darkest-grey:#282f36;--dark-grey:rgba(40,47,54,0.85);--medium-grey:rgba(40,47,54,0.65);--grey:rgba(40,47,54,0.45);--grey-border:rgba(40,47,54,0.2);--lightest-grey:#fafafa;--green:#3fac25;--orange:#F15A24}.wpbdp-tag{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:10px !important;margin-right:2px;text-decoration:none !important;line-height:1.5 !important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}.wpbdp-display-block{display:block}.wpbdp-smaller{font-size:90%}.wpbdp-no-bold{font-weight:normal}.wpbdp-wait{margin:20px;width:20px;height:20px;position:relative;display:inline-block}.wpbdp-wait:before{content:'';display:inline-block;position:absolute;background:transparent;border:1px solid #fff;border-top-color:transparent;border-left-color:transparent;border-bottom-color:#607297;border-right-color:#607297;border-radius:50%;box-sizing:border-box;top:50%;left:50%;margin-top:-10px;margin-left:-10px;width:20px;height:20px;-webkit-animation:spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.wpbdp-wait.wpbdp_visible_spinner{margin-bottom:10px}.wpbdp-wait.wpbdp_visible_spinner .spinner{visibility:visible;float:none}.wpbdpfont{text-decoration:none;text-shadow:none;font-weight:normal;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:auto;line-height:1;-moz-transition:color .1s ease-in-out,opacity .1s ease-in-out;-webkit-transition:color .1s ease-in-out,opacity .1s ease-in-out;transition:color .1s ease-in-out,opacity .1s ease-in-out;font-size:18px}i.wpbdpfont{font-style:normal;font-variant:normal;speak:none}.wpbdpfont:before,select.wpbdpfont{text-align:center}.wpbdpfont,a.wpbdpfont,.wpbdpfont:hover{text-decoration:none !important;box-shadow:none}.wpbdpfont:focus{box-shadow:none;-webkit-box-shadow:none}.wpbdpfont:active{outline:none}.wpbdpsvg{fill:currentColor;width:18px;height:18px;vertical-align:text-bottom}.wpbdp-admin-page .wpbdp-button-primary,.wpbdp-admin-page .wpbdp-button-secondary{text-shadow:none;box-shadow:none;border-radius:30px;border:1px solid #7e92bc !important;font-size:1em;transition:all .2s ease;height:28px;min-height:28px;outline:none;line-height:26px;min-width:100px;display:inline-block;text-align:center;padding:2px 10px;text-decoration:none}.wpbdp-admin-page .page-title-action,.wpbdp-admin-page .wpbdp-button-primary,.wpbdp-admin-page .button-primary{background-color:#7e92bc !important;border-color:#7e92bc !important;color:#fff !important}.wpbdp-admin-page .page-title-action:hover,.wpbdp-admin-page .wpbdp-button-primary:hover,.wpbdp-admin-page .button-primary:hover,.wpbdp-admin-page .page-title-action:focus,.wpbdp-admin-page .wpbdp-button-primary:focus,.wpbdp-admin-page .button-primary:focus{background:#607297 !important;border-color:#607297 !important}.wpbdp-admin-page .add-new-h2,.wpbdp-admin-page .wpbdp-button-secondary,.wpbdp-admin-page .button-secondary,.wpbdp-admin-page .button{background-color:#fff;border-color:#7e92bc !important;color:#607297}.wpbdp-admin-page .add-new-h2:hover,.wpbdp-admin-page .wpbdp-button-secondary:hover,.wpbdp-admin-page .button-secondary:hover,.wpbdp-admin-page .button:hover,.wpbdp-admin-page .add-new-h2:focus,.wpbdp-admin-page .wpbdp-button-secondary:focus,.wpbdp-admin-page .button-secondary:focus,.wpbdp-admin-page .button:focus{border-color:#607297 !important;background:#607297 !important;color:#fff;box-shadow:none}#wpbdp-admin-smtp *,#wpbdp-admin-smtp *::before,#wpbdp-admin-smtp *::after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#wpbdp-admin-smtp{width:700px;margin:0 auto}#wpbdp-admin-smtp p{font-size:15px}#wpbdp-admin-smtp section{margin:50px 0;text-align:left;clear:both}#wpbdp-admin-smtp .top{text-align:center}#wpbdp-admin-smtp .top h1{font-size:26px;font-weight:600;margin-bottom:0;padding:0}#wpbdp-admin-smtp .top p{font-size:17px;color:#777;margin-top:.5em}#wpbdp-admin-smtp .top .error,#wpbdp-admin-smtp .top .notice{display:none}#wpbdp-admin-smtp .screenshot ul{display:inline-block;margin:0 0 0 30px;list-style-type:none;max-width:calc(100% - 350px)}#wpbdp-admin-smtp .screenshot li{margin:16px 0;padding:0;font-size:15px;color:#777}#wpbdp-admin-smtp .screenshot .cont img{max-width:100%;display:block}#wpbdp-admin-smtp .screenshot .cont{display:inline-block;position:relative;width:315px;padding:5px;background-color:#fff;border-radius:3px}#wpbdp-admin-smtp .step,#wpbdp-admin-smtp .screenshot .cont{-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,0.05);-moz-box-shadow:0 2px 5px 0 rgba(0,0,0,0.05);box-shadow:0 2px 5px 0 rgba(0,0,0,0.05)}#wpbdp-admin-smtp .step{background-color:#F9F9F9;border:1px solid #E5E5E5;margin:0 0 25px}#wpbdp-admin-smtp .step p{font-size:16px;color:#777777}#wpbdp-admin-smtp .step .num{display:inline-block;position:relative;width:100px;height:50px;text-align:center}#wpbdp-admin-smtp .step div{display:inline-block;width:calc( 100% - 104px );background-color:#fff;padding:30px;border-left:1px solid #eee}#wpbdp-admin-smtp .step h2{font-size:24px;line-height:22px;margin-top:0;margin-bottom:15px}#wpbdp-admin-smtp .screenshot>*,#wpbdp-admin-smtp .step>*{vertical-align:middle}#wpbdp-admin-smtp .grey{opacity:.5;background:#F6F6F6 !important;border-color:#ddd !important;color:#9FA5AA !important}#wpbdp-admin-smtp .button.disabled{cursor:default}.wpbdp-smtp-logos{margin-bottom:38px}.wpbdp-smtp-logos img,.wpbdp-smtp-logos svg{vertical-align:middle}.wpbdp-addons{margin-top:30px;display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:30px 2%}.wpbdp-addons,.wpbdp-addons h2,.wpbdp-addons h3{color:var(--dark-grey)}.wpbdp-addons h2{font-size:17px}.wpbdp-addons h3{margin-top:0}.wpbdp-card{width:100%;border-radius:10px;border:1px solid var(--grey-border);opacity:1;transition:opacity 1s;background:#fff}.wpbdp-addons .wpbdp-card.wpbdp-addon-not-installed{position:relative}.wpbdp-addons .plugin-card-top{height:140px;padding-top:30px;overflow:hidden}.wpbdp-addons .plugin-card-top h2{margin-top:0;font-weight:400}.wpbdp-template-row p,.wpbdp-addons .plugin-card-top p{opacity:.8}.wpbdp-addons .plugin-card-bottom{padding:5px 20px 20px;text-align:center;background:transparent;border-top:none}.wpbdp-addons .plugin-card-bottom,.wpbdp-addons .plugin-card-bottom .button{font-size:15px}.wpbdp-addons .button{float:right}.wpbdp-addons .addon-status{float:left;padding-top:4px}.wpbdp-addon-active .button{visibility:hidden}.addon-status-label{opacity:.7}.wpbdp-addon-active .addon-status-label{color:var(--green);opacity:1}.wpbdp-addon-error{position:absolute;top:55px;left:10px;right:10px;font-weight:bold;text-align:center}.wpbdp-ribbon{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);border:25px solid transparent;border-bottom:25px solid var(--orange);position:absolute;top:-31px;right:-74px;padding:0 10px;width:30px;color:white;font-family:sans-serif;size:11px}.wpbdp-ribbon span{position:absolute;left:25px;font-size:15px;top:4px}@media only screen and (max-width:1200px){.wpbdp-addons{grid-template-columns:1fr 1fr}}.wpbdp-review-notice.notice{border:1px solid #ddd;text-align:center;position:fixed !important;z-index:999;bottom:0;right:0;width:400px;margin-bottom:0;padding-bottom:15px}.wpbdp-review-notice.notice form,.wpbdp-review-notice.notice p{font-size:14px;max-width:600px;margin-left:auto;margin-right:auto}.wpbdp-review-notice a{margin:5px}.wpbdp-review-notice p>span{font-size:13px;opacity:.75}.wpbdp-review-notice .wpbdp_error,.wpbdp-review-notice label{color:#444;text-align:left}.wpbdp-review-notice label{font-size:14px}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.button-primary.next-to-secondary{margin-left:30px}.wpbdp-error.error{border-left-color:#6D87B9;display:flex;align-items:center}.wpbdp-error.error p:first-of-type{flex:1}.wpbdp-pro-tip,.wpbdp-upgrade-bar{background-color:rgba(227,230,243,0.64)}.wpbdp-pro-tip a,.wpbdp-upgrade-bar a{color:#6D87B9;font-weight:600;text-decoration:none}.wpbdp-pro-tip{display:flex;align-items:center;border-radius:6px;padding:11px 22px}.wpbdp-pro-tip svg{color:#6D87B9;margin-right:13px}.wpbdp-pro-tip a{margin-left:5px}.wpbdp-upgrade-bar{background-color:rgba(227,230,243,0.4);text-align:center;margin-left:-20px;border-bottom:2px solid #6D87B9;padding:8px 22px}.wpbdp-admin-content .wpbdp-upgrade-bar{display:none}.wpbdp-admin h1 img{vertical-align:middle}.wpbdp-admin-content.with-sidebar{margin-top:20px;clear:left;float:left;width:78%}.wpbdp-admin .sidebar{margin-top:20px;float:right;clear:right;width:20%}.wpbdp-admin .sidebar .postbox{min-width:0 !important}.wp-list-table tr.wpbdp-item-message-tr td{padding-top:0}.wp-list-table tr.wpbdp-item-message-tr td div{margin:0 15px;padding:6px 12px 8px 12px;background-color:#fef7f1;font-size:12px}.wpbdp-admin-page-fees .tablenav{display:none}#wpbdp-admin-admin-page-fees .column-attributes .wpbdp-tag{background:green;color:#fff}.wpbdp-admin-page-fees .wp-list-table .wpbdp-drag-handle{margin-right:15px;display:none}.wpbdp-admin-page-fees .purchase-gateways{text-align:center}.wpbdp-admin-page-fees .purchase-gateways .gateway{float:left;width:45%;margin:30px 2% 20px 0}.wpbdp-admin-page-fees .purchase-gateways .gateway.installed{opacity:.5}.wpbdp-admin-page-fees .purchase-gateways .gateway a img.gateway-logo{height:40px;margin:0;padding:0;border:none}.wpbdp-admin-page-fees .purchase-gateways .gateway a.price{margin-top:10px;display:block;color:green;font-size:22px;font-weight:bold}.wpbdp-admin-page-fees .purchase-gateways .gateway .check-mark{font-size:150%;font-weight:bold;color:green}#wpbdp-fee-form #limit-categories-list{font-size:90%}#wpbdp-fee-form #limit-categories-list p{margin:10px 0}#wpbdp-fee-form #limit-categories-list select{width:100%}#wpbdp-fee-form #limit-categories-list .select2-selection{padding:0 0 2px 0;margin:0;border-radius:5px;border-color:#ddd;min-height:26px}#wpbdp-fee-form #limit-categories-list .select2-selection__choice{border:none;padding:0;margin:2px 4px 0 0;background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:10px !important;margin-right:2px;text-decoration:none !important;line-height:1.5 !important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-completed{background:green}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-canceled,#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-failed{background:red}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-admin-posted,#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-on-hold,#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-refunded{background:orange}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-post-status-pending{background:blue;color:#fff}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-no-fee-plan{background:#d64226;color:#fff}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-reported{background:#d64226;color:#fff}#wpbdp-fee-form #limit-categories-list .select2-selection__choice .select2-selection__choice__remove{color:#fff}#wpbdp-fee-form #limit-categories-list .select2-search{margin-bottom:0}#wpbdp-fee-form #limit-categories-list .wpbdp-category-item{width:33.33%;float:left;padding:2px 0}#wpbdp-fee-form .pricing-details-variable>td{padding-top:0}#wpbdp-fee-form .pricing-details-variable table th{font-weight:normal}#wpbdp-fee-form .pricing-details-variable table td:last-child{width:100%}#wpbdp-fee-form .pricing-details-variable table td{font-size:90%;padding:0}#wpbdp-fee-form .pricing-details-variable table td.category-name-col{padding-right:20px;text-align:right}#wpbdp-fee-form .pricing-details-variable .wpbdp-variable-pricing-configurator-row input{width:100px}#wpbdp-fee-form .pricing-options label{display:block}#wpbdp-fee-form .fee-pricing-details input[type="text"]{width:100px}#wpbdp-admin-page-settings .nav-tab.tab-error{border-top:solid 1px red}#wpbdp-admin-page-settings .nav-tab.tab-warning{border-top:solid 1px yellow}#wpbdp-admin-page-settings .form-table tr>th{min-width:250px}#wpbdp-admin-page-settings .form-table tr>th>h3{font-size:1.2em;margin:0 auto}#wpbdp-admin-page-settings .wpbdp-setting-description{color:#666;font-style:italic;display:block}#wpbdp-admin-page-settings .wpbdp-setting-tooltip{height:18px;width:18px;font-size:18px;line-height:18px;vertical-align:middle;margin-right:5px;color:#666;cursor:help}#wpbdp-admin-page-settings input[type="text"],#wpbdp-admin-page-settings input[type="url"],#wpbdp-admin-page-settings textarea{width:85%}#wpbdp-admin-page-settings textarea{min-height:150px}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activate-btn,#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-deactivate-btn{margin-left:10px;display:none}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activate-btn{display:inline-block}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-valid .howto,#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-valid .wpbdp-license-key-activate-btn{display:none}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-valid .wpbdp-license-key-deactivate-btn{display:inline-block}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-not-verified input[type=text]{border-color:#d64226}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg,#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-input{width:70%}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg{font-size:90%;border-radius:4px;padding:8px;margin:3px 0;box-sizing:border-box}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg.status-success{border-color:#27a533}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg.status-error{border-color:#d64226}#wpbdp-admin-page-settings tr.wpbdp-setting-disabled{display:none}#wpbdp-admin-page-settings .wpbdp_upgrade_to_pro{text-align:center;margin-top:80px}.form-table .wpbdp-collapse-row-last td,.form-table .wpbdp-collapse-row-last th,.form-table .wpbdp-collapse-row th,.form-table .wpbdp-collapse-row td{padding-bottom:0;padding-top:0}.form-table .wpbdp-collapse-row-first td,.form-table .wpbdp-collapse-row-first th{padding-bottom:0}.wpbdp-tooltip-msg{background:#333 !important;border-width:1px !important;border-radius:3px !important;box-shadow:1px 1px 2px 1px rgba(214,214,214,0.5) !important;color:#dedede !important;max-width:300px !important;padding:7px !important;text-rendering:optimizeLegibility;text-shadow:none !important;z-index:9999 !important}#wpbdp-admin-page-settings select{display:block}#wpbdp-admin-page-settings .wpbdp-settings-choice-radio{margin:0 0 5px 0}#wpbdp-admin-page-settings tr.disabled{opacity:.7}#wpbdp-admin-page-settings .text-fields-warning{font-size:90%;display:block;margin-bottom:2px}#wpbdp-admin-page-settings .wpbdp-expiration-notice-email-schedule-summary{background:#d2d2d2;font-size:85%;padding:5px}#wpbdp-admin-page-settings .wpbdp-settings-email{margin:10px 0 0 0;border:solid 1px #d2d2d2;padding:5px;background:#fff}#wpbdp-admin-page-settings .wpbdp-settings-email.wpbdp-expiration-notice-email{border-bottom:none}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview{color:#999;font-size:90%;height:45px;cursor:pointer;overflow:hidden}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview h4,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview h4{margin:0 0 10px 0}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview a.wpbdp-settings-email-edit-btn,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview a.wpbdp-settings-email-edit-btn,#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview .edit-toggle,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview .edit-toggle{float:right;color:#fff}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview dl,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview dl{margin:0;padding:0}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview dl dt,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview dl dt{font-weight:bold;margin:0;padding:0}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview dl dd,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview dl dd{margin:0;padding:0 0 0 10px}#wpbdp-admin-page-settings .wpbdp-settings-email .editor,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor{display:none;margin-left:10px;font-size:90%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor table.form-table,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor table.form-table{margin:0;padding:0}#wpbdp-admin-page-settings .wpbdp-settings-email .editor table.form-table th,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor table.form-table th{padding-left:4px;padding-right:0;min-width:0;width:20%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor input[type="text"],#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor input[type="text"]{width:100%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor textarea,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor textarea{width:100%;min-height:150px}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholders,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholders{margin:10px 0 0 0}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder{font-size:90%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder .placeholder-code,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder .placeholder-code{font-family:monospace;font-weight:bold}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder .placeholder-description,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder .placeholder-description{font-style:italic}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder-separator,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder-separator{margin-top:10px}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons{margin:30px 0 0 0;text-align:right}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons .preview-email,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons .preview-email{float:left}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons .cancel,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons .cancel{margin-right:10px}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices #wpbdp-settings-expiration-notices-add-btn{margin:0 0 5px 0}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices #wpbdp-settings-expiration-notices-add .wpbdp-expiration-notice-email{display:none;border-bottom:1px solid #d2d2d2}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices .buttons .delete{color:#a00;float:left;font-size:13px}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices .buttons .delete:hover{color:red}#wpbdp-admin-page-settings .wpbdp-settings-type-checkbox input[type="checkbox"]{vertical-align:bottom}#wpbdp-admin-page-settings .wpbdp-settings-radio-options,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options{grid-gap:0}#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-radio-option,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-radio-option,#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-multicheck-option,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option{margin:0 0 5px 0}#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-radio-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-radio-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-multicheck-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-radio-option input[type="checkbox"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-radio-option input[type="checkbox"],#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-multicheck-option input[type="checkbox"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option input[type="checkbox"]{vertical-align:bottom}#wpbdp-admin-page-settings .wpbdp-settings-radio-options+.wpbdp-setting-description,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options+.wpbdp-setting-description{margin:10px 0 0 0}.wpbdp-settings-radio-option .wpbdp-img-opt{display:block;margin:0 auto 10px}#wpbdp-settings-list-layout .wpbdp-settings-radio-option{float:left;text-align:center;margin-right:1% !important;width:32%;min-width:173px}#wpbdp-settings-list-layout input{display:none}#wpbdp-settings-list-layout label span{border:2px solid transparent;display:inline-block;padding-bottom:10px;border-radius:3px}#wpbdp-settings-list-layout input:checked+label span{border-color:#4199FD}td.column-payment_status .status,td.column-sticky_status .status{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:90%}td.column-payment_status .status.ok{background:green}td.column-payment_status .paymentdata{font-size:85%}td.column-payment_status .paymentdata b{font-weight:normal}td.column-payment_status .paymentdata span{font-style:italic}td.column-sticky_status .status.notpaid{background:orange}td.column-sticky_status .status.pending{background:red;font-weight:bold}td.column-sticky_status .status.sticky{background:green}table.wp-list-table td .tag{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:90%;margin-right:2px;display:inline-block}table.wp-list-table.formfields th.column-label{width:40%}table.wp-list-table.formfields th.column-tags,table.wp-list-table.formfields td.column-tags{width:200px}table.wp-list-table.formfields th.column-order,table.wp-list-table.formfields td.column-order{width:55px}table.wp-list-table.formfields td.column-order .wpbdp-drag-handle{visibility:hidden}table.wp-list-table.formfields tr:hover .wpbdp-drag-handle{visibility:visible}table.wp-list-table.formfields .tag.private{background:red}table.wp-list-table.formfields .tag.privacy{background:blue}table.wp-list-table.formfields .tag.required{background:orange}table.wp-list-table.formfields .tag.in-excerpt{background:green}table.wp-list-table.formfields .tag.in-listing{background:green}table.wp-list-table.formfields tr.wpbdp-draggable-highlight{height:54px}table.wp-list-table.formfields tr.ui-sortable-helper{background:#fff;border:1px dashed #c1c1c1}#wpbdp-admin-page-field-form .iframe-confirm{display:none}#wpbdp-admin-page-field-form .iframe-confirm p{font-size:90%}#wpbdp-admin-page-field-form .wpbdp-setting-description{color:#666;font-style:italic;display:block}#wpbdp-settings-currency .wpbdp-setting-description{display:none}.wpbdp-settings-type-file .preview img{margin-right:10px}.wpbdp-settings-type-file .preview,.wpbdp-form-field-type-social-network .preview,.wpbdp-form-field-type-image .preview{float:none}.wpbdp-form-field-type-social-network .wpbdp-social-type-field .sublabel{display:block}table.wpbdp-debug-section{width:90%}table.wpbdp-debug-section tbody tr{background:#efefef}table.wpbdp-debug-section tbody tr td{padding:3px 8px}table.wpbdp-debug-section tbody tr:nth-child(2n){background:#f5f5f5}.wpbdp-page-admin-transactions .tag{font-size:95%}.wpbdp-page-admin-transactions .tag.approved{background:green}.wpbdp-page-admin-transactions .tag.pending{background:red}.wpbdp-page-admin-transactions .column-actions a.delete{color:#bc0b0b}.wpbdp-page-admin-transactions tr.more-details-row{background:#fff}.wpbdp-page-admin-transactions tr.more-details-row td{padding-left:40px;font-size:95%}.wpbdp-page-admin-transactions tr.more-details-row td dl dt{font-weight:bold}body.taxonomy-wpbdp_category .column-id{width:35px}.transaction-status-container{text-align:right;padding:5px}.wpbdp-progress-bar .progress-bar{margin-left:10px;display:inline-block;vertical-align:middle}.wpbdp-progress-bar .progress-bar-outer{min-width:200px;height:12px;border:solid 1px #3366CC;padding:0}.wpbdp-progress-bar .progress-bar-inner{height:100%;background:#99CCFF}.wpbdp-note{padding:5px 10px;background:#d7f5ff;margin:5px 0 20px 0;border:solid 1px #bad5df;border-radius:4px}.wpbdp-note p{margin:0}.wpbdp-note h1,.wpbdp-note h2,.wpbdp-note h3,.wpbdp-note h4{margin:0 0 8px 0}.wpbdp-note.error,.wpbdp-note.warning{background-color:#FFEBE8;border-color:#C00}.wpbdp-notice.dismissible{position:relative}.tag.paymentstatus{text-transform:capitalize}.tag.paymentstatus.ok{background:green}.tag.paymentstatus.completed{background:green}.tag.paymentstatus.pending,.tag.paymentstatus.pending-abandonment{background:red}.wpbdp-listing-metabox-tab dl{margin:0}.wpbdp-payment-details .tag{float:right}.wpbdp-payment-details .details,.wpbdp-payment-details .invoice,.wpbdp-payment-details .actions{clear:both;margin:20px 0}.wpbdp-payment-details .details dl dt{font-weight:bold}.wpbdp-payment-details table.wpbdp-payment-items-table{width:100%}.wpbdp-payment-details table.wpbdp-payment-items-table th{text-transform:uppercase}.wpbdp-payment-details table.wpbdp-payment-items-table td{border-top:1px solid #bbb;padding:6px 10px 6px 0}.wpbdp-payment-details .actions a.button-primary{color:#fff !important}.wp-core-ui .wpbdp-loading-button.button-primary,.wpbdp-loading-button{position:relative !important;opacity:.8;color:transparent !important;text-shadow:none !important}.wpbdp-loading-button:hover,.wpbdp-loading-button:active,.wpbdp-loading-button:focus{cursor:not-allowed;color:transparent !important;outline:none !important;box-shadow:none}.wpbdp-loading-button:before{content:'';display:inline-block;position:absolute;background:transparent;border:1px solid #fff;border-top-color:transparent;border-left-color:transparent;border-radius:50%;box-sizing:border-box;top:50%;left:50%;margin-top:-10px;margin-left:-10px;width:20px;height:20px;-webkit-animation:spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.listing-fee-change .fee-selection .fee{padding-bottom:5px;margin-bottom:10px;border-bottom:dotted 1px #d2d2d2;opacity:.85}.listing-fee-change .fee-selection .fee:hover{opacity:1}.listing-fee-change .fee-selection .fee .details{margin-left:10px}.listing-fee-change .fee-selection .fee .tag{float:right}.listing-fee-change .fee-selection .fee .choose-this{float:right}.wpbdp-draggable-highlight{background:#bbb}.wpbdp-module-compat-check .module-info{margin-bottom:3px}.wpbdp-module-compat-check .module-info .module-version,.wpbdp-module-compat-check .module-info .module-required{color:#666}.wpbdp-module-compat-check .module-info .module-version{margin-left:15px}.wpbdp-module-compat-check .module-info .module-version b{color:#333}.wpbdp-module-compat-check .module-info .module-required b{color:#900000}#wpbdp-admin-page-admin .welcome-message{padding:10px;font-size:105%}#wpbdp-admin-page-admin .welcome-message p{font-size:inherit}#wpbdp-admin-page-admin .welcome-message h4{font-size:120%}#wpbdp-admin-page-admin .welcome-message ul{list-style-position:inside;list-style-type:disc}#wpbdp-admin-page-admin .shortcuts{margin:auto}#wpbdp-admin-page-admin .shortcuts li{float:left;margin-right:10px}#wpbdp-admin-page-admin .shortcuts li.clear{margin:0}#wpbdp-admin-page-uninstall .wpbdp-admin-content{box-sizing:border-box;margin:20px 0 0 0;padding:16px;background:#fff;border-radius:4px}#wpbdp-admin-page-uninstall .wpbdp-validation-error{font-size:80%;color:#d64226;margin:0 0 10px 0}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion{float:left;box-sizing:border-box}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning ul,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion ul{margin-left:10px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning ul li,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion ul li{list-style-type:disc;list-style-position:inside}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning{width:60%;padding-right:20px;color:#d64226}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .wpbdp-warning-margin{float:left}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .wpbdp-warning-margin .dashicons{width:30px;height:30px;font-size:30px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .wpbdp-warning-content{margin-left:50px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion{width:40%;padding-left:20px;border-left:1px solid #efefef}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form{display:none}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .reasons{margin-left:15px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .reasons .reason{margin-bottom:5px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .custom-reason{display:none}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form textarea{margin:10px 0 0 0;width:50%;min-height:100px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form textarea.invalid{border-color:#d64226}#wpbdp-admin-page-uninstall #wpbdp-uninstall-proceed-btn{margin-top:20px;color:#d64226}#wpbdp-licensing-issues-warning ul li{list-style-position:inside;list-style-type:disc}#wpbdp-licensing-issues-warning span.item-name{background:#fff9aa;padding:2px 5px;margin:0 0 0 4px;border-radius:4px}.wp-admin.widgets-php .widget-content span.help{color:#666}.wpbdp-admin-tab-nav{float:none;margin:0 0 .5em 0}.wpbdp-admin-tab-content{padding:5px 0 0 0;display:none}.wpbdp-admin-tab-content .wpbdp-form-field{margin:0}.wpbdp-admin-tab-content .wpbdp-form-field .wpbdp-form-field-inner{padding:0}.wpbdp-admin-box label{vertical-align:top}a.wpbdp-admin-delete-link{color:#a00;text-decoration:none}a.wpbdp-admin-delete-link:hover{color:red}#wpbdp-admin-payment-info-box .inside{margin:0;padding:0}#wpbdp-admin-payment-info-box .wpbdp-admin-box-row{border-bottom:1px solid #eee;clear:both;padding:6px 12px;margin:0;line-height:1.5}#wpbdp-admin-payment-info-box label{font-weight:bold}#wpbdp-admin-payment-items-box .payment-item,#wpbdp-admin-payment-items-box .payment-item-header{margin:0 12px;padding:6px 0}#wpbdp-admin-payment-items-box .payment-item .payment-item-type,#wpbdp-admin-payment-items-box .payment-item-header .payment-item-type{display:block;width:20%;float:left}#wpbdp-admin-payment-items-box .payment-item .payment-item-description,#wpbdp-admin-payment-items-box .payment-item-header .payment-item-description{display:block;width:60%;float:left}#wpbdp-admin-payment-items-box .payment-item .payment-item-amount,#wpbdp-admin-payment-items-box .payment-item-header .payment-item-amount{display:block;width:20%;float:left}#wpbdp-admin-payment-items-box .payment-item.payment-totals,#wpbdp-admin-payment-items-box .payment-item-header.payment-totals{border-top:1px solid #eee;font-weight:bold}#wpbdp-admin-payment-items-box .payment-item-header{font-weight:bold}#wpbdp-admin-payment-details-box *{box-sizing:border-box}#wpbdp-admin-payment-details-box .wpbdp-admin-box-row>div{padding:6px 0}#wpbdp-admin-payment-details-box label{display:block}#wpbdp-admin-payment-details-box .customer-email,#wpbdp-admin-payment-details-box .customer-address-line1,#wpbdp-admin-payment-details-box .customer-address-line2{clear:both;width:100%}#wpbdp-admin-payment-details-box .customer-email input,#wpbdp-admin-payment-details-box .customer-address-line1 input,#wpbdp-admin-payment-details-box .customer-address-line2 input{width:100%}#wpbdp-admin-payment-details-box .customer-first-name,#wpbdp-admin-payment-details-box .customer-address-country,#wpbdp-admin-payment-details-box .customer-address-city{padding-right:3px !important}#wpbdp-admin-payment-details-box .customer-last-name,#wpbdp-admin-payment-details-box .customer-address-state,#wpbdp-admin-payment-details-box .customer-address-zipcode{padding-left:3px !important}#wpbdp-admin-payment-details-box .customer-first-name,#wpbdp-admin-payment-details-box .customer-last-name,#wpbdp-admin-payment-details-box .customer-address-country,#wpbdp-admin-payment-details-box .customer-address-state,#wpbdp-admin-payment-details-box .customer-address-city,#wpbdp-admin-payment-details-box .customer-address-zipcode{float:left;width:50%}#wpbdp-admin-payment-details-box .customer-first-name input,#wpbdp-admin-payment-details-box .customer-last-name input,#wpbdp-admin-payment-details-box .customer-address-country input,#wpbdp-admin-payment-details-box .customer-address-state input,#wpbdp-admin-payment-details-box .customer-address-city input,#wpbdp-admin-payment-details-box .customer-address-zipcode input{width:100%}#wpbdp-payment-notes .wpbdp-payment-note{margin-bottom:12px;line-height:1.5}#wpbdp-payment-notes .wpbdp-payment-note .wpbdp-payment-note-meta-user{font-weight:bold}#wpbdp-payment-notes .wpbdp-payment-note .wpbdp-payment-note-meta-date{color:#666}#wpbdp-payment-notes .wpbdp-payment-note .wpbdp-admin-delete-link{float:right;display:none}#wpbdp-payment-notes .wpbdp-payment-note:hover .wpbdp-admin-delete-link{display:block}span.tag{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:10px !important;margin-right:2px;text-decoration:none !important;line-height:1.5 !important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}span.tag.wpbdp-listing-attr-payment-completed{background:green}span.tag.wpbdp-listing-attr-payment-canceled,span.tag.wpbdp-listing-attr-payment-failed{background:red}span.tag.wpbdp-listing-attr-admin-posted,span.tag.wpbdp-listing-attr-payment-on-hold,span.tag.wpbdp-listing-attr-payment-refunded{background:orange}span.tag.wpbdp-listing-attr-post-status-pending{background:blue;color:#fff}span.tag.wpbdp-listing-attr-no-fee-plan{background:#d64226;color:#fff}span.tag.wpbdp-listing-attr-reported{background:#d64226;color:#fff}.wpbdp-tag.wpbdp-listing-attr-payment-completed,span.tag.wpbdp-listing-attr-payment-completed{background:green}.wpbdp-tag.wpbdp-listing-attr-payment-canceled,span.tag.wpbdp-listing-attr-payment-canceled,.wpbdp-tag.wpbdp-listing-attr-payment-failed,span.tag.wpbdp-listing-attr-payment-failed{background:red}.wpbdp-tag.wpbdp-listing-attr-admin-posted,span.tag.wpbdp-listing-attr-admin-posted,.wpbdp-tag.wpbdp-listing-attr-payment-on-hold,span.tag.wpbdp-listing-attr-payment-on-hold,.wpbdp-tag.wpbdp-listing-attr-payment-refunded,span.tag.wpbdp-listing-attr-payment-refunded{background:orange}.wpbdp-tag.wpbdp-listing-attr-post-status-pending,span.tag.wpbdp-listing-attr-post-status-pending{background:blue;color:#fff}.wpbdp-tag.wpbdp-listing-attr-no-fee-plan,span.tag.wpbdp-listing-attr-no-fee-plan{background:#d64226;color:#fff}.wpbdp-tag.wpbdp-listing-attr-reported,span.tag.wpbdp-listing-attr-reported{background:#d64226;color:#fff}.wp-list-table td .wpbdp-tag{display:inline-block}body.post-type-wpbdp_listing .wp-list-table .wpbdp-tag{font-size:10px !important;text-transform:none !important}#wpbdp-listing-form-preview{padding:25px;border:1px solid #d2d2d2;background:#fff}.wpbdp-user-select .select2.select2-container{max-width:84.9%}.select2-container,.select2-search--inline,.select2-search__field{width:100% !important}.wpbdp-scrollbox{max-height:170px;overflow:auto;border:1px solid #c3c4c7;margin-bottom:1em;padding:0 10px}.wpbdp-plain-list{list-style-type:none !important;margin-left:0 !important;margin-right:0 !important;padding:0 !important}
|
1 |
+
.wpdbp-wrap{--darkest-grey:#282f36;--dark-grey:rgba(40,47,54,0.85);--medium-grey:rgba(40,47,54,0.65);--grey:rgba(40,47,54,0.45);--grey-border:rgba(40,47,54,0.2);--lightest-grey:#fafafa;--green:#3fac25;--orange:#F15A24}.wpbdp-tag{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:10px !important;margin-right:2px;text-decoration:none !important;line-height:1.5 !important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}.wpbdp-display-block{display:block}.wpbdp-smaller{font-size:90%}.wpbdp-no-bold{font-weight:normal}.wpbdp-wait{margin:20px;width:20px;height:20px;position:relative;display:inline-block}.wpbdp-wait:before{content:'';display:inline-block;position:absolute;background:transparent;border:1px solid #fff;border-top-color:transparent;border-left-color:transparent;border-bottom-color:#607297;border-right-color:#607297;border-radius:50%;box-sizing:border-box;top:50%;left:50%;margin-top:-10px;margin-left:-10px;width:20px;height:20px;-webkit-animation:spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.wpbdp-wait.wpbdp_visible_spinner{margin-bottom:10px}.wpbdp-wait.wpbdp_visible_spinner .spinner{visibility:visible;float:none}.wpbdpfont{text-decoration:none;text-shadow:none;font-weight:normal;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:auto;line-height:1;-moz-transition:color .1s ease-in-out,opacity .1s ease-in-out;-webkit-transition:color .1s ease-in-out,opacity .1s ease-in-out;transition:color .1s ease-in-out,opacity .1s ease-in-out;font-size:18px}i.wpbdpfont{font-style:normal;font-variant:normal;speak:none}.wpbdpfont:before,select.wpbdpfont{text-align:center}.wpbdpfont,a.wpbdpfont,.wpbdpfont:hover{text-decoration:none !important;box-shadow:none}.wpbdpfont:focus{box-shadow:none;-webkit-box-shadow:none}.wpbdpfont:active{outline:none}.wpbdpsvg{fill:currentColor;width:18px;height:18px;vertical-align:text-bottom}.wpbdp-admin-page .wpbdp-button-primary,.wpbdp-admin-page .wpbdp-button-secondary{text-shadow:none;box-shadow:none;border-radius:30px;border:1px solid #7e92bc !important;font-size:1em;transition:all .2s ease;height:28px;min-height:28px;outline:none;line-height:26px;min-width:100px;display:inline-block;text-align:center;padding:2px 10px;text-decoration:none}.wpbdp-admin-page .page-title-action,.wpbdp-admin-page .wpbdp-button-primary,.wpbdp-admin-page .button-primary{background-color:#7e92bc !important;border-color:#7e92bc !important;color:#fff !important}.wpbdp-admin-page .page-title-action:hover,.wpbdp-admin-page .wpbdp-button-primary:hover,.wpbdp-admin-page .button-primary:hover,.wpbdp-admin-page .page-title-action:focus,.wpbdp-admin-page .wpbdp-button-primary:focus,.wpbdp-admin-page .button-primary:focus{background:#607297 !important;border-color:#607297 !important}.wpbdp-admin-page .add-new-h2,.wpbdp-admin-page .wpbdp-button-secondary,.wpbdp-admin-page .button-secondary,.wpbdp-admin-page .button{background-color:#fff;border-color:#7e92bc !important;color:#607297}.wpbdp-admin-page .add-new-h2:hover,.wpbdp-admin-page .wpbdp-button-secondary:hover,.wpbdp-admin-page .button-secondary:hover,.wpbdp-admin-page .button:hover,.wpbdp-admin-page .add-new-h2:focus,.wpbdp-admin-page .wpbdp-button-secondary:focus,.wpbdp-admin-page .button-secondary:focus,.wpbdp-admin-page .button:focus{border-color:#607297 !important;background:#607297 !important;color:#fff;box-shadow:none}#wpbdp-admin-smtp *,#wpbdp-admin-smtp *::before,#wpbdp-admin-smtp *::after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#wpbdp-admin-smtp{width:700px;margin:0 auto}#wpbdp-admin-smtp p{font-size:15px}#wpbdp-admin-smtp section{margin:50px 0;text-align:left;clear:both}#wpbdp-admin-smtp .top{text-align:center}#wpbdp-admin-smtp .top h1{font-size:26px;font-weight:600;margin-bottom:0;padding:0}#wpbdp-admin-smtp .top p{font-size:17px;color:#777;margin-top:.5em}#wpbdp-admin-smtp .top .error,#wpbdp-admin-smtp .top .notice{display:none}#wpbdp-admin-smtp .screenshot ul{display:inline-block;margin:0 0 0 30px;list-style-type:none;max-width:calc(100% - 350px)}#wpbdp-admin-smtp .screenshot li{margin:16px 0;padding:0;font-size:15px;color:#777}#wpbdp-admin-smtp .screenshot .cont img{max-width:100%;display:block}#wpbdp-admin-smtp .screenshot .cont{display:inline-block;position:relative;width:315px;padding:5px;background-color:#fff;border-radius:3px}#wpbdp-admin-smtp .step,#wpbdp-admin-smtp .screenshot .cont{-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,0.05);-moz-box-shadow:0 2px 5px 0 rgba(0,0,0,0.05);box-shadow:0 2px 5px 0 rgba(0,0,0,0.05)}#wpbdp-admin-smtp .step{background-color:#F9F9F9;border:1px solid #E5E5E5;margin:0 0 25px}#wpbdp-admin-smtp .step p{font-size:16px;color:#777777}#wpbdp-admin-smtp .step .num{display:inline-block;position:relative;width:100px;height:50px;text-align:center}#wpbdp-admin-smtp .step div{display:inline-block;width:calc( 100% - 104px );background-color:#fff;padding:30px;border-left:1px solid #eee}#wpbdp-admin-smtp .step h2{font-size:24px;line-height:22px;margin-top:0;margin-bottom:15px}#wpbdp-admin-smtp .screenshot>*,#wpbdp-admin-smtp .step>*{vertical-align:middle}#wpbdp-admin-smtp .grey{opacity:.5;background:#F6F6F6 !important;border-color:#ddd !important;color:#9FA5AA !important}#wpbdp-admin-smtp .button.disabled{cursor:default}.wpbdp-smtp-logos{margin-bottom:38px}.wpbdp-smtp-logos img,.wpbdp-smtp-logos svg{vertical-align:middle}.wpbdp-addons{margin-top:30px;display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:30px 2%}.wpbdp-addons,.wpbdp-addons h2,.wpbdp-addons h3{color:var(--dark-grey)}.wpbdp-addons h2{font-size:17px}.wpbdp-addons h3{margin-top:0}.wpbdp-card{width:100%;border-radius:10px;border:1px solid var(--grey-border);opacity:1;transition:opacity 1s;background:#fff}.wpbdp-addons .wpbdp-card.wpbdp-addon-not-installed{position:relative}.wpbdp-addons .plugin-card-top{height:140px;padding-top:30px;overflow:hidden}.wpbdp-addons .plugin-card-top h2{margin-top:0;font-weight:400}.wpbdp-template-row p,.wpbdp-addons .plugin-card-top p{opacity:.8}.wpbdp-addons .plugin-card-bottom{padding:5px 20px 20px;text-align:center;background:transparent;border-top:none}.wpbdp-addons .plugin-card-bottom,.wpbdp-addons .plugin-card-bottom .button{font-size:15px}.wpbdp-addons .button{float:right}.wpbdp-addons .addon-status{float:left;padding-top:4px}.wpbdp-addon-active .button{visibility:hidden}.addon-status-label{opacity:.7}.wpbdp-addon-active .addon-status-label{color:var(--green);opacity:1}.wpbdp-addon-error{position:absolute;top:55px;left:10px;right:10px;font-weight:bold;text-align:center}.wpbdp-ribbon{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);border:25px solid transparent;border-bottom:25px solid var(--orange);position:absolute;top:-31px;right:-74px;padding:0 10px;width:30px;color:white;font-family:sans-serif;size:11px}.wpbdp-ribbon span{position:absolute;left:25px;font-size:15px;top:4px}@media only screen and (max-width:1200px){.wpbdp-addons{grid-template-columns:1fr 1fr}}.wpbdp-review-notice.notice{border:1px solid #ddd;text-align:center;position:fixed !important;z-index:999;bottom:0;right:0;width:400px;margin-bottom:0;padding-bottom:15px}.wpbdp-review-notice.notice form,.wpbdp-review-notice.notice p{font-size:14px;max-width:600px;margin-left:auto;margin-right:auto}.wpbdp-review-notice a{margin:5px}.wpbdp-review-notice p>span{font-size:13px;opacity:.75}.wpbdp-review-notice .wpbdp_error,.wpbdp-review-notice label{color:#444;text-align:left}.wpbdp-review-notice label{font-size:14px}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.button-primary.next-to-secondary{margin-left:30px}.wpbdp-error.error{border-left-color:#6D87B9;display:flex;align-items:center}.wpbdp-error.error p:first-of-type{flex:1}.wpbdp-pro-tip,.wpbdp-upgrade-bar{background-color:rgba(227,230,243,0.64)}.wpbdp-pro-tip a,.wpbdp-upgrade-bar a{color:#6D87B9;font-weight:600;text-decoration:none}.wpbdp-pro-tip{display:flex;align-items:center;border-radius:6px;padding:11px 22px}.wpbdp-pro-tip svg{color:#6D87B9;margin-right:13px}.wpbdp-pro-tip a{margin-left:5px}.wpbdp-upgrade-bar{background-color:rgba(227,230,243,0.4);text-align:center;margin-left:-20px;border-bottom:2px solid #6D87B9;padding:8px 22px}.wpbdp-admin-content .wpbdp-upgrade-bar{display:none}.wpbdp-admin h1 img{vertical-align:middle}.wpbdp-admin-content.with-sidebar{margin-top:20px;clear:left;float:left;width:78%}.wpbdp-admin .sidebar{margin-top:20px;float:right;clear:right;width:20%}.wpbdp-admin .sidebar .postbox{min-width:0 !important}.wp-list-table tr.wpbdp-item-message-tr td{padding-top:0}.wp-list-table tr.wpbdp-item-message-tr td div{margin:0 15px;padding:6px 12px 8px 12px;background-color:#fef7f1;font-size:12px}.wpbdp-admin-page-fees .tablenav{display:none}#wpbdp-admin-admin-page-fees .column-attributes .wpbdp-tag{background:green;color:#fff}.wpbdp-admin-page-fees .wp-list-table .column-order{width:55px}.wpbdp-admin-page-fees .wp-list-table .wpbdp-drag-handle{margin-right:15px}.wpbdp-admin-page-fees .purchase-gateways{text-align:center}.wpbdp-admin-page-fees .purchase-gateways .gateway{float:left;width:45%;margin:30px 2% 20px 0}.wpbdp-admin-page-fees .purchase-gateways .gateway.installed{opacity:.5}.wpbdp-admin-page-fees .purchase-gateways .gateway a img.gateway-logo{height:40px;margin:0;padding:0;border:none}.wpbdp-admin-page-fees .purchase-gateways .gateway a.price{margin-top:10px;display:block;color:green;font-size:22px;font-weight:bold}.wpbdp-admin-page-fees .purchase-gateways .gateway .check-mark{font-size:150%;font-weight:bold;color:green}#wpbdp-fee-form #limit-categories-list{font-size:90%}#wpbdp-fee-form #limit-categories-list p{margin:10px 0}#wpbdp-fee-form #limit-categories-list select{width:100%}#wpbdp-fee-form #limit-categories-list .select2-selection{padding:0 0 2px 0;margin:0;border-radius:5px;border-color:#ddd;min-height:26px}#wpbdp-fee-form #limit-categories-list .select2-selection__choice{border:none;padding:0;margin:2px 4px 0 0;background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:10px !important;margin-right:2px;text-decoration:none !important;line-height:1.5 !important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-completed{background:green}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-canceled,#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-failed{background:red}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-admin-posted,#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-on-hold,#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-refunded{background:orange}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-post-status-pending{background:blue;color:#fff}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-no-fee-plan{background:#d64226;color:#fff}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-reported{background:#d64226;color:#fff}#wpbdp-fee-form #limit-categories-list .select2-selection__choice .select2-selection__choice__remove{color:#fff}#wpbdp-fee-form #limit-categories-list .select2-search{margin-bottom:0}#wpbdp-fee-form #limit-categories-list .wpbdp-category-item{width:33.33%;float:left;padding:2px 0}#wpbdp-fee-form .pricing-details-variable>td{padding-top:0}#wpbdp-fee-form .pricing-details-variable table th{font-weight:normal}#wpbdp-fee-form .pricing-details-variable table td:last-child{width:100%}#wpbdp-fee-form .pricing-details-variable table td{font-size:90%;padding:0}#wpbdp-fee-form .pricing-details-variable table td.category-name-col{padding-right:20px;text-align:right}#wpbdp-fee-form .pricing-details-variable .wpbdp-variable-pricing-configurator-row input{width:100px}#wpbdp-fee-form .pricing-options label{display:block}#wpbdp-fee-form .fee-pricing-details input[type="text"]{width:100px}#wpbdp-admin-page-settings .nav-tab.tab-error{border-top:solid 1px red}#wpbdp-admin-page-settings .nav-tab.tab-warning{border-top:solid 1px yellow}#wpbdp-admin-page-settings .form-table tr>th{min-width:250px}#wpbdp-admin-page-settings .form-table tr>th>h3{font-size:1.2em;margin:0 auto}#wpbdp-admin-page-settings .wpbdp-setting-description{color:#666;font-style:italic;display:block}#wpbdp-admin-page-settings .wpbdp-setting-tooltip{height:18px;width:18px;font-size:18px;line-height:18px;vertical-align:middle;margin-right:5px;color:#666;cursor:help}#wpbdp-admin-page-settings input[type="text"],#wpbdp-admin-page-settings input[type="url"],#wpbdp-admin-page-settings textarea{width:85%}#wpbdp-admin-page-settings textarea{min-height:150px}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activate-btn,#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-deactivate-btn{margin-left:10px;display:none}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activate-btn{display:inline-block}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-valid .howto,#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-valid .wpbdp-license-key-activate-btn{display:none}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-valid .wpbdp-license-key-deactivate-btn{display:inline-block}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-not-verified input[type=text]{border-color:#d64226}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg,#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-input{width:70%}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg{font-size:90%;border-radius:4px;padding:8px;margin:3px 0;box-sizing:border-box}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg.status-success{border-color:#27a533}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg.status-error{border-color:#d64226}#wpbdp-admin-page-settings tr.wpbdp-setting-disabled{display:none}#wpbdp-admin-page-settings .wpbdp_upgrade_to_pro{text-align:center;margin-top:80px}.form-table .wpbdp-collapse-row-last td,.form-table .wpbdp-collapse-row-last th,.form-table .wpbdp-collapse-row th,.form-table .wpbdp-collapse-row td{padding-bottom:0;padding-top:0}.form-table .wpbdp-collapse-row-first td,.form-table .wpbdp-collapse-row-first th{padding-bottom:0}.wpbdp-tooltip-msg{background:#333 !important;border-width:1px !important;border-radius:3px !important;box-shadow:1px 1px 2px 1px rgba(214,214,214,0.5) !important;color:#dedede !important;max-width:300px !important;padding:7px !important;text-rendering:optimizeLegibility;text-shadow:none !important;z-index:9999 !important}#wpbdp-admin-page-settings select{display:block}#wpbdp-admin-page-settings .wpbdp-settings-choice-radio{margin:0 0 5px 0}#wpbdp-admin-page-settings tr.disabled{opacity:.7}#wpbdp-admin-page-settings .text-fields-warning{font-size:90%;display:block;margin-bottom:2px}#wpbdp-admin-page-settings .wpbdp-expiration-notice-email-schedule-summary{background:#d2d2d2;font-size:85%;padding:5px}#wpbdp-admin-page-settings .wpbdp-settings-email{margin:10px 0 0 0;border:solid 1px #d2d2d2;padding:5px;background:#fff}#wpbdp-admin-page-settings .wpbdp-settings-email.wpbdp-expiration-notice-email{border-bottom:none}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview{color:#999;font-size:90%;height:45px;cursor:pointer;overflow:hidden}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview h4,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview h4{margin:0 0 10px 0}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview a.wpbdp-settings-email-edit-btn,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview a.wpbdp-settings-email-edit-btn,#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview .edit-toggle,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview .edit-toggle{float:right;color:#fff}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview dl,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview dl{margin:0;padding:0}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview dl dt,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview dl dt{font-weight:bold;margin:0;padding:0}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview dl dd,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview dl dd{margin:0;padding:0 0 0 10px}#wpbdp-admin-page-settings .wpbdp-settings-email .editor,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor{display:none;margin-left:10px;font-size:90%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor table.form-table,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor table.form-table{margin:0;padding:0}#wpbdp-admin-page-settings .wpbdp-settings-email .editor table.form-table th,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor table.form-table th{padding-left:4px;padding-right:0;min-width:0;width:20%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor input[type="text"],#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor input[type="text"]{width:100%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor textarea,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor textarea{width:100%;min-height:150px}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholders,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholders{margin:10px 0 0 0}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder{font-size:90%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder .placeholder-code,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder .placeholder-code{font-family:monospace;font-weight:bold}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder .placeholder-description,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder .placeholder-description{font-style:italic}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder-separator,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder-separator{margin-top:10px}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons{margin:30px 0 0 0;text-align:right}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons .preview-email,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons .preview-email{float:left}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons .cancel,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons .cancel{margin-right:10px}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices #wpbdp-settings-expiration-notices-add-btn{margin:0 0 5px 0}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices #wpbdp-settings-expiration-notices-add .wpbdp-expiration-notice-email{display:none;border-bottom:1px solid #d2d2d2}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices .buttons .delete{color:#a00;float:left;font-size:13px}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices .buttons .delete:hover{color:red}#wpbdp-admin-page-settings .wpbdp-settings-type-checkbox input[type="checkbox"]{vertical-align:bottom}#wpbdp-admin-page-settings .wpbdp-settings-radio-options,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options{grid-gap:0}#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-radio-option,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-radio-option,#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-multicheck-option,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option{margin:0 0 5px 0}#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-radio-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-radio-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-multicheck-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-radio-option input[type="checkbox"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-radio-option input[type="checkbox"],#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-multicheck-option input[type="checkbox"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option input[type="checkbox"]{vertical-align:bottom}#wpbdp-admin-page-settings .wpbdp-settings-radio-options+.wpbdp-setting-description,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options+.wpbdp-setting-description{margin:10px 0 0 0}.wpbdp-settings-radio-option .wpbdp-img-opt{display:block;margin:0 auto 10px}#wpbdp-settings-list-layout .wpbdp-settings-radio-option{float:left;text-align:center;margin-right:1% !important;width:32%;min-width:173px}#wpbdp-settings-list-layout input{display:none}#wpbdp-settings-list-layout label span{border:2px solid transparent;display:inline-block;padding-bottom:10px;border-radius:3px}#wpbdp-settings-list-layout input:checked+label span{border-color:#4199FD}td.column-payment_status .status,td.column-sticky_status .status{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:90%}td.column-payment_status .status.ok{background:green}td.column-payment_status .paymentdata{font-size:85%}td.column-payment_status .paymentdata b{font-weight:normal}td.column-payment_status .paymentdata span{font-style:italic}td.column-sticky_status .status.notpaid{background:orange}td.column-sticky_status .status.pending{background:red;font-weight:bold}td.column-sticky_status .status.sticky{background:green}table.wp-list-table td .tag{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:90%;margin-right:2px;display:inline-block}table.wp-list-table.formfields th.column-label{width:40%}table.wp-list-table.formfields th.column-tags,table.wp-list-table.formfields td.column-tags{width:200px}table.wp-list-table.formfields th.column-order,table.wp-list-table.formfields td.column-order{width:55px}table.wp-list-table.formfields td.column-order .wpbdp-drag-handle{visibility:hidden}table.wp-list-table.formfields tr:hover .wpbdp-drag-handle{visibility:visible}table.wp-list-table.formfields .tag.private{background:red}table.wp-list-table.formfields .tag.privacy{background:blue}table.wp-list-table.formfields .tag.required{background:orange}table.wp-list-table.formfields .tag.in-excerpt{background:green}table.wp-list-table.formfields .tag.in-listing{background:green}table.wp-list-table.formfields tr.wpbdp-draggable-highlight{height:54px}table.wp-list-table.formfields tr.ui-sortable-helper{background:#fff;border:1px dashed #c1c1c1}#wpbdp-admin-page-field-form .iframe-confirm{display:none}#wpbdp-admin-page-field-form .iframe-confirm p{font-size:90%}#wpbdp-admin-page-field-form .wpbdp-setting-description{color:#666;font-style:italic;display:block}#wpbdp-settings-currency .wpbdp-setting-description{display:none}.wpbdp-settings-type-file .preview img{margin-right:10px}.wpbdp-settings-type-file .preview,.wpbdp-form-field-type-social-network .preview,.wpbdp-form-field-type-image .preview{float:none}.wpbdp-form-field-type-social-network .wpbdp-social-type-field .sublabel{display:block}table.wpbdp-debug-section{width:90%}table.wpbdp-debug-section tbody tr{background:#efefef}table.wpbdp-debug-section tbody tr td{padding:3px 8px}table.wpbdp-debug-section tbody tr:nth-child(2n){background:#f5f5f5}.wpbdp-page-admin-transactions .tag{font-size:95%}.wpbdp-page-admin-transactions .tag.approved{background:green}.wpbdp-page-admin-transactions .tag.pending{background:red}.wpbdp-page-admin-transactions .column-actions a.delete{color:#bc0b0b}.wpbdp-page-admin-transactions tr.more-details-row{background:#fff}.wpbdp-page-admin-transactions tr.more-details-row td{padding-left:40px;font-size:95%}.wpbdp-page-admin-transactions tr.more-details-row td dl dt{font-weight:bold}body.taxonomy-wpbdp_category .column-id{width:35px}.transaction-status-container{text-align:right;padding:5px}.wpbdp-progress-bar .progress-bar{margin-left:10px;display:inline-block;vertical-align:middle}.wpbdp-progress-bar .progress-bar-outer{min-width:200px;height:12px;border:solid 1px #3366CC;padding:0}.wpbdp-progress-bar .progress-bar-inner{height:100%;background:#99CCFF}.wpbdp-note{padding:5px 10px;background:#d7f5ff;margin:5px 0 20px 0;border:solid 1px #bad5df;border-radius:4px}.wpbdp-note p{margin:0}.wpbdp-note h1,.wpbdp-note h2,.wpbdp-note h3,.wpbdp-note h4{margin:0 0 8px 0}.wpbdp-note.error,.wpbdp-note.warning{background-color:#FFEBE8;border-color:#C00}.wpbdp-notice.dismissible{position:relative}.tag.paymentstatus{text-transform:capitalize}.tag.paymentstatus.ok{background:green}.tag.paymentstatus.completed{background:green}.tag.paymentstatus.pending,.tag.paymentstatus.pending-abandonment{background:red}.wpbdp-listing-metabox-tab dl{margin:0}.wpbdp-payment-details .tag{float:right}.wpbdp-payment-details .details,.wpbdp-payment-details .invoice,.wpbdp-payment-details .actions{clear:both;margin:20px 0}.wpbdp-payment-details .details dl dt{font-weight:bold}.wpbdp-payment-details table.wpbdp-payment-items-table{width:100%}.wpbdp-payment-details table.wpbdp-payment-items-table th{text-transform:uppercase}.wpbdp-payment-details table.wpbdp-payment-items-table td{border-top:1px solid #bbb;padding:6px 10px 6px 0}.wpbdp-payment-details .actions a.button-primary{color:#fff !important}.wp-core-ui .wpbdp-loading-button.button-primary,.wpbdp-loading-button{position:relative !important;opacity:.8;color:transparent !important;text-shadow:none !important}.wpbdp-loading-button:hover,.wpbdp-loading-button:active,.wpbdp-loading-button:focus{cursor:not-allowed;color:transparent !important;outline:none !important;box-shadow:none}.wpbdp-loading-button:before{content:'';display:inline-block;position:absolute;background:transparent;border:1px solid #fff;border-top-color:transparent;border-left-color:transparent;border-radius:50%;box-sizing:border-box;top:50%;left:50%;margin-top:-10px;margin-left:-10px;width:20px;height:20px;-webkit-animation:spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.listing-fee-change .fee-selection .fee{padding-bottom:5px;margin-bottom:10px;border-bottom:dotted 1px #d2d2d2;opacity:.85}.listing-fee-change .fee-selection .fee:hover{opacity:1}.listing-fee-change .fee-selection .fee .details{margin-left:10px}.listing-fee-change .fee-selection .fee .tag{float:right}.listing-fee-change .fee-selection .fee .choose-this{float:right}.wpbdp-draggable-highlight{background:#bbb}.wpbdp-module-compat-check .module-info{margin-bottom:3px}.wpbdp-module-compat-check .module-info .module-version,.wpbdp-module-compat-check .module-info .module-required{color:#666}.wpbdp-module-compat-check .module-info .module-version{margin-left:15px}.wpbdp-module-compat-check .module-info .module-version b{color:#333}.wpbdp-module-compat-check .module-info .module-required b{color:#900000}#wpbdp-admin-page-admin .welcome-message{padding:10px;font-size:105%}#wpbdp-admin-page-admin .welcome-message p{font-size:inherit}#wpbdp-admin-page-admin .welcome-message h4{font-size:120%}#wpbdp-admin-page-admin .welcome-message ul{list-style-position:inside;list-style-type:disc}#wpbdp-admin-page-admin .shortcuts{margin:auto}#wpbdp-admin-page-admin .shortcuts li{float:left;margin-right:10px}#wpbdp-admin-page-admin .shortcuts li.clear{margin:0}#wpbdp-admin-page-uninstall .wpbdp-admin-content{box-sizing:border-box;margin:20px 0 0 0;padding:16px;background:#fff;border-radius:4px}#wpbdp-admin-page-uninstall .wpbdp-validation-error{font-size:80%;color:#d64226;margin:0 0 10px 0}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion{float:left;box-sizing:border-box}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning ul,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion ul{margin-left:10px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning ul li,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion ul li{list-style-type:disc;list-style-position:inside}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning{width:60%;padding-right:20px;color:#d64226}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .wpbdp-warning-margin{float:left}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .wpbdp-warning-margin .dashicons{width:30px;height:30px;font-size:30px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .wpbdp-warning-content{margin-left:50px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion{width:40%;padding-left:20px;border-left:1px solid #efefef}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form{display:none}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .reasons{margin-left:15px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .reasons .reason{margin-bottom:5px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .custom-reason{display:none}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form textarea{margin:10px 0 0 0;width:50%;min-height:100px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form textarea.invalid{border-color:#d64226}#wpbdp-admin-page-uninstall #wpbdp-uninstall-proceed-btn{margin-top:20px;color:#d64226}#wpbdp-licensing-issues-warning ul li{list-style-position:inside;list-style-type:disc}#wpbdp-licensing-issues-warning span.item-name{background:#fff9aa;padding:2px 5px;margin:0 0 0 4px;border-radius:4px}.wp-admin.widgets-php .widget-content span.help{color:#666}.wpbdp-admin-tab-nav{float:none;margin:0 0 .5em 0}.wpbdp-admin-tab-content{padding:5px 0 0 0;display:none}.wpbdp-admin-tab-content .wpbdp-form-field{margin:0}.wpbdp-admin-tab-content .wpbdp-form-field .wpbdp-form-field-inner{padding:0}.wpbdp-admin-box label{vertical-align:top}a.wpbdp-admin-delete-link{color:#a00;text-decoration:none}a.wpbdp-admin-delete-link:hover{color:red}#wpbdp-admin-payment-info-box .inside{margin:0;padding:0}#wpbdp-admin-payment-info-box .wpbdp-admin-box-row{border-bottom:1px solid #eee;clear:both;padding:6px 12px;margin:0;line-height:1.5}#wpbdp-admin-payment-info-box label{font-weight:bold}#wpbdp-admin-payment-items-box .payment-item,#wpbdp-admin-payment-items-box .payment-item-header{margin:0 12px;padding:6px 0}#wpbdp-admin-payment-items-box .payment-item .payment-item-type,#wpbdp-admin-payment-items-box .payment-item-header .payment-item-type{display:block;width:20%;float:left}#wpbdp-admin-payment-items-box .payment-item .payment-item-description,#wpbdp-admin-payment-items-box .payment-item-header .payment-item-description{display:block;width:60%;float:left}#wpbdp-admin-payment-items-box .payment-item .payment-item-amount,#wpbdp-admin-payment-items-box .payment-item-header .payment-item-amount{display:block;width:20%;float:left}#wpbdp-admin-payment-items-box .payment-item.payment-totals,#wpbdp-admin-payment-items-box .payment-item-header.payment-totals{border-top:1px solid #eee;font-weight:bold}#wpbdp-admin-payment-items-box .payment-item-header{font-weight:bold}#wpbdp-admin-payment-details-box *{box-sizing:border-box}#wpbdp-admin-payment-details-box .wpbdp-admin-box-row>div{padding:6px 0}#wpbdp-admin-payment-details-box label{display:block}#wpbdp-admin-payment-details-box .customer-email,#wpbdp-admin-payment-details-box .customer-address-line1,#wpbdp-admin-payment-details-box .customer-address-line2{clear:both;width:100%}#wpbdp-admin-payment-details-box .customer-email input,#wpbdp-admin-payment-details-box .customer-address-line1 input,#wpbdp-admin-payment-details-box .customer-address-line2 input{width:100%}#wpbdp-admin-payment-details-box .customer-first-name,#wpbdp-admin-payment-details-box .customer-address-country,#wpbdp-admin-payment-details-box .customer-address-city{padding-right:3px !important}#wpbdp-admin-payment-details-box .customer-last-name,#wpbdp-admin-payment-details-box .customer-address-state,#wpbdp-admin-payment-details-box .customer-address-zipcode{padding-left:3px !important}#wpbdp-admin-payment-details-box .customer-first-name,#wpbdp-admin-payment-details-box .customer-last-name,#wpbdp-admin-payment-details-box .customer-address-country,#wpbdp-admin-payment-details-box .customer-address-state,#wpbdp-admin-payment-details-box .customer-address-city,#wpbdp-admin-payment-details-box .customer-address-zipcode{float:left;width:50%}#wpbdp-admin-payment-details-box .customer-first-name input,#wpbdp-admin-payment-details-box .customer-last-name input,#wpbdp-admin-payment-details-box .customer-address-country input,#wpbdp-admin-payment-details-box .customer-address-state input,#wpbdp-admin-payment-details-box .customer-address-city input,#wpbdp-admin-payment-details-box .customer-address-zipcode input{width:100%}#wpbdp-payment-notes .wpbdp-payment-note{margin-bottom:12px;line-height:1.5}#wpbdp-payment-notes .wpbdp-payment-note .wpbdp-payment-note-meta-user{font-weight:bold}#wpbdp-payment-notes .wpbdp-payment-note .wpbdp-payment-note-meta-date{color:#666}#wpbdp-payment-notes .wpbdp-payment-note .wpbdp-admin-delete-link{float:right;display:none}#wpbdp-payment-notes .wpbdp-payment-note:hover .wpbdp-admin-delete-link{display:block}span.tag{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:10px !important;margin-right:2px;text-decoration:none !important;line-height:1.5 !important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}span.tag.wpbdp-listing-attr-payment-completed{background:green}span.tag.wpbdp-listing-attr-payment-canceled,span.tag.wpbdp-listing-attr-payment-failed{background:red}span.tag.wpbdp-listing-attr-admin-posted,span.tag.wpbdp-listing-attr-payment-on-hold,span.tag.wpbdp-listing-attr-payment-refunded{background:orange}span.tag.wpbdp-listing-attr-post-status-pending{background:blue;color:#fff}span.tag.wpbdp-listing-attr-no-fee-plan{background:#d64226;color:#fff}span.tag.wpbdp-listing-attr-reported{background:#d64226;color:#fff}.wpbdp-tag.wpbdp-listing-attr-payment-completed,span.tag.wpbdp-listing-attr-payment-completed{background:green}.wpbdp-tag.wpbdp-listing-attr-payment-canceled,span.tag.wpbdp-listing-attr-payment-canceled,.wpbdp-tag.wpbdp-listing-attr-payment-failed,span.tag.wpbdp-listing-attr-payment-failed{background:red}.wpbdp-tag.wpbdp-listing-attr-admin-posted,span.tag.wpbdp-listing-attr-admin-posted,.wpbdp-tag.wpbdp-listing-attr-payment-on-hold,span.tag.wpbdp-listing-attr-payment-on-hold,.wpbdp-tag.wpbdp-listing-attr-payment-refunded,span.tag.wpbdp-listing-attr-payment-refunded{background:orange}.wpbdp-tag.wpbdp-listing-attr-post-status-pending,span.tag.wpbdp-listing-attr-post-status-pending{background:blue;color:#fff}.wpbdp-tag.wpbdp-listing-attr-no-fee-plan,span.tag.wpbdp-listing-attr-no-fee-plan{background:#d64226;color:#fff}.wpbdp-tag.wpbdp-listing-attr-reported,span.tag.wpbdp-listing-attr-reported{background:#d64226;color:#fff}.wp-list-table td .wpbdp-tag{display:inline-block}body.post-type-wpbdp_listing .wp-list-table .wpbdp-tag{font-size:10px !important;text-transform:none !important}#wpbdp-listing-form-preview{padding:25px;border:1px solid #d2d2d2;background:#fff}.wpbdp-user-select .select2.select2-container{max-width:84.9%}.select2-container,.select2-search--inline,.select2-search__field{width:100% !important}.wpbdp-scrollbox{max-height:170px;overflow:auto;border:1px solid #c3c4c7;margin-bottom:1em;padding:0 10px}.wpbdp-plain-list{list-style-type:none !important;margin-left:0 !important;margin-right:0 !important;padding:0 !important}
|
business-directory-plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Business Directory Plugin
|
4 |
* Plugin URI: https://businessdirectoryplugin.com
|
5 |
* Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
|
6 |
-
* Version: 5.
|
7 |
* Author: Business Directory Team
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: business-directory-plugin
|
3 |
* Plugin Name: Business Directory Plugin
|
4 |
* Plugin URI: https://businessdirectoryplugin.com
|
5 |
* Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
|
6 |
+
* Version: 5.17
|
7 |
* Author: Business Directory Team
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: business-directory-plugin
|
includes/admin/class-admin.php
CHANGED
@@ -1209,7 +1209,7 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
1209 |
}
|
1210 |
|
1211 |
public function main_menu() {
|
1212 |
-
|
1213 |
}
|
1214 |
|
1215 |
public function register_listings_views() {
|
1209 |
}
|
1210 |
|
1211 |
public function main_menu() {
|
1212 |
+
// TODO: This will be the new dashboard page.
|
1213 |
}
|
1214 |
|
1215 |
public function register_listings_views() {
|
includes/admin/class-listing-fields-metabox.php
CHANGED
@@ -59,7 +59,7 @@ class WPBDP_Admin_Listing_Fields_Metabox {
|
|
59 |
return;
|
60 |
}
|
61 |
|
62 |
-
$images = $this->listing->get_images( 'all',
|
63 |
$thumbnail_id = $this->listing->get_thumbnail_id();
|
64 |
|
65 |
echo '<div class="wpbdp-submit-listing-section-listing_images">';
|
59 |
return;
|
60 |
}
|
61 |
|
62 |
+
$images = $this->listing->get_images( 'all', false );
|
63 |
$thumbnail_id = $this->listing->get_thumbnail_id();
|
64 |
|
65 |
echo '<div class="wpbdp-submit-listing-section-listing_images">';
|
includes/admin/controllers/class-admin-fees.php
CHANGED
@@ -253,8 +253,7 @@ class WPBDP__Admin__Fees extends WPBDP__Admin__Controller {
|
|
253 |
$fee = $this->get_or_die();
|
254 |
$fee->enabled = ! $fee->enabled;
|
255 |
$fee->save();
|
256 |
-
|
257 |
-
wpbdp_admin_message( _x( 'Fee disabled.', 'fees admin', 'business-directory-plugin' ) );
|
258 |
return $this->_redirect( 'index' );
|
259 |
}
|
260 |
|
253 |
$fee = $this->get_or_die();
|
254 |
$fee->enabled = ! $fee->enabled;
|
255 |
$fee->save();
|
256 |
+
wpbdp_admin_message( $fee->enabled ? _x( 'Fee enabled.', 'fees admin', 'business-directory-plugin' ) : _x( 'Fee disabled.', 'fees admin', 'business-directory-plugin' ) );
|
|
|
257 |
return $this->_redirect( 'index' );
|
258 |
}
|
259 |
|
includes/admin/controllers/class-settings-admin.php
CHANGED
@@ -768,7 +768,6 @@ foreach ( $value as $i => $notice ) {
|
|
768 |
if ( isset( $_FILES['file']['error'] ) && $_FILES['file']['error'] == 0 ) {
|
769 |
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
770 |
$file = wp_unslash( $_FILES['file'] );
|
771 |
-
wpbdp_sanitize_value( 'sanitize_text_field', $file );
|
772 |
// TODO: we support only images for now but we could use this for anything later
|
773 |
$media_id = wpbdp_media_upload(
|
774 |
$file,
|
768 |
if ( isset( $_FILES['file']['error'] ) && $_FILES['file']['error'] == 0 ) {
|
769 |
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
770 |
$file = wp_unslash( $_FILES['file'] );
|
|
|
771 |
// TODO: we support only images for now but we could use this for anything later
|
772 |
$media_id = wpbdp_media_upload(
|
773 |
$file,
|
includes/admin/controllers/class-themes-admin.php
CHANGED
@@ -219,6 +219,7 @@ class WPBDP_Themes_Admin {
|
|
219 |
}
|
220 |
|
221 |
$theme->can_be_activated = 'valid' === $license_status;
|
|
|
222 |
}
|
223 |
|
224 |
return $themes;
|
219 |
}
|
220 |
|
221 |
$theme->can_be_activated = 'valid' === $license_status;
|
222 |
+
$theme->license_status = $license_status;
|
223 |
}
|
224 |
|
225 |
return $themes;
|
includes/admin/csv-import.php
CHANGED
@@ -440,7 +440,7 @@ class WPBDP_CSVImportAdmin {
|
|
440 |
'csv' => 'csv',
|
441 |
);
|
442 |
|
443 |
-
$uploaded_type = pathinfo( $filename, PATHINFO_EXTENSION );
|
444 |
return $uploaded_type === $allowed_type[ $type ];
|
445 |
}
|
446 |
|
440 |
'csv' => 'csv',
|
441 |
);
|
442 |
|
443 |
+
$uploaded_type = strtolower( pathinfo( $filename, PATHINFO_EXTENSION ) );
|
444 |
return $uploaded_type === $allowed_type[ $type ];
|
445 |
}
|
446 |
|
includes/admin/helpers/tables/class-fees-table.php
CHANGED
@@ -58,6 +58,7 @@ class WPBDP__Admin__Fees_Table extends WP_List_Table {
|
|
58 |
|
59 |
public function get_columns() {
|
60 |
$cols = array(
|
|
|
61 |
'label' => __( 'Plan Details', 'business-directory-plugin' ),
|
62 |
'amount' => __( 'Pricing', 'business-directory-plugin' ),
|
63 |
'listings' => __( 'Listings', 'business-directory-plugin' ),
|
@@ -82,14 +83,12 @@ class WPBDP__Admin__Fees_Table extends WP_List_Table {
|
|
82 |
|
83 |
/** Rows **/
|
84 |
public function single_row( $item ) {
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
$classes .= 'free-fee';
|
92 |
-
}
|
93 |
|
94 |
echo '<tr class="' . $classes . '">';
|
95 |
$this->single_row_columns( $item );
|
@@ -177,10 +176,6 @@ class WPBDP__Admin__Fees_Table extends WP_List_Table {
|
|
177 |
}
|
178 |
|
179 |
$html = '';
|
180 |
-
$html .= sprintf(
|
181 |
-
'<span class="wpbdp-drag-handle" data-fee-id="%s"></span></a>',
|
182 |
-
$fee->id
|
183 |
-
);
|
184 |
|
185 |
$fee_id_string = sprintf(
|
186 |
__( 'ID: %s', 'business-directory-plugin' ),
|
@@ -283,19 +278,13 @@ class WPBDP__Admin__Fees_Table extends WP_List_Table {
|
|
283 |
public function column_attributes( $fee ) {
|
284 |
$tags = array();
|
285 |
|
286 |
-
$is_default_free_plan = 'free' === $fee->tag;
|
287 |
-
$is_paid_plan = 0.0 !== $fee->amount;
|
288 |
-
$payments_on = wpbdp_payments_possible();
|
289 |
-
|
290 |
if ( ! $fee->enabled ) {
|
291 |
$tags[] = esc_html__( 'Disabled', 'business-directory-plugin' );
|
292 |
-
} elseif ( ( ! $payments_on && $is_paid_plan ) || ( $payments_on && $is_default_free_plan ) ) {
|
293 |
-
$tags[] = esc_html__( 'Disabled', 'business-directory-plugin' );
|
294 |
} else {
|
295 |
$tags[] = esc_html__( 'Active', 'business-directory-plugin' );
|
296 |
}
|
297 |
|
298 |
-
if ( $
|
299 |
$tags[] = esc_html__( 'Default', 'business-directory-plugin' ) . '</span>';
|
300 |
}
|
301 |
|
58 |
|
59 |
public function get_columns() {
|
60 |
$cols = array(
|
61 |
+
'order' => __( 'Order', 'business-directory-plugin' ),
|
62 |
'label' => __( 'Plan Details', 'business-directory-plugin' ),
|
63 |
'amount' => __( 'Pricing', 'business-directory-plugin' ),
|
64 |
'listings' => __( 'Listings', 'business-directory-plugin' ),
|
83 |
|
84 |
/** Rows **/
|
85 |
public function single_row( $item ) {
|
86 |
+
$classes = 'fee';
|
87 |
+
if ( ! $item->enabled ) {
|
88 |
+
$classes .= ' disabled-fee';
|
89 |
+
} elseif ( 'free' === $item->tag ) {
|
90 |
+
$classes .= ' free-fee';
|
91 |
+
}
|
|
|
|
|
92 |
|
93 |
echo '<tr class="' . $classes . '">';
|
94 |
$this->single_row_columns( $item );
|
176 |
}
|
177 |
|
178 |
$html = '';
|
|
|
|
|
|
|
|
|
179 |
|
180 |
$fee_id_string = sprintf(
|
181 |
__( 'ID: %s', 'business-directory-plugin' ),
|
278 |
public function column_attributes( $fee ) {
|
279 |
$tags = array();
|
280 |
|
|
|
|
|
|
|
|
|
281 |
if ( ! $fee->enabled ) {
|
282 |
$tags[] = esc_html__( 'Disabled', 'business-directory-plugin' );
|
|
|
|
|
283 |
} else {
|
284 |
$tags[] = esc_html__( 'Active', 'business-directory-plugin' );
|
285 |
}
|
286 |
|
287 |
+
if ( 'free' === $fee->tag ) {
|
288 |
$tags[] = esc_html__( 'Default', 'business-directory-plugin' ) . '</span>';
|
289 |
}
|
290 |
|
includes/admin/settings/class-settings-bootstrap.php
CHANGED
@@ -1115,6 +1115,16 @@ final class WPBDP__Settings__Bootstrap {
|
|
1115 |
}
|
1116 |
|
1117 |
private static function settings_payment() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1118 |
wpbdp_register_setting(
|
1119 |
array(
|
1120 |
'id' => 'fee-order',
|
@@ -1128,15 +1138,6 @@ final class WPBDP__Settings__Bootstrap {
|
|
1128 |
)
|
1129 |
);
|
1130 |
|
1131 |
-
wpbdp_register_setting(
|
1132 |
-
array(
|
1133 |
-
'id' => 'payments-on',
|
1134 |
-
'type' => 'checkbox',
|
1135 |
-
'name' => _x( 'Turn On payments?', 'settings', 'business-directory-plugin' ),
|
1136 |
-
'default' => false,
|
1137 |
-
'group' => 'payment/main',
|
1138 |
-
)
|
1139 |
-
);
|
1140 |
wpbdp_register_setting(
|
1141 |
array(
|
1142 |
'id' => 'payments-test-mode',
|
@@ -1144,7 +1145,6 @@ final class WPBDP__Settings__Bootstrap {
|
|
1144 |
'name' => _x( 'Put payment gateways in test mode?', 'settings', 'business-directory-plugin' ),
|
1145 |
'default' => true,
|
1146 |
'group' => 'payment/main',
|
1147 |
-
'requirements' => array( 'payments-on' ),
|
1148 |
)
|
1149 |
);
|
1150 |
|
@@ -1184,7 +1184,6 @@ final class WPBDP__Settings__Bootstrap {
|
|
1184 |
),
|
1185 |
'desc' => self::gateway_description(),
|
1186 |
'group' => 'payment/main',
|
1187 |
-
'requirements' => array( 'payments-on' ),
|
1188 |
)
|
1189 |
);
|
1190 |
wpbdp_register_setting(
|
@@ -1194,7 +1193,6 @@ final class WPBDP__Settings__Bootstrap {
|
|
1194 |
'name' => _x( 'Currency Symbol', 'settings', 'business-directory-plugin' ),
|
1195 |
'default' => '$',
|
1196 |
'group' => 'payment/main',
|
1197 |
-
'requirements' => array( 'payments-on' ),
|
1198 |
)
|
1199 |
);
|
1200 |
wpbdp_register_setting(
|
@@ -1209,7 +1207,6 @@ final class WPBDP__Settings__Bootstrap {
|
|
1209 |
'none' => _x( 'Do not show currency symbol', 'admin settings', 'business-directory-plugin' ),
|
1210 |
),
|
1211 |
'group' => 'payment/main',
|
1212 |
-
'requirements' => array( 'payments-on' ),
|
1213 |
)
|
1214 |
);
|
1215 |
wpbdp_register_setting(
|
@@ -1219,7 +1216,6 @@ final class WPBDP__Settings__Bootstrap {
|
|
1219 |
'name' => _x( 'Include fee description in receipt?', 'settings', 'business-directory-plugin' ),
|
1220 |
'default' => false,
|
1221 |
'group' => 'payment/main',
|
1222 |
-
'requirements' => array( 'payments-on' ),
|
1223 |
)
|
1224 |
);
|
1225 |
wpbdp_register_setting(
|
@@ -1229,7 +1225,6 @@ final class WPBDP__Settings__Bootstrap {
|
|
1229 |
'name' => _x( 'Thank you for payment message', 'settings', 'business-directory-plugin' ),
|
1230 |
'default' => __( 'Thank you for your payment.', 'business-directory-plugin' ),
|
1231 |
'group' => 'payment/main',
|
1232 |
-
'requirements' => array( 'payments-on' ),
|
1233 |
)
|
1234 |
);
|
1235 |
|
@@ -1283,7 +1278,6 @@ final class WPBDP__Settings__Bootstrap {
|
|
1283 |
'desc' => _x( 'Ask users to come back for abandoned payments?', 'settings', 'business-directory-plugin' ),
|
1284 |
'default' => false,
|
1285 |
'group' => 'payment/main',
|
1286 |
-
'requirements' => array( 'payments-on' ),
|
1287 |
)
|
1288 |
);
|
1289 |
|
1115 |
}
|
1116 |
|
1117 |
private static function settings_payment() {
|
1118 |
+
wpbdp_register_setting(
|
1119 |
+
array(
|
1120 |
+
'id' => 'payments-on',
|
1121 |
+
'type' => 'hidden',
|
1122 |
+
'class' => 'hidden',
|
1123 |
+
'default' => true,
|
1124 |
+
'group' => 'payment/main',
|
1125 |
+
)
|
1126 |
+
);
|
1127 |
+
|
1128 |
wpbdp_register_setting(
|
1129 |
array(
|
1130 |
'id' => 'fee-order',
|
1138 |
)
|
1139 |
);
|
1140 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1141 |
wpbdp_register_setting(
|
1142 |
array(
|
1143 |
'id' => 'payments-test-mode',
|
1145 |
'name' => _x( 'Put payment gateways in test mode?', 'settings', 'business-directory-plugin' ),
|
1146 |
'default' => true,
|
1147 |
'group' => 'payment/main',
|
|
|
1148 |
)
|
1149 |
);
|
1150 |
|
1184 |
),
|
1185 |
'desc' => self::gateway_description(),
|
1186 |
'group' => 'payment/main',
|
|
|
1187 |
)
|
1188 |
);
|
1189 |
wpbdp_register_setting(
|
1193 |
'name' => _x( 'Currency Symbol', 'settings', 'business-directory-plugin' ),
|
1194 |
'default' => '$',
|
1195 |
'group' => 'payment/main',
|
|
|
1196 |
)
|
1197 |
);
|
1198 |
wpbdp_register_setting(
|
1207 |
'none' => _x( 'Do not show currency symbol', 'admin settings', 'business-directory-plugin' ),
|
1208 |
),
|
1209 |
'group' => 'payment/main',
|
|
|
1210 |
)
|
1211 |
);
|
1212 |
wpbdp_register_setting(
|
1216 |
'name' => _x( 'Include fee description in receipt?', 'settings', 'business-directory-plugin' ),
|
1217 |
'default' => false,
|
1218 |
'group' => 'payment/main',
|
|
|
1219 |
)
|
1220 |
);
|
1221 |
wpbdp_register_setting(
|
1225 |
'name' => _x( 'Thank you for payment message', 'settings', 'business-directory-plugin' ),
|
1226 |
'default' => __( 'Thank you for your payment.', 'business-directory-plugin' ),
|
1227 |
'group' => 'payment/main',
|
|
|
1228 |
)
|
1229 |
);
|
1230 |
|
1278 |
'desc' => _x( 'Ask users to come back for abandoned payments?', 'settings', 'business-directory-plugin' ),
|
1279 |
'default' => false,
|
1280 |
'group' => 'payment/main',
|
|
|
1281 |
)
|
1282 |
);
|
1283 |
|
includes/admin/upgrades/migrations/migration-18_5.php
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @package WPBDP\Admin\Upgrades\Migrations
|
4 |
+
*/
|
5 |
+
|
6 |
+
/**
|
7 |
+
* Migration for DB version 18.5
|
8 |
+
*/
|
9 |
+
class WPBDP__Migrations__18_5 extends WPBDP__Migration {
|
10 |
+
|
11 |
+
/**
|
12 |
+
* We scan all enabled plans first for this migration and disable
|
13 |
+
* the plans that shouldn't be displayed.
|
14 |
+
* If payments were enabled, we disable the default free plan.
|
15 |
+
* If payments were disabled, we disabled the paid plans.
|
16 |
+
*
|
17 |
+
* @since 5.17
|
18 |
+
*/
|
19 |
+
public function migrate() {
|
20 |
+
global $wpdb;
|
21 |
+
$payments_on = wpbdp_get_option( 'payments-on' );
|
22 |
+
$sql = "SELECT id, amount, tag FROM {$wpdb->prefix}wpbdp_plans WHERE enabled != 0";
|
23 |
+
$active_plans = $wpdb->get_results( $sql );
|
24 |
+
$to_disable = array();
|
25 |
+
|
26 |
+
if ( ! $active_plans ) {
|
27 |
+
return;
|
28 |
+
}
|
29 |
+
|
30 |
+
foreach ( $active_plans as $plan ) {
|
31 |
+
if ( ! $payments_on && $plan->amount > 0.0 ) {
|
32 |
+
// Disable any paid plan if payments are off.
|
33 |
+
$to_disable[] = $plan->id;
|
34 |
+
} elseif ( $payments_on && 'free' === $plan->tag ) {
|
35 |
+
// Disable the default plan since it was hidden before fee changes.
|
36 |
+
$to_disable[] = $plan->id;
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
+
if ( empty( $to_disable ) ) {
|
41 |
+
return;
|
42 |
+
}
|
43 |
+
|
44 |
+
$sql = "UPDATE {$wpdb->prefix}wpbdp_plans SET enabled = 0 WHERE id IN(" . implode( ', ', array_fill( 0, count( $to_disable ), '%d' ) ) . ')';
|
45 |
+
// Call $wpdb->prepare passing the values of the array as separate arguments.
|
46 |
+
$query = call_user_func_array( array( $wpdb, 'prepare' ), array_merge( array( $sql ), $to_disable ) );
|
47 |
+
$wpdb->query( $query );
|
48 |
+
}
|
49 |
+
}
|
includes/class-fees-api.php
CHANGED
@@ -46,6 +46,28 @@ class WPBDP_Fees_API {
|
|
46 |
}
|
47 |
}
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
/**
|
50 |
* @deprecated since 3.7.
|
51 |
*/
|
46 |
}
|
47 |
}
|
48 |
|
49 |
+
/**
|
50 |
+
* Check if there are enabled plans with a fee.
|
51 |
+
* This does a count for all enabled plans with a price greater than 0.
|
52 |
+
*
|
53 |
+
* @since 5.17
|
54 |
+
*
|
55 |
+
* @return bool
|
56 |
+
*/
|
57 |
+
public static function has_paid_plans() {
|
58 |
+
global $wpdb;
|
59 |
+
$query = "SELECT count(*) FROM {$wpdb->prefix}wpbdp_plans WHERE enabled != 0 AND amount > 0";
|
60 |
+
$total = WPBDP_Utils::check_cache(
|
61 |
+
array(
|
62 |
+
'cache_key' => 'paid_plan_count',
|
63 |
+
'group' => 'wpbdp_plans',
|
64 |
+
'query' => $query,
|
65 |
+
'type' => 'get_var',
|
66 |
+
)
|
67 |
+
);
|
68 |
+
return $total > 0;
|
69 |
+
}
|
70 |
+
|
71 |
/**
|
72 |
* @deprecated since 3.7.
|
73 |
*/
|
includes/class-payment-gateways.php
CHANGED
@@ -96,7 +96,6 @@ class WPBDP__Payment_Gateways {
|
|
96 |
'type' => 'checkbox',
|
97 |
'default' => false,
|
98 |
'group' => 'gateway_' . $gateway->get_id(),
|
99 |
-
'requirements' => array( 'payments-on' ),
|
100 |
)
|
101 |
);
|
102 |
foreach ( $gateway->get_settings() as $setting ) {
|
@@ -110,20 +109,23 @@ class WPBDP__Payment_Gateways {
|
|
110 |
}
|
111 |
|
112 |
public function _admin_warnings() {
|
113 |
-
|
114 |
-
|
|
|
|
|
115 |
return;
|
116 |
}
|
117 |
|
118 |
-
|
119 |
-
|
120 |
-
|
|
|
121 |
|
122 |
$at_least_one_gateway = false;
|
123 |
foreach ( $this->gateways as $gateway ) {
|
124 |
if ( $gateway->is_enabled( true ) ) {
|
125 |
$at_least_one_gateway = true;
|
126 |
-
|
127 |
$errors = rtrim( '• ' . implode( ' • ', $gateway->validate_settings() ), '.' );
|
128 |
|
129 |
$msg = _x( 'The <gateway> gateway is enabled but not properly configured. The gateway won\'t be available until the following problems are fixed: <problems>.', 'payment-gateways', 'business-directory-plugin' );
|
@@ -138,34 +140,10 @@ class WPBDP__Payment_Gateways {
|
|
138 |
}
|
139 |
}
|
140 |
|
141 |
-
|
142 |
-
|
143 |
-
$msg =
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
$this->no_fee_warning();
|
148 |
-
}
|
149 |
-
|
150 |
-
/**
|
151 |
-
* Show a warning if payments are turned on but no fees are setup.
|
152 |
-
*
|
153 |
-
* @since 5.7.3
|
154 |
-
*/
|
155 |
-
private function no_fee_warning() {
|
156 |
-
foreach ( wpbdp_get_fee_plans() as $plan ) {
|
157 |
-
if ( empty( $plan->extra_data['private'] ) ) {
|
158 |
-
// This plan is public, so don't continue.
|
159 |
-
return;
|
160 |
-
}
|
161 |
-
}
|
162 |
-
|
163 |
-
$msg = sprintf(
|
164 |
-
/* translators: %1$s: open link html, %2$s close link */
|
165 |
-
esc_html__( 'You have payments turned on but do not have a public fee plan. Directory users won\'t be able to submit a listing until you add a public fee plan. Go to %1$sFee Plans%2$s to add or edit your fee plan(s).', 'business-directory-plugin' ),
|
166 |
-
'<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp-admin-fees' ) ) . '">',
|
167 |
-
'</a>'
|
168 |
-
);
|
169 |
-
wpbdp_admin_message( $msg, 'error' );
|
170 |
}
|
171 |
}
|
96 |
'type' => 'checkbox',
|
97 |
'default' => false,
|
98 |
'group' => 'gateway_' . $gateway->get_id(),
|
|
|
99 |
)
|
100 |
);
|
101 |
foreach ( $gateway->get_settings() as $setting ) {
|
109 |
}
|
110 |
|
111 |
public function _admin_warnings() {
|
112 |
+
$page = wpbdp_get_var( array( 'param' => 'page' ) );
|
113 |
+
$is_settings = 'wpbdp_settings' === $page;
|
114 |
+
$is_plans = 'wpbdp-admin-fees' === $page;
|
115 |
+
if ( ! $is_settings && ! $is_plans ) {
|
116 |
return;
|
117 |
}
|
118 |
|
119 |
+
// Check if there are premium fees.
|
120 |
+
if ( ! WPBDP_Fees_API::has_paid_plans() ) {
|
121 |
+
return;
|
122 |
+
}
|
123 |
|
124 |
$at_least_one_gateway = false;
|
125 |
foreach ( $this->gateways as $gateway ) {
|
126 |
if ( $gateway->is_enabled( true ) ) {
|
127 |
$at_least_one_gateway = true;
|
128 |
+
} elseif ( $gateway->is_enabled( false ) && $is_settings ) {
|
129 |
$errors = rtrim( '• ' . implode( ' • ', $gateway->validate_settings() ), '.' );
|
130 |
|
131 |
$msg = _x( 'The <gateway> gateway is enabled but not properly configured. The gateway won\'t be available until the following problems are fixed: <problems>.', 'payment-gateways', 'business-directory-plugin' );
|
140 |
}
|
141 |
}
|
142 |
|
143 |
+
if ( ! $at_least_one_gateway && $is_plans ) {
|
144 |
+
$msg = __( 'You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s to set up a gateway. Until you do this, only free plans will be available.', 'business-directory-plugin' );
|
145 |
+
$msg = sprintf( $msg, '<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_settings&tab=payment' ) ) . '">', '</a>' );
|
146 |
+
wpbdp_admin_message( $msg, 'error' );
|
147 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
}
|
149 |
}
|
includes/class-wpbdp.php
CHANGED
@@ -28,7 +28,7 @@ final class WPBDP {
|
|
28 |
}
|
29 |
|
30 |
private function setup_constants() {
|
31 |
-
define( 'WPBDP_VERSION', '5.
|
32 |
|
33 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
|
34 |
define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
|
28 |
}
|
29 |
|
30 |
private function setup_constants() {
|
31 |
+
define( 'WPBDP_VERSION', '5.17' );
|
32 |
|
33 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
|
34 |
define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
|
includes/controllers/pages/class-submit-listing.php
CHANGED
@@ -136,17 +136,22 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
136 |
}
|
137 |
|
138 |
if ( ! $this->editing && 'auto-draft' !== get_post_status( $this->listing->get_id() ) ) {
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
|
|
|
|
|
|
|
|
|
|
150 |
|
151 |
if ( $this->can_view_receipt() ) {
|
152 |
// Show the receipt.
|
@@ -501,6 +506,8 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
501 |
private function submit_sections() {
|
502 |
$sections = array();
|
503 |
|
|
|
|
|
504 |
if ( $this->can_edit_plan_or_categories() && ! $this->skip_plan_and_category() ) {
|
505 |
$sections['plan_selection'] = array(
|
506 |
'title' => $this->skip_plan_selection ? _x( 'Category selection', 'submit listing', 'business-directory-plugin' ) : _x( 'Category & plan selection', 'submit listing', 'business-directory-plugin' ),
|
@@ -863,7 +870,7 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
863 |
$this->messages( _x( 'Please select a category.', 'submit listing', 'business-directory-plugin' ), 'error', 'plan_selection' );
|
864 |
}
|
865 |
} else {
|
866 |
-
$plan_id = $this->new_listing_plan( $categories );
|
867 |
}
|
868 |
|
869 |
$errors = array();
|
@@ -969,7 +976,7 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
969 |
*
|
970 |
* @return int
|
971 |
*/
|
972 |
-
private function new_listing_plan( $categories ) {
|
973 |
if ( $this->skip_plan_selection && ! $this->category_specific_fields ) {
|
974 |
$plan_id = $this->fixed_plan_id;
|
975 |
if ( ! $plan_id ) {
|
@@ -981,7 +988,7 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
981 |
$this->listing->set_fee_plan( $plan_id );
|
982 |
}
|
983 |
|
984 |
-
if ( $this->saving() && ! $categories ) {
|
985 |
$this->messages( _x( 'Please select a category.', 'submit listing', 'business-directory-plugin' ), 'error', 'plan_selection' );
|
986 |
$this->prevent_save = true;
|
987 |
}
|
@@ -1397,11 +1404,10 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
1397 |
$listing_status = get_post_status( $this->listing->get_id() );
|
1398 |
$this->listing->set_post_status( $this->editing ? ( 'publish' !== $listing_status ? $listing_status : wpbdp_get_option( 'edit-post-status' ) ) : wpbdp_get_option( 'new-post-status' ) );
|
1399 |
$this->listing->_after_save( 'submit-' . ( $this->editing ? 'edit' : 'new' ) );
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
}
|
1405 |
|
1406 |
delete_post_meta( $this->listing->get_id(), '_wpbdp_temp_listingfields' );
|
1407 |
|
@@ -1475,6 +1481,21 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
1475 |
return $listing->get_fee_plan();
|
1476 |
}
|
1477 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1478 |
/**
|
1479 |
* If there's only one plan, get it.
|
1480 |
*
|
136 |
}
|
137 |
|
138 |
if ( ! $this->editing && 'auto-draft' !== get_post_status( $this->listing->get_id() ) ) {
|
139 |
+
$plan_id = absint( wpbdp_get_var( array( 'param' => 'listing_plan', 'default' => 0 ), 'post' ) );
|
140 |
+
$plan = wpbdp_get_fee_plan( $plan_id );
|
141 |
+
if ( $plan && $plan->enabled ) {
|
142 |
+
$this->maybe_update_listing_plan( $plan );
|
143 |
+
$possible_payment = WPBDP_Payment::objects()->filter(
|
144 |
+
array(
|
145 |
+
'listing_id' => $this->listing->get_id(),
|
146 |
+
'payment_type' => 'initial',
|
147 |
+
'status' => 'pending',
|
148 |
+
)
|
149 |
+
)->get();
|
150 |
+
|
151 |
+
if ( $possible_payment ) {
|
152 |
+
return $this->_redirect( $possible_payment->get_checkout_url() );
|
153 |
+
}
|
154 |
+
}
|
155 |
|
156 |
if ( $this->can_view_receipt() ) {
|
157 |
// Show the receipt.
|
506 |
private function submit_sections() {
|
507 |
$sections = array();
|
508 |
|
509 |
+
$this->set_fixed_category_id();
|
510 |
+
|
511 |
if ( $this->can_edit_plan_or_categories() && ! $this->skip_plan_and_category() ) {
|
512 |
$sections['plan_selection'] = array(
|
513 |
'title' => $this->skip_plan_selection ? _x( 'Category selection', 'submit listing', 'business-directory-plugin' ) : _x( 'Category & plan selection', 'submit listing', 'business-directory-plugin' ),
|
870 |
$this->messages( _x( 'Please select a category.', 'submit listing', 'business-directory-plugin' ), 'error', 'plan_selection' );
|
871 |
}
|
872 |
} else {
|
873 |
+
$plan_id = $this->new_listing_plan( $categories, $should_validate );
|
874 |
}
|
875 |
|
876 |
$errors = array();
|
976 |
*
|
977 |
* @return int
|
978 |
*/
|
979 |
+
private function new_listing_plan( $categories, $should_validate ) {
|
980 |
if ( $this->skip_plan_selection && ! $this->category_specific_fields ) {
|
981 |
$plan_id = $this->fixed_plan_id;
|
982 |
if ( ! $plan_id ) {
|
988 |
$this->listing->set_fee_plan( $plan_id );
|
989 |
}
|
990 |
|
991 |
+
if ( $this->saving() && ! $categories && $should_validate ) {
|
992 |
$this->messages( _x( 'Please select a category.', 'submit listing', 'business-directory-plugin' ), 'error', 'plan_selection' );
|
993 |
$this->prevent_save = true;
|
994 |
}
|
1404 |
$listing_status = get_post_status( $this->listing->get_id() );
|
1405 |
$this->listing->set_post_status( $this->editing ? ( 'publish' !== $listing_status ? $listing_status : wpbdp_get_option( 'edit-post-status' ) ) : wpbdp_get_option( 'new-post-status' ) );
|
1406 |
$this->listing->_after_save( 'submit-' . ( $this->editing ? 'edit' : 'new' ) );
|
1407 |
+
if ( ! $this->editing && 'completed' != $payment->status ) {
|
1408 |
+
$checkout_url = $payment->get_checkout_url();
|
1409 |
+
return $this->_redirect( $checkout_url );
|
1410 |
+
}
|
|
|
1411 |
|
1412 |
delete_post_meta( $this->listing->get_id(), '_wpbdp_temp_listingfields' );
|
1413 |
|
1481 |
return $listing->get_fee_plan();
|
1482 |
}
|
1483 |
|
1484 |
+
/**
|
1485 |
+
* Change plan if not the same as for listing.
|
1486 |
+
* Update the plan in the payment.
|
1487 |
+
*
|
1488 |
+
* @param object $new_plan The new selected plan to assign to the listing.
|
1489 |
+
*
|
1490 |
+
* @since 5.17
|
1491 |
+
*/
|
1492 |
+
private function maybe_update_listing_plan( $new_plan ) {
|
1493 |
+
$current_plan = $this->get_plan_for_listing();
|
1494 |
+
if ( $current_plan && $current_plan->fee_id !== $new_plan->id ) {
|
1495 |
+
$this->listing->set_fee_plan_with_payment( $new_plan );
|
1496 |
+
}
|
1497 |
+
}
|
1498 |
+
|
1499 |
/**
|
1500 |
* If there's only one plan, get it.
|
1501 |
*
|
includes/fields/class-fieldtypes-image.php
CHANGED
@@ -273,7 +273,6 @@ class WPBDP_FieldTypes_Image extends WPBDP_Form_Field_Type {
|
|
273 |
if ( isset( $_FILES['file'] ) && empty( $_FILES['file']['error'] ) ) {
|
274 |
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
275 |
$files = wp_unslash( $_FILES['file'] );
|
276 |
-
wpbdp_sanitize_value( 'sanitize_text_field', $files );
|
277 |
// TODO: we support only images for now but we could use this for anything later
|
278 |
$media_id = wpbdp_media_upload(
|
279 |
$files,
|
273 |
if ( isset( $_FILES['file'] ) && empty( $_FILES['file']['error'] ) ) {
|
274 |
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
275 |
$files = wp_unslash( $_FILES['file'] );
|
|
|
276 |
// TODO: we support only images for now but we could use this for anything later
|
277 |
$media_id = wpbdp_media_upload(
|
278 |
$files,
|
includes/helpers/class-listing-image.php
CHANGED
@@ -101,7 +101,7 @@ final class WPBDP_Listing_Image {
|
|
101 |
wp_update_post(
|
102 |
array(
|
103 |
'ID' => $id,
|
104 |
-
'post_parent' =>
|
105 |
)
|
106 |
);
|
107 |
}
|
@@ -131,6 +131,11 @@ final class WPBDP_Listing_Image {
|
|
131 |
} else {
|
132 |
// Attach to the next listing.
|
133 |
self::set_post_parent( $id, reset( $linked_listings ) );
|
|
|
|
|
|
|
|
|
|
|
134 |
}
|
135 |
}
|
136 |
}
|
101 |
wp_update_post(
|
102 |
array(
|
103 |
'ID' => $id,
|
104 |
+
'post_parent' => 0
|
105 |
)
|
106 |
);
|
107 |
}
|
131 |
} else {
|
132 |
// Attach to the next listing.
|
133 |
self::set_post_parent( $id, reset( $linked_listings ) );
|
134 |
+
clean_post_cache( $id );
|
135 |
+
}
|
136 |
+
$post_thumbnail_id = get_post_thumbnail_id( $listing_id );
|
137 |
+
if ( $post_thumbnail_id === $id ) {
|
138 |
+
delete_post_thumbnail( $listing_id );
|
139 |
}
|
140 |
}
|
141 |
}
|
includes/helpers/functions/general.php
CHANGED
@@ -93,7 +93,14 @@ function wpbdp_get_page_ids_with_query( $page_id ) {
|
|
93 |
|
94 |
$q .= ' ORDER BY ID DESC ';
|
95 |
|
96 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
array(
|
98 |
'cache_key' => 'wpbdp_page_ids' . $page_id,
|
99 |
'group' => 'wpbdp_pages',
|
@@ -101,6 +108,12 @@ function wpbdp_get_page_ids_with_query( $page_id ) {
|
|
101 |
'type' => 'get_col',
|
102 |
)
|
103 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
}
|
105 |
|
106 |
function wpbdp_get_page_id( $name = 'main' ) {
|
@@ -246,11 +259,16 @@ function wpbdp_get_formfield( $id ) {
|
|
246 |
|
247 |
/* Fees/Payment API */
|
248 |
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
function wpbdp_payments_possible() {
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
return wpbdp()->payment_gateways->can_pay();
|
255 |
}
|
256 |
|
@@ -589,24 +607,27 @@ function wpbdp_date( $timestamp ) {
|
|
589 |
* @since 3.5.3
|
590 |
*/
|
591 |
function wpbdp_get_post_by_id_or_slug( $id_or_slug = false, $try_first = 'id', $result = 'post' ) {
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
|
598 |
global $wpdb;
|
599 |
$listing_id = 0;
|
600 |
|
601 |
foreach ( $strategies as $s ) {
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
|
|
|
|
|
|
610 |
|
611 |
if ( $listing_id ) {
|
612 |
break;
|
@@ -896,11 +917,10 @@ function wpbdp_get_payment( $id ) {
|
|
896 |
*/
|
897 |
function wpbdp_get_fee_plans( $args = array() ) {
|
898 |
global $wpdb;
|
899 |
-
|
900 |
$payments_on = wpbdp_payments_possible();
|
901 |
$defaults = array(
|
|
|
902 |
'enabled' => 1,
|
903 |
-
'include_free' => ! $payments_on,
|
904 |
'tag' => '',
|
905 |
'orderby' => 'label',
|
906 |
'order' => 'ASC',
|
@@ -1313,6 +1333,11 @@ function wpbdp_get_client_ip_address() {
|
|
1313 |
*/
|
1314 |
function wpbdp_delete_page_ids_cache() {
|
1315 |
WPBDP__Utils::cache_delete_group( 'wpbdp_pages' );
|
|
|
|
|
|
|
|
|
|
|
1316 |
}
|
1317 |
|
1318 |
/**
|
93 |
|
94 |
$q .= ' ORDER BY ID DESC ';
|
95 |
|
96 |
+
if ( ! wp_using_ext_object_cache() ) {
|
97 |
+
$results = get_transient( 'wpbdp_page_ids_' . $page_id );
|
98 |
+
if ( false !== $results ) {
|
99 |
+
return $results;
|
100 |
+
}
|
101 |
+
}
|
102 |
+
|
103 |
+
$results = WPBDP_Utils::check_cache(
|
104 |
array(
|
105 |
'cache_key' => 'wpbdp_page_ids' . $page_id,
|
106 |
'group' => 'wpbdp_pages',
|
108 |
'type' => 'get_col',
|
109 |
)
|
110 |
);
|
111 |
+
|
112 |
+
if ( ! wp_using_ext_object_cache() ) {
|
113 |
+
set_transient( 'wpbdp_page_ids_' . $page_id, $results );
|
114 |
+
}
|
115 |
+
|
116 |
+
return $results;
|
117 |
}
|
118 |
|
119 |
function wpbdp_get_page_id( $name = 'main' ) {
|
259 |
|
260 |
/* Fees/Payment API */
|
261 |
|
262 |
+
/**
|
263 |
+
* Check if payments are possible.
|
264 |
+
* This first checks if there are available enabled premium fees, then checks if there are enabled gateways.
|
265 |
+
*
|
266 |
+
* @return bool
|
267 |
+
*/
|
268 |
function wpbdp_payments_possible() {
|
269 |
+
if ( ! WPBDP_Fees_API::has_paid_plans() ) {
|
270 |
+
return false;
|
271 |
+
}
|
|
|
272 |
return wpbdp()->payment_gateways->can_pay();
|
273 |
}
|
274 |
|
607 |
* @since 3.5.3
|
608 |
*/
|
609 |
function wpbdp_get_post_by_id_or_slug( $id_or_slug = false, $try_first = 'id', $result = 'post' ) {
|
610 |
+
if ( 'slug' === $try_first ) {
|
611 |
+
$strategies = array( 'post_name', 'ID' );
|
612 |
+
} else {
|
613 |
+
$strategies = is_numeric( $id_or_slug ) ? array( 'ID', 'post_name' ) : array( 'post_name' );
|
614 |
+
}
|
615 |
|
616 |
global $wpdb;
|
617 |
$listing_id = 0;
|
618 |
|
619 |
foreach ( $strategies as $s ) {
|
620 |
+
$q = $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE $s = %s AND post_type = %s", $id_or_slug, WPBDP_POST_TYPE );
|
621 |
+
|
622 |
+
$listing_id = WPBDP_Utils::check_cache(
|
623 |
+
array(
|
624 |
+
'cache_key' => 'get_id_' . $id_or_slug,
|
625 |
+
'group' => 'wpbdp_listings',
|
626 |
+
'query' => $q,
|
627 |
+
'type' => 'get_var',
|
628 |
+
)
|
629 |
+
);
|
630 |
+
$listing_id = intval( $listing_id );
|
631 |
|
632 |
if ( $listing_id ) {
|
633 |
break;
|
917 |
*/
|
918 |
function wpbdp_get_fee_plans( $args = array() ) {
|
919 |
global $wpdb;
|
|
|
920 |
$payments_on = wpbdp_payments_possible();
|
921 |
$defaults = array(
|
922 |
+
'include_free' => ! $payments_on,
|
923 |
'enabled' => 1,
|
|
|
924 |
'tag' => '',
|
925 |
'orderby' => 'label',
|
926 |
'order' => 'ASC',
|
1333 |
*/
|
1334 |
function wpbdp_delete_page_ids_cache() {
|
1335 |
WPBDP__Utils::cache_delete_group( 'wpbdp_pages' );
|
1336 |
+
// Delete page transient cache for the main plugin pages.
|
1337 |
+
delete_transient( 'wpbdp_page_ids_main' );
|
1338 |
+
delete_transient( 'wpbdp_page_ids_add-listing' );
|
1339 |
+
delete_transient( 'wpbdp_page_ids_manage-listings' );
|
1340 |
+
delete_transient( 'wpbdp_page_ids_view-listings' );
|
1341 |
}
|
1342 |
|
1343 |
/**
|
includes/installer.php
CHANGED
@@ -10,7 +10,7 @@ require_once ( WPBDP_PATH . 'includes/admin/upgrades/class-migration.php' );
|
|
10 |
*/
|
11 |
class WPBDP_Installer {
|
12 |
|
13 |
-
const DB_VERSION = '18.
|
14 |
|
15 |
private $installed_version = null;
|
16 |
|
@@ -33,7 +33,7 @@ class WPBDP_Installer {
|
|
33 |
wpbdp_log( 'Expiration check was in schedule. Nothing to do.' );
|
34 |
}
|
35 |
|
36 |
-
|
37 |
return;
|
38 |
|
39 |
$this->update_database_schema();
|
10 |
*/
|
11 |
class WPBDP_Installer {
|
12 |
|
13 |
+
const DB_VERSION = '18.5';
|
14 |
|
15 |
private $installed_version = null;
|
16 |
|
33 |
wpbdp_log( 'Expiration check was in schedule. Nothing to do.' );
|
34 |
}
|
35 |
|
36 |
+
if ( version_compare( self::DB_VERSION, $this->installed_version, '=' ) )
|
37 |
return;
|
38 |
|
39 |
$this->update_database_schema();
|
includes/licensing.php
CHANGED
@@ -59,6 +59,13 @@ class WPBDP_Licensing {
|
|
59 |
}
|
60 |
}
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
$this->licenses_errors = $errors;
|
63 |
return $this->licenses_errors;
|
64 |
}
|
@@ -175,7 +182,7 @@ class WPBDP_Licensing {
|
|
175 |
$item = $this->add_item( $args );
|
176 |
|
177 |
if ( $item ) {
|
178 |
-
$license_status =
|
179 |
|
180 |
if ( in_array( $license_status, array( 'valid', 'expired' ), true ) ) {
|
181 |
return true;
|
@@ -504,6 +511,7 @@ class WPBDP_Licensing {
|
|
504 |
);
|
505 |
}
|
506 |
|
|
|
507 |
update_option( 'wpbdp_licenses', $this->licenses );
|
508 |
|
509 |
$is_revoked = isset( $license_data->error ) && 'revoked' === $license_data->error;
|
@@ -513,7 +521,6 @@ class WPBDP_Licensing {
|
|
513 |
return new WP_Error( 'invalid-license', $message );
|
514 |
}
|
515 |
|
516 |
-
$this->licenses[ $item_type . '-' . $item_id ]['status'] = 'invalid';
|
517 |
return $this->revoked_license_error();
|
518 |
}
|
519 |
|
@@ -884,7 +891,12 @@ class WPBDP_Licensing {
|
|
884 |
|
885 |
$result = $this->license_action( $item_type, $item_id, 'activate', $key );
|
886 |
|
|
|
|
|
887 |
if ( is_wp_error( $result ) ) {
|
|
|
|
|
|
|
888 |
$response = array(
|
889 |
'success' => false,
|
890 |
'error' => sprintf( _x( 'Could not activate license: %s.', 'licensing', 'business-directory-plugin' ), $result->get_error_message() ),
|
@@ -894,7 +906,14 @@ class WPBDP_Licensing {
|
|
894 |
'success' => true,
|
895 |
'message' => _x( 'License activated', 'licensing', 'business-directory-plugin' ),
|
896 |
);
|
|
|
|
|
|
|
|
|
|
|
897 |
}
|
|
|
|
|
898 |
wp_send_json( $response );
|
899 |
}
|
900 |
|
@@ -932,14 +951,6 @@ class WPBDP_Licensing {
|
|
932 |
$store_url = untrailingslashit( self::STORE_URL );
|
933 |
|
934 |
$updates = get_option( 'wpbdp_updates' );
|
935 |
-
if ( empty( $updates ) ) {
|
936 |
-
// Temporary fallback for switching from option to transient.
|
937 |
-
// TODO: Remove in v5.14.1.
|
938 |
-
$updates = get_transient( 'wpbdp_updates' );
|
939 |
-
if ( $updates !== false ) {
|
940 |
-
$updates['last'] = current_time( 'timestamp' );
|
941 |
-
}
|
942 |
-
}
|
943 |
|
944 |
$due = current_time( 'timestamp' ) - DAY_IN_SECONDS;
|
945 |
|
@@ -999,12 +1010,11 @@ class WPBDP_Licensing {
|
|
999 |
}
|
1000 |
|
1001 |
$updates = array();
|
1002 |
-
|
1003 |
foreach ( $this->items as $item ) {
|
1004 |
$item_key = $item['item_type'] . '-' . $item['id'];
|
1005 |
|
1006 |
foreach ( $body as $item_information ) {
|
1007 |
-
if ( $item_information->name !== $item['name'] ) {
|
1008 |
continue;
|
1009 |
}
|
1010 |
|
@@ -1012,7 +1022,7 @@ class WPBDP_Licensing {
|
|
1012 |
$updates[ $item_key ]->slug = $item['id'];
|
1013 |
|
1014 |
// Update the license status too.
|
1015 |
-
if ( $item['id'] ===
|
1016 |
// Handle premium from it's own updater.
|
1017 |
continue;
|
1018 |
}
|
@@ -1057,7 +1067,6 @@ class WPBDP_Licensing {
|
|
1057 |
$modules = $this->modules_array();
|
1058 |
|
1059 |
foreach ( $modules as $module ) {
|
1060 |
-
$license_status = $this->get_license_status( '', $module['id'], $module['item_type'] );
|
1061 |
|
1062 |
$item_key = $module['item_type'] . '-' . $module['id'];
|
1063 |
|
@@ -1086,6 +1095,33 @@ class WPBDP_Licensing {
|
|
1086 |
return $transient;
|
1087 |
}
|
1088 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1089 |
/**
|
1090 |
* Fill the info in the plugin details popup.
|
1091 |
*/
|
@@ -1099,17 +1135,7 @@ class WPBDP_Licensing {
|
|
1099 |
return $data;
|
1100 |
}
|
1101 |
|
1102 |
-
|
1103 |
-
'timeout' => 15,
|
1104 |
-
'sslverify' => false,
|
1105 |
-
'body' => array(
|
1106 |
-
'edd_action' => 'get_version',
|
1107 |
-
'item_name' => $item['name'],
|
1108 |
-
'license' => wpbdp_get_option( 'license-key-' . $item['item_type'] . '-' . $item['id'] ),
|
1109 |
-
'url' => home_url(),
|
1110 |
-
),
|
1111 |
-
);
|
1112 |
-
$request = wp_remote_post( self::STORE_URL, $http_args );
|
1113 |
|
1114 |
if ( ! is_wp_error( $request ) ) {
|
1115 |
$request = json_decode( wp_remote_retrieve_body( $request ) );
|
59 |
}
|
60 |
}
|
61 |
|
62 |
+
// Remove an error if it's for a plugin that's deactivated.
|
63 |
+
foreach ( $errors as $k => $error ) {
|
64 |
+
if ( ! isset( $this->items[ $k ] ) ) {
|
65 |
+
unset( $errors[ $k ] );
|
66 |
+
}
|
67 |
+
}
|
68 |
+
|
69 |
$this->licenses_errors = $errors;
|
70 |
return $this->licenses_errors;
|
71 |
}
|
182 |
$item = $this->add_item( $args );
|
183 |
|
184 |
if ( $item ) {
|
185 |
+
$license_status = $this->get_license_status( '', $item['id'], $item['item_type'] );
|
186 |
|
187 |
if ( in_array( $license_status, array( 'valid', 'expired' ), true ) ) {
|
188 |
return true;
|
511 |
);
|
512 |
}
|
513 |
|
514 |
+
$this->licenses[ $item_type . '-' . $item_id ]['status'] = 'invalid';
|
515 |
update_option( 'wpbdp_licenses', $this->licenses );
|
516 |
|
517 |
$is_revoked = isset( $license_data->error ) && 'revoked' === $license_data->error;
|
521 |
return new WP_Error( 'invalid-license', $message );
|
522 |
}
|
523 |
|
|
|
524 |
return $this->revoked_license_error();
|
525 |
}
|
526 |
|
891 |
|
892 |
$result = $this->license_action( $item_type, $item_id, 'activate', $key );
|
893 |
|
894 |
+
$this->get_license_errors();
|
895 |
+
|
896 |
if ( is_wp_error( $result ) ) {
|
897 |
+
// Save the message for later.
|
898 |
+
$this->licenses_errors[ $item_id ] = $result->get_error_message();
|
899 |
+
|
900 |
$response = array(
|
901 |
'success' => false,
|
902 |
'error' => sprintf( _x( 'Could not activate license: %s.', 'licensing', 'business-directory-plugin' ), $result->get_error_message() ),
|
906 |
'success' => true,
|
907 |
'message' => _x( 'License activated', 'licensing', 'business-directory-plugin' ),
|
908 |
);
|
909 |
+
|
910 |
+
// Remove any saved error messages.
|
911 |
+
if ( isset( $this->licenses_errors[ $item_id ] ) ) {
|
912 |
+
unset( $this->licenses_errors[ $item_id ] );
|
913 |
+
}
|
914 |
}
|
915 |
+
|
916 |
+
$this->save_license_errors();
|
917 |
wp_send_json( $response );
|
918 |
}
|
919 |
|
951 |
$store_url = untrailingslashit( self::STORE_URL );
|
952 |
|
953 |
$updates = get_option( 'wpbdp_updates' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
954 |
|
955 |
$due = current_time( 'timestamp' ) - DAY_IN_SECONDS;
|
956 |
|
1010 |
}
|
1011 |
|
1012 |
$updates = array();
|
|
|
1013 |
foreach ( $this->items as $item ) {
|
1014 |
$item_key = $item['item_type'] . '-' . $item['id'];
|
1015 |
|
1016 |
foreach ( $body as $item_information ) {
|
1017 |
+
if ( trim( $item_information->name ) !== trim( $item['name'] ) || empty( $item_information->license ) ) {
|
1018 |
continue;
|
1019 |
}
|
1020 |
|
1022 |
$updates[ $item_key ]->slug = $item['id'];
|
1023 |
|
1024 |
// Update the license status too.
|
1025 |
+
if ( $item['id'] === $this->premium_id() ) {
|
1026 |
// Handle premium from it's own updater.
|
1027 |
continue;
|
1028 |
}
|
1067 |
$modules = $this->modules_array();
|
1068 |
|
1069 |
foreach ( $modules as $module ) {
|
|
|
1070 |
|
1071 |
$item_key = $module['item_type'] . '-' . $module['id'];
|
1072 |
|
1095 |
return $transient;
|
1096 |
}
|
1097 |
|
1098 |
+
/**
|
1099 |
+
* Get item version.
|
1100 |
+
* Get the update information of an item.
|
1101 |
+
*
|
1102 |
+
* @todo change to new rest api.
|
1103 |
+
*
|
1104 |
+
* @param $item The module item.
|
1105 |
+
*
|
1106 |
+
* @since 5.17
|
1107 |
+
*
|
1108 |
+
* @return mixed
|
1109 |
+
*/
|
1110 |
+
private function get_item_version( $item ) {
|
1111 |
+
$http_args = array(
|
1112 |
+
'timeout' => 15,
|
1113 |
+
'sslverify' => false,
|
1114 |
+
'body' => array(
|
1115 |
+
'edd_action' => 'get_version',
|
1116 |
+
'item_name' => $item['name'],
|
1117 |
+
'license' => wpbdp_get_option( 'license-key-' . $item['item_type'] . '-' . $item['id'] ),
|
1118 |
+
'url' => home_url(),
|
1119 |
+
),
|
1120 |
+
);
|
1121 |
+
$request = wp_remote_post( self::STORE_URL, $http_args );
|
1122 |
+
return $request;
|
1123 |
+
}
|
1124 |
+
|
1125 |
/**
|
1126 |
* Fill the info in the plugin details popup.
|
1127 |
*/
|
1135 |
return $data;
|
1136 |
}
|
1137 |
|
1138 |
+
$request = $this->get_item_version( $item );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1139 |
|
1140 |
if ( ! is_wp_error( $request ) ) {
|
1141 |
$request = json_decode( wp_remote_retrieve_body( $request ) );
|
includes/models/class-fee-plan.php
CHANGED
@@ -375,7 +375,6 @@ final class WPBDP__Fee_Plan {
|
|
375 |
$this->sticky = false;
|
376 |
$this->recurring = false;
|
377 |
$this->supported_categories = 'all';
|
378 |
-
$this->enabled = true;
|
379 |
}
|
380 |
}
|
381 |
|
375 |
$this->sticky = false;
|
376 |
$this->recurring = false;
|
377 |
$this->supported_categories = 'all';
|
|
|
378 |
}
|
379 |
}
|
380 |
|
includes/models/class-listing.php
CHANGED
@@ -161,6 +161,7 @@ class WPBDP_Listing {
|
|
161 |
|
162 |
update_post_meta( $this->id, '_wpbdp[images]', $keep_images );
|
163 |
WPBDP_Utils::cache_delete_group( 'wpbdp_listings' );
|
|
|
164 |
}
|
165 |
|
166 |
public function set_thumbnail_id( $image_id ) {
|
@@ -635,7 +636,7 @@ class WPBDP_Listing {
|
|
635 |
*/
|
636 |
public function has_fee_plan( $fee = false ) {
|
637 |
$current = $this->get_fee_plan();
|
638 |
-
return ( ! $fee && ! empty( $current ) ) || ( $fee && $current && $current->
|
639 |
}
|
640 |
|
641 |
/**
|
@@ -810,14 +811,40 @@ class WPBDP_Listing {
|
|
810 |
if ( ! $plan )
|
811 |
return false;
|
812 |
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
|
818 |
return $this->create_payment_from_plan( 'initial', $plan );
|
819 |
}
|
820 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
821 |
/**
|
822 |
* @since 5.1.9
|
823 |
*/
|
161 |
|
162 |
update_post_meta( $this->id, '_wpbdp[images]', $keep_images );
|
163 |
WPBDP_Utils::cache_delete_group( 'wpbdp_listings' );
|
164 |
+
clean_post_cache( $this->id );
|
165 |
}
|
166 |
|
167 |
public function set_thumbnail_id( $image_id ) {
|
636 |
*/
|
637 |
public function has_fee_plan( $fee = false ) {
|
638 |
$current = $this->get_fee_plan();
|
639 |
+
return ( ! $fee && ! empty( $current ) ) || ( $fee && $current && $current->fee_id == $fee );
|
640 |
}
|
641 |
|
642 |
/**
|
811 |
if ( ! $plan )
|
812 |
return false;
|
813 |
|
814 |
+
$existing_payment = $this->get_existing_payment_for_plan( $plan );
|
815 |
+
if ( $existing_payment ) {
|
816 |
+
return $existing_payment;
|
817 |
+
}
|
818 |
|
819 |
return $this->create_payment_from_plan( 'initial', $plan );
|
820 |
}
|
821 |
|
822 |
+
/**
|
823 |
+
* Search the fees in the payments if the current payment of the plan has been made or exists.
|
824 |
+
* This prevents generating duplicate payments of the same fee in situations where a user will
|
825 |
+
* go back to correct something.
|
826 |
+
*
|
827 |
+
* @since 5.17
|
828 |
+
*/
|
829 |
+
private function get_existing_payment_for_plan( $plan ) {
|
830 |
+
$existing_payment = WPBDP_Payment::objects()->filter(
|
831 |
+
array(
|
832 |
+
'listing_id' => $this->id,
|
833 |
+
'payment_type' => 'initial',
|
834 |
+
)
|
835 |
+
)->get();
|
836 |
+
|
837 |
+
if ( ! $existing_payment ) {
|
838 |
+
return false;
|
839 |
+
}
|
840 |
+
|
841 |
+
// Get the current fee ids for this payment, and check if the current plan is included.
|
842 |
+
$plan_ids = array_column( $existing_payment->payment_items, 'fee_id' );
|
843 |
+
$is_for_plan = in_array( $plan->fee_id, $plan_ids, true );
|
844 |
+
|
845 |
+
return $is_for_plan ? $existing_payment : false;
|
846 |
+
}
|
847 |
+
|
848 |
/**
|
849 |
* @since 5.1.9
|
850 |
*/
|
includes/utils.php
CHANGED
@@ -312,12 +312,8 @@ class WPBDP__Utils {
|
|
312 |
public static function get_mimetype( $file ) {
|
313 |
$mime_type = null;
|
314 |
|
315 |
-
if ( function_exists( '
|
316 |
-
|
317 |
-
$mime_type = explode( ';', finfo_file( $finfo, $file ) );
|
318 |
-
$mime_type = trim( $mime_type[0] );
|
319 |
-
finfo_close( $finfo );
|
320 |
-
}
|
321 |
}
|
322 |
|
323 |
if ( null === $mime_type ) {
|
@@ -325,6 +321,7 @@ class WPBDP__Utils {
|
|
325 |
$mime_type = $type_info['type'];
|
326 |
}
|
327 |
|
|
|
328 |
return $mime_type;
|
329 |
}
|
330 |
|
312 |
public static function get_mimetype( $file ) {
|
313 |
$mime_type = null;
|
314 |
|
315 |
+
if ( function_exists( 'mime_content_type' ) ) {
|
316 |
+
$mime_type = mime_content_type( $file );
|
|
|
|
|
|
|
|
|
317 |
}
|
318 |
|
319 |
if ( null === $mime_type ) {
|
321 |
$mime_type = $type_info['type'];
|
322 |
}
|
323 |
|
324 |
+
wpbdp_sanitize_value( 'sanitize_text_field', $mime_type );
|
325 |
return $mime_type;
|
326 |
}
|
327 |
|
languages/business-directory-plugin-ar.mo
CHANGED
Binary file
|
languages/business-directory-plugin-ar.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-
|
9 |
"PO-Revision-Date: 2017-01-16 17:47-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -90,17 +90,17 @@ msgstr "مدير دليل الأعمال"
|
|
90 |
msgid "Directory"
|
91 |
msgstr "الدليل"
|
92 |
|
93 |
-
#: includes/admin/class-admin.php:312
|
94 |
msgid "Fee Plans"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/admin/class-admin.php:315
|
98 |
#, fuzzy
|
99 |
msgid "Form Fields"
|
100 |
msgstr "حقول الاستمارة"
|
101 |
|
102 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
103 |
-
#: includes/licensing.php:
|
104 |
#, fuzzy
|
105 |
msgid "Modules"
|
106 |
msgstr "(جميع الوحدات)"
|
@@ -227,7 +227,7 @@ msgid "Amount"
|
|
227 |
msgstr "القدر"
|
228 |
|
229 |
#: includes/admin/controllers/class-admin-fees.php:49
|
230 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
231 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
232 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
233 |
#, fuzzy
|
@@ -265,7 +265,7 @@ msgid "Fee plan listings updated."
|
|
265 |
msgstr "الرسوم حدثت."
|
266 |
|
267 |
#: includes/admin/controllers/class-admin-listings.php:185
|
268 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
269 |
#: templates/email/listing-reported.tpl.php:7
|
270 |
msgid "Listing Information"
|
271 |
msgstr "معلومات حول الإعلان"
|
@@ -318,14 +318,14 @@ msgstr ""
|
|
318 |
"الأعمال للقيام بذلك نيابة عنك تلقائياً."
|
319 |
|
320 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
321 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
322 |
#, fuzzy
|
323 |
msgid "Go to \"Form Fields\""
|
324 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
325 |
|
326 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
327 |
-
#: includes/helpers/functions/general.php:
|
328 |
-
#: includes/helpers/functions/general.php:
|
329 |
msgid "Go back"
|
330 |
msgstr ""
|
331 |
|
@@ -437,11 +437,11 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
437 |
msgstr "لماذا قمت بحذف إضافة دليل الأعمال؟"
|
438 |
|
439 |
#: includes/admin/controllers/class-settings-admin.php:536
|
440 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
441 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
442 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
443 |
#: templates/admin/payments-note.tpl.php:14
|
444 |
-
#: templates/admin/themes-item.tpl.php:
|
445 |
#: templates/parts/listing-buttons.tpl.php:31
|
446 |
#: templates/parts/listing-buttons.tpl.php:65
|
447 |
#, fuzzy
|
@@ -495,8 +495,8 @@ msgid "Installed"
|
|
495 |
msgstr "تم التنصيب"
|
496 |
|
497 |
#: includes/admin/helpers/class-modules-list.php:187
|
498 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
499 |
-
#: templates/admin/themes-item.tpl.php:
|
500 |
#, fuzzy
|
501 |
msgid "Active"
|
502 |
msgstr "مفعل"
|
@@ -508,13 +508,13 @@ msgstr "غير منصب"
|
|
508 |
|
509 |
#: includes/admin/helpers/class-modules-list.php:225
|
510 |
#: includes/controllers/class-smtp.php:317
|
511 |
-
#: templates/admin/themes-item.tpl.php:
|
512 |
#, fuzzy
|
513 |
msgid "Activate"
|
514 |
msgstr "قم بالتفعيل"
|
515 |
|
516 |
#: includes/admin/helpers/class-modules-list.php:235
|
517 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
518 |
#, fuzzy
|
519 |
msgid "Upgrade Now"
|
520 |
msgstr "ترقية إلى %s"
|
@@ -532,15 +532,20 @@ msgstr "لا توجد أي رسوم الآن. يمكنك <a>إنشاء واحد<
|
|
532 |
|
533 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
534 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
535 |
msgid "Plan Details"
|
536 |
msgstr "تفاصيل الخطة"
|
537 |
|
538 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
539 |
#, fuzzy
|
540 |
msgid "Pricing"
|
541 |
msgstr "السعر"
|
542 |
|
543 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
544 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
545 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
546 |
#: includes/helpers/class-app.php:92
|
@@ -548,42 +553,41 @@ msgstr "السعر"
|
|
548 |
msgid "Listings"
|
549 |
msgstr "الإعلانات"
|
550 |
|
551 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
552 |
#, fuzzy
|
553 |
msgid "Disable"
|
554 |
msgstr "تعطيل"
|
555 |
|
556 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
557 |
#, fuzzy
|
558 |
msgid "Enable"
|
559 |
msgstr "تفعيل"
|
560 |
|
561 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
562 |
msgid "ID: %s"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
566 |
#, fuzzy
|
567 |
msgid "Paid Plan"
|
568 |
msgstr "تم الدفع"
|
569 |
|
570 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
571 |
#, fuzzy
|
572 |
msgid "Free Plan"
|
573 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
574 |
|
575 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
576 |
#, fuzzy
|
577 |
msgid "%1$s for %2$s"
|
578 |
msgstr "%s (ex. %s)"
|
579 |
|
580 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
581 |
-
#: includes/admin/helpers/tables/class-fees-table.php:293
|
582 |
#, fuzzy
|
583 |
msgid "Disabled"
|
584 |
msgstr "معطل"
|
585 |
|
586 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
587 |
#: includes/helpers/functions/templates-ui.php:431
|
588 |
#, fuzzy
|
589 |
msgid "Default"
|
@@ -626,7 +630,7 @@ msgid "Missing tables: %s"
|
|
626 |
msgstr "الجداول المفقودة: %s"
|
627 |
|
628 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
629 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
630 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
631 |
#: templates/listing-contactform.tpl.php:33
|
632 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -675,7 +679,7 @@ msgstr "الإسم العائلي مطلوب."
|
|
675 |
|
676 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
677 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
678 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
679 |
#, fuzzy
|
680 |
msgid "Terms and Conditions"
|
681 |
msgstr "شروط وأحكام"
|
@@ -901,12 +905,12 @@ msgstr ""
|
|
901 |
msgid "URL"
|
902 |
msgstr "رابط URL"
|
903 |
|
904 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
905 |
#, fuzzy
|
906 |
msgid "Thank you for your payment."
|
907 |
msgstr "رسالة الشكر على الدفع"
|
908 |
|
909 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
910 |
msgid ""
|
911 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
912 |
"collect payments in this currency."
|
@@ -920,22 +924,22 @@ msgstr[3] ""
|
|
920 |
msgstr[4] ""
|
921 |
msgstr[5] ""
|
922 |
|
923 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
924 |
#, fuzzy
|
925 |
msgid "Email Notifications"
|
926 |
msgstr "تنبيهات البريد الإلكتروني"
|
927 |
|
928 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
929 |
#, fuzzy
|
930 |
msgid "Notify admin via email when..."
|
931 |
msgstr "إبلاغ المدير عن طريق البريد الإلكتروني عندما..."
|
932 |
|
933 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
934 |
#, fuzzy
|
935 |
msgid "CC this email address too"
|
936 |
msgstr "إرسال نسخة من الرسالة الى عنوان البريد الإلكتروني هذا أيضا"
|
937 |
|
938 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
939 |
#, fuzzy
|
940 |
msgid ""
|
941 |
"You can modify the text template used for most of these emails in the "
|
@@ -943,38 +947,38 @@ msgid ""
|
|
943 |
msgstr ""
|
944 |
"يمكنك تعديل قالب النص المستخدم لمعظم رسائل البريد الإلكتروني هذه أدناه."
|
945 |
|
946 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
947 |
#, fuzzy
|
948 |
msgid "Notify users via email when..."
|
949 |
msgstr "إعلام الأعضاء عن طريق البريد الإلكتروني عندما..."
|
950 |
|
951 |
#. translators: %s: email shortcode
|
952 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
953 |
#, fuzzy
|
954 |
msgid "Email: %s"
|
955 |
msgstr "البريد الإلكتروني: %s"
|
956 |
|
957 |
#. translators: %s: phone shortcode
|
958 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
959 |
#, fuzzy
|
960 |
msgid "Phone Number: %s"
|
961 |
msgstr "رقم الهاتف"
|
962 |
|
963 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
964 |
#, fuzzy
|
965 |
msgid "Sender's email address"
|
966 |
msgstr "إدخال بريدك إلكتروني"
|
967 |
|
968 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
969 |
#, fuzzy
|
970 |
msgid "Sender's phone number"
|
971 |
msgstr "إسم الكاتب"
|
972 |
|
973 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
974 |
msgid "Renewal and expiration"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
978 |
#: templates/admin/uninstall-complete.tpl.php:4
|
979 |
#, fuzzy
|
980 |
msgid "Uninstall"
|
@@ -1079,7 +1083,7 @@ msgstr "Vue"
|
|
1079 |
|
1080 |
#. translators: %s: Status name
|
1081 |
#: includes/admin/views/modules/list.php:63
|
1082 |
-
#: templates/admin/themes-item.tpl.php:
|
1083 |
#, fuzzy
|
1084 |
msgid "Status: %s"
|
1085 |
msgstr "الحالة"
|
@@ -1272,12 +1276,10 @@ msgstr "إضافة رسوم الإعلان"
|
|
1272 |
msgid "View All Listings"
|
1273 |
msgstr "مشاهدة جميع الإعلانات"
|
1274 |
|
1275 |
-
|
1276 |
-
#: includes/class-payment-gateways.php:165
|
1277 |
msgid ""
|
1278 |
-
"You have
|
1279 |
-
"
|
1280 |
-
"to %1$sFee Plans%2$s to add or edit your fee plan(s)."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
#: includes/class-wpbdp.php:369
|
@@ -1301,7 +1303,7 @@ msgid ""
|
|
1301 |
"admin."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:
|
1305 |
#, fuzzy
|
1306 |
msgid "Could not find image ID"
|
1307 |
msgstr "تعذر تحديث القالب : %s"
|
@@ -1508,39 +1510,39 @@ msgstr ""
|
|
1508 |
"Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
|
1509 |
"publiée."
|
1510 |
|
1511 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1512 |
#, fuzzy
|
1513 |
msgid "Listing Images"
|
1514 |
msgstr "صور الإعلانات"
|
1515 |
|
1516 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1517 |
msgid "Account Creation"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1521 |
#, fuzzy
|
1522 |
msgid "Go to \"Fee Plans\""
|
1523 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
1524 |
|
1525 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1526 |
#, fuzzy
|
1527 |
msgid "Please choose a fee plan."
|
1528 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
1529 |
|
1530 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1531 |
msgid "Please check the form for errors, correct them and submit again."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1535 |
msgid "Create a user account on this site"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1539 |
#, fuzzy
|
1540 |
msgid "Username"
|
1541 |
msgstr "عضو"
|
1542 |
|
1543 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1544 |
#, fuzzy
|
1545 |
msgid "Clear Form"
|
1546 |
msgstr "مسح"
|
@@ -1858,8 +1860,7 @@ msgid ""
|
|
1858 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: includes/helpers/functions/general.php:
|
1862 |
-
#: templates/admin/fees-index.tpl.php:67
|
1863 |
msgid "Free"
|
1864 |
msgstr "مجاني"
|
1865 |
|
@@ -1874,73 +1875,73 @@ msgid "Manage Listings"
|
|
1874 |
msgstr "إدارة الإعلانات المدفوعة"
|
1875 |
|
1876 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1877 |
-
#: includes/licensing.php:
|
1878 |
msgid ""
|
1879 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1880 |
"get updates."
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: includes/licensing.php:
|
1884 |
#, fuzzy
|
1885 |
msgid "Licenses"
|
1886 |
msgstr "تراخيص"
|
1887 |
|
1888 |
-
#: includes/licensing.php:
|
1889 |
msgid "Build more powerful directories"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: includes/licensing.php:
|
1893 |
msgid ""
|
1894 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: includes/licensing.php:
|
1898 |
#, fuzzy
|
1899 |
msgid "Already purchased?"
|
1900 |
msgstr "مُركب مسبقا"
|
1901 |
|
1902 |
#. translators: %s: item type.
|
1903 |
-
#: includes/licensing.php:
|
1904 |
msgid "%s will not get updates until license is reauthorized."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: includes/licensing.php:
|
1908 |
#, fuzzy
|
1909 |
msgid "Enter License Key here"
|
1910 |
msgstr "تجديد مفتاح الترخيص"
|
1911 |
|
1912 |
-
#: includes/licensing.php:
|
1913 |
#, fuzzy
|
1914 |
msgid "Authorize"
|
1915 |
msgstr "تفعيل Authorize.net؟"
|
1916 |
|
1917 |
-
#: includes/licensing.php:
|
1918 |
#, fuzzy
|
1919 |
msgid "Invalid item ID"
|
1920 |
msgstr "معرف حقل غير صالح"
|
1921 |
|
1922 |
-
#: includes/licensing.php:
|
1923 |
#, fuzzy
|
1924 |
msgid "No license key provided"
|
1925 |
msgstr "لم يتم تقديم أي مفتاح الترخيص"
|
1926 |
|
1927 |
-
#: includes/licensing.php:
|
1928 |
#, fuzzy
|
1929 |
msgid "License key is invalid"
|
1930 |
msgstr "مفتاح الترخيص غير صالح"
|
1931 |
|
1932 |
-
#: includes/licensing.php:
|
1933 |
#, fuzzy
|
1934 |
msgid "Deactivation failed"
|
1935 |
msgstr "فشل التعطيل"
|
1936 |
|
1937 |
-
#: includes/licensing.php:
|
1938 |
#, fuzzy
|
1939 |
msgid "The license key was revoked."
|
1940 |
msgstr "لم يتم تقديم أي مفتاح الترخيص"
|
1941 |
|
1942 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1943 |
-
#: includes/licensing.php:
|
1944 |
msgid ""
|
1945 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1946 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -1948,50 +1949,50 @@ msgid ""
|
|
1948 |
"with your report."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: includes/licensing.php:
|
1952 |
msgid ""
|
1953 |
"It was not possible to establish a connection with the Business Directory "
|
1954 |
"server. The connection failed with the following error:"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: includes/licensing.php:
|
1958 |
msgid ""
|
1959 |
"It was not possible to establish a connection with the Business Directory "
|
1960 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: includes/licensing.php:
|
1964 |
msgid ""
|
1965 |
"It looks like your server is not authorized to make outgoing requests to "
|
1966 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1967 |
"our IP address 52.0.78.177 to your allow list."
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: includes/licensing.php:
|
1971 |
#, fuzzy
|
1972 |
msgid "Business Directory license key is missing."
|
1973 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
1974 |
|
1975 |
-
#: includes/licensing.php:
|
1976 |
#, fuzzy
|
1977 |
msgid "Business Directory license key has expired"
|
1978 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
1979 |
|
1980 |
-
#: includes/licensing.php:
|
1981 |
#, fuzzy
|
1982 |
msgid "Could not verify Business Directory license."
|
1983 |
msgstr "المساعدة في تحسين دليل الأعمال"
|
1984 |
|
1985 |
-
#: includes/licensing.php:
|
1986 |
#, fuzzy
|
1987 |
msgid "Review license keys"
|
1988 |
msgstr "تجديد مفتاح الترخيص"
|
1989 |
|
1990 |
-
#: includes/licensing.php:
|
1991 |
msgid "Missing data. Please reload this page and try again."
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: includes/licensing.php:
|
1995 |
#, fuzzy
|
1996 |
msgid "Please enter a license key."
|
1997 |
msgstr "يرجى إدخال بريد إلكتروني صحيح."
|
@@ -2037,12 +2038,12 @@ msgstr "متخلى عنه"
|
|
2037 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2038 |
msgstr "ملف الضغط ZIP ليس ملف قالب دليل الأعمال صالح."
|
2039 |
|
2040 |
-
#: includes/utils.php:
|
2041 |
#, fuzzy
|
2042 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2043 |
msgstr "حجم الملف (%s) يتجاوز الحجم الأقصى للملف %s"
|
2044 |
|
2045 |
-
#: includes/utils.php:
|
2046 |
#, fuzzy
|
2047 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2048 |
msgstr "حجم الملف (%s) أقل من الحد الأدنى المطلوب لحجم الملف لـ %s"
|
@@ -2397,73 +2398,49 @@ msgstr "حفظ التعديلات"
|
|
2397 |
msgid "Add New Listing Fee"
|
2398 |
msgstr "إضافة رسم إعلان جديد"
|
2399 |
|
2400 |
-
#: templates/admin/fees-index.tpl.php:
|
2401 |
-
#, fuzzy
|
2402 |
-
msgid "Payments are currently turned off."
|
2403 |
-
msgstr "نظام الدفع متوقف حاليا."
|
2404 |
-
|
2405 |
-
#. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
|
2406 |
-
#: templates/admin/fees-index.tpl.php:21
|
2407 |
-
#, fuzzy
|
2408 |
-
msgid ""
|
2409 |
-
"To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
|
2410 |
-
"and check the box next to 'Turn On Payments' under 'Payment Settings'."
|
2411 |
-
msgstr ""
|
2412 |
-
"لإدارة الرسوم أنت بحاجة للذهاب إلى صفحة <a>إدارة الخيارات - الدفع</a> وحدد "
|
2413 |
-
"المربع بجوار 'تشغيل الدفعات' تحت 'إعدادات الدفع'."
|
2414 |
-
|
2415 |
-
#: templates/admin/fees-index.tpl.php:34
|
2416 |
#, fuzzy
|
2417 |
msgid "Order fees on the frontend by:"
|
2418 |
msgstr "رسوم الترتيب على الواجهة بواسطة:"
|
2419 |
|
2420 |
-
#: templates/admin/fees-index.tpl.php:
|
2421 |
#, fuzzy
|
2422 |
msgid "↑ Ascending"
|
2423 |
msgstr "↑ تصاعدي"
|
2424 |
|
2425 |
-
#: templates/admin/fees-index.tpl.php:
|
2426 |
#, fuzzy
|
2427 |
msgid "↓ Descending"
|
2428 |
msgstr "↓ تنازلي"
|
2429 |
|
2430 |
-
#: templates/admin/fees-index.tpl.php:
|
2431 |
#, fuzzy
|
2432 |
msgid "Drag and drop to re-order fees."
|
2433 |
msgstr "سحب وإسقاط لإعادة ترتيب الرسوم."
|
2434 |
|
2435 |
-
#. translators: %1$s is directory payment mode (Free or Paid)
|
2436 |
-
#: templates/admin/fees-index.tpl.php:66
|
2437 |
-
msgid "All fee plans may not be available in \"%1$s\" mode."
|
2438 |
-
msgstr ""
|
2439 |
-
|
2440 |
#: templates/admin/fees-index.tpl.php:67
|
2441 |
-
msgid "Paid"
|
2442 |
-
msgstr "تم الدفع"
|
2443 |
-
|
2444 |
-
#: templates/admin/fees-index.tpl.php:92
|
2445 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: templates/admin/fees-index.tpl.php:
|
2449 |
msgid "Add a payment gateway to increase conversion rates"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
#. translators: %s: payment gateway name */
|
2453 |
-
#: templates/admin/fees-index.tpl.php:
|
2454 |
msgid "Add the %s gateway as a payment option."
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: templates/admin/fees-index.tpl.php:
|
2458 |
#, fuzzy
|
2459 |
msgid "Upgrade"
|
2460 |
msgstr "ترقية إلى %s"
|
2461 |
|
2462 |
-
#: templates/admin/fees-index.tpl.php:
|
2463 |
msgid "Set up Authorize.net as a payment option."
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: templates/admin/fees-index.tpl.php:
|
2467 |
msgid "Set Up"
|
2468 |
msgstr ""
|
2469 |
|
@@ -2497,15 +2474,6 @@ msgstr "هل أنت متأكد من أنك تريد حذف الحقل \"%s\"؟"
|
|
2497 |
msgid "Delete Field"
|
2498 |
msgstr "حذف حقل"
|
2499 |
|
2500 |
-
#: templates/admin/home.tpl.php:55
|
2501 |
-
#, fuzzy
|
2502 |
-
msgid "Manage Options"
|
2503 |
-
msgstr "إدارة الخيارات"
|
2504 |
-
|
2505 |
-
#: templates/admin/home.tpl.php:74
|
2506 |
-
msgid "Manage Paid Listings"
|
2507 |
-
msgstr "إدارة الإعلانات المدفوعة"
|
2508 |
-
|
2509 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2510 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2511 |
#: templates/login.tpl.php:71
|
@@ -2823,7 +2791,7 @@ msgstr "تم تحديث القالب"
|
|
2823 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2824 |
msgstr "الإصدار الجديد متوفر (<b>%s</b>). <a>التحديث الآن.</a>"
|
2825 |
|
2826 |
-
#: templates/admin/themes-item.tpl.php:
|
2827 |
#, fuzzy
|
2828 |
msgid "Inactive"
|
2829 |
msgstr "مفعل"
|
@@ -3867,7 +3835,13 @@ msgctxt "fees admin"
|
|
3867 |
msgid "Fee \"%s\" deleted."
|
3868 |
msgstr "الرسوم حذفت."
|
3869 |
|
3870 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3871 |
msgctxt "fees admin"
|
3872 |
msgid "Fee disabled."
|
3873 |
msgstr "رسوم معطلة."
|
@@ -3882,35 +3856,35 @@ msgctxt "fees admin"
|
|
3882 |
msgid "fees"
|
3883 |
msgstr "الرسوم"
|
3884 |
|
3885 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3886 |
#, fuzzy
|
3887 |
msgctxt "fees admin"
|
3888 |
msgid "Attributes"
|
3889 |
msgstr "سمات الحقل"
|
3890 |
|
3891 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3892 |
msgctxt "fees admin"
|
3893 |
msgid "Edit"
|
3894 |
msgstr "تحرير"
|
3895 |
|
3896 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3897 |
#, fuzzy
|
3898 |
msgctxt "fees admin"
|
3899 |
msgid "Variable"
|
3900 |
msgstr "تعطيل"
|
3901 |
|
3902 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3903 |
#, fuzzy
|
3904 |
msgctxt "fees admin"
|
3905 |
msgid "%1$s + %2$s per category"
|
3906 |
msgstr "Frais \"%s\" pour catégorie \"%s\""
|
3907 |
|
3908 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3909 |
msgctxt "fees admin"
|
3910 |
msgid "Forever"
|
3911 |
msgstr "دائما"
|
3912 |
|
3913 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3914 |
msgctxt "fees admin"
|
3915 |
msgid "%d day"
|
3916 |
msgid_plural "%d days"
|
@@ -3921,23 +3895,23 @@ msgstr[3] "%d أيام"
|
|
3921 |
msgstr[4] "%d يوم"
|
3922 |
msgstr[5] "%d يوم"
|
3923 |
|
3924 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3925 |
msgctxt "fees admin"
|
3926 |
msgid "All categories"
|
3927 |
msgstr "جميع التصنيفات"
|
3928 |
|
3929 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3930 |
msgctxt "fees admin"
|
3931 |
msgid "Sticky"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3935 |
#, fuzzy
|
3936 |
msgctxt "fees admin"
|
3937 |
msgid "Recurring"
|
3938 |
msgstr "(متكرر)"
|
3939 |
|
3940 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3941 |
#, fuzzy
|
3942 |
msgctxt "fees admin"
|
3943 |
msgid "Private"
|
@@ -4127,53 +4101,53 @@ msgctxt "listing status"
|
|
4127 |
msgid "Reported"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
#: includes/models/class-listing.php:
|
4131 |
msgctxt "listing status"
|
4132 |
msgid "Unknown"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
-
#: includes/models/class-listing.php:
|
4136 |
msgctxt "listing status"
|
4137 |
msgid "Legacy"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: includes/models/class-listing.php:
|
4141 |
#, fuzzy
|
4142 |
msgctxt "listing status"
|
4143 |
msgid "Incomplete"
|
4144 |
msgstr "إكتمل"
|
4145 |
|
4146 |
-
#: includes/models/class-listing.php:
|
4147 |
#, fuzzy
|
4148 |
msgctxt "listing status"
|
4149 |
msgid "Pending Payment"
|
4150 |
msgstr "في انتظار التخلي"
|
4151 |
|
4152 |
-
#: includes/models/class-listing.php:
|
4153 |
#, fuzzy
|
4154 |
msgctxt "listing status"
|
4155 |
msgid "Complete"
|
4156 |
msgstr "إكتمل"
|
4157 |
|
4158 |
-
#: includes/models/class-listing.php:
|
4159 |
#, fuzzy
|
4160 |
msgctxt "listing status"
|
4161 |
msgid "Pending Upgrade"
|
4162 |
msgstr " في انتظار الترقية"
|
4163 |
|
4164 |
-
#: includes/models/class-listing.php:
|
4165 |
#, fuzzy
|
4166 |
msgctxt "listing status"
|
4167 |
msgid "Expired"
|
4168 |
msgstr "منتهي الصلاحية"
|
4169 |
|
4170 |
-
#: includes/models/class-listing.php:
|
4171 |
#, fuzzy
|
4172 |
msgctxt "listing status"
|
4173 |
msgid "Pending Renewal"
|
4174 |
msgstr "مفعل + ريثما يتم التجديد"
|
4175 |
|
4176 |
-
#: includes/models/class-listing.php:
|
4177 |
#, fuzzy
|
4178 |
msgctxt "listing status"
|
4179 |
msgid "Abandoned"
|
@@ -4835,13 +4809,13 @@ msgid "Author"
|
|
4835 |
msgstr "الكاتب"
|
4836 |
|
4837 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4838 |
-
#: includes/helpers/functions/general.php:
|
4839 |
msgctxt "admin settings"
|
4840 |
msgid "Date posted"
|
4841 |
msgstr "تاريخ النشر"
|
4842 |
|
4843 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4844 |
-
#: includes/helpers/functions/general.php:
|
4845 |
msgctxt "admin settings"
|
4846 |
msgid "Date last modified"
|
4847 |
msgstr "تاريخ آخر تعديل"
|
@@ -5016,28 +4990,28 @@ msgctxt "admin settings"
|
|
5016 |
msgid "U.S. Dollar (USD)"
|
5017 |
msgstr "الدولار الأمريكي (USD)"
|
5018 |
|
5019 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5020 |
msgctxt "admin settings"
|
5021 |
msgid "Show currency symbol on the left"
|
5022 |
msgstr "إظهار رمز العملة على اليسار"
|
5023 |
|
5024 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5025 |
msgctxt "admin settings"
|
5026 |
msgid "Show currency symbol on the right"
|
5027 |
msgstr "إظهار رمز العملة على اليمين"
|
5028 |
|
5029 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5030 |
msgctxt "admin settings"
|
5031 |
msgid "Do not show currency symbol"
|
5032 |
msgstr "عدم إظهار رمز العملة"
|
5033 |
|
5034 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5035 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5036 |
msgctxt "admin settings"
|
5037 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5041 |
#, fuzzy
|
5042 |
msgctxt "admin settings"
|
5043 |
msgid ""
|
@@ -5047,122 +5021,122 @@ msgstr ""
|
|
5047 |
"الإعلانات مع الدفعات المعلقة تعد متخلى عنها بعد هذا الوقت. يمكنك أيضا "
|
5048 |
"<a>تخصيص البريد الإلكتروني</a> الذي يتلقاه الأعضاء."
|
5049 |
|
5050 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5051 |
msgctxt "admin settings"
|
5052 |
msgid "Try listing's email field first, then author's email."
|
5053 |
msgstr "جرب البريد الإلكتروني للإعلانات أولاً، ثم البريد الإلكتروني للكاتب."
|
5054 |
|
5055 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5056 |
msgctxt "admin settings"
|
5057 |
msgid "Try author's email first and then listing's email field."
|
5058 |
msgstr "جرب البريد الإلكتروني للكاتب أولاً، ثم البريد الإلكتروني للإعلانات."
|
5059 |
|
5060 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5061 |
msgctxt "admin settings"
|
5062 |
msgid "Plain (text/plain)"
|
5063 |
msgstr ""
|
5064 |
|
5065 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5066 |
msgctxt "admin settings"
|
5067 |
msgid "HTML (text/html)"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5071 |
msgctxt "admin settings"
|
5072 |
msgid "Both (multipart/alternative)"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5076 |
msgctxt "admin settings"
|
5077 |
msgid "A new listing is submitted."
|
5078 |
msgstr "يتم إضافة إعلان جديد"
|
5079 |
|
5080 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5081 |
msgctxt "admin settings"
|
5082 |
msgid "A listing is edited."
|
5083 |
msgstr "تم تحرير الإعلان"
|
5084 |
|
5085 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5086 |
msgctxt "admin settings"
|
5087 |
msgid "A listing expires."
|
5088 |
msgstr "الإعلان منتهي التاريخ"
|
5089 |
|
5090 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5091 |
#, fuzzy
|
5092 |
msgctxt "admin settings"
|
5093 |
msgid "A listing is renewed."
|
5094 |
msgstr "تم تحرير الإعلان"
|
5095 |
|
5096 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5097 |
#, fuzzy
|
5098 |
msgctxt "admin settings"
|
5099 |
msgid "A listing payment is completed."
|
5100 |
msgstr "تم تحرير الإعلان"
|
5101 |
|
5102 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5103 |
#, fuzzy
|
5104 |
msgctxt "admin settings"
|
5105 |
msgid "A listing has been reported as inappropriate."
|
5106 |
msgstr "تمت ترقية الإعلان."
|
5107 |
|
5108 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5109 |
msgctxt "admin settings"
|
5110 |
msgid "A contact message is sent to a listing's owner."
|
5111 |
msgstr "يتم إرسال رسالة اتصال لمالك الإعلان."
|
5112 |
|
5113 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5114 |
msgctxt "admin settings"
|
5115 |
msgid "Their listing is submitted."
|
5116 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
5117 |
|
5118 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5119 |
msgctxt "admin settings"
|
5120 |
msgid "Their listing is approved/published."
|
5121 |
msgstr "تمت الموافقة ونشر الإعلان الخاص بهم"
|
5122 |
|
5123 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5124 |
#, fuzzy
|
5125 |
msgctxt "admin settings"
|
5126 |
msgid "A payment for their listing is completed."
|
5127 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
5128 |
|
5129 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5130 |
#, fuzzy
|
5131 |
msgctxt "admin settings"
|
5132 |
msgid "Their listing expired or is about to expire."
|
5133 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
5134 |
|
5135 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5136 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5137 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5138 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5139 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5140 |
msgctxt "admin settings"
|
5141 |
msgid "Listing's title"
|
5142 |
msgstr "عنوان الإعلان"
|
5143 |
|
5144 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5145 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5146 |
#, fuzzy
|
5147 |
msgctxt "admin settings"
|
5148 |
msgid "Listing's fee plan name"
|
5149 |
msgstr "إنتهاء صلاحية الإعلان"
|
5150 |
|
5151 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5152 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5153 |
#, fuzzy
|
5154 |
msgctxt "admin settings"
|
5155 |
msgid "Listing's fee plan description"
|
5156 |
msgstr "تحديد رسوم الإعلان"
|
5157 |
|
5158 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5159 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5160 |
#, fuzzy
|
5161 |
msgctxt "admin settings"
|
5162 |
msgid "Listing's fee plan details"
|
5163 |
msgstr "إنتهاء صلاحية الإعلان"
|
5164 |
|
5165 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5166 |
msgctxt "admin settings"
|
5167 |
msgid ""
|
5168 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
@@ -5171,70 +5145,70 @@ msgstr ""
|
|
5171 |
"القائمة الخاصة بك \"[listing]\" متوفر الآن في [listing-url] ويمكن مشاهدتها "
|
5172 |
"من قبل العموم."
|
5173 |
|
5174 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5175 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5176 |
msgctxt "admin settings"
|
5177 |
msgid "Listing's URL"
|
5178 |
msgstr "عنوان URL الإعلان"
|
5179 |
|
5180 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5181 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5182 |
#, fuzzy
|
5183 |
msgctxt "admin settings"
|
5184 |
msgid "Listing's Access Key"
|
5185 |
msgstr "مفاتيح وصول الإعلان"
|
5186 |
|
5187 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5188 |
#, fuzzy
|
5189 |
msgctxt "admin settings"
|
5190 |
msgid "Sender's name"
|
5191 |
msgstr "إسم الكاتب"
|
5192 |
|
5193 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5194 |
#, fuzzy
|
5195 |
msgctxt "admin settings"
|
5196 |
msgid "Contact message"
|
5197 |
msgstr "رسالة اتصال الإعلان"
|
5198 |
|
5199 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5200 |
msgctxt "admin settings"
|
5201 |
msgid "Date and time the message was sent"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5205 |
#, fuzzy
|
5206 |
msgctxt "admin settings"
|
5207 |
msgid "Payment items details."
|
5208 |
msgstr "تفاصيل الدفع"
|
5209 |
|
5210 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5211 |
msgctxt "admin settings"
|
5212 |
msgid "URL where user can review and print payment receipt."
|
5213 |
msgstr ""
|
5214 |
|
5215 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5216 |
#, fuzzy
|
5217 |
msgctxt "admin settings"
|
5218 |
msgid "Gateway used to process listing's payment."
|
5219 |
msgstr "تعذر معالجة الدفع."
|
5220 |
|
5221 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5222 |
msgctxt "admin settings"
|
5223 |
msgid "Checkout URL link"
|
5224 |
msgstr "رابط URL إتمام الشراء"
|
5225 |
|
5226 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5227 |
#, fuzzy
|
5228 |
msgctxt "admin settings"
|
5229 |
msgid "Uploaded Image (no resize)"
|
5230 |
msgstr "رفع الصور"
|
5231 |
|
5232 |
-
#: includes/helpers/functions/general.php:
|
5233 |
msgctxt "admin settings"
|
5234 |
msgid "User"
|
5235 |
msgstr "عضو"
|
5236 |
|
5237 |
-
#: includes/helpers/functions/general.php:
|
5238 |
msgctxt "admin settings"
|
5239 |
msgid "User registration date"
|
5240 |
msgstr "تاريخ تسجيل العضو"
|
@@ -5505,7 +5479,7 @@ msgstr "الإعلانات"
|
|
5505 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5506 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5507 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5508 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5509 |
#: includes/admin/settings/class-settings.php:341
|
5510 |
#, fuzzy
|
5511 |
msgctxt "settings"
|
@@ -6181,19 +6155,13 @@ msgctxt "settings"
|
|
6181 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6182 |
msgstr ""
|
6183 |
|
6184 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6185 |
#, fuzzy
|
6186 |
msgctxt "settings"
|
6187 |
msgid "Fee Order"
|
6188 |
msgstr "ترتيب"
|
6189 |
|
6190 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6191 |
-
#, fuzzy
|
6192 |
-
msgctxt "settings"
|
6193 |
-
msgid "Turn On payments?"
|
6194 |
-
msgstr "تشغيل الدفعات؟"
|
6195 |
-
|
6196 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1144
|
6197 |
#, fuzzy
|
6198 |
msgctxt "settings"
|
6199 |
msgid "Put payment gateways in test mode?"
|
@@ -6205,48 +6173,48 @@ msgctxt "settings"
|
|
6205 |
msgid "Currency Code"
|
6206 |
msgstr "رمز العملة"
|
6207 |
|
6208 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6209 |
#, fuzzy
|
6210 |
msgctxt "settings"
|
6211 |
msgid "Currency Symbol"
|
6212 |
msgstr "رمز العملة"
|
6213 |
|
6214 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6215 |
#, fuzzy
|
6216 |
msgctxt "settings"
|
6217 |
msgid "Currency symbol display"
|
6218 |
msgstr "عرض رمز العملة"
|
6219 |
|
6220 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6221 |
msgctxt "settings"
|
6222 |
msgid "Include fee description in receipt?"
|
6223 |
msgstr ""
|
6224 |
|
6225 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6226 |
#, fuzzy
|
6227 |
msgctxt "settings"
|
6228 |
msgid "Thank you for payment message"
|
6229 |
msgstr "رسالة الشكر على الدفع"
|
6230 |
|
6231 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6232 |
#, fuzzy
|
6233 |
msgctxt "settings"
|
6234 |
msgid "Ask users to come back for abandoned payments?"
|
6235 |
msgstr "أطلب من الأعضاء العودة للمدفوعات المتخلى عنها؟"
|
6236 |
|
6237 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6238 |
#, fuzzy
|
6239 |
msgctxt "settings"
|
6240 |
msgid "Listing abandonment threshold (hours)"
|
6241 |
msgstr "عتبة التخلي على الإعلان (ساعات)"
|
6242 |
|
6243 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6244 |
#, fuzzy
|
6245 |
msgctxt "settings"
|
6246 |
msgid "Display email address fields publicly?"
|
6247 |
msgstr "عرض حقول عنوان البريد الإلكتروني علنا؟"
|
6248 |
|
6249 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6250 |
#, fuzzy
|
6251 |
msgctxt "settings"
|
6252 |
msgid ""
|
@@ -6258,13 +6226,13 @@ msgstr ""
|
|
6258 |
"لأن هذا يزيد من الرسائل المزعجة إلى العنوان ويسمح للمتطفلين بجمع عنوانين "
|
6259 |
"البريد للاستخدام في المستقبل."
|
6260 |
|
6261 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6262 |
#, fuzzy
|
6263 |
msgctxt "settings"
|
6264 |
msgid "How to determine the listing's email address?"
|
6265 |
msgstr "كيفية تحديد عنوان البريد الإلكتروني في الإعلان؟"
|
6266 |
|
6267 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6268 |
#, fuzzy
|
6269 |
msgctxt "settings"
|
6270 |
msgid ""
|
@@ -6274,12 +6242,12 @@ msgstr ""
|
|
6274 |
"هذا يؤثر على رسائل البريد الإلكتروني المرسلة إلى مالكي الإعلانات عبر نموذج "
|
6275 |
"الاتصال أو عندما ينتهي تاريخ الإعلانات."
|
6276 |
|
6277 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6278 |
msgctxt "settings"
|
6279 |
msgid "Email Content-Type header"
|
6280 |
msgstr ""
|
6281 |
|
6282 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6283 |
msgctxt "settings"
|
6284 |
msgid ""
|
6285 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -6288,43 +6256,43 @@ msgid ""
|
|
6288 |
"then \"Both\"."
|
6289 |
msgstr ""
|
6290 |
|
6291 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6292 |
#, fuzzy
|
6293 |
msgctxt "settings"
|
6294 |
msgid "Templates"
|
6295 |
msgstr "قوالب البريد الإلكتروني"
|
6296 |
|
6297 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6298 |
#, fuzzy
|
6299 |
msgctxt "settings"
|
6300 |
msgid "Email confirmation message"
|
6301 |
msgstr "رسالة تأكيد البريد الإلكتروني"
|
6302 |
|
6303 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6304 |
#, fuzzy
|
6305 |
msgctxt "settings"
|
6306 |
msgid "Sent after a listing has been submitted."
|
6307 |
msgstr "ترسل بعد أن يضاف الإعلان."
|
6308 |
|
6309 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6310 |
#, fuzzy
|
6311 |
msgctxt "settings"
|
6312 |
msgid "Listing published message"
|
6313 |
msgstr "رسالة نشر الإعلان"
|
6314 |
|
6315 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6316 |
#, fuzzy
|
6317 |
msgctxt "settings"
|
6318 |
msgid "Sent when the listing has been published or approved by an admin."
|
6319 |
msgstr "ترسل عندما يتم نشر الإعلان أو الموافقة عليه من طرف المدير."
|
6320 |
|
6321 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6322 |
#, fuzzy
|
6323 |
msgctxt "settings"
|
6324 |
msgid "Listing Contact Message"
|
6325 |
msgstr "رسالة اتصال الإعلان"
|
6326 |
|
6327 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6328 |
#, fuzzy
|
6329 |
msgctxt "settings"
|
6330 |
msgid ""
|
@@ -6334,25 +6302,25 @@ msgstr ""
|
|
6334 |
"ترسل إلى مالكي الإعلانات عندما يستخدم شخص ما نموذج جهة الاتصال في صفحات "
|
6335 |
"الإعلانات الخاصة بهم."
|
6336 |
|
6337 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6338 |
#, fuzzy
|
6339 |
msgctxt "settings"
|
6340 |
msgid "Payment completed message"
|
6341 |
msgstr "رسالة تذكير بالتخلي عن الدفع"
|
6342 |
|
6343 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6344 |
#, fuzzy
|
6345 |
msgctxt "settings"
|
6346 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6347 |
msgstr "ترسل أحيانا بعد أن يتخلي الأعضاء عن الدفعة المنتظرة."
|
6348 |
|
6349 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6350 |
#, fuzzy
|
6351 |
msgctxt "settings"
|
6352 |
msgid "Payment abandoned reminder message"
|
6353 |
msgstr "رسالة تذكير بالتخلي عن الدفع"
|
6354 |
|
6355 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6356 |
msgctxt "settings"
|
6357 |
msgid "Cropped"
|
6358 |
msgstr ""
|
@@ -6368,18 +6336,18 @@ msgctxt "settings"
|
|
6368 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6369 |
msgstr ""
|
6370 |
|
6371 |
-
#: includes/licensing.php:
|
6372 |
#, fuzzy
|
6373 |
msgctxt "settings"
|
6374 |
msgid "Themes"
|
6375 |
msgstr "القوالب"
|
6376 |
|
6377 |
-
#: includes/licensing.php:
|
6378 |
msgctxt "settings"
|
6379 |
msgid "Please wait..."
|
6380 |
msgstr ""
|
6381 |
|
6382 |
-
#: includes/licensing.php:
|
6383 |
#, fuzzy
|
6384 |
msgctxt "settings"
|
6385 |
msgid "Deauthorize"
|
@@ -6435,28 +6403,28 @@ msgctxt "themes"
|
|
6435 |
msgid "Could not delete theme directory. Check permissions."
|
6436 |
msgstr "تعذر حذف مجلد القالب. تحقق من الصلاحيات."
|
6437 |
|
6438 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6439 |
msgctxt "themes"
|
6440 |
msgid "Please upload a valid theme file."
|
6441 |
msgstr "المرجو رفع ملف قالب صالح."
|
6442 |
|
6443 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6444 |
msgctxt "themes"
|
6445 |
msgid "Could not move \"%s\" to a temporary directory."
|
6446 |
msgstr "لا يمكن نقل \"%s\" إلى مجلد مؤقت."
|
6447 |
|
6448 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6449 |
msgctxt "themes"
|
6450 |
msgid "Activate your <a>license key</a> to use this theme."
|
6451 |
msgstr "فعِّل <a>مفتاح الترخيص</a> الخاص بك لاستخدام هذا القالب."
|
6452 |
|
6453 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6454 |
#, fuzzy
|
6455 |
msgctxt "themes"
|
6456 |
msgid "Invalid theme ID"
|
6457 |
msgstr "معرف حقل غير صالح"
|
6458 |
|
6459 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6460 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6461 |
msgctxt "themes"
|
6462 |
msgid "Could not update theme: %s"
|
@@ -6889,24 +6857,24 @@ msgid "Trash"
|
|
6889 |
msgstr "سلة المهملات"
|
6890 |
|
6891 |
#. translators: %s: url shortcode
|
6892 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6893 |
msgctxt "contact email"
|
6894 |
msgid "You have received a reply from your listing at %s."
|
6895 |
msgstr "تلقيت ردا من الإعلان الخاص بك في %s."
|
6896 |
|
6897 |
#. translators: %s: name shortcode
|
6898 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6899 |
msgctxt "contact email"
|
6900 |
msgid "Name: %s"
|
6901 |
msgstr "الإسم: %s"
|
6902 |
|
6903 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6904 |
msgctxt "contact email"
|
6905 |
msgid "Message:"
|
6906 |
msgstr "الرسالة:"
|
6907 |
|
6908 |
#. translators: %s: date shortcode
|
6909 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6910 |
msgctxt "contact email"
|
6911 |
msgid "Time: %s"
|
6912 |
msgstr "الوقت: %s"
|
@@ -7207,37 +7175,37 @@ msgctxt "listing"
|
|
7207 |
msgid "Add New Listing"
|
7208 |
msgstr "إضافة إعلان جديد"
|
7209 |
|
7210 |
-
#: includes/models/class-listing.php:
|
7211 |
#, fuzzy
|
7212 |
msgctxt "listing"
|
7213 |
msgid "Listing has no registered payments"
|
7214 |
msgstr "إنتهاء صلاحية الإعلان"
|
7215 |
|
7216 |
-
#: includes/models/class-listing.php:
|
7217 |
#, fuzzy
|
7218 |
msgctxt "listing"
|
7219 |
msgid "Can't delete payment"
|
7220 |
msgstr "رفض الدفع"
|
7221 |
|
7222 |
-
#: includes/models/class-listing.php:
|
7223 |
#, fuzzy
|
7224 |
msgctxt "listing"
|
7225 |
msgid "Listing expired"
|
7226 |
msgstr "الإعلان منتهي التاريخ"
|
7227 |
|
7228 |
-
#: includes/models/class-listing.php:
|
7229 |
#, fuzzy
|
7230 |
msgctxt "listing"
|
7231 |
msgid "(Unavailable Plan)"
|
7232 |
msgstr "(رسم غير متوفر)"
|
7233 |
|
7234 |
-
#: includes/models/class-listing.php:
|
7235 |
#, fuzzy
|
7236 |
msgctxt "listing"
|
7237 |
msgid "Plan \"%s\" (recurring)"
|
7238 |
msgstr "(متكرر)"
|
7239 |
|
7240 |
-
#: includes/models/class-listing.php:
|
7241 |
msgctxt "listing"
|
7242 |
msgid "Plan \"%s\""
|
7243 |
msgstr ""
|
@@ -7376,7 +7344,7 @@ msgctxt "payment-gateways"
|
|
7376 |
msgid "Enable %s?"
|
7377 |
msgstr "تفعيل"
|
7378 |
|
7379 |
-
#: includes/class-payment-gateways.php:
|
7380 |
#, fuzzy
|
7381 |
msgctxt "payment-gateways"
|
7382 |
msgid ""
|
@@ -7387,24 +7355,11 @@ msgstr ""
|
|
7387 |
"متوفرة حتى يتم إصلاح المشاكل التالية <b>%s</b>.<br/> تحقق من <a href=\"%s"
|
7388 |
"\">إعدادات دفع</a> ."
|
7389 |
|
7390 |
-
#: includes/class-payment-gateways.php:
|
7391 |
msgctxt "payment-gateways"
|
7392 |
msgid "Please check the <link>payment settings</link>."
|
7393 |
msgstr ""
|
7394 |
|
7395 |
-
#: includes/class-payment-gateways.php:142
|
7396 |
-
#, fuzzy
|
7397 |
-
msgctxt "payment-gateways"
|
7398 |
-
msgid ""
|
7399 |
-
"You have payments turned on but no gateway is active and properly "
|
7400 |
-
"configured. Go to <link>Manage Options - Payment</link> to change the "
|
7401 |
-
"payment settings. Until you change this, the directory will operate in "
|
7402 |
-
"<i>Free Mode</i>."
|
7403 |
-
msgstr ""
|
7404 |
-
"لديك مدفوعات مشغلة ولكن لا توجد بوابة مفعلة ومعدة بشكل صحيح. إذهب إلى <a "
|
7405 |
-
"href=\"%s\">إدارة الخيارات - الدفع</a> لتغيير إعدادات الدفع. حتى تقوم بتغيير "
|
7406 |
-
"ذلك، فإن الدليل سيعمل بـ <i>الوضع المجاني.</i>"
|
7407 |
-
|
7408 |
#: includes/class-recaptcha.php:32
|
7409 |
msgctxt "recaptcha"
|
7410 |
msgid "The reCAPTCHA wasn't entered correctly."
|
@@ -7627,7 +7582,7 @@ msgstr ""
|
|
7627 |
"إعلانات بداخلها. هذا يعني أنها لن تظهر على الواجهة الأمامية للموقع الخاص بك. "
|
7628 |
"إذا كنت لا تريد ذلك، إضغط <a>هنا</a> لتغيير الإعداد."
|
7629 |
|
7630 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7631 |
msgctxt "templates"
|
7632 |
msgid ""
|
7633 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
@@ -7636,27 +7591,27 @@ msgstr ""
|
|
7636 |
"<b>المشاهدة غير متوفرة</b>. هل لديك \"تعطيل إضافة إعلان من واجهة الموقع؟\" "
|
7637 |
"محددة في الإعدادات؟"
|
7638 |
|
7639 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7640 |
msgctxt "templates"
|
7641 |
msgid ""
|
7642 |
"Listing submission has been disabled. Contact the administrator for details."
|
7643 |
msgstr ""
|
7644 |
|
7645 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7646 |
msgctxt "templates"
|
7647 |
msgid ""
|
7648 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7649 |
"submit a listing. %s to create a fee plan"
|
7650 |
msgstr ""
|
7651 |
|
7652 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7653 |
msgctxt "templates"
|
7654 |
msgid ""
|
7655 |
"Listing submission is not available at the moment. Contact the administrator "
|
7656 |
"for details."
|
7657 |
msgstr ""
|
7658 |
|
7659 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7660 |
msgctxt "templates"
|
7661 |
msgid ""
|
7662 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -7664,18 +7619,18 @@ msgid ""
|
|
7664 |
"an existing field"
|
7665 |
msgstr ""
|
7666 |
|
7667 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7668 |
msgctxt "templates"
|
7669 |
msgid "Please agree to the Terms and Conditions."
|
7670 |
msgstr "يرجى الموافقة على الشروط والأحكام."
|
7671 |
|
7672 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7673 |
#, fuzzy
|
7674 |
msgctxt "templates"
|
7675 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7676 |
msgstr "أوافق على الشروط والأحكام"
|
7677 |
|
7678 |
-
#: includes/helpers/functions/general.php:
|
7679 |
#, fuzzy
|
7680 |
msgctxt "templates"
|
7681 |
msgid "Return to results"
|
@@ -8022,7 +7977,7 @@ msgctxt "submit listing"
|
|
8022 |
msgid "You can't edit this listing."
|
8023 |
msgstr "التصنيفات لهذا الإعلان"
|
8024 |
|
8025 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8026 |
msgctxt "submit listing"
|
8027 |
msgid ""
|
8028 |
"This listing can't be edited at this time because it has no fee plan "
|
@@ -8030,32 +7985,32 @@ msgid ""
|
|
8030 |
"to a fee plan."
|
8031 |
msgstr ""
|
8032 |
|
8033 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8034 |
msgctxt "submit listing"
|
8035 |
msgid ""
|
8036 |
"This listing can't be edited at this time. Please try again later or contact "
|
8037 |
"the admin if the problem persists."
|
8038 |
msgstr ""
|
8039 |
|
8040 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8041 |
#, fuzzy
|
8042 |
msgctxt "submit listing"
|
8043 |
msgid "You're logged in as admin, payment will be skipped."
|
8044 |
msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
|
8045 |
|
8046 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8047 |
#, fuzzy
|
8048 |
msgctxt "submit listing"
|
8049 |
msgid "Category selection"
|
8050 |
msgstr "إختيار تصنيف"
|
8051 |
|
8052 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8053 |
#, fuzzy
|
8054 |
msgctxt "submit listing"
|
8055 |
msgid "Category & plan selection"
|
8056 |
msgstr "إختيار تصنيف"
|
8057 |
|
8058 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8059 |
#, fuzzy
|
8060 |
msgctxt "submit listing"
|
8061 |
msgid "Can not submit a listing at this moment. Please try again later."
|
@@ -8063,42 +8018,42 @@ msgstr ""
|
|
8063 |
"لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
|
8064 |
"أخرى لاحقاً."
|
8065 |
|
8066 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8067 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8068 |
#, fuzzy
|
8069 |
msgctxt "submit listing"
|
8070 |
msgid "Please select a category."
|
8071 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
8072 |
|
8073 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8074 |
msgctxt "submit listing"
|
8075 |
msgid "Please choose a valid category for your plan."
|
8076 |
msgstr ""
|
8077 |
|
8078 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8079 |
#, fuzzy
|
8080 |
msgctxt "submit listing"
|
8081 |
msgid "Please choose a valid fee plan for your category selection."
|
8082 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
8083 |
|
8084 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8085 |
#, fuzzy
|
8086 |
msgctxt "submit listing"
|
8087 |
msgid "Please enter your desired username."
|
8088 |
msgstr "يرجى إدخال إسمك."
|
8089 |
|
8090 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8091 |
#, fuzzy
|
8092 |
msgctxt "submit listing"
|
8093 |
msgid "Please enter the e-mail for your new account."
|
8094 |
msgstr "يرجى إدخال إسمك."
|
8095 |
|
8096 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8097 |
msgctxt "submit listing"
|
8098 |
msgid "The username you chose is already in use. Please use a different one."
|
8099 |
msgstr ""
|
8100 |
|
8101 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8102 |
msgctxt "submit listing"
|
8103 |
msgid "The e-mail address you chose for your account is already in use."
|
8104 |
msgstr ""
|
@@ -8109,7 +8064,7 @@ msgctxt "submit listing"
|
|
8109 |
msgid "Listing submitted by admin. Payment skipped."
|
8110 |
msgstr "Poster annonce(paiement initial)"
|
8111 |
|
8112 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8113 |
msgctxt "listing submit"
|
8114 |
msgid ""
|
8115 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8437,19 +8392,19 @@ msgctxt "default category name"
|
|
8437 |
msgid "General"
|
8438 |
msgstr "عام"
|
8439 |
|
8440 |
-
#: includes/licensing.php:
|
8441 |
msgctxt "licensing"
|
8442 |
msgid "Could not contact licensing server"
|
8443 |
msgstr "لا يمكن الاتصال بخادم الترخيص"
|
8444 |
|
8445 |
-
#: includes/licensing.php:
|
8446 |
msgctxt "licensing"
|
8447 |
msgid ""
|
8448 |
"It was not possible to establish a connection with Business Directory's "
|
8449 |
"server. cURL was not found in your system"
|
8450 |
msgstr ""
|
8451 |
|
8452 |
-
#: includes/licensing.php:
|
8453 |
msgctxt "licensing"
|
8454 |
msgid ""
|
8455 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8458,7 +8413,7 @@ msgid ""
|
|
8458 |
"1.0.1c)."
|
8459 |
msgstr ""
|
8460 |
|
8461 |
-
#: includes/licensing.php:
|
8462 |
msgctxt "licensing"
|
8463 |
msgid ""
|
8464 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8466,47 +8421,47 @@ msgid ""
|
|
8466 |
"services using the latest security standards."
|
8467 |
msgstr ""
|
8468 |
|
8469 |
-
#: includes/licensing.php:
|
8470 |
msgctxt "licensing"
|
8471 |
msgid ""
|
8472 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8473 |
"Include this message if necessary"
|
8474 |
msgstr ""
|
8475 |
|
8476 |
-
#: includes/licensing.php:
|
8477 |
msgctxt "licensing"
|
8478 |
msgid ""
|
8479 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8480 |
"Include this message if necessary."
|
8481 |
msgstr ""
|
8482 |
|
8483 |
-
#: includes/licensing.php:
|
8484 |
msgctxt "licensing"
|
8485 |
msgid "The server returned a 403 Forbidden error."
|
8486 |
msgstr ""
|
8487 |
|
8488 |
-
#: includes/licensing.php:
|
8489 |
msgctxt "licensing"
|
8490 |
msgid "Could not activate license: %s."
|
8491 |
msgstr "لا يمكن تفعيل الترخيص: %s."
|
8492 |
|
8493 |
-
#: includes/licensing.php:
|
8494 |
msgctxt "licensing"
|
8495 |
msgid "License activated"
|
8496 |
msgstr "تم تفعيل ترخيص"
|
8497 |
|
8498 |
-
#: includes/licensing.php:
|
8499 |
msgctxt "licensing"
|
8500 |
msgid "Could not deactivate license: %s."
|
8501 |
msgstr "لا يمكن إلغاء الترخيص: %s."
|
8502 |
|
8503 |
-
#: includes/licensing.php:
|
8504 |
msgctxt "licensing"
|
8505 |
msgid "License deactivated"
|
8506 |
msgstr "تم إلغاء تفعيل الترخيص"
|
8507 |
|
8508 |
#. translators: "<module-name>" version <version-number> is not...
|
8509 |
-
#: includes/licensing.php:
|
8510 |
msgctxt "deprecation"
|
8511 |
msgid ""
|
8512 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8531,17 +8486,17 @@ msgstr[3] "الصور المسموح بها"
|
|
8531 |
msgstr[4] "الصور المسموح بها"
|
8532 |
msgstr[5] "الصور المسموح بها"
|
8533 |
|
8534 |
-
#: includes/models/class-fee-plan.php:
|
8535 |
msgctxt "fees-api"
|
8536 |
msgid "Fee label is required."
|
8537 |
msgstr "رسوم التسمية مطلوبة."
|
8538 |
|
8539 |
-
#: includes/models/class-fee-plan.php:
|
8540 |
msgctxt "fees-api"
|
8541 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8542 |
msgstr "يجب أن تكون رسوم مدة الإعلان بعدد أقل من 10 سنوات (3650 يوما)."
|
8543 |
|
8544 |
-
#: includes/models/class-fee-plan.php:
|
8545 |
msgctxt "fees-api"
|
8546 |
msgid ""
|
8547 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
@@ -8549,7 +8504,7 @@ msgid ""
|
|
8549 |
"<a>fee plan</a> appropriately."
|
8550 |
msgstr ""
|
8551 |
|
8552 |
-
#: includes/models/class-fee-plan.php:
|
8553 |
msgctxt "fees-api"
|
8554 |
msgid ""
|
8555 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
@@ -8628,17 +8583,17 @@ msgctxt "utils"
|
|
8628 |
msgid "Unkown error while uploading file."
|
8629 |
msgstr "حدث خطأ مجهول أثناء رفع الملف."
|
8630 |
|
8631 |
-
#: includes/utils.php:
|
8632 |
msgctxt "utils"
|
8633 |
msgid "Error while uploading file"
|
8634 |
msgstr "حدث خطأ أثناء رفع الملف."
|
8635 |
|
8636 |
-
#: includes/utils.php:
|
8637 |
msgctxt "utils"
|
8638 |
msgid "File type \"%s\" is not allowed"
|
8639 |
msgstr "غير مسموح بنوع الملف \"%s\""
|
8640 |
|
8641 |
-
#: includes/utils.php:
|
8642 |
msgctxt "utils"
|
8643 |
msgid ""
|
8644 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8746,45 +8701,6 @@ msgctxt "admin forms"
|
|
8746 |
msgid "required"
|
8747 |
msgstr "مطلوب"
|
8748 |
|
8749 |
-
#: templates/admin/home.tpl.php:12
|
8750 |
-
msgctxt "admin home"
|
8751 |
-
msgid "Welcome to Business Directory Plugin. You are using %s."
|
8752 |
-
msgstr "مرحبا بكم في إضافة دليل الأعمال. أنت تستخدم %s."
|
8753 |
-
|
8754 |
-
#: templates/admin/home.tpl.php:15
|
8755 |
-
msgctxt "admin home"
|
8756 |
-
msgid ""
|
8757 |
-
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
8758 |
-
"let's jump right in!"
|
8759 |
-
msgstr ""
|
8760 |
-
"شكرا لاختيارك لنا. هناك ربما الكثير الذي تريد القيام به، لذلك هيا بنا!"
|
8761 |
-
|
8762 |
-
#: templates/admin/home.tpl.php:28
|
8763 |
-
msgctxt "admin home"
|
8764 |
-
msgid ""
|
8765 |
-
"Our complete documentation is <a>here</a> which we encourage you to use "
|
8766 |
-
"while setting things up."
|
8767 |
-
msgstr ""
|
8768 |
-
"لدينا وثائق شرح كاملة <a>هنا</a> ونشجعك على استخدامها أثناء إعداد الإضافة."
|
8769 |
-
|
8770 |
-
#: templates/admin/home.tpl.php:36
|
8771 |
-
msgctxt "admin home"
|
8772 |
-
msgid ""
|
8773 |
-
"We have some quick-start scenarios that you will find useful regarding setup "
|
8774 |
-
"and configuration <a>here</a>."
|
8775 |
-
msgstr ""
|
8776 |
-
"لدينا بعض سيناريوهات البداية السريعة التي سوف تجدها مفيدة فيما يتعلق "
|
8777 |
-
"بالتثبيت والإعداد<a> هنا</a>."
|
8778 |
-
|
8779 |
-
#: templates/admin/home.tpl.php:45
|
8780 |
-
msgctxt "admin home"
|
8781 |
-
msgid ""
|
8782 |
-
"If you have questions, please post a comment on <a>support forum</a> and "
|
8783 |
-
"we'll answer it within 24 hours most days."
|
8784 |
-
msgstr ""
|
8785 |
-
"إذا كانت لديك أسئلة، المرجو نشر تعليق في <a>منتدى الدعم</a> وسوف نقوم "
|
8786 |
-
"بالإجابة عليه في غضون 24 ساعة معظم الأيام."
|
8787 |
-
|
8788 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8789 |
#, fuzzy
|
8790 |
msgctxt "admin infometabox"
|
@@ -9065,6 +8981,46 @@ msgctxt "send-access-keys"
|
|
9065 |
msgid "Continue"
|
9066 |
msgstr "متابعة"
|
9067 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9068 |
#, fuzzy
|
9069 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
9070 |
#~ msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-02 19:38:07+00:00\n"
|
9 |
"PO-Revision-Date: 2017-01-16 17:47-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
90 |
msgid "Directory"
|
91 |
msgstr "الدليل"
|
92 |
|
93 |
+
#: includes/admin/class-admin.php:312
|
94 |
msgid "Fee Plans"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: includes/admin/class-admin.php:315
|
98 |
#, fuzzy
|
99 |
msgid "Form Fields"
|
100 |
msgstr "حقول الاستمارة"
|
101 |
|
102 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
103 |
+
#: includes/licensing.php:227
|
104 |
#, fuzzy
|
105 |
msgid "Modules"
|
106 |
msgstr "(جميع الوحدات)"
|
227 |
msgstr "القدر"
|
228 |
|
229 |
#: includes/admin/controllers/class-admin-fees.php:49
|
230 |
+
#: includes/admin/helpers/tables/class-fees-table.php:65
|
231 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
232 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
233 |
#, fuzzy
|
265 |
msgstr "الرسوم حدثت."
|
266 |
|
267 |
#: includes/admin/controllers/class-admin-listings.php:185
|
268 |
+
#: includes/controllers/pages/class-submit-listing.php:518
|
269 |
#: templates/email/listing-reported.tpl.php:7
|
270 |
msgid "Listing Information"
|
271 |
msgstr "معلومات حول الإعلان"
|
318 |
"الأعمال للقيام بذلك نيابة عنك تلقائياً."
|
319 |
|
320 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
321 |
+
#: includes/controllers/pages/class-submit-listing.php:848
|
322 |
#, fuzzy
|
323 |
msgid "Go to \"Form Fields\""
|
324 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
325 |
|
326 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
327 |
+
#: includes/helpers/functions/general.php:1366
|
328 |
+
#: includes/helpers/functions/general.php:1371
|
329 |
msgid "Go back"
|
330 |
msgstr ""
|
331 |
|
437 |
msgstr "لماذا قمت بحذف إضافة دليل الأعمال؟"
|
438 |
|
439 |
#: includes/admin/controllers/class-settings-admin.php:536
|
440 |
+
#: includes/admin/helpers/tables/class-fees-table.php:174
|
441 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
442 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
443 |
#: templates/admin/payments-note.tpl.php:14
|
444 |
+
#: templates/admin/themes-item.tpl.php:66
|
445 |
#: templates/parts/listing-buttons.tpl.php:31
|
446 |
#: templates/parts/listing-buttons.tpl.php:65
|
447 |
#, fuzzy
|
495 |
msgstr "تم التنصيب"
|
496 |
|
497 |
#: includes/admin/helpers/class-modules-list.php:187
|
498 |
+
#: includes/admin/helpers/tables/class-fees-table.php:284
|
499 |
+
#: templates/admin/themes-item.tpl.php:41
|
500 |
#, fuzzy
|
501 |
msgid "Active"
|
502 |
msgstr "مفعل"
|
508 |
|
509 |
#: includes/admin/helpers/class-modules-list.php:225
|
510 |
#: includes/controllers/class-smtp.php:317
|
511 |
+
#: templates/admin/themes-item.tpl.php:61
|
512 |
#, fuzzy
|
513 |
msgid "Activate"
|
514 |
msgstr "قم بالتفعيل"
|
515 |
|
516 |
#: includes/admin/helpers/class-modules-list.php:235
|
517 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:275
|
518 |
#, fuzzy
|
519 |
msgid "Upgrade Now"
|
520 |
msgstr "ترقية إلى %s"
|
532 |
|
533 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
534 |
#, fuzzy
|
535 |
+
msgid "Order"
|
536 |
+
msgstr "ترتيب"
|
537 |
+
|
538 |
+
#: includes/admin/helpers/tables/class-fees-table.php:62
|
539 |
+
#, fuzzy
|
540 |
msgid "Plan Details"
|
541 |
msgstr "تفاصيل الخطة"
|
542 |
|
543 |
+
#: includes/admin/helpers/tables/class-fees-table.php:63
|
544 |
#, fuzzy
|
545 |
msgid "Pricing"
|
546 |
msgstr "السعر"
|
547 |
|
548 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
549 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
550 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
551 |
#: includes/helpers/class-app.php:92
|
553 |
msgid "Listings"
|
554 |
msgstr "الإعلانات"
|
555 |
|
556 |
+
#: includes/admin/helpers/tables/class-fees-table.php:153
|
557 |
#, fuzzy
|
558 |
msgid "Disable"
|
559 |
msgstr "تعطيل"
|
560 |
|
561 |
+
#: includes/admin/helpers/tables/class-fees-table.php:159
|
562 |
#, fuzzy
|
563 |
msgid "Enable"
|
564 |
msgstr "تفعيل"
|
565 |
|
566 |
+
#: includes/admin/helpers/tables/class-fees-table.php:181
|
567 |
msgid "ID: %s"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
571 |
#, fuzzy
|
572 |
msgid "Paid Plan"
|
573 |
msgstr "تم الدفع"
|
574 |
|
575 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
576 |
#, fuzzy
|
577 |
msgid "Free Plan"
|
578 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
579 |
|
580 |
+
#: includes/admin/helpers/tables/class-fees-table.php:219
|
581 |
#, fuzzy
|
582 |
msgid "%1$s for %2$s"
|
583 |
msgstr "%s (ex. %s)"
|
584 |
|
585 |
+
#: includes/admin/helpers/tables/class-fees-table.php:282
|
|
|
586 |
#, fuzzy
|
587 |
msgid "Disabled"
|
588 |
msgstr "معطل"
|
589 |
|
590 |
+
#: includes/admin/helpers/tables/class-fees-table.php:288
|
591 |
#: includes/helpers/functions/templates-ui.php:431
|
592 |
#, fuzzy
|
593 |
msgid "Default"
|
630 |
msgstr "الجداول المفقودة: %s"
|
631 |
|
632 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
633 |
+
#: includes/controllers/pages/class-submit-listing.php:1252
|
634 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
635 |
#: templates/listing-contactform.tpl.php:33
|
636 |
#: templates/listing-flagging-form.tpl.php:39
|
679 |
|
680 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
681 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
682 |
+
#: includes/controllers/pages/class-submit-listing.php:531
|
683 |
#, fuzzy
|
684 |
msgid "Terms and Conditions"
|
685 |
msgstr "شروط وأحكام"
|
905 |
msgid "URL"
|
906 |
msgstr "رابط URL"
|
907 |
|
908 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1226
|
909 |
#, fuzzy
|
910 |
msgid "Thank you for your payment."
|
911 |
msgstr "رسالة الشكر على الدفع"
|
912 |
|
913 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1254
|
914 |
msgid ""
|
915 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
916 |
"collect payments in this currency."
|
924 |
msgstr[4] ""
|
925 |
msgstr[5] ""
|
926 |
|
927 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
928 |
#, fuzzy
|
929 |
msgid "Email Notifications"
|
930 |
msgstr "تنبيهات البريد الإلكتروني"
|
931 |
|
932 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1347
|
933 |
#, fuzzy
|
934 |
msgid "Notify admin via email when..."
|
935 |
msgstr "إبلاغ المدير عن طريق البريد الإلكتروني عندما..."
|
936 |
|
937 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1365
|
938 |
#, fuzzy
|
939 |
msgid "CC this email address too"
|
940 |
msgstr "إرسال نسخة من الرسالة الى عنوان البريد الإلكتروني هذا أيضا"
|
941 |
|
942 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
943 |
#, fuzzy
|
944 |
msgid ""
|
945 |
"You can modify the text template used for most of these emails in the "
|
947 |
msgstr ""
|
948 |
"يمكنك تعديل قالب النص المستخدم لمعظم رسائل البريد الإلكتروني هذه أدناه."
|
949 |
|
950 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1379
|
951 |
#, fuzzy
|
952 |
msgid "Notify users via email when..."
|
953 |
msgstr "إعلام الأعضاء عن طريق البريد الإلكتروني عندما..."
|
954 |
|
955 |
#. translators: %s: email shortcode
|
956 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1446
|
957 |
#, fuzzy
|
958 |
msgid "Email: %s"
|
959 |
msgstr "البريد الإلكتروني: %s"
|
960 |
|
961 |
#. translators: %s: phone shortcode
|
962 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1449
|
963 |
#, fuzzy
|
964 |
msgid "Phone Number: %s"
|
965 |
msgstr "رقم الهاتف"
|
966 |
|
967 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
968 |
#, fuzzy
|
969 |
msgid "Sender's email address"
|
970 |
msgstr "إدخال بريدك إلكتروني"
|
971 |
|
972 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1462
|
973 |
#, fuzzy
|
974 |
msgid "Sender's phone number"
|
975 |
msgstr "إسم الكاتب"
|
976 |
|
977 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1526
|
978 |
msgid "Renewal and expiration"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1662
|
982 |
#: templates/admin/uninstall-complete.tpl.php:4
|
983 |
#, fuzzy
|
984 |
msgid "Uninstall"
|
1083 |
|
1084 |
#. translators: %s: Status name
|
1085 |
#: includes/admin/views/modules/list.php:63
|
1086 |
+
#: templates/admin/themes-item.tpl.php:50
|
1087 |
#, fuzzy
|
1088 |
msgid "Status: %s"
|
1089 |
msgstr "الحالة"
|
1276 |
msgid "View All Listings"
|
1277 |
msgstr "مشاهدة جميع الإعلانات"
|
1278 |
|
1279 |
+
#: includes/class-payment-gateways.php:144
|
|
|
1280 |
msgid ""
|
1281 |
+
"You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s "
|
1282 |
+
"to set up a gateway. Until you do this, only free plans will be available."
|
|
|
1283 |
msgstr ""
|
1284 |
|
1285 |
#: includes/class-wpbdp.php:369
|
1303 |
"admin."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:322
|
1307 |
#, fuzzy
|
1308 |
msgid "Could not find image ID"
|
1309 |
msgstr "تعذر تحديث القالب : %s"
|
1510 |
"Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
|
1511 |
"publiée."
|
1512 |
|
1513 |
+
#: includes/controllers/pages/class-submit-listing.php:564
|
1514 |
#, fuzzy
|
1515 |
msgid "Listing Images"
|
1516 |
msgstr "صور الإعلانات"
|
1517 |
|
1518 |
+
#: includes/controllers/pages/class-submit-listing.php:632
|
1519 |
msgid "Account Creation"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: includes/controllers/pages/class-submit-listing.php:831
|
1523 |
#, fuzzy
|
1524 |
msgid "Go to \"Fee Plans\""
|
1525 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
1526 |
|
1527 |
+
#: includes/controllers/pages/class-submit-listing.php:887
|
1528 |
#, fuzzy
|
1529 |
msgid "Please choose a fee plan."
|
1530 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
1531 |
|
1532 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1533 |
msgid "Please check the form for errors, correct them and submit again."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: includes/controllers/pages/class-submit-listing.php:1236
|
1537 |
msgid "Create a user account on this site"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: includes/controllers/pages/class-submit-listing.php:1243
|
1541 |
#, fuzzy
|
1542 |
msgid "Username"
|
1543 |
msgstr "عضو"
|
1544 |
|
1545 |
+
#: includes/controllers/pages/class-submit-listing.php:1265
|
1546 |
#, fuzzy
|
1547 |
msgid "Clear Form"
|
1548 |
msgstr "مسح"
|
1860 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: includes/helpers/functions/general.php:568
|
|
|
1864 |
msgid "Free"
|
1865 |
msgstr "مجاني"
|
1866 |
|
1875 |
msgstr "إدارة الإعلانات المدفوعة"
|
1876 |
|
1877 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1878 |
+
#: includes/licensing.php:150
|
1879 |
msgid ""
|
1880 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1881 |
"get updates."
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: includes/licensing.php:203 includes/licensing.php:206
|
1885 |
#, fuzzy
|
1886 |
msgid "Licenses"
|
1887 |
msgstr "تراخيص"
|
1888 |
|
1889 |
+
#: includes/licensing.php:273
|
1890 |
msgid "Build more powerful directories"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: includes/licensing.php:274
|
1894 |
msgid ""
|
1895 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: includes/licensing.php:276
|
1899 |
#, fuzzy
|
1900 |
msgid "Already purchased?"
|
1901 |
msgstr "مُركب مسبقا"
|
1902 |
|
1903 |
#. translators: %s: item type.
|
1904 |
+
#: includes/licensing.php:294
|
1905 |
msgid "%s will not get updates until license is reauthorized."
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: includes/licensing.php:315
|
1909 |
#, fuzzy
|
1910 |
msgid "Enter License Key here"
|
1911 |
msgstr "تجديد مفتاح الترخيص"
|
1912 |
|
1913 |
+
#: includes/licensing.php:316
|
1914 |
#, fuzzy
|
1915 |
msgid "Authorize"
|
1916 |
msgstr "تفعيل Authorize.net؟"
|
1917 |
|
1918 |
+
#: includes/licensing.php:420
|
1919 |
#, fuzzy
|
1920 |
msgid "Invalid item ID"
|
1921 |
msgstr "معرف حقل غير صالح"
|
1922 |
|
1923 |
+
#: includes/licensing.php:433
|
1924 |
#, fuzzy
|
1925 |
msgid "No license key provided"
|
1926 |
msgstr "لم يتم تقديم أي مفتاح الترخيص"
|
1927 |
|
1928 |
+
#: includes/licensing.php:482 includes/licensing.php:520
|
1929 |
#, fuzzy
|
1930 |
msgid "License key is invalid"
|
1931 |
msgstr "مفتاح الترخيص غير صالح"
|
1932 |
|
1933 |
+
#: includes/licensing.php:486
|
1934 |
#, fuzzy
|
1935 |
msgid "Deactivation failed"
|
1936 |
msgstr "فشل التعطيل"
|
1937 |
|
1938 |
+
#: includes/licensing.php:531
|
1939 |
#, fuzzy
|
1940 |
msgid "The license key was revoked."
|
1941 |
msgstr "لم يتم تقديم أي مفتاح الترخيص"
|
1942 |
|
1943 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1944 |
+
#: includes/licensing.php:535
|
1945 |
msgid ""
|
1946 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1947 |
"%2$s and let them know your license is being reported as revoked by the "
|
1949 |
"with your report."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: includes/licensing.php:598
|
1953 |
msgid ""
|
1954 |
"It was not possible to establish a connection with the Business Directory "
|
1955 |
"server. The connection failed with the following error:"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: includes/licensing.php:611
|
1959 |
msgid ""
|
1960 |
"It was not possible to establish a connection with the Business Directory "
|
1961 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: includes/licensing.php:658
|
1965 |
msgid ""
|
1966 |
"It looks like your server is not authorized to make outgoing requests to "
|
1967 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1968 |
"our IP address 52.0.78.177 to your allow list."
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: includes/licensing.php:752
|
1972 |
#, fuzzy
|
1973 |
msgid "Business Directory license key is missing."
|
1974 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
1975 |
|
1976 |
+
#: includes/licensing.php:753
|
1977 |
#, fuzzy
|
1978 |
msgid "Business Directory license key has expired"
|
1979 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
1980 |
|
1981 |
+
#: includes/licensing.php:754
|
1982 |
#, fuzzy
|
1983 |
msgid "Could not verify Business Directory license."
|
1984 |
msgstr "المساعدة في تحسين دليل الأعمال"
|
1985 |
|
1986 |
+
#: includes/licensing.php:765
|
1987 |
#, fuzzy
|
1988 |
msgid "Review license keys"
|
1989 |
msgstr "تجديد مفتاح الترخيص"
|
1990 |
|
1991 |
+
#: includes/licensing.php:880
|
1992 |
msgid "Missing data. Please reload this page and try again."
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: includes/licensing.php:885
|
1996 |
#, fuzzy
|
1997 |
msgid "Please enter a license key."
|
1998 |
msgstr "يرجى إدخال بريد إلكتروني صحيح."
|
2038 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2039 |
msgstr "ملف الضغط ZIP ليس ملف قالب دليل الأعمال صالح."
|
2040 |
|
2041 |
+
#: includes/utils.php:341
|
2042 |
#, fuzzy
|
2043 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2044 |
msgstr "حجم الملف (%s) يتجاوز الحجم الأقصى للملف %s"
|
2045 |
|
2046 |
+
#: includes/utils.php:350
|
2047 |
#, fuzzy
|
2048 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2049 |
msgstr "حجم الملف (%s) أقل من الحد الأدنى المطلوب لحجم الملف لـ %s"
|
2398 |
msgid "Add New Listing Fee"
|
2399 |
msgstr "إضافة رسم إعلان جديد"
|
2400 |
|
2401 |
+
#: templates/admin/fees-index.tpl.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2402 |
#, fuzzy
|
2403 |
msgid "Order fees on the frontend by:"
|
2404 |
msgstr "رسوم الترتيب على الواجهة بواسطة:"
|
2405 |
|
2406 |
+
#: templates/admin/fees-index.tpl.php:30
|
2407 |
#, fuzzy
|
2408 |
msgid "↑ Ascending"
|
2409 |
msgstr "↑ تصاعدي"
|
2410 |
|
2411 |
+
#: templates/admin/fees-index.tpl.php:31
|
2412 |
#, fuzzy
|
2413 |
msgid "↓ Descending"
|
2414 |
msgstr "↓ تنازلي"
|
2415 |
|
2416 |
+
#: templates/admin/fees-index.tpl.php:39
|
2417 |
#, fuzzy
|
2418 |
msgid "Drag and drop to re-order fees."
|
2419 |
msgstr "سحب وإسقاط لإعادة ترتيب الرسوم."
|
2420 |
|
|
|
|
|
|
|
|
|
|
|
2421 |
#: templates/admin/fees-index.tpl.php:67
|
|
|
|
|
|
|
|
|
2422 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: templates/admin/fees-index.tpl.php:69
|
2426 |
msgid "Add a payment gateway to increase conversion rates"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
#. translators: %s: payment gateway name */
|
2430 |
+
#: templates/admin/fees-index.tpl.php:88
|
2431 |
msgid "Add the %s gateway as a payment option."
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: templates/admin/fees-index.tpl.php:94
|
2435 |
#, fuzzy
|
2436 |
msgid "Upgrade"
|
2437 |
msgstr "ترقية إلى %s"
|
2438 |
|
2439 |
+
#: templates/admin/fees-index.tpl.php:102
|
2440 |
msgid "Set up Authorize.net as a payment option."
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: templates/admin/fees-index.tpl.php:105
|
2444 |
msgid "Set Up"
|
2445 |
msgstr ""
|
2446 |
|
2474 |
msgid "Delete Field"
|
2475 |
msgstr "حذف حقل"
|
2476 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2477 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2478 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2479 |
#: templates/login.tpl.php:71
|
2791 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2792 |
msgstr "الإصدار الجديد متوفر (<b>%s</b>). <a>التحديث الآن.</a>"
|
2793 |
|
2794 |
+
#: templates/admin/themes-item.tpl.php:45
|
2795 |
#, fuzzy
|
2796 |
msgid "Inactive"
|
2797 |
msgstr "مفعل"
|
3835 |
msgid "Fee \"%s\" deleted."
|
3836 |
msgstr "الرسوم حذفت."
|
3837 |
|
3838 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3839 |
+
#, fuzzy
|
3840 |
+
msgctxt "fees admin"
|
3841 |
+
msgid "Fee enabled."
|
3842 |
+
msgstr "رسوم معطلة."
|
3843 |
+
|
3844 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3845 |
msgctxt "fees admin"
|
3846 |
msgid "Fee disabled."
|
3847 |
msgstr "رسوم معطلة."
|
3856 |
msgid "fees"
|
3857 |
msgstr "الرسوم"
|
3858 |
|
3859 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3860 |
#, fuzzy
|
3861 |
msgctxt "fees admin"
|
3862 |
msgid "Attributes"
|
3863 |
msgstr "سمات الحقل"
|
3864 |
|
3865 |
+
#: includes/admin/helpers/tables/class-fees-table.php:137
|
3866 |
msgctxt "fees admin"
|
3867 |
msgid "Edit"
|
3868 |
msgstr "تحرير"
|
3869 |
|
3870 |
+
#: includes/admin/helpers/tables/class-fees-table.php:207
|
3871 |
#, fuzzy
|
3872 |
msgctxt "fees admin"
|
3873 |
msgid "Variable"
|
3874 |
msgstr "تعطيل"
|
3875 |
|
3876 |
+
#: includes/admin/helpers/tables/class-fees-table.php:212
|
3877 |
#, fuzzy
|
3878 |
msgctxt "fees admin"
|
3879 |
msgid "%1$s + %2$s per category"
|
3880 |
msgstr "Frais \"%s\" pour catégorie \"%s\""
|
3881 |
|
3882 |
+
#: includes/admin/helpers/tables/class-fees-table.php:231
|
3883 |
msgctxt "fees admin"
|
3884 |
msgid "Forever"
|
3885 |
msgstr "دائما"
|
3886 |
|
3887 |
+
#: includes/admin/helpers/tables/class-fees-table.php:233
|
3888 |
msgctxt "fees admin"
|
3889 |
msgid "%d day"
|
3890 |
msgid_plural "%d days"
|
3895 |
msgstr[4] "%d يوم"
|
3896 |
msgstr[5] "%d يوم"
|
3897 |
|
3898 |
+
#: includes/admin/helpers/tables/class-fees-table.php:263
|
3899 |
msgctxt "fees admin"
|
3900 |
msgid "All categories"
|
3901 |
msgstr "جميع التصنيفات"
|
3902 |
|
3903 |
+
#: includes/admin/helpers/tables/class-fees-table.php:292
|
3904 |
msgctxt "fees admin"
|
3905 |
msgid "Sticky"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: includes/admin/helpers/tables/class-fees-table.php:296
|
3909 |
#, fuzzy
|
3910 |
msgctxt "fees admin"
|
3911 |
msgid "Recurring"
|
3912 |
msgstr "(متكرر)"
|
3913 |
|
3914 |
+
#: includes/admin/helpers/tables/class-fees-table.php:300
|
3915 |
#, fuzzy
|
3916 |
msgctxt "fees admin"
|
3917 |
msgid "Private"
|
4101 |
msgid "Reported"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: includes/models/class-listing.php:961
|
4105 |
msgctxt "listing status"
|
4106 |
msgid "Unknown"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
+
#: includes/models/class-listing.php:962
|
4110 |
msgctxt "listing status"
|
4111 |
msgid "Legacy"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: includes/models/class-listing.php:963
|
4115 |
#, fuzzy
|
4116 |
msgctxt "listing status"
|
4117 |
msgid "Incomplete"
|
4118 |
msgstr "إكتمل"
|
4119 |
|
4120 |
+
#: includes/models/class-listing.php:964
|
4121 |
#, fuzzy
|
4122 |
msgctxt "listing status"
|
4123 |
msgid "Pending Payment"
|
4124 |
msgstr "في انتظار التخلي"
|
4125 |
|
4126 |
+
#: includes/models/class-listing.php:965
|
4127 |
#, fuzzy
|
4128 |
msgctxt "listing status"
|
4129 |
msgid "Complete"
|
4130 |
msgstr "إكتمل"
|
4131 |
|
4132 |
+
#: includes/models/class-listing.php:966
|
4133 |
#, fuzzy
|
4134 |
msgctxt "listing status"
|
4135 |
msgid "Pending Upgrade"
|
4136 |
msgstr " في انتظار الترقية"
|
4137 |
|
4138 |
+
#: includes/models/class-listing.php:967
|
4139 |
#, fuzzy
|
4140 |
msgctxt "listing status"
|
4141 |
msgid "Expired"
|
4142 |
msgstr "منتهي الصلاحية"
|
4143 |
|
4144 |
+
#: includes/models/class-listing.php:968
|
4145 |
#, fuzzy
|
4146 |
msgctxt "listing status"
|
4147 |
msgid "Pending Renewal"
|
4148 |
msgstr "مفعل + ريثما يتم التجديد"
|
4149 |
|
4150 |
+
#: includes/models/class-listing.php:969
|
4151 |
#, fuzzy
|
4152 |
msgctxt "listing status"
|
4153 |
msgid "Abandoned"
|
4809 |
msgstr "الكاتب"
|
4810 |
|
4811 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4812 |
+
#: includes/helpers/functions/general.php:1281
|
4813 |
msgctxt "admin settings"
|
4814 |
msgid "Date posted"
|
4815 |
msgstr "تاريخ النشر"
|
4816 |
|
4817 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4818 |
+
#: includes/helpers/functions/general.php:1282
|
4819 |
msgctxt "admin settings"
|
4820 |
msgid "Date last modified"
|
4821 |
msgstr "تاريخ آخر تعديل"
|
4990 |
msgid "U.S. Dollar (USD)"
|
4991 |
msgstr "الدولار الأمريكي (USD)"
|
4992 |
|
4993 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
4994 |
msgctxt "admin settings"
|
4995 |
msgid "Show currency symbol on the left"
|
4996 |
msgstr "إظهار رمز العملة على اليسار"
|
4997 |
|
4998 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
4999 |
msgctxt "admin settings"
|
5000 |
msgid "Show currency symbol on the right"
|
5001 |
msgstr "إظهار رمز العملة على اليمين"
|
5002 |
|
5003 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
5004 |
msgctxt "admin settings"
|
5005 |
msgid "Do not show currency symbol"
|
5006 |
msgstr "عدم إظهار رمز العملة"
|
5007 |
|
5008 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5009 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
5010 |
msgctxt "admin settings"
|
5011 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
5015 |
#, fuzzy
|
5016 |
msgctxt "admin settings"
|
5017 |
msgid ""
|
5021 |
"الإعلانات مع الدفعات المعلقة تعد متخلى عنها بعد هذا الوقت. يمكنك أيضا "
|
5022 |
"<a>تخصيص البريد الإلكتروني</a> الذي يتلقاه الأعضاء."
|
5023 |
|
5024 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1320
|
5025 |
msgctxt "admin settings"
|
5026 |
msgid "Try listing's email field first, then author's email."
|
5027 |
msgstr "جرب البريد الإلكتروني للإعلانات أولاً، ثم البريد الإلكتروني للكاتب."
|
5028 |
|
5029 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1321
|
5030 |
msgctxt "admin settings"
|
5031 |
msgid "Try author's email first and then listing's email field."
|
5032 |
msgstr "جرب البريد الإلكتروني للكاتب أولاً، ثم البريد الإلكتروني للإعلانات."
|
5033 |
|
5034 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1334
|
5035 |
msgctxt "admin settings"
|
5036 |
msgid "Plain (text/plain)"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1335
|
5040 |
msgctxt "admin settings"
|
5041 |
msgid "HTML (text/html)"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1336
|
5045 |
msgctxt "admin settings"
|
5046 |
msgid "Both (multipart/alternative)"
|
5047 |
msgstr ""
|
5048 |
|
5049 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1350
|
5050 |
msgctxt "admin settings"
|
5051 |
msgid "A new listing is submitted."
|
5052 |
msgstr "يتم إضافة إعلان جديد"
|
5053 |
|
5054 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1351
|
5055 |
msgctxt "admin settings"
|
5056 |
msgid "A listing is edited."
|
5057 |
msgstr "تم تحرير الإعلان"
|
5058 |
|
5059 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
5060 |
msgctxt "admin settings"
|
5061 |
msgid "A listing expires."
|
5062 |
msgstr "الإعلان منتهي التاريخ"
|
5063 |
|
5064 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
5065 |
#, fuzzy
|
5066 |
msgctxt "admin settings"
|
5067 |
msgid "A listing is renewed."
|
5068 |
msgstr "تم تحرير الإعلان"
|
5069 |
|
5070 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1354
|
5071 |
#, fuzzy
|
5072 |
msgctxt "admin settings"
|
5073 |
msgid "A listing payment is completed."
|
5074 |
msgstr "تم تحرير الإعلان"
|
5075 |
|
5076 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1355
|
5077 |
#, fuzzy
|
5078 |
msgctxt "admin settings"
|
5079 |
msgid "A listing has been reported as inappropriate."
|
5080 |
msgstr "تمت ترقية الإعلان."
|
5081 |
|
5082 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
5083 |
msgctxt "admin settings"
|
5084 |
msgid "A contact message is sent to a listing's owner."
|
5085 |
msgstr "يتم إرسال رسالة اتصال لمالك الإعلان."
|
5086 |
|
5087 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
5088 |
msgctxt "admin settings"
|
5089 |
msgid "Their listing is submitted."
|
5090 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
5091 |
|
5092 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1384
|
5093 |
msgctxt "admin settings"
|
5094 |
msgid "Their listing is approved/published."
|
5095 |
msgstr "تمت الموافقة ونشر الإعلان الخاص بهم"
|
5096 |
|
5097 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1385
|
5098 |
#, fuzzy
|
5099 |
msgctxt "admin settings"
|
5100 |
msgid "A payment for their listing is completed."
|
5101 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
5102 |
|
5103 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
5104 |
#, fuzzy
|
5105 |
msgctxt "admin settings"
|
5106 |
msgid "Their listing expired or is about to expire."
|
5107 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
5108 |
|
5109 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1404
|
5110 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
5111 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
5112 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
5113 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1514
|
5114 |
msgctxt "admin settings"
|
5115 |
msgid "Listing's title"
|
5116 |
msgstr "عنوان الإعلان"
|
5117 |
|
5118 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1405
|
5119 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
5120 |
#, fuzzy
|
5121 |
msgctxt "admin settings"
|
5122 |
msgid "Listing's fee plan name"
|
5123 |
msgstr "إنتهاء صلاحية الإعلان"
|
5124 |
|
5125 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1406
|
5126 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
5127 |
#, fuzzy
|
5128 |
msgctxt "admin settings"
|
5129 |
msgid "Listing's fee plan description"
|
5130 |
msgstr "تحديد رسوم الإعلان"
|
5131 |
|
5132 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
5133 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
5134 |
#, fuzzy
|
5135 |
msgctxt "admin settings"
|
5136 |
msgid "Listing's fee plan details"
|
5137 |
msgstr "إنتهاء صلاحية الإعلان"
|
5138 |
|
5139 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
5140 |
msgctxt "admin settings"
|
5141 |
msgid ""
|
5142 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
5145 |
"القائمة الخاصة بك \"[listing]\" متوفر الآن في [listing-url] ويمكن مشاهدتها "
|
5146 |
"من قبل العموم."
|
5147 |
|
5148 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1424
|
5149 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1458
|
5150 |
msgctxt "admin settings"
|
5151 |
msgid "Listing's URL"
|
5152 |
msgstr "عنوان URL الإعلان"
|
5153 |
|
5154 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1425
|
5155 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1465
|
5156 |
#, fuzzy
|
5157 |
msgctxt "admin settings"
|
5158 |
msgid "Listing's Access Key"
|
5159 |
msgstr "مفاتيح وصول الإعلان"
|
5160 |
|
5161 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
5162 |
#, fuzzy
|
5163 |
msgctxt "admin settings"
|
5164 |
msgid "Sender's name"
|
5165 |
msgstr "إسم الكاتب"
|
5166 |
|
5167 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1463
|
5168 |
#, fuzzy
|
5169 |
msgctxt "admin settings"
|
5170 |
msgid "Contact message"
|
5171 |
msgstr "رسالة اتصال الإعلان"
|
5172 |
|
5173 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1464
|
5174 |
msgctxt "admin settings"
|
5175 |
msgid "Date and time the message was sent"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
5179 |
#, fuzzy
|
5180 |
msgctxt "admin settings"
|
5181 |
msgid "Payment items details."
|
5182 |
msgstr "تفاصيل الدفع"
|
5183 |
|
5184 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
5185 |
msgctxt "admin settings"
|
5186 |
msgid "URL where user can review and print payment receipt."
|
5187 |
msgstr ""
|
5188 |
|
5189 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
5190 |
#, fuzzy
|
5191 |
msgctxt "admin settings"
|
5192 |
msgid "Gateway used to process listing's payment."
|
5193 |
msgstr "تعذر معالجة الدفع."
|
5194 |
|
5195 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1515
|
5196 |
msgctxt "admin settings"
|
5197 |
msgid "Checkout URL link"
|
5198 |
msgstr "رابط URL إتمام الشراء"
|
5199 |
|
5200 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1617
|
5201 |
#, fuzzy
|
5202 |
msgctxt "admin settings"
|
5203 |
msgid "Uploaded Image (no resize)"
|
5204 |
msgstr "رفع الصور"
|
5205 |
|
5206 |
+
#: includes/helpers/functions/general.php:1279
|
5207 |
msgctxt "admin settings"
|
5208 |
msgid "User"
|
5209 |
msgstr "عضو"
|
5210 |
|
5211 |
+
#: includes/helpers/functions/general.php:1280
|
5212 |
msgctxt "admin settings"
|
5213 |
msgid "User registration date"
|
5214 |
msgstr "تاريخ تسجيل العضو"
|
5479 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5480 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5481 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5482 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1301
|
5483 |
#: includes/admin/settings/class-settings.php:341
|
5484 |
#, fuzzy
|
5485 |
msgctxt "settings"
|
6155 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6156 |
msgstr ""
|
6157 |
|
6158 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1132
|
6159 |
#, fuzzy
|
6160 |
msgctxt "settings"
|
6161 |
msgid "Fee Order"
|
6162 |
msgstr "ترتيب"
|
6163 |
|
6164 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1145
|
|
|
|
|
|
|
|
|
|
|
|
|
6165 |
#, fuzzy
|
6166 |
msgctxt "settings"
|
6167 |
msgid "Put payment gateways in test mode?"
|
6173 |
msgid "Currency Code"
|
6174 |
msgstr "رمز العملة"
|
6175 |
|
6176 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
6177 |
#, fuzzy
|
6178 |
msgctxt "settings"
|
6179 |
msgid "Currency Symbol"
|
6180 |
msgstr "رمز العملة"
|
6181 |
|
6182 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
6183 |
#, fuzzy
|
6184 |
msgctxt "settings"
|
6185 |
msgid "Currency symbol display"
|
6186 |
msgstr "عرض رمز العملة"
|
6187 |
|
6188 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
6189 |
msgctxt "settings"
|
6190 |
msgid "Include fee description in receipt?"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1225
|
6194 |
#, fuzzy
|
6195 |
msgctxt "settings"
|
6196 |
msgid "Thank you for payment message"
|
6197 |
msgstr "رسالة الشكر على الدفع"
|
6198 |
|
6199 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1278
|
6200 |
#, fuzzy
|
6201 |
msgctxt "settings"
|
6202 |
msgid "Ask users to come back for abandoned payments?"
|
6203 |
msgstr "أطلب من الأعضاء العودة للمدفوعات المتخلى عنها؟"
|
6204 |
|
6205 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1289
|
6206 |
#, fuzzy
|
6207 |
msgctxt "settings"
|
6208 |
msgid "Listing abandonment threshold (hours)"
|
6209 |
msgstr "عتبة التخلي على الإعلان (ساعات)"
|
6210 |
|
6211 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1306
|
6212 |
#, fuzzy
|
6213 |
msgctxt "settings"
|
6214 |
msgid "Display email address fields publicly?"
|
6215 |
msgstr "عرض حقول عنوان البريد الإلكتروني علنا؟"
|
6216 |
|
6217 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1307
|
6218 |
#, fuzzy
|
6219 |
msgctxt "settings"
|
6220 |
msgid ""
|
6226 |
"لأن هذا يزيد من الرسائل المزعجة إلى العنوان ويسمح للمتطفلين بجمع عنوانين "
|
6227 |
"البريد للاستخدام في المستقبل."
|
6228 |
|
6229 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1316
|
6230 |
#, fuzzy
|
6231 |
msgctxt "settings"
|
6232 |
msgid "How to determine the listing's email address?"
|
6233 |
msgstr "كيفية تحديد عنوان البريد الإلكتروني في الإعلان؟"
|
6234 |
|
6235 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1317
|
6236 |
#, fuzzy
|
6237 |
msgctxt "settings"
|
6238 |
msgid ""
|
6242 |
"هذا يؤثر على رسائل البريد الإلكتروني المرسلة إلى مالكي الإعلانات عبر نموذج "
|
6243 |
"الاتصال أو عندما ينتهي تاريخ الإعلانات."
|
6244 |
|
6245 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1330
|
6246 |
msgctxt "settings"
|
6247 |
msgid "Email Content-Type header"
|
6248 |
msgstr ""
|
6249 |
|
6250 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1331
|
6251 |
msgctxt "settings"
|
6252 |
msgid ""
|
6253 |
"Use this setting to control the format of the emails explicitly. Some "
|
6256 |
"then \"Both\"."
|
6257 |
msgstr ""
|
6258 |
|
6259 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
6260 |
#, fuzzy
|
6261 |
msgctxt "settings"
|
6262 |
msgid "Templates"
|
6263 |
msgstr "قوالب البريد الإلكتروني"
|
6264 |
|
6265 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1397
|
6266 |
#, fuzzy
|
6267 |
msgctxt "settings"
|
6268 |
msgid "Email confirmation message"
|
6269 |
msgstr "رسالة تأكيد البريد الإلكتروني"
|
6270 |
|
6271 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1398
|
6272 |
#, fuzzy
|
6273 |
msgctxt "settings"
|
6274 |
msgid "Sent after a listing has been submitted."
|
6275 |
msgstr "ترسل بعد أن يضاف الإعلان."
|
6276 |
|
6277 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1416
|
6278 |
#, fuzzy
|
6279 |
msgctxt "settings"
|
6280 |
msgid "Listing published message"
|
6281 |
msgstr "رسالة نشر الإعلان"
|
6282 |
|
6283 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1417
|
6284 |
#, fuzzy
|
6285 |
msgctxt "settings"
|
6286 |
msgid "Sent when the listing has been published or approved by an admin."
|
6287 |
msgstr "ترسل عندما يتم نشر الإعلان أو الموافقة عليه من طرف المدير."
|
6288 |
|
6289 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
6290 |
#, fuzzy
|
6291 |
msgctxt "settings"
|
6292 |
msgid "Listing Contact Message"
|
6293 |
msgstr "رسالة اتصال الإعلان"
|
6294 |
|
6295 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1435
|
6296 |
#, fuzzy
|
6297 |
msgctxt "settings"
|
6298 |
msgid ""
|
6302 |
"ترسل إلى مالكي الإعلانات عندما يستخدم شخص ما نموذج جهة الاتصال في صفحات "
|
6303 |
"الإعلانات الخاصة بهم."
|
6304 |
|
6305 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1475
|
6306 |
#, fuzzy
|
6307 |
msgctxt "settings"
|
6308 |
msgid "Payment completed message"
|
6309 |
msgstr "رسالة تذكير بالتخلي عن الدفع"
|
6310 |
|
6311 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
6312 |
#, fuzzy
|
6313 |
msgctxt "settings"
|
6314 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6315 |
msgstr "ترسل أحيانا بعد أن يتخلي الأعضاء عن الدفعة المنتظرة."
|
6316 |
|
6317 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
6318 |
#, fuzzy
|
6319 |
msgctxt "settings"
|
6320 |
msgid "Payment abandoned reminder message"
|
6321 |
msgstr "رسالة تذكير بالتخلي عن الدفع"
|
6322 |
|
6323 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1638
|
6324 |
msgctxt "settings"
|
6325 |
msgid "Cropped"
|
6326 |
msgstr ""
|
6336 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6337 |
msgstr ""
|
6338 |
|
6339 |
+
#: includes/licensing.php:245
|
6340 |
#, fuzzy
|
6341 |
msgctxt "settings"
|
6342 |
msgid "Themes"
|
6343 |
msgstr "القوالب"
|
6344 |
|
6345 |
+
#: includes/licensing.php:316 includes/licensing.php:317
|
6346 |
msgctxt "settings"
|
6347 |
msgid "Please wait..."
|
6348 |
msgstr ""
|
6349 |
|
6350 |
+
#: includes/licensing.php:317
|
6351 |
#, fuzzy
|
6352 |
msgctxt "settings"
|
6353 |
msgid "Deauthorize"
|
6403 |
msgid "Could not delete theme directory. Check permissions."
|
6404 |
msgstr "تعذر حذف مجلد القالب. تحقق من الصلاحيات."
|
6405 |
|
6406 |
+
#: includes/admin/controllers/class-themes-admin.php:240
|
6407 |
msgctxt "themes"
|
6408 |
msgid "Please upload a valid theme file."
|
6409 |
msgstr "المرجو رفع ملف قالب صالح."
|
6410 |
|
6411 |
+
#: includes/admin/controllers/class-themes-admin.php:249
|
6412 |
msgctxt "themes"
|
6413 |
msgid "Could not move \"%s\" to a temporary directory."
|
6414 |
msgstr "لا يمكن نقل \"%s\" إلى مجلد مؤقت."
|
6415 |
|
6416 |
+
#: includes/admin/controllers/class-themes-admin.php:335
|
6417 |
msgctxt "themes"
|
6418 |
msgid "Activate your <a>license key</a> to use this theme."
|
6419 |
msgstr "فعِّل <a>مفتاح الترخيص</a> الخاص بك لاستخدام هذا القالب."
|
6420 |
|
6421 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
6422 |
#, fuzzy
|
6423 |
msgctxt "themes"
|
6424 |
msgid "Invalid theme ID"
|
6425 |
msgstr "معرف حقل غير صالح"
|
6426 |
|
6427 |
+
#: includes/admin/controllers/class-themes-admin.php:384
|
6428 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6429 |
msgctxt "themes"
|
6430 |
msgid "Could not update theme: %s"
|
6857 |
msgstr "سلة المهملات"
|
6858 |
|
6859 |
#. translators: %s: url shortcode
|
6860 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
6861 |
msgctxt "contact email"
|
6862 |
msgid "You have received a reply from your listing at %s."
|
6863 |
msgstr "تلقيت ردا من الإعلان الخاص بك في %s."
|
6864 |
|
6865 |
#. translators: %s: name shortcode
|
6866 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
6867 |
msgctxt "contact email"
|
6868 |
msgid "Name: %s"
|
6869 |
msgstr "الإسم: %s"
|
6870 |
|
6871 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1451
|
6872 |
msgctxt "contact email"
|
6873 |
msgid "Message:"
|
6874 |
msgstr "الرسالة:"
|
6875 |
|
6876 |
#. translators: %s: date shortcode
|
6877 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1455
|
6878 |
msgctxt "contact email"
|
6879 |
msgid "Time: %s"
|
6880 |
msgstr "الوقت: %s"
|
7175 |
msgid "Add New Listing"
|
7176 |
msgstr "إضافة إعلان جديد"
|
7177 |
|
7178 |
+
#: includes/models/class-listing.php:421
|
7179 |
#, fuzzy
|
7180 |
msgctxt "listing"
|
7181 |
msgid "Listing has no registered payments"
|
7182 |
msgstr "إنتهاء صلاحية الإعلان"
|
7183 |
|
7184 |
+
#: includes/models/class-listing.php:430
|
7185 |
#, fuzzy
|
7186 |
msgctxt "listing"
|
7187 |
msgid "Can't delete payment"
|
7188 |
msgstr "رفض الدفع"
|
7189 |
|
7190 |
+
#: includes/models/class-listing.php:468
|
7191 |
#, fuzzy
|
7192 |
msgctxt "listing"
|
7193 |
msgid "Listing expired"
|
7194 |
msgstr "الإعلان منتهي التاريخ"
|
7195 |
|
7196 |
+
#: includes/models/class-listing.php:668
|
7197 |
#, fuzzy
|
7198 |
msgctxt "listing"
|
7199 |
msgid "(Unavailable Plan)"
|
7200 |
msgstr "(رسم غير متوفر)"
|
7201 |
|
7202 |
+
#: includes/models/class-listing.php:858
|
7203 |
#, fuzzy
|
7204 |
msgctxt "listing"
|
7205 |
msgid "Plan \"%s\" (recurring)"
|
7206 |
msgstr "(متكرر)"
|
7207 |
|
7208 |
+
#: includes/models/class-listing.php:860
|
7209 |
msgctxt "listing"
|
7210 |
msgid "Plan \"%s\""
|
7211 |
msgstr ""
|
7344 |
msgid "Enable %s?"
|
7345 |
msgstr "تفعيل"
|
7346 |
|
7347 |
+
#: includes/class-payment-gateways.php:131
|
7348 |
#, fuzzy
|
7349 |
msgctxt "payment-gateways"
|
7350 |
msgid ""
|
7355 |
"متوفرة حتى يتم إصلاح المشاكل التالية <b>%s</b>.<br/> تحقق من <a href=\"%s"
|
7356 |
"\">إعدادات دفع</a> ."
|
7357 |
|
7358 |
+
#: includes/class-payment-gateways.php:133
|
7359 |
msgctxt "payment-gateways"
|
7360 |
msgid "Please check the <link>payment settings</link>."
|
7361 |
msgstr ""
|
7362 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7363 |
#: includes/class-recaptcha.php:32
|
7364 |
msgctxt "recaptcha"
|
7365 |
msgid "The reCAPTCHA wasn't entered correctly."
|
7582 |
"إعلانات بداخلها. هذا يعني أنها لن تظهر على الواجهة الأمامية للموقع الخاص بك. "
|
7583 |
"إذا كنت لا تريد ذلك، إضغط <a>هنا</a> لتغيير الإعداد."
|
7584 |
|
7585 |
+
#: includes/controllers/pages/class-submit-listing.php:424
|
7586 |
msgctxt "templates"
|
7587 |
msgid ""
|
7588 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7591 |
"<b>المشاهدة غير متوفرة</b>. هل لديك \"تعطيل إضافة إعلان من واجهة الموقع؟\" "
|
7592 |
"محددة في الإعدادات؟"
|
7593 |
|
7594 |
+
#: includes/controllers/pages/class-submit-listing.php:426
|
7595 |
msgctxt "templates"
|
7596 |
msgid ""
|
7597 |
"Listing submission has been disabled. Contact the administrator for details."
|
7598 |
msgstr ""
|
7599 |
|
7600 |
+
#: includes/controllers/pages/class-submit-listing.php:824
|
7601 |
msgctxt "templates"
|
7602 |
msgid ""
|
7603 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7604 |
"submit a listing. %s to create a fee plan"
|
7605 |
msgstr ""
|
7606 |
|
7607 |
+
#: includes/controllers/pages/class-submit-listing.php:838
|
7608 |
msgctxt "templates"
|
7609 |
msgid ""
|
7610 |
"Listing submission is not available at the moment. Contact the administrator "
|
7611 |
"for details."
|
7612 |
msgstr ""
|
7613 |
|
7614 |
+
#: includes/controllers/pages/class-submit-listing.php:841
|
7615 |
msgctxt "templates"
|
7616 |
msgid ""
|
7617 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
7619 |
"an existing field"
|
7620 |
msgstr ""
|
7621 |
|
7622 |
+
#: includes/controllers/pages/class-submit-listing.php:1286
|
7623 |
msgctxt "templates"
|
7624 |
msgid "Please agree to the Terms and Conditions."
|
7625 |
msgstr "يرجى الموافقة على الشروط والأحكام."
|
7626 |
|
7627 |
+
#: includes/controllers/pages/class-submit-listing.php:1300
|
7628 |
#, fuzzy
|
7629 |
msgctxt "templates"
|
7630 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7631 |
msgstr "أوافق على الشروط والأحكام"
|
7632 |
|
7633 |
+
#: includes/helpers/functions/general.php:1362
|
7634 |
#, fuzzy
|
7635 |
msgctxt "templates"
|
7636 |
msgid "Return to results"
|
7977 |
msgid "You can't edit this listing."
|
7978 |
msgstr "التصنيفات لهذا الإعلان"
|
7979 |
|
7980 |
+
#: includes/controllers/pages/class-submit-listing.php:168
|
7981 |
msgctxt "submit listing"
|
7982 |
msgid ""
|
7983 |
"This listing can't be edited at this time because it has no fee plan "
|
7985 |
"to a fee plan."
|
7986 |
msgstr ""
|
7987 |
|
7988 |
+
#: includes/controllers/pages/class-submit-listing.php:174
|
7989 |
msgctxt "submit listing"
|
7990 |
msgid ""
|
7991 |
"This listing can't be edited at this time. Please try again later or contact "
|
7992 |
"the admin if the problem persists."
|
7993 |
msgstr ""
|
7994 |
|
7995 |
+
#: includes/controllers/pages/class-submit-listing.php:198
|
7996 |
#, fuzzy
|
7997 |
msgctxt "submit listing"
|
7998 |
msgid "You're logged in as admin, payment will be skipped."
|
7999 |
msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
|
8000 |
|
8001 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
8002 |
#, fuzzy
|
8003 |
msgctxt "submit listing"
|
8004 |
msgid "Category selection"
|
8005 |
msgstr "إختيار تصنيف"
|
8006 |
|
8007 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
8008 |
#, fuzzy
|
8009 |
msgctxt "submit listing"
|
8010 |
msgid "Category & plan selection"
|
8011 |
msgstr "إختيار تصنيف"
|
8012 |
|
8013 |
+
#: includes/controllers/pages/class-submit-listing.php:821
|
8014 |
#, fuzzy
|
8015 |
msgctxt "submit listing"
|
8016 |
msgid "Can not submit a listing at this moment. Please try again later."
|
8018 |
"لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
|
8019 |
"أخرى لاحقاً."
|
8020 |
|
8021 |
+
#: includes/controllers/pages/class-submit-listing.php:870
|
8022 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
8023 |
#, fuzzy
|
8024 |
msgctxt "submit listing"
|
8025 |
msgid "Please select a category."
|
8026 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
8027 |
|
8028 |
+
#: includes/controllers/pages/class-submit-listing.php:893
|
8029 |
msgctxt "submit listing"
|
8030 |
msgid "Please choose a valid category for your plan."
|
8031 |
msgstr ""
|
8032 |
|
8033 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
8034 |
#, fuzzy
|
8035 |
msgctxt "submit listing"
|
8036 |
msgid "Please choose a valid fee plan for your category selection."
|
8037 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
8038 |
|
8039 |
+
#: includes/controllers/pages/class-submit-listing.php:1206
|
8040 |
#, fuzzy
|
8041 |
msgctxt "submit listing"
|
8042 |
msgid "Please enter your desired username."
|
8043 |
msgstr "يرجى إدخال إسمك."
|
8044 |
|
8045 |
+
#: includes/controllers/pages/class-submit-listing.php:1211
|
8046 |
#, fuzzy
|
8047 |
msgctxt "submit listing"
|
8048 |
msgid "Please enter the e-mail for your new account."
|
8049 |
msgstr "يرجى إدخال إسمك."
|
8050 |
|
8051 |
+
#: includes/controllers/pages/class-submit-listing.php:1216
|
8052 |
msgctxt "submit listing"
|
8053 |
msgid "The username you chose is already in use. Please use a different one."
|
8054 |
msgstr ""
|
8055 |
|
8056 |
+
#: includes/controllers/pages/class-submit-listing.php:1221
|
8057 |
msgctxt "submit listing"
|
8058 |
msgid "The e-mail address you chose for your account is already in use."
|
8059 |
msgstr ""
|
8064 |
msgid "Listing submitted by admin. Payment skipped."
|
8065 |
msgstr "Poster annonce(paiement initial)"
|
8066 |
|
8067 |
+
#: includes/controllers/pages/class-submit-listing.php:1161
|
8068 |
msgctxt "listing submit"
|
8069 |
msgid ""
|
8070 |
"Image upload is required, please provide at least one image and submit again."
|
8392 |
msgid "General"
|
8393 |
msgstr "عام"
|
8394 |
|
8395 |
+
#: includes/licensing.php:571
|
8396 |
msgctxt "licensing"
|
8397 |
msgid "Could not contact licensing server"
|
8398 |
msgstr "لا يمكن الاتصال بخادم الترخيص"
|
8399 |
|
8400 |
+
#: includes/licensing.php:584
|
8401 |
msgctxt "licensing"
|
8402 |
msgid ""
|
8403 |
"It was not possible to establish a connection with Business Directory's "
|
8404 |
"server. cURL was not found in your system"
|
8405 |
msgstr ""
|
8406 |
|
8407 |
+
#: includes/licensing.php:586 includes/licensing.php:616
|
8408 |
msgctxt "licensing"
|
8409 |
msgid ""
|
8410 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8413 |
"1.0.1c)."
|
8414 |
msgstr ""
|
8415 |
|
8416 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8417 |
msgctxt "licensing"
|
8418 |
msgid ""
|
8419 |
"Upgrading your system will not only allow you to communicate with Business "
|
8421 |
"services using the latest security standards."
|
8422 |
msgstr ""
|
8423 |
|
8424 |
+
#: includes/licensing.php:590
|
8425 |
msgctxt "licensing"
|
8426 |
msgid ""
|
8427 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8428 |
"Include this message if necessary"
|
8429 |
msgstr ""
|
8430 |
|
8431 |
+
#: includes/licensing.php:620
|
8432 |
msgctxt "licensing"
|
8433 |
msgid ""
|
8434 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8435 |
"Include this message if necessary."
|
8436 |
msgstr ""
|
8437 |
|
8438 |
+
#: includes/licensing.php:656
|
8439 |
msgctxt "licensing"
|
8440 |
msgid "The server returned a 403 Forbidden error."
|
8441 |
msgstr ""
|
8442 |
|
8443 |
+
#: includes/licensing.php:902
|
8444 |
msgctxt "licensing"
|
8445 |
msgid "Could not activate license: %s."
|
8446 |
msgstr "لا يمكن تفعيل الترخيص: %s."
|
8447 |
|
8448 |
+
#: includes/licensing.php:907
|
8449 |
msgctxt "licensing"
|
8450 |
msgid "License activated"
|
8451 |
msgstr "تم تفعيل ترخيص"
|
8452 |
|
8453 |
+
#: includes/licensing.php:939
|
8454 |
msgctxt "licensing"
|
8455 |
msgid "Could not deactivate license: %s."
|
8456 |
msgstr "لا يمكن إلغاء الترخيص: %s."
|
8457 |
|
8458 |
+
#: includes/licensing.php:941
|
8459 |
msgctxt "licensing"
|
8460 |
msgid "License deactivated"
|
8461 |
msgstr "تم إلغاء تفعيل الترخيص"
|
8462 |
|
8463 |
#. translators: "<module-name>" version <version-number> is not...
|
8464 |
+
#: includes/licensing.php:1181
|
8465 |
msgctxt "deprecation"
|
8466 |
msgid ""
|
8467 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8486 |
msgstr[4] "الصور المسموح بها"
|
8487 |
msgstr[5] "الصور المسموح بها"
|
8488 |
|
8489 |
+
#: includes/models/class-fee-plan.php:387
|
8490 |
msgctxt "fees-api"
|
8491 |
msgid "Fee label is required."
|
8492 |
msgstr "رسوم التسمية مطلوبة."
|
8493 |
|
8494 |
+
#: includes/models/class-fee-plan.php:393
|
8495 |
msgctxt "fees-api"
|
8496 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8497 |
msgstr "يجب أن تكون رسوم مدة الإعلان بعدد أقل من 10 سنوات (3650 يوما)."
|
8498 |
|
8499 |
+
#: includes/models/class-fee-plan.php:398
|
8500 |
msgctxt "fees-api"
|
8501 |
msgid ""
|
8502 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
8504 |
"<a>fee plan</a> appropriately."
|
8505 |
msgstr ""
|
8506 |
|
8507 |
+
#: includes/models/class-fee-plan.php:401
|
8508 |
msgctxt "fees-api"
|
8509 |
msgid ""
|
8510 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
8583 |
msgid "Unkown error while uploading file."
|
8584 |
msgstr "حدث خطأ مجهول أثناء رفع الملف."
|
8585 |
|
8586 |
+
#: includes/utils.php:335
|
8587 |
msgctxt "utils"
|
8588 |
msgid "Error while uploading file"
|
8589 |
msgstr "حدث خطأ أثناء رفع الملف."
|
8590 |
|
8591 |
+
#: includes/utils.php:359 includes/utils.php:366
|
8592 |
msgctxt "utils"
|
8593 |
msgid "File type \"%s\" is not allowed"
|
8594 |
msgstr "غير مسموح بنوع الملف \"%s\""
|
8595 |
|
8596 |
+
#: includes/utils.php:585
|
8597 |
msgctxt "utils"
|
8598 |
msgid ""
|
8599 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8701 |
msgid "required"
|
8702 |
msgstr "مطلوب"
|
8703 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8704 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8705 |
#, fuzzy
|
8706 |
msgctxt "admin infometabox"
|
8981 |
msgid "Continue"
|
8982 |
msgstr "متابعة"
|
8983 |
|
8984 |
+
#, fuzzy
|
8985 |
+
#~ msgid "Payments are currently turned off."
|
8986 |
+
#~ msgstr "نظام الدفع متوقف حاليا."
|
8987 |
+
|
8988 |
+
#, fuzzy
|
8989 |
+
#~ msgid ""
|
8990 |
+
#~ "To manage fees you need to go to the %1$sManage Options - Payment%2$s "
|
8991 |
+
#~ "page and check the box next to 'Turn On Payments' under 'Payment "
|
8992 |
+
#~ "Settings'."
|
8993 |
+
#~ msgstr ""
|
8994 |
+
#~ "لإدارة الرسوم أنت بحاجة للذهاب إلى صفحة <a>إدارة الخيارات - الدفع</a> "
|
8995 |
+
#~ "وحدد المربع بجوار 'تشغيل الدفعات' تحت 'إعدادات الدفع'."
|
8996 |
+
|
8997 |
+
#~ msgid "Paid"
|
8998 |
+
#~ msgstr "تم الدفع"
|
8999 |
+
|
9000 |
+
#, fuzzy
|
9001 |
+
#~ msgid "Manage Options"
|
9002 |
+
#~ msgstr "إدارة الخيارات"
|
9003 |
+
|
9004 |
+
#~ msgid "Manage Paid Listings"
|
9005 |
+
#~ msgstr "إدارة الإعلانات المدفوعة"
|
9006 |
+
|
9007 |
+
#, fuzzy
|
9008 |
+
#~ msgctxt "settings"
|
9009 |
+
#~ msgid "Turn On payments?"
|
9010 |
+
#~ msgstr "تشغيل الدفعات؟"
|
9011 |
+
|
9012 |
+
#, fuzzy
|
9013 |
+
#~ msgctxt "payment-gateways"
|
9014 |
+
#~ msgid ""
|
9015 |
+
#~ "You have payments turned on but no gateway is active and properly "
|
9016 |
+
#~ "configured. Go to <link>Manage Options - Payment</link> to change the "
|
9017 |
+
#~ "payment settings. Until you change this, the directory will operate in "
|
9018 |
+
#~ "<i>Free Mode</i>."
|
9019 |
+
#~ msgstr ""
|
9020 |
+
#~ "لديك مدفوعات مشغلة ولكن لا توجد بوابة مفعلة ومعدة بشكل صحيح. إذهب إلى <a "
|
9021 |
+
#~ "href=\"%s\">إدارة الخيارات - الدفع</a> لتغيير إعدادات الدفع. حتى تقوم "
|
9022 |
+
#~ "بتغيير ذلك، فإن الدليل سيعمل بـ <i>الوضع المجاني.</i>"
|
9023 |
+
|
9024 |
#, fuzzy
|
9025 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
9026 |
#~ msgstr ""
|
languages/business-directory-plugin-de_DE.mo
CHANGED
Binary file
|
languages/business-directory-plugin-de_DE.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
|
11 |
"Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
|
@@ -94,17 +94,17 @@ msgstr "Branchenverzeichnis Administration"
|
|
94 |
msgid "Directory"
|
95 |
msgstr "Verzeichnis"
|
96 |
|
97 |
-
#: includes/admin/class-admin.php:312
|
98 |
msgid "Fee Plans"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/admin/class-admin.php:315
|
102 |
#, fuzzy
|
103 |
msgid "Form Fields"
|
104 |
msgstr "Formularfelder"
|
105 |
|
106 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
107 |
-
#: includes/licensing.php:
|
108 |
#, fuzzy
|
109 |
msgid "Modules"
|
110 |
msgstr "Installierte Module"
|
@@ -233,7 +233,7 @@ msgid "Amount"
|
|
233 |
msgstr "Preis"
|
234 |
|
235 |
#: includes/admin/controllers/class-admin-fees.php:49
|
236 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
237 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
238 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
239 |
#, fuzzy
|
@@ -271,7 +271,7 @@ msgid "Fee plan listings updated."
|
|
271 |
msgstr "Preis aktualisiert."
|
272 |
|
273 |
#: includes/admin/controllers/class-admin-listings.php:185
|
274 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
275 |
#: templates/email/listing-reported.tpl.php:7
|
276 |
msgid "Listing Information"
|
277 |
msgstr "Eintrag Informationen"
|
@@ -323,14 +323,14 @@ msgstr ""
|
|
323 |
"verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
|
324 |
|
325 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
326 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
327 |
#, fuzzy
|
328 |
msgid "Go to \"Form Fields\""
|
329 |
msgstr "zu \"Formularfelder verwalten\""
|
330 |
|
331 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
332 |
-
#: includes/helpers/functions/general.php:
|
333 |
-
#: includes/helpers/functions/general.php:
|
334 |
#, fuzzy
|
335 |
msgid "Go back"
|
336 |
msgstr "Geh zurück"
|
@@ -443,11 +443,11 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
443 |
msgstr "Warum löscht du die Branchenverzeichnis Erweiterung?"
|
444 |
|
445 |
#: includes/admin/controllers/class-settings-admin.php:536
|
446 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
447 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
448 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
449 |
#: templates/admin/payments-note.tpl.php:14
|
450 |
-
#: templates/admin/themes-item.tpl.php:
|
451 |
#: templates/parts/listing-buttons.tpl.php:31
|
452 |
#: templates/parts/listing-buttons.tpl.php:65
|
453 |
#, fuzzy
|
@@ -501,8 +501,8 @@ msgid "Installed"
|
|
501 |
msgstr "Installiert"
|
502 |
|
503 |
#: includes/admin/helpers/class-modules-list.php:187
|
504 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
505 |
-
#: templates/admin/themes-item.tpl.php:
|
506 |
#, fuzzy
|
507 |
msgid "Active"
|
508 |
msgstr "Nur Aktiv"
|
@@ -514,13 +514,13 @@ msgstr "Nicht installiert "
|
|
514 |
|
515 |
#: includes/admin/helpers/class-modules-list.php:225
|
516 |
#: includes/controllers/class-smtp.php:317
|
517 |
-
#: templates/admin/themes-item.tpl.php:
|
518 |
#, fuzzy
|
519 |
msgid "Activate"
|
520 |
msgstr "Aktiviere Lizenz"
|
521 |
|
522 |
#: includes/admin/helpers/class-modules-list.php:235
|
523 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
524 |
#, fuzzy
|
525 |
msgid "Upgrade Now"
|
526 |
msgstr "Aktualisieren auf %s"
|
@@ -540,15 +540,20 @@ msgstr ""
|
|
540 |
|
541 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
542 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
543 |
msgid "Plan Details"
|
544 |
msgstr "Details planen"
|
545 |
|
546 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
547 |
#, fuzzy
|
548 |
msgid "Pricing"
|
549 |
msgstr "Preis"
|
550 |
|
551 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
552 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
553 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
554 |
#: includes/helpers/class-app.php:92
|
@@ -556,42 +561,41 @@ msgstr "Preis"
|
|
556 |
msgid "Listings"
|
557 |
msgstr "Einträge"
|
558 |
|
559 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
560 |
#, fuzzy
|
561 |
msgid "Disable"
|
562 |
msgstr "Deaktivieren"
|
563 |
|
564 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
565 |
#, fuzzy
|
566 |
msgid "Enable"
|
567 |
msgstr "Aktivieren"
|
568 |
|
569 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
570 |
msgid "ID: %s"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
574 |
#, fuzzy
|
575 |
msgid "Paid Plan"
|
576 |
msgstr "Bezahlt"
|
577 |
|
578 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
579 |
#, fuzzy
|
580 |
msgid "Free Plan"
|
581 |
msgstr "zu \"Formularfelder verwalten\""
|
582 |
|
583 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
584 |
#, fuzzy
|
585 |
msgid "%1$s for %2$s"
|
586 |
msgstr "%s (admin: %s)"
|
587 |
|
588 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
589 |
-
#: includes/admin/helpers/tables/class-fees-table.php:293
|
590 |
#, fuzzy
|
591 |
msgid "Disabled"
|
592 |
msgstr "Inaktiv"
|
593 |
|
594 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
595 |
#: includes/helpers/functions/templates-ui.php:431
|
596 |
#, fuzzy
|
597 |
msgid "Default"
|
@@ -634,7 +638,7 @@ msgid "Missing tables: %s"
|
|
634 |
msgstr "Nicht vorhandene Tabellen: %s"
|
635 |
|
636 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
637 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
638 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
639 |
#: templates/listing-contactform.tpl.php:33
|
640 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -683,7 +687,7 @@ msgstr "%s ist ein Pflichtfeld."
|
|
683 |
|
684 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
685 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
686 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
687 |
#, fuzzy
|
688 |
msgid "Terms and Conditions"
|
689 |
msgstr "Bedingungen und Konditionen"
|
@@ -901,12 +905,12 @@ msgstr ""
|
|
901 |
msgid "URL"
|
902 |
msgstr "URL"
|
903 |
|
904 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
905 |
#, fuzzy
|
906 |
msgid "Thank you for your payment."
|
907 |
msgstr "Danke für die Bezahlung Nachricht"
|
908 |
|
909 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
910 |
msgid ""
|
911 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
912 |
"collect payments in this currency."
|
@@ -916,22 +920,22 @@ msgid_plural ""
|
|
916 |
msgstr[0] ""
|
917 |
msgstr[1] ""
|
918 |
|
919 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
920 |
#, fuzzy
|
921 |
msgid "Email Notifications"
|
922 |
msgstr "Email Erinnerung"
|
923 |
|
924 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
925 |
#, fuzzy
|
926 |
msgid "Notify admin via email when..."
|
927 |
msgstr "Administrator per E-mail informieren wenn... "
|
928 |
|
929 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
930 |
#, fuzzy
|
931 |
msgid "CC this email address too"
|
932 |
msgstr "CC diese E-mail an"
|
933 |
|
934 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
935 |
#, fuzzy
|
936 |
msgid ""
|
937 |
"You can modify the text template used for most of these emails in the "
|
@@ -940,38 +944,38 @@ msgstr ""
|
|
940 |
"Du kannst dieses Texttemplate verändern, das für die meisten der E-"
|
941 |
"mailadressen unten verwendet wird."
|
942 |
|
943 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
944 |
#, fuzzy
|
945 |
msgid "Notify users via email when..."
|
946 |
msgstr "Benachrichtige Benutzer per E-mail wenn..."
|
947 |
|
948 |
#. translators: %s: email shortcode
|
949 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
950 |
#, fuzzy
|
951 |
msgid "Email: %s"
|
952 |
msgstr "E-mail: %s"
|
953 |
|
954 |
#. translators: %s: phone shortcode
|
955 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
956 |
#, fuzzy
|
957 |
msgid "Phone Number: %s"
|
958 |
msgstr "Telefonnummer geschäftlich"
|
959 |
|
960 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
961 |
#, fuzzy
|
962 |
msgid "Sender's email address"
|
963 |
msgstr "Ungültiger Erneuerungszustand."
|
964 |
|
965 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
966 |
#, fuzzy
|
967 |
msgid "Sender's phone number"
|
968 |
msgstr "Authorname"
|
969 |
|
970 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
971 |
msgid "Renewal and expiration"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
975 |
#: templates/admin/uninstall-complete.tpl.php:4
|
976 |
#, fuzzy
|
977 |
msgid "Uninstall"
|
@@ -1079,7 +1083,7 @@ msgstr "Ansicht"
|
|
1079 |
|
1080 |
#. translators: %s: Status name
|
1081 |
#: includes/admin/views/modules/list.php:63
|
1082 |
-
#: templates/admin/themes-item.tpl.php:
|
1083 |
#, fuzzy
|
1084 |
msgid "Status: %s"
|
1085 |
msgstr "Status"
|
@@ -1253,12 +1257,10 @@ msgstr "Preispaket hinzufügen"
|
|
1253 |
msgid "View All Listings"
|
1254 |
msgstr "Alle Einträge anschauen"
|
1255 |
|
1256 |
-
|
1257 |
-
#: includes/class-payment-gateways.php:165
|
1258 |
msgid ""
|
1259 |
-
"You have
|
1260 |
-
"
|
1261 |
-
"to %1$sFee Plans%2$s to add or edit your fee plan(s)."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
#: includes/class-wpbdp.php:369
|
@@ -1282,7 +1284,7 @@ msgid ""
|
|
1282 |
"admin."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:
|
1286 |
#, fuzzy
|
1287 |
msgid "Could not find image ID"
|
1288 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
@@ -1488,39 +1490,39 @@ msgstr "Der Eintrag wurde aktualisiert"
|
|
1488 |
msgid "This is just a preview. The listing has not been published yet."
|
1489 |
msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
|
1490 |
|
1491 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1492 |
#, fuzzy
|
1493 |
msgid "Listing Images"
|
1494 |
msgstr "Eintrag Bilder"
|
1495 |
|
1496 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1497 |
msgid "Account Creation"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1501 |
#, fuzzy
|
1502 |
msgid "Go to \"Fee Plans\""
|
1503 |
msgstr "zu \"Formularfelder verwalten\""
|
1504 |
|
1505 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1506 |
#, fuzzy
|
1507 |
msgid "Please choose a fee plan."
|
1508 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
1509 |
|
1510 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1511 |
msgid "Please check the form for errors, correct them and submit again."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1515 |
msgid "Create a user account on this site"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1519 |
#, fuzzy
|
1520 |
msgid "Username"
|
1521 |
msgstr "Benutzer"
|
1522 |
|
1523 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1524 |
#, fuzzy
|
1525 |
msgid "Clear Form"
|
1526 |
msgstr "Zurücksetzen"
|
@@ -1838,8 +1840,7 @@ msgid ""
|
|
1838 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#: includes/helpers/functions/general.php:
|
1842 |
-
#: templates/admin/fees-index.tpl.php:67
|
1843 |
msgid "Free"
|
1844 |
msgstr "Kostenlos"
|
1845 |
|
@@ -1854,73 +1855,73 @@ msgid "Manage Listings"
|
|
1854 |
msgstr "Bezahlte Einträge verwalten"
|
1855 |
|
1856 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1857 |
-
#: includes/licensing.php:
|
1858 |
msgid ""
|
1859 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1860 |
"get updates."
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: includes/licensing.php:
|
1864 |
#, fuzzy
|
1865 |
msgid "Licenses"
|
1866 |
msgstr "Lizenz"
|
1867 |
|
1868 |
-
#: includes/licensing.php:
|
1869 |
msgid "Build more powerful directories"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: includes/licensing.php:
|
1873 |
msgid ""
|
1874 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#: includes/licensing.php:
|
1878 |
#, fuzzy
|
1879 |
msgid "Already purchased?"
|
1880 |
msgstr "Bereits installiert"
|
1881 |
|
1882 |
#. translators: %s: item type.
|
1883 |
-
#: includes/licensing.php:
|
1884 |
msgid "%s will not get updates until license is reauthorized."
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: includes/licensing.php:
|
1888 |
#, fuzzy
|
1889 |
msgid "Enter License Key here"
|
1890 |
msgstr "Erneuere Lizenzschlüssel"
|
1891 |
|
1892 |
-
#: includes/licensing.php:
|
1893 |
#, fuzzy
|
1894 |
msgid "Authorize"
|
1895 |
msgstr "Aktiviere Lizenz"
|
1896 |
|
1897 |
-
#: includes/licensing.php:
|
1898 |
#, fuzzy
|
1899 |
msgid "Invalid item ID"
|
1900 |
msgstr "Ungültige Feld ID"
|
1901 |
|
1902 |
-
#: includes/licensing.php:
|
1903 |
#, fuzzy
|
1904 |
msgid "No license key provided"
|
1905 |
msgstr "Kein Lizenzschlüssel"
|
1906 |
|
1907 |
-
#: includes/licensing.php:
|
1908 |
#, fuzzy
|
1909 |
msgid "License key is invalid"
|
1910 |
msgstr "Lizenzschlüssel ungültig "
|
1911 |
|
1912 |
-
#: includes/licensing.php:
|
1913 |
#, fuzzy
|
1914 |
msgid "Deactivation failed"
|
1915 |
msgstr "Deaktivierung fehlgeschlagen"
|
1916 |
|
1917 |
-
#: includes/licensing.php:
|
1918 |
#, fuzzy
|
1919 |
msgid "The license key was revoked."
|
1920 |
msgstr "Kein Lizenzschlüssel"
|
1921 |
|
1922 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1923 |
-
#: includes/licensing.php:
|
1924 |
msgid ""
|
1925 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1926 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -1928,50 +1929,50 @@ msgid ""
|
|
1928 |
"with your report."
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: includes/licensing.php:
|
1932 |
msgid ""
|
1933 |
"It was not possible to establish a connection with the Business Directory "
|
1934 |
"server. The connection failed with the following error:"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: includes/licensing.php:
|
1938 |
msgid ""
|
1939 |
"It was not possible to establish a connection with the Business Directory "
|
1940 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: includes/licensing.php:
|
1944 |
msgid ""
|
1945 |
"It looks like your server is not authorized to make outgoing requests to "
|
1946 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1947 |
"our IP address 52.0.78.177 to your allow list."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: includes/licensing.php:
|
1951 |
#, fuzzy
|
1952 |
msgid "Business Directory license key is missing."
|
1953 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
1954 |
|
1955 |
-
#: includes/licensing.php:
|
1956 |
#, fuzzy
|
1957 |
msgid "Business Directory license key has expired"
|
1958 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
1959 |
|
1960 |
-
#: includes/licensing.php:
|
1961 |
#, fuzzy
|
1962 |
msgid "Could not verify Business Directory license."
|
1963 |
msgstr "Hilf Business Directory zu unterstützen"
|
1964 |
|
1965 |
-
#: includes/licensing.php:
|
1966 |
#, fuzzy
|
1967 |
msgid "Review license keys"
|
1968 |
msgstr "Erneuere Lizenzschlüssel"
|
1969 |
|
1970 |
-
#: includes/licensing.php:
|
1971 |
msgid "Missing data. Please reload this page and try again."
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: includes/licensing.php:
|
1975 |
#, fuzzy
|
1976 |
msgid "Please enter a license key."
|
1977 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
@@ -2017,12 +2018,12 @@ msgstr "Abgebrochen"
|
|
2017 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2018 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
2019 |
|
2020 |
-
#: includes/utils.php:
|
2021 |
#, fuzzy
|
2022 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2023 |
msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
|
2024 |
|
2025 |
-
#: includes/utils.php:
|
2026 |
#, fuzzy
|
2027 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2028 |
msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
|
@@ -2381,73 +2382,49 @@ msgstr "Änderungen sichern"
|
|
2381 |
msgid "Add New Listing Fee"
|
2382 |
msgstr "Neues Preispaket erstellen"
|
2383 |
|
2384 |
-
#: templates/admin/fees-index.tpl.php:
|
2385 |
-
#, fuzzy
|
2386 |
-
msgid "Payments are currently turned off."
|
2387 |
-
msgstr "Bezahlungen sind derzeit nicht aktiviert."
|
2388 |
-
|
2389 |
-
#. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
|
2390 |
-
#: templates/admin/fees-index.tpl.php:21
|
2391 |
-
#, fuzzy
|
2392 |
-
msgid ""
|
2393 |
-
"To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
|
2394 |
-
"and check the box next to 'Turn On Payments' under 'Payment Settings'."
|
2395 |
-
msgstr ""
|
2396 |
-
"Um Preise zu verwalten gehe zu <a>Optionen verwalten - Bezahlungen</a> und "
|
2397 |
-
"aktiviere die Box 'Bezahlungen aktivieren' unter 'Bezahlungen Einstellungen'"
|
2398 |
-
|
2399 |
-
#: templates/admin/fees-index.tpl.php:34
|
2400 |
#, fuzzy
|
2401 |
msgid "Order fees on the frontend by:"
|
2402 |
msgstr "Preise auf der Webseite sortieren nach:"
|
2403 |
|
2404 |
-
#: templates/admin/fees-index.tpl.php:
|
2405 |
#, fuzzy
|
2406 |
msgid "↑ Ascending"
|
2407 |
msgstr "↑ Aufsteigend"
|
2408 |
|
2409 |
-
#: templates/admin/fees-index.tpl.php:
|
2410 |
#, fuzzy
|
2411 |
msgid "↓ Descending"
|
2412 |
msgstr "↓ Absteigend"
|
2413 |
|
2414 |
-
#: templates/admin/fees-index.tpl.php:
|
2415 |
#, fuzzy
|
2416 |
msgid "Drag and drop to re-order fees."
|
2417 |
msgstr "Ziehen um Preise wiederholt zu beauftragen."
|
2418 |
|
2419 |
-
#. translators: %1$s is directory payment mode (Free or Paid)
|
2420 |
-
#: templates/admin/fees-index.tpl.php:66
|
2421 |
-
msgid "All fee plans may not be available in \"%1$s\" mode."
|
2422 |
-
msgstr ""
|
2423 |
-
|
2424 |
#: templates/admin/fees-index.tpl.php:67
|
2425 |
-
msgid "Paid"
|
2426 |
-
msgstr "Bezahlt"
|
2427 |
-
|
2428 |
-
#: templates/admin/fees-index.tpl.php:92
|
2429 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: templates/admin/fees-index.tpl.php:
|
2433 |
msgid "Add a payment gateway to increase conversion rates"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
#. translators: %s: payment gateway name */
|
2437 |
-
#: templates/admin/fees-index.tpl.php:
|
2438 |
msgid "Add the %s gateway as a payment option."
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: templates/admin/fees-index.tpl.php:
|
2442 |
#, fuzzy
|
2443 |
msgid "Upgrade"
|
2444 |
msgstr "Aktualisieren auf %s"
|
2445 |
|
2446 |
-
#: templates/admin/fees-index.tpl.php:
|
2447 |
msgid "Set up Authorize.net as a payment option."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: templates/admin/fees-index.tpl.php:
|
2451 |
msgid "Set Up"
|
2452 |
msgstr ""
|
2453 |
|
@@ -2481,15 +2458,6 @@ msgstr "Bist du sicher, dass du das Feld \"%s\" löschen möchtest?"
|
|
2481 |
msgid "Delete Field"
|
2482 |
msgstr "Feld löschen"
|
2483 |
|
2484 |
-
#: templates/admin/home.tpl.php:55
|
2485 |
-
#, fuzzy
|
2486 |
-
msgid "Manage Options"
|
2487 |
-
msgstr "Optionen Verwalten"
|
2488 |
-
|
2489 |
-
#: templates/admin/home.tpl.php:74
|
2490 |
-
msgid "Manage Paid Listings"
|
2491 |
-
msgstr "Bezahlte Einträge verwalten"
|
2492 |
-
|
2493 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2494 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2495 |
#: templates/login.tpl.php:71
|
@@ -2810,7 +2778,7 @@ msgstr "Preis aktualisiert."
|
|
2810 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2811 |
msgstr "neue Version verfügbar (<b>%s</b>). <a>Jetzt aktualisieren</a>."
|
2812 |
|
2813 |
-
#: templates/admin/themes-item.tpl.php:
|
2814 |
#, fuzzy
|
2815 |
msgid "Inactive"
|
2816 |
msgstr "Nur Aktiv"
|
@@ -3859,7 +3827,13 @@ msgctxt "fees admin"
|
|
3859 |
msgid "Fee \"%s\" deleted."
|
3860 |
msgstr "Preis gelöscht."
|
3861 |
|
3862 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3863 |
msgctxt "fees admin"
|
3864 |
msgid "Fee disabled."
|
3865 |
msgstr "Preis gelöscht."
|
@@ -3874,58 +3848,58 @@ msgctxt "fees admin"
|
|
3874 |
msgid "fees"
|
3875 |
msgstr "Preise"
|
3876 |
|
3877 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3878 |
#, fuzzy
|
3879 |
msgctxt "fees admin"
|
3880 |
msgid "Attributes"
|
3881 |
msgstr "Feld Attribute"
|
3882 |
|
3883 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3884 |
msgctxt "fees admin"
|
3885 |
msgid "Edit"
|
3886 |
msgstr "Bearbeiten"
|
3887 |
|
3888 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3889 |
#, fuzzy
|
3890 |
msgctxt "fees admin"
|
3891 |
msgid "Variable"
|
3892 |
msgstr "Deaktivieren"
|
3893 |
|
3894 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3895 |
#, fuzzy
|
3896 |
msgctxt "fees admin"
|
3897 |
msgid "%1$s + %2$s per category"
|
3898 |
msgstr "Preis \"%s\" für Kategorie \"%s\""
|
3899 |
|
3900 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3901 |
msgctxt "fees admin"
|
3902 |
msgid "Forever"
|
3903 |
msgstr "Für immer"
|
3904 |
|
3905 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3906 |
msgctxt "fees admin"
|
3907 |
msgid "%d day"
|
3908 |
msgid_plural "%d days"
|
3909 |
msgstr[0] "%d Tag"
|
3910 |
msgstr[1] "%d Tage"
|
3911 |
|
3912 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3913 |
msgctxt "fees admin"
|
3914 |
msgid "All categories"
|
3915 |
msgstr "Alle Kategorien"
|
3916 |
|
3917 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3918 |
msgctxt "fees admin"
|
3919 |
msgid "Sticky"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3923 |
#, fuzzy
|
3924 |
msgctxt "fees admin"
|
3925 |
msgid "Recurring"
|
3926 |
msgstr "(wiederkehrend)"
|
3927 |
|
3928 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3929 |
#, fuzzy
|
3930 |
msgctxt "fees admin"
|
3931 |
msgid "Private"
|
@@ -4116,53 +4090,53 @@ msgctxt "listing status"
|
|
4116 |
msgid "Reported"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
-
#: includes/models/class-listing.php:
|
4120 |
msgctxt "listing status"
|
4121 |
msgid "Unknown"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: includes/models/class-listing.php:
|
4125 |
msgctxt "listing status"
|
4126 |
msgid "Legacy"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: includes/models/class-listing.php:
|
4130 |
#, fuzzy
|
4131 |
msgctxt "listing status"
|
4132 |
msgid "Incomplete"
|
4133 |
msgstr "Abgeschlossen"
|
4134 |
|
4135 |
-
#: includes/models/class-listing.php:
|
4136 |
#, fuzzy
|
4137 |
msgctxt "listing status"
|
4138 |
msgid "Pending Payment"
|
4139 |
msgstr "Ausstehende Zahlungen"
|
4140 |
|
4141 |
-
#: includes/models/class-listing.php:
|
4142 |
#, fuzzy
|
4143 |
msgctxt "listing status"
|
4144 |
msgid "Complete"
|
4145 |
msgstr "Abgeschlossen"
|
4146 |
|
4147 |
-
#: includes/models/class-listing.php:
|
4148 |
#, fuzzy
|
4149 |
msgctxt "listing status"
|
4150 |
msgid "Pending Upgrade"
|
4151 |
msgstr "Ausstehende Aktualisierung"
|
4152 |
|
4153 |
-
#: includes/models/class-listing.php:
|
4154 |
#, fuzzy
|
4155 |
msgctxt "listing status"
|
4156 |
msgid "Expired"
|
4157 |
msgstr "Abgelaufen"
|
4158 |
|
4159 |
-
#: includes/models/class-listing.php:
|
4160 |
#, fuzzy
|
4161 |
msgctxt "listing status"
|
4162 |
msgid "Pending Renewal"
|
4163 |
msgstr "Aktiv + Ausstehende Erneuerungen"
|
4164 |
|
4165 |
-
#: includes/models/class-listing.php:
|
4166 |
#, fuzzy
|
4167 |
msgctxt "listing status"
|
4168 |
msgid "Abandoned"
|
@@ -4830,13 +4804,13 @@ msgid "Author"
|
|
4830 |
msgstr "Author"
|
4831 |
|
4832 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4833 |
-
#: includes/helpers/functions/general.php:
|
4834 |
msgctxt "admin settings"
|
4835 |
msgid "Date posted"
|
4836 |
msgstr "Datum gepostet"
|
4837 |
|
4838 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4839 |
-
#: includes/helpers/functions/general.php:
|
4840 |
msgctxt "admin settings"
|
4841 |
msgid "Date last modified"
|
4842 |
msgstr "Datum zuletzt verändert"
|
@@ -5011,151 +4985,151 @@ msgctxt "admin settings"
|
|
5011 |
msgid "U.S. Dollar (USD)"
|
5012 |
msgstr "U.S. Dollar"
|
5013 |
|
5014 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5015 |
msgctxt "admin settings"
|
5016 |
msgid "Show currency symbol on the left"
|
5017 |
msgstr "Währungssymbol links anzeigen"
|
5018 |
|
5019 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5020 |
msgctxt "admin settings"
|
5021 |
msgid "Show currency symbol on the right"
|
5022 |
msgstr "Währungssymbol rechts anzeigen"
|
5023 |
|
5024 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5025 |
msgctxt "admin settings"
|
5026 |
msgid "Do not show currency symbol"
|
5027 |
msgstr "Währungssymbol nicht anzeigen"
|
5028 |
|
5029 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5030 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5031 |
msgctxt "admin settings"
|
5032 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5036 |
msgctxt "admin settings"
|
5037 |
msgid ""
|
5038 |
"Listings with pending payments are marked as abandoned after this time. You "
|
5039 |
"can also <a>customize the email</a> users receive."
|
5040 |
msgstr ""
|
5041 |
|
5042 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5043 |
msgctxt "admin settings"
|
5044 |
msgid "Try listing's email field first, then author's email."
|
5045 |
msgstr "Versuchen Sie das E-Mail-Feld zuerst, dann die E-Mail des Autors."
|
5046 |
|
5047 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5048 |
msgctxt "admin settings"
|
5049 |
msgid "Try author's email first and then listing's email field."
|
5050 |
msgstr ""
|
5051 |
"Probieren sie erst die E-Mail des Authors und dann die E-Mail des Felds."
|
5052 |
|
5053 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5054 |
msgctxt "admin settings"
|
5055 |
msgid "Plain (text/plain)"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5059 |
msgctxt "admin settings"
|
5060 |
msgid "HTML (text/html)"
|
5061 |
msgstr ""
|
5062 |
|
5063 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5064 |
msgctxt "admin settings"
|
5065 |
msgid "Both (multipart/alternative)"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5069 |
msgctxt "admin settings"
|
5070 |
msgid "A new listing is submitted."
|
5071 |
msgstr "Ein neuer Eintrag wurde übermittelt."
|
5072 |
|
5073 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5074 |
msgctxt "admin settings"
|
5075 |
msgid "A listing is edited."
|
5076 |
msgstr "Ein Eintrag wurde bearbeitet."
|
5077 |
|
5078 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5079 |
msgctxt "admin settings"
|
5080 |
msgid "A listing expires."
|
5081 |
msgstr "Ein Eintrag läuft aus."
|
5082 |
|
5083 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5084 |
#, fuzzy
|
5085 |
msgctxt "admin settings"
|
5086 |
msgid "A listing is renewed."
|
5087 |
msgstr "Ein Eintrag wurde bearbeitet."
|
5088 |
|
5089 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5090 |
#, fuzzy
|
5091 |
msgctxt "admin settings"
|
5092 |
msgid "A listing payment is completed."
|
5093 |
msgstr "Ein Eintrag wurde bearbeitet."
|
5094 |
|
5095 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5096 |
#, fuzzy
|
5097 |
msgctxt "admin settings"
|
5098 |
msgid "A listing has been reported as inappropriate."
|
5099 |
msgstr "Der Eintrag wurde aktualisiert"
|
5100 |
|
5101 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5102 |
msgctxt "admin settings"
|
5103 |
msgid "A contact message is sent to a listing's owner."
|
5104 |
msgstr "Eine Nachricht wurde an einen Eintrags-Eigentümer versendet."
|
5105 |
|
5106 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5107 |
msgctxt "admin settings"
|
5108 |
msgid "Their listing is submitted."
|
5109 |
msgstr "Ihr Eintrag ist eingereicht."
|
5110 |
|
5111 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5112 |
msgctxt "admin settings"
|
5113 |
msgid "Their listing is approved/published."
|
5114 |
msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
|
5115 |
|
5116 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5117 |
#, fuzzy
|
5118 |
msgctxt "admin settings"
|
5119 |
msgid "A payment for their listing is completed."
|
5120 |
msgstr "Ihr Eintrag ist eingereicht."
|
5121 |
|
5122 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5123 |
#, fuzzy
|
5124 |
msgctxt "admin settings"
|
5125 |
msgid "Their listing expired or is about to expire."
|
5126 |
msgstr "Ihr Eintrag ist eingereicht."
|
5127 |
|
5128 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5129 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5130 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5131 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5132 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5133 |
msgctxt "admin settings"
|
5134 |
msgid "Listing's title"
|
5135 |
msgstr "Eintrag Titel"
|
5136 |
|
5137 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5138 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5139 |
#, fuzzy
|
5140 |
msgctxt "admin settings"
|
5141 |
msgid "Listing's fee plan name"
|
5142 |
msgstr "Eintrag Enddatum"
|
5143 |
|
5144 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5145 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5146 |
#, fuzzy
|
5147 |
msgctxt "admin settings"
|
5148 |
msgid "Listing's fee plan description"
|
5149 |
msgstr "Auswahl der Preispakete"
|
5150 |
|
5151 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5152 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5153 |
#, fuzzy
|
5154 |
msgctxt "admin settings"
|
5155 |
msgid "Listing's fee plan details"
|
5156 |
msgstr "Eintrag Enddatum"
|
5157 |
|
5158 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5159 |
msgctxt "admin settings"
|
5160 |
msgid ""
|
5161 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
@@ -5164,70 +5138,70 @@ msgstr ""
|
|
5164 |
"Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
|
5165 |
"kann öffentlich eingesehen werden."
|
5166 |
|
5167 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5168 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5169 |
msgctxt "admin settings"
|
5170 |
msgid "Listing's URL"
|
5171 |
msgstr "Eintrags URL"
|
5172 |
|
5173 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5174 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5175 |
#, fuzzy
|
5176 |
msgctxt "admin settings"
|
5177 |
msgid "Listing's Access Key"
|
5178 |
msgstr "Eintrag Felder / Bilder"
|
5179 |
|
5180 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5181 |
#, fuzzy
|
5182 |
msgctxt "admin settings"
|
5183 |
msgid "Sender's name"
|
5184 |
msgstr "Authorname"
|
5185 |
|
5186 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5187 |
#, fuzzy
|
5188 |
msgctxt "admin settings"
|
5189 |
msgid "Contact message"
|
5190 |
msgstr "Neue Eintrag Anweisungen"
|
5191 |
|
5192 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5193 |
msgctxt "admin settings"
|
5194 |
msgid "Date and time the message was sent"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5198 |
#, fuzzy
|
5199 |
msgctxt "admin settings"
|
5200 |
msgid "Payment items details."
|
5201 |
msgstr "Bezahldetails"
|
5202 |
|
5203 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5204 |
msgctxt "admin settings"
|
5205 |
msgid "URL where user can review and print payment receipt."
|
5206 |
msgstr ""
|
5207 |
|
5208 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5209 |
#, fuzzy
|
5210 |
msgctxt "admin settings"
|
5211 |
msgid "Gateway used to process listing's payment."
|
5212 |
msgstr "Bezahlung ausführen"
|
5213 |
|
5214 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5215 |
msgctxt "admin settings"
|
5216 |
msgid "Checkout URL link"
|
5217 |
msgstr "Kasse"
|
5218 |
|
5219 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5220 |
#, fuzzy
|
5221 |
msgctxt "admin settings"
|
5222 |
msgid "Uploaded Image (no resize)"
|
5223 |
msgstr "Dateien hochladen"
|
5224 |
|
5225 |
-
#: includes/helpers/functions/general.php:
|
5226 |
msgctxt "admin settings"
|
5227 |
msgid "User"
|
5228 |
msgstr "Benutzer"
|
5229 |
|
5230 |
-
#: includes/helpers/functions/general.php:
|
5231 |
msgctxt "admin settings"
|
5232 |
msgid "User registration date"
|
5233 |
msgstr "Eintrag Enddatum"
|
@@ -5462,7 +5436,7 @@ msgstr "Einträge"
|
|
5462 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5463 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5464 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5465 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5466 |
#: includes/admin/settings/class-settings.php:341
|
5467 |
#, fuzzy
|
5468 |
msgctxt "settings"
|
@@ -6139,19 +6113,13 @@ msgctxt "settings"
|
|
6139 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6140 |
msgstr ""
|
6141 |
|
6142 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6143 |
#, fuzzy
|
6144 |
msgctxt "settings"
|
6145 |
msgid "Fee Order"
|
6146 |
msgstr "Auftrag"
|
6147 |
|
6148 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6149 |
-
#, fuzzy
|
6150 |
-
msgctxt "settings"
|
6151 |
-
msgid "Turn On payments?"
|
6152 |
-
msgstr "Bezahlungen aktivieren?"
|
6153 |
-
|
6154 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1144
|
6155 |
#, fuzzy
|
6156 |
msgctxt "settings"
|
6157 |
msgid "Put payment gateways in test mode?"
|
@@ -6163,47 +6131,47 @@ msgctxt "settings"
|
|
6163 |
msgid "Currency Code"
|
6164 |
msgstr "Währungsschlüssel"
|
6165 |
|
6166 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6167 |
#, fuzzy
|
6168 |
msgctxt "settings"
|
6169 |
msgid "Currency Symbol"
|
6170 |
msgstr "Währungssymbol"
|
6171 |
|
6172 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6173 |
#, fuzzy
|
6174 |
msgctxt "settings"
|
6175 |
msgid "Currency symbol display"
|
6176 |
msgstr "Währungssymbol Anzeige"
|
6177 |
|
6178 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6179 |
msgctxt "settings"
|
6180 |
msgid "Include fee description in receipt?"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6184 |
#, fuzzy
|
6185 |
msgctxt "settings"
|
6186 |
msgid "Thank you for payment message"
|
6187 |
msgstr "Danke für die Bezahlung Nachricht"
|
6188 |
|
6189 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6190 |
msgctxt "settings"
|
6191 |
msgid "Ask users to come back for abandoned payments?"
|
6192 |
msgstr ""
|
6193 |
|
6194 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6195 |
#, fuzzy
|
6196 |
msgctxt "settings"
|
6197 |
msgid "Listing abandonment threshold (hours)"
|
6198 |
msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
|
6199 |
|
6200 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6201 |
#, fuzzy
|
6202 |
msgctxt "settings"
|
6203 |
msgid "Display email address fields publicly?"
|
6204 |
msgstr "E-mail Adressfeld öffentlich anzeigen?"
|
6205 |
|
6206 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6207 |
#, fuzzy
|
6208 |
msgctxt "settings"
|
6209 |
msgid ""
|
@@ -6213,13 +6181,13 @@ msgid ""
|
|
6213 |
msgstr ""
|
6214 |
"E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
|
6215 |
|
6216 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6217 |
#, fuzzy
|
6218 |
msgctxt "settings"
|
6219 |
msgid "How to determine the listing's email address?"
|
6220 |
msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
|
6221 |
|
6222 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6223 |
#, fuzzy
|
6224 |
msgctxt "settings"
|
6225 |
msgid ""
|
@@ -6229,12 +6197,12 @@ msgstr ""
|
|
6229 |
"Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
|
6230 |
"Eintrag abläuft."
|
6231 |
|
6232 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6233 |
msgctxt "settings"
|
6234 |
msgid "Email Content-Type header"
|
6235 |
msgstr ""
|
6236 |
|
6237 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6238 |
msgctxt "settings"
|
6239 |
msgid ""
|
6240 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -6243,31 +6211,31 @@ msgid ""
|
|
6243 |
"then \"Both\"."
|
6244 |
msgstr ""
|
6245 |
|
6246 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6247 |
#, fuzzy
|
6248 |
msgctxt "settings"
|
6249 |
msgid "Templates"
|
6250 |
msgstr "E-mail Templates"
|
6251 |
|
6252 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6253 |
#, fuzzy
|
6254 |
msgctxt "settings"
|
6255 |
msgid "Email confirmation message"
|
6256 |
msgstr "Email Bestätigungsnachricht"
|
6257 |
|
6258 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6259 |
#, fuzzy
|
6260 |
msgctxt "settings"
|
6261 |
msgid "Sent after a listing has been submitted."
|
6262 |
msgstr "Senden nachdem der Eintrag eingestellt wurde."
|
6263 |
|
6264 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6265 |
#, fuzzy
|
6266 |
msgctxt "settings"
|
6267 |
msgid "Listing published message"
|
6268 |
msgstr "Eintrag veröffentlicht Nachricht"
|
6269 |
|
6270 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6271 |
#, fuzzy
|
6272 |
msgctxt "settings"
|
6273 |
msgid "Sent when the listing has been published or approved by an admin."
|
@@ -6275,13 +6243,13 @@ msgstr ""
|
|
6275 |
"Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
|
6276 |
"wurde."
|
6277 |
|
6278 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6279 |
#, fuzzy
|
6280 |
msgctxt "settings"
|
6281 |
msgid "Listing Contact Message"
|
6282 |
msgstr "Neue Eintrag Anweisungen"
|
6283 |
|
6284 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6285 |
#, fuzzy
|
6286 |
msgctxt "settings"
|
6287 |
msgid ""
|
@@ -6291,24 +6259,24 @@ msgstr ""
|
|
6291 |
"An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
|
6292 |
"verwendet."
|
6293 |
|
6294 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6295 |
#, fuzzy
|
6296 |
msgctxt "settings"
|
6297 |
msgid "Payment completed message"
|
6298 |
msgstr "Erneuerungserinnerung E-mail Nachricht"
|
6299 |
|
6300 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6301 |
msgctxt "settings"
|
6302 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6303 |
msgstr ""
|
6304 |
|
6305 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6306 |
#, fuzzy
|
6307 |
msgctxt "settings"
|
6308 |
msgid "Payment abandoned reminder message"
|
6309 |
msgstr "Erneuerungserinnerung E-mail Nachricht"
|
6310 |
|
6311 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6312 |
msgctxt "settings"
|
6313 |
msgid "Cropped"
|
6314 |
msgstr ""
|
@@ -6324,18 +6292,18 @@ msgctxt "settings"
|
|
6324 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6325 |
msgstr ""
|
6326 |
|
6327 |
-
#: includes/licensing.php:
|
6328 |
#, fuzzy
|
6329 |
msgctxt "settings"
|
6330 |
msgid "Themes"
|
6331 |
msgstr "Preise Verwalten"
|
6332 |
|
6333 |
-
#: includes/licensing.php:
|
6334 |
msgctxt "settings"
|
6335 |
msgid "Please wait..."
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#: includes/licensing.php:
|
6339 |
#, fuzzy
|
6340 |
msgctxt "settings"
|
6341 |
msgid "Deauthorize"
|
@@ -6392,29 +6360,29 @@ msgctxt "themes"
|
|
6392 |
msgid "Could not delete theme directory. Check permissions."
|
6393 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
6394 |
|
6395 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6396 |
msgctxt "themes"
|
6397 |
msgid "Please upload a valid theme file."
|
6398 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
6399 |
|
6400 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6401 |
msgctxt "themes"
|
6402 |
msgid "Could not move \"%s\" to a temporary directory."
|
6403 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
6404 |
|
6405 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6406 |
msgctxt "themes"
|
6407 |
msgid "Activate your <a>license key</a> to use this theme."
|
6408 |
msgstr ""
|
6409 |
"Aktivieren Sie Ihren <a>Lizenzschlüssel</a>, um dieses Theme zu verwenden."
|
6410 |
|
6411 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6412 |
#, fuzzy
|
6413 |
msgctxt "themes"
|
6414 |
msgid "Invalid theme ID"
|
6415 |
msgstr "Ungültige Feld ID"
|
6416 |
|
6417 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6418 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6419 |
msgctxt "themes"
|
6420 |
msgid "Could not update theme: %s"
|
@@ -6862,24 +6830,24 @@ msgid "Trash"
|
|
6862 |
msgstr ""
|
6863 |
|
6864 |
#. translators: %s: url shortcode
|
6865 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6866 |
msgctxt "contact email"
|
6867 |
msgid "You have received a reply from your listing at %s."
|
6868 |
msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
|
6869 |
|
6870 |
#. translators: %s: name shortcode
|
6871 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6872 |
msgctxt "contact email"
|
6873 |
msgid "Name: %s"
|
6874 |
msgstr "Name: %s"
|
6875 |
|
6876 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6877 |
msgctxt "contact email"
|
6878 |
msgid "Message:"
|
6879 |
msgstr "Nachricht:"
|
6880 |
|
6881 |
#. translators: %s: date shortcode
|
6882 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6883 |
msgctxt "contact email"
|
6884 |
msgid "Time: %s"
|
6885 |
msgstr "Zeit: %s"
|
@@ -7179,37 +7147,37 @@ msgctxt "listing"
|
|
7179 |
msgid "Add New Listing"
|
7180 |
msgstr "Neuer Eintrag"
|
7181 |
|
7182 |
-
#: includes/models/class-listing.php:
|
7183 |
#, fuzzy
|
7184 |
msgctxt "listing"
|
7185 |
msgid "Listing has no registered payments"
|
7186 |
msgstr "Eintrag Enddatum"
|
7187 |
|
7188 |
-
#: includes/models/class-listing.php:
|
7189 |
#, fuzzy
|
7190 |
msgctxt "listing"
|
7191 |
msgid "Can't delete payment"
|
7192 |
msgstr "Bezahlung zurückweisen"
|
7193 |
|
7194 |
-
#: includes/models/class-listing.php:
|
7195 |
#, fuzzy
|
7196 |
msgctxt "listing"
|
7197 |
msgid "Listing expired"
|
7198 |
msgstr "Ein Eintrag läuft aus."
|
7199 |
|
7200 |
-
#: includes/models/class-listing.php:
|
7201 |
#, fuzzy
|
7202 |
msgctxt "listing"
|
7203 |
msgid "(Unavailable Plan)"
|
7204 |
msgstr "(Preis nicht verfügbar)"
|
7205 |
|
7206 |
-
#: includes/models/class-listing.php:
|
7207 |
#, fuzzy
|
7208 |
msgctxt "listing"
|
7209 |
msgid "Plan \"%s\" (recurring)"
|
7210 |
msgstr "(wiederkehrend)"
|
7211 |
|
7212 |
-
#: includes/models/class-listing.php:
|
7213 |
msgctxt "listing"
|
7214 |
msgid "Plan \"%s\""
|
7215 |
msgstr ""
|
@@ -7348,7 +7316,7 @@ msgctxt "payment-gateways"
|
|
7348 |
msgid "Enable %s?"
|
7349 |
msgstr "Aktivieren"
|
7350 |
|
7351 |
-
#: includes/class-payment-gateways.php:
|
7352 |
#, fuzzy
|
7353 |
msgctxt "payment-gateways"
|
7354 |
msgid ""
|
@@ -7359,25 +7327,11 @@ msgstr ""
|
|
7359 |
"Gateway funktioniert nicht bis folgende Probleme gelöst wurden: <b>%s</b>. "
|
7360 |
"Prüfe die <a href=\"%s\">Bezahlung Einstellungen</a>."
|
7361 |
|
7362 |
-
#: includes/class-payment-gateways.php:
|
7363 |
msgctxt "payment-gateways"
|
7364 |
msgid "Please check the <link>payment settings</link>."
|
7365 |
msgstr ""
|
7366 |
|
7367 |
-
#: includes/class-payment-gateways.php:142
|
7368 |
-
#, fuzzy
|
7369 |
-
msgctxt "payment-gateways"
|
7370 |
-
msgid ""
|
7371 |
-
"You have payments turned on but no gateway is active and properly "
|
7372 |
-
"configured. Go to <link>Manage Options - Payment</link> to change the "
|
7373 |
-
"payment settings. Until you change this, the directory will operate in "
|
7374 |
-
"<i>Free Mode</i>."
|
7375 |
-
msgstr ""
|
7376 |
-
"Bezahlungen sind aktiviert aber kein Gateway ist aktiv oder richtig "
|
7377 |
-
"konfiguriert. Nach <a href=\"%s\">Optionen Verwalten - Bezahlung</a>, um die "
|
7378 |
-
"Bezahleinstellungen zu ändern. Das Verzeichnis wird im <i>kostenlosen Modus</"
|
7379 |
-
"i> ausgeführt, bis die Änderungen gemacht wurden."
|
7380 |
-
|
7381 |
#: includes/class-recaptcha.php:32
|
7382 |
msgctxt "recaptcha"
|
7383 |
msgid "The reCAPTCHA wasn't entered correctly."
|
@@ -7603,7 +7557,7 @@ msgstr ""
|
|
7603 |
"angezeigt. Wenn du das nicht möchtest, klicke <a>hier</a> um die "
|
7604 |
"Einstellungen zu ändern."
|
7605 |
|
7606 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7607 |
msgctxt "templates"
|
7608 |
msgid ""
|
7609 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
@@ -7612,27 +7566,27 @@ msgstr ""
|
|
7612 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7613 |
"Submission?\" setting checked?"
|
7614 |
|
7615 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7616 |
msgctxt "templates"
|
7617 |
msgid ""
|
7618 |
"Listing submission has been disabled. Contact the administrator for details."
|
7619 |
msgstr ""
|
7620 |
|
7621 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7622 |
msgctxt "templates"
|
7623 |
msgid ""
|
7624 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7625 |
"submit a listing. %s to create a fee plan"
|
7626 |
msgstr ""
|
7627 |
|
7628 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7629 |
msgctxt "templates"
|
7630 |
msgid ""
|
7631 |
"Listing submission is not available at the moment. Contact the administrator "
|
7632 |
"for details."
|
7633 |
msgstr ""
|
7634 |
|
7635 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7636 |
msgctxt "templates"
|
7637 |
msgid ""
|
7638 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -7640,17 +7594,17 @@ msgid ""
|
|
7640 |
"an existing field"
|
7641 |
msgstr ""
|
7642 |
|
7643 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7644 |
msgctxt "templates"
|
7645 |
msgid "Please agree to the Terms and Conditions."
|
7646 |
msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
|
7647 |
|
7648 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7649 |
msgctxt "templates"
|
7650 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7651 |
msgstr "Ich akzeptiere die <a>AGB</a>s"
|
7652 |
|
7653 |
-
#: includes/helpers/functions/general.php:
|
7654 |
msgctxt "templates"
|
7655 |
msgid "Return to results"
|
7656 |
msgstr "Zurück zu den Ergebnissen"
|
@@ -8000,7 +7954,7 @@ msgctxt "submit listing"
|
|
8000 |
msgid "You can't edit this listing."
|
8001 |
msgstr "Kategorie für diesen Eintrag"
|
8002 |
|
8003 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8004 |
msgctxt "submit listing"
|
8005 |
msgid ""
|
8006 |
"This listing can't be edited at this time because it has no fee plan "
|
@@ -8008,14 +7962,14 @@ msgid ""
|
|
8008 |
"to a fee plan."
|
8009 |
msgstr ""
|
8010 |
|
8011 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8012 |
msgctxt "submit listing"
|
8013 |
msgid ""
|
8014 |
"This listing can't be edited at this time. Please try again later or contact "
|
8015 |
"the admin if the problem persists."
|
8016 |
msgstr ""
|
8017 |
|
8018 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8019 |
#, fuzzy
|
8020 |
msgctxt "submit listing"
|
8021 |
msgid "You're logged in as admin, payment will be skipped."
|
@@ -8023,19 +7977,19 @@ msgstr ""
|
|
8023 |
"Du bist als Administrator eingeloggt. Alle Bezahlungsschritte werden "
|
8024 |
"übersprungen."
|
8025 |
|
8026 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8027 |
#, fuzzy
|
8028 |
msgctxt "submit listing"
|
8029 |
msgid "Category selection"
|
8030 |
msgstr "Kategorien auswählen"
|
8031 |
|
8032 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8033 |
#, fuzzy
|
8034 |
msgctxt "submit listing"
|
8035 |
msgid "Category & plan selection"
|
8036 |
msgstr "Kategorien auswählen"
|
8037 |
|
8038 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8039 |
#, fuzzy
|
8040 |
msgctxt "submit listing"
|
8041 |
msgid "Can not submit a listing at this moment. Please try again later."
|
@@ -8043,42 +7997,42 @@ msgstr ""
|
|
8043 |
"Ihre Zahlung kann momentan nicht ausgeführt werden. Bitte versuchen Sie es "
|
8044 |
"später noch einmal."
|
8045 |
|
8046 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8047 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8048 |
#, fuzzy
|
8049 |
msgctxt "submit listing"
|
8050 |
msgid "Please select a category."
|
8051 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
8052 |
|
8053 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8054 |
msgctxt "submit listing"
|
8055 |
msgid "Please choose a valid category for your plan."
|
8056 |
msgstr ""
|
8057 |
|
8058 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8059 |
#, fuzzy
|
8060 |
msgctxt "submit listing"
|
8061 |
msgid "Please choose a valid fee plan for your category selection."
|
8062 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
8063 |
|
8064 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8065 |
#, fuzzy
|
8066 |
msgctxt "submit listing"
|
8067 |
msgid "Please enter your desired username."
|
8068 |
msgstr "Bitte geben Sie einen Namen ein."
|
8069 |
|
8070 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8071 |
#, fuzzy
|
8072 |
msgctxt "submit listing"
|
8073 |
msgid "Please enter the e-mail for your new account."
|
8074 |
msgstr "Bitte geben Sie einen Namen ein."
|
8075 |
|
8076 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8077 |
msgctxt "submit listing"
|
8078 |
msgid "The username you chose is already in use. Please use a different one."
|
8079 |
msgstr ""
|
8080 |
|
8081 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8082 |
msgctxt "submit listing"
|
8083 |
msgid "The e-mail address you chose for your account is already in use."
|
8084 |
msgstr ""
|
@@ -8089,7 +8043,7 @@ msgctxt "submit listing"
|
|
8089 |
msgid "Listing submitted by admin. Payment skipped."
|
8090 |
msgstr "Eintrag zusenden (Initialbezahlung)"
|
8091 |
|
8092 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8093 |
msgctxt "listing submit"
|
8094 |
msgid ""
|
8095 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8418,19 +8372,19 @@ msgctxt "default category name"
|
|
8418 |
msgid "General"
|
8419 |
msgstr "Allgemein"
|
8420 |
|
8421 |
-
#: includes/licensing.php:
|
8422 |
msgctxt "licensing"
|
8423 |
msgid "Could not contact licensing server"
|
8424 |
msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
|
8425 |
|
8426 |
-
#: includes/licensing.php:
|
8427 |
msgctxt "licensing"
|
8428 |
msgid ""
|
8429 |
"It was not possible to establish a connection with Business Directory's "
|
8430 |
"server. cURL was not found in your system"
|
8431 |
msgstr ""
|
8432 |
|
8433 |
-
#: includes/licensing.php:
|
8434 |
msgctxt "licensing"
|
8435 |
msgid ""
|
8436 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8439,7 +8393,7 @@ msgid ""
|
|
8439 |
"1.0.1c)."
|
8440 |
msgstr ""
|
8441 |
|
8442 |
-
#: includes/licensing.php:
|
8443 |
msgctxt "licensing"
|
8444 |
msgid ""
|
8445 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8447,47 +8401,47 @@ msgid ""
|
|
8447 |
"services using the latest security standards."
|
8448 |
msgstr ""
|
8449 |
|
8450 |
-
#: includes/licensing.php:
|
8451 |
msgctxt "licensing"
|
8452 |
msgid ""
|
8453 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8454 |
"Include this message if necessary"
|
8455 |
msgstr ""
|
8456 |
|
8457 |
-
#: includes/licensing.php:
|
8458 |
msgctxt "licensing"
|
8459 |
msgid ""
|
8460 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8461 |
"Include this message if necessary."
|
8462 |
msgstr ""
|
8463 |
|
8464 |
-
#: includes/licensing.php:
|
8465 |
msgctxt "licensing"
|
8466 |
msgid "The server returned a 403 Forbidden error."
|
8467 |
msgstr ""
|
8468 |
|
8469 |
-
#: includes/licensing.php:
|
8470 |
msgctxt "licensing"
|
8471 |
msgid "Could not activate license: %s."
|
8472 |
msgstr "Konnte Lizenz nicht aktivieren: %s"
|
8473 |
|
8474 |
-
#: includes/licensing.php:
|
8475 |
msgctxt "licensing"
|
8476 |
msgid "License activated"
|
8477 |
msgstr "Lizenz aktiviert"
|
8478 |
|
8479 |
-
#: includes/licensing.php:
|
8480 |
msgctxt "licensing"
|
8481 |
msgid "Could not deactivate license: %s."
|
8482 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
8483 |
|
8484 |
-
#: includes/licensing.php:
|
8485 |
msgctxt "licensing"
|
8486 |
msgid "License deactivated"
|
8487 |
msgstr "Lizenz deaktiviert"
|
8488 |
|
8489 |
#. translators: "<module-name>" version <version-number> is not...
|
8490 |
-
#: includes/licensing.php:
|
8491 |
msgctxt "deprecation"
|
8492 |
msgid ""
|
8493 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8506,19 +8460,19 @@ msgid_plural "%d images allowed."
|
|
8506 |
msgstr[0] "%d Bild erlaubt."
|
8507 |
msgstr[1] "%d Bilder erlaubt."
|
8508 |
|
8509 |
-
#: includes/models/class-fee-plan.php:
|
8510 |
msgctxt "fees-api"
|
8511 |
msgid "Fee label is required."
|
8512 |
msgstr "Preisbezeichnung erforderlich."
|
8513 |
|
8514 |
-
#: includes/models/class-fee-plan.php:
|
8515 |
msgctxt "fees-api"
|
8516 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8517 |
msgstr ""
|
8518 |
"Preis Eintrag Zeitraum muss eine Nummer kleiner als 10 Jahre sein (3650 "
|
8519 |
"Tage)."
|
8520 |
|
8521 |
-
#: includes/models/class-fee-plan.php:
|
8522 |
msgctxt "fees-api"
|
8523 |
msgid ""
|
8524 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
@@ -8526,7 +8480,7 @@ msgid ""
|
|
8526 |
"<a>fee plan</a> appropriately."
|
8527 |
msgstr ""
|
8528 |
|
8529 |
-
#: includes/models/class-fee-plan.php:
|
8530 |
msgctxt "fees-api"
|
8531 |
msgid ""
|
8532 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
@@ -8605,17 +8559,17 @@ msgctxt "utils"
|
|
8605 |
msgid "Unkown error while uploading file."
|
8606 |
msgstr "Unbekannter Fehler beim Hochladen der Datei."
|
8607 |
|
8608 |
-
#: includes/utils.php:
|
8609 |
msgctxt "utils"
|
8610 |
msgid "Error while uploading file"
|
8611 |
msgstr "Fehler während des Hochladens der Datei"
|
8612 |
|
8613 |
-
#: includes/utils.php:
|
8614 |
msgctxt "utils"
|
8615 |
msgid "File type \"%s\" is not allowed"
|
8616 |
msgstr "Dateityp \"%s\" ist nicht erlaubt"
|
8617 |
|
8618 |
-
#: includes/utils.php:
|
8619 |
msgctxt "utils"
|
8620 |
msgid ""
|
8621 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8725,49 +8679,6 @@ msgctxt "admin forms"
|
|
8725 |
msgid "required"
|
8726 |
msgstr "Pflichtfeld"
|
8727 |
|
8728 |
-
#: templates/admin/home.tpl.php:12
|
8729 |
-
msgctxt "admin home"
|
8730 |
-
msgid "Welcome to Business Directory Plugin. You are using %s."
|
8731 |
-
msgstr ""
|
8732 |
-
"Willkommen zum Business Directory Plugin das Branchenverzeichnis für "
|
8733 |
-
"Wordpress. Sie benutzen Version: %s."
|
8734 |
-
|
8735 |
-
#: templates/admin/home.tpl.php:15
|
8736 |
-
msgctxt "admin home"
|
8737 |
-
msgid ""
|
8738 |
-
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
8739 |
-
"let's jump right in!"
|
8740 |
-
msgstr ""
|
8741 |
-
"Vielen Dank dass Sie sich für dieses Produkt entschieden haben. Es gibt viel "
|
8742 |
-
"zu tun, also legen wir los!"
|
8743 |
-
|
8744 |
-
#: templates/admin/home.tpl.php:28
|
8745 |
-
msgctxt "admin home"
|
8746 |
-
msgid ""
|
8747 |
-
"Our complete documentation is <a>here</a> which we encourage you to use "
|
8748 |
-
"while setting things up."
|
8749 |
-
msgstr ""
|
8750 |
-
"Während Sie die Einstellungen vornehmen, empfehlen wir die <a>komplette "
|
8751 |
-
"Dokumentation</a> (in englischer Sprache) zur lesen. "
|
8752 |
-
|
8753 |
-
#: templates/admin/home.tpl.php:36
|
8754 |
-
msgctxt "admin home"
|
8755 |
-
msgid ""
|
8756 |
-
"We have some quick-start scenarios that you will find useful regarding setup "
|
8757 |
-
"and configuration <a>here</a>."
|
8758 |
-
msgstr ""
|
8759 |
-
"Für einen schnellen Durchblick bei Installation und Konfiguration, bieten "
|
8760 |
-
"wir einige <a>Schnellstartanleitungen</a>."
|
8761 |
-
|
8762 |
-
#: templates/admin/home.tpl.php:45
|
8763 |
-
msgctxt "admin home"
|
8764 |
-
msgid ""
|
8765 |
-
"If you have questions, please post a comment on <a>support forum</a> and "
|
8766 |
-
"we'll answer it within 24 hours most days."
|
8767 |
-
msgstr ""
|
8768 |
-
"Bei Fragen, schreiben Sie Kommentar im <a>Support Forum</a> und wir werden "
|
8769 |
-
"schnellstmöglich antworten (meistens in weniger als 24 Std.)."
|
8770 |
-
|
8771 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8772 |
#, fuzzy
|
8773 |
msgctxt "admin infometabox"
|
@@ -9053,6 +8964,48 @@ msgctxt "send-access-keys"
|
|
9053 |
msgid "Continue"
|
9054 |
msgstr "Weiter"
|
9055 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9056 |
#, fuzzy
|
9057 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
9058 |
#~ msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-02 19:38:07+00:00\n"
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
|
11 |
"Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
|
94 |
msgid "Directory"
|
95 |
msgstr "Verzeichnis"
|
96 |
|
97 |
+
#: includes/admin/class-admin.php:312
|
98 |
msgid "Fee Plans"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: includes/admin/class-admin.php:315
|
102 |
#, fuzzy
|
103 |
msgid "Form Fields"
|
104 |
msgstr "Formularfelder"
|
105 |
|
106 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
107 |
+
#: includes/licensing.php:227
|
108 |
#, fuzzy
|
109 |
msgid "Modules"
|
110 |
msgstr "Installierte Module"
|
233 |
msgstr "Preis"
|
234 |
|
235 |
#: includes/admin/controllers/class-admin-fees.php:49
|
236 |
+
#: includes/admin/helpers/tables/class-fees-table.php:65
|
237 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
238 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
239 |
#, fuzzy
|
271 |
msgstr "Preis aktualisiert."
|
272 |
|
273 |
#: includes/admin/controllers/class-admin-listings.php:185
|
274 |
+
#: includes/controllers/pages/class-submit-listing.php:518
|
275 |
#: templates/email/listing-reported.tpl.php:7
|
276 |
msgid "Listing Information"
|
277 |
msgstr "Eintrag Informationen"
|
323 |
"verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
|
324 |
|
325 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
326 |
+
#: includes/controllers/pages/class-submit-listing.php:848
|
327 |
#, fuzzy
|
328 |
msgid "Go to \"Form Fields\""
|
329 |
msgstr "zu \"Formularfelder verwalten\""
|
330 |
|
331 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
332 |
+
#: includes/helpers/functions/general.php:1366
|
333 |
+
#: includes/helpers/functions/general.php:1371
|
334 |
#, fuzzy
|
335 |
msgid "Go back"
|
336 |
msgstr "Geh zurück"
|
443 |
msgstr "Warum löscht du die Branchenverzeichnis Erweiterung?"
|
444 |
|
445 |
#: includes/admin/controllers/class-settings-admin.php:536
|
446 |
+
#: includes/admin/helpers/tables/class-fees-table.php:174
|
447 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
448 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
449 |
#: templates/admin/payments-note.tpl.php:14
|
450 |
+
#: templates/admin/themes-item.tpl.php:66
|
451 |
#: templates/parts/listing-buttons.tpl.php:31
|
452 |
#: templates/parts/listing-buttons.tpl.php:65
|
453 |
#, fuzzy
|
501 |
msgstr "Installiert"
|
502 |
|
503 |
#: includes/admin/helpers/class-modules-list.php:187
|
504 |
+
#: includes/admin/helpers/tables/class-fees-table.php:284
|
505 |
+
#: templates/admin/themes-item.tpl.php:41
|
506 |
#, fuzzy
|
507 |
msgid "Active"
|
508 |
msgstr "Nur Aktiv"
|
514 |
|
515 |
#: includes/admin/helpers/class-modules-list.php:225
|
516 |
#: includes/controllers/class-smtp.php:317
|
517 |
+
#: templates/admin/themes-item.tpl.php:61
|
518 |
#, fuzzy
|
519 |
msgid "Activate"
|
520 |
msgstr "Aktiviere Lizenz"
|
521 |
|
522 |
#: includes/admin/helpers/class-modules-list.php:235
|
523 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:275
|
524 |
#, fuzzy
|
525 |
msgid "Upgrade Now"
|
526 |
msgstr "Aktualisieren auf %s"
|
540 |
|
541 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
542 |
#, fuzzy
|
543 |
+
msgid "Order"
|
544 |
+
msgstr "Auftrag"
|
545 |
+
|
546 |
+
#: includes/admin/helpers/tables/class-fees-table.php:62
|
547 |
+
#, fuzzy
|
548 |
msgid "Plan Details"
|
549 |
msgstr "Details planen"
|
550 |
|
551 |
+
#: includes/admin/helpers/tables/class-fees-table.php:63
|
552 |
#, fuzzy
|
553 |
msgid "Pricing"
|
554 |
msgstr "Preis"
|
555 |
|
556 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
557 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
558 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
559 |
#: includes/helpers/class-app.php:92
|
561 |
msgid "Listings"
|
562 |
msgstr "Einträge"
|
563 |
|
564 |
+
#: includes/admin/helpers/tables/class-fees-table.php:153
|
565 |
#, fuzzy
|
566 |
msgid "Disable"
|
567 |
msgstr "Deaktivieren"
|
568 |
|
569 |
+
#: includes/admin/helpers/tables/class-fees-table.php:159
|
570 |
#, fuzzy
|
571 |
msgid "Enable"
|
572 |
msgstr "Aktivieren"
|
573 |
|
574 |
+
#: includes/admin/helpers/tables/class-fees-table.php:181
|
575 |
msgid "ID: %s"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
579 |
#, fuzzy
|
580 |
msgid "Paid Plan"
|
581 |
msgstr "Bezahlt"
|
582 |
|
583 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
584 |
#, fuzzy
|
585 |
msgid "Free Plan"
|
586 |
msgstr "zu \"Formularfelder verwalten\""
|
587 |
|
588 |
+
#: includes/admin/helpers/tables/class-fees-table.php:219
|
589 |
#, fuzzy
|
590 |
msgid "%1$s for %2$s"
|
591 |
msgstr "%s (admin: %s)"
|
592 |
|
593 |
+
#: includes/admin/helpers/tables/class-fees-table.php:282
|
|
|
594 |
#, fuzzy
|
595 |
msgid "Disabled"
|
596 |
msgstr "Inaktiv"
|
597 |
|
598 |
+
#: includes/admin/helpers/tables/class-fees-table.php:288
|
599 |
#: includes/helpers/functions/templates-ui.php:431
|
600 |
#, fuzzy
|
601 |
msgid "Default"
|
638 |
msgstr "Nicht vorhandene Tabellen: %s"
|
639 |
|
640 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
641 |
+
#: includes/controllers/pages/class-submit-listing.php:1252
|
642 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
643 |
#: templates/listing-contactform.tpl.php:33
|
644 |
#: templates/listing-flagging-form.tpl.php:39
|
687 |
|
688 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
689 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
690 |
+
#: includes/controllers/pages/class-submit-listing.php:531
|
691 |
#, fuzzy
|
692 |
msgid "Terms and Conditions"
|
693 |
msgstr "Bedingungen und Konditionen"
|
905 |
msgid "URL"
|
906 |
msgstr "URL"
|
907 |
|
908 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1226
|
909 |
#, fuzzy
|
910 |
msgid "Thank you for your payment."
|
911 |
msgstr "Danke für die Bezahlung Nachricht"
|
912 |
|
913 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1254
|
914 |
msgid ""
|
915 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
916 |
"collect payments in this currency."
|
920 |
msgstr[0] ""
|
921 |
msgstr[1] ""
|
922 |
|
923 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
924 |
#, fuzzy
|
925 |
msgid "Email Notifications"
|
926 |
msgstr "Email Erinnerung"
|
927 |
|
928 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1347
|
929 |
#, fuzzy
|
930 |
msgid "Notify admin via email when..."
|
931 |
msgstr "Administrator per E-mail informieren wenn... "
|
932 |
|
933 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1365
|
934 |
#, fuzzy
|
935 |
msgid "CC this email address too"
|
936 |
msgstr "CC diese E-mail an"
|
937 |
|
938 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
939 |
#, fuzzy
|
940 |
msgid ""
|
941 |
"You can modify the text template used for most of these emails in the "
|
944 |
"Du kannst dieses Texttemplate verändern, das für die meisten der E-"
|
945 |
"mailadressen unten verwendet wird."
|
946 |
|
947 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1379
|
948 |
#, fuzzy
|
949 |
msgid "Notify users via email when..."
|
950 |
msgstr "Benachrichtige Benutzer per E-mail wenn..."
|
951 |
|
952 |
#. translators: %s: email shortcode
|
953 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1446
|
954 |
#, fuzzy
|
955 |
msgid "Email: %s"
|
956 |
msgstr "E-mail: %s"
|
957 |
|
958 |
#. translators: %s: phone shortcode
|
959 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1449
|
960 |
#, fuzzy
|
961 |
msgid "Phone Number: %s"
|
962 |
msgstr "Telefonnummer geschäftlich"
|
963 |
|
964 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
965 |
#, fuzzy
|
966 |
msgid "Sender's email address"
|
967 |
msgstr "Ungültiger Erneuerungszustand."
|
968 |
|
969 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1462
|
970 |
#, fuzzy
|
971 |
msgid "Sender's phone number"
|
972 |
msgstr "Authorname"
|
973 |
|
974 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1526
|
975 |
msgid "Renewal and expiration"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1662
|
979 |
#: templates/admin/uninstall-complete.tpl.php:4
|
980 |
#, fuzzy
|
981 |
msgid "Uninstall"
|
1083 |
|
1084 |
#. translators: %s: Status name
|
1085 |
#: includes/admin/views/modules/list.php:63
|
1086 |
+
#: templates/admin/themes-item.tpl.php:50
|
1087 |
#, fuzzy
|
1088 |
msgid "Status: %s"
|
1089 |
msgstr "Status"
|
1257 |
msgid "View All Listings"
|
1258 |
msgstr "Alle Einträge anschauen"
|
1259 |
|
1260 |
+
#: includes/class-payment-gateways.php:144
|
|
|
1261 |
msgid ""
|
1262 |
+
"You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s "
|
1263 |
+
"to set up a gateway. Until you do this, only free plans will be available."
|
|
|
1264 |
msgstr ""
|
1265 |
|
1266 |
#: includes/class-wpbdp.php:369
|
1284 |
"admin."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:322
|
1288 |
#, fuzzy
|
1289 |
msgid "Could not find image ID"
|
1290 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
1490 |
msgid "This is just a preview. The listing has not been published yet."
|
1491 |
msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
|
1492 |
|
1493 |
+
#: includes/controllers/pages/class-submit-listing.php:564
|
1494 |
#, fuzzy
|
1495 |
msgid "Listing Images"
|
1496 |
msgstr "Eintrag Bilder"
|
1497 |
|
1498 |
+
#: includes/controllers/pages/class-submit-listing.php:632
|
1499 |
msgid "Account Creation"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: includes/controllers/pages/class-submit-listing.php:831
|
1503 |
#, fuzzy
|
1504 |
msgid "Go to \"Fee Plans\""
|
1505 |
msgstr "zu \"Formularfelder verwalten\""
|
1506 |
|
1507 |
+
#: includes/controllers/pages/class-submit-listing.php:887
|
1508 |
#, fuzzy
|
1509 |
msgid "Please choose a fee plan."
|
1510 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
1511 |
|
1512 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1513 |
msgid "Please check the form for errors, correct them and submit again."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: includes/controllers/pages/class-submit-listing.php:1236
|
1517 |
msgid "Create a user account on this site"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: includes/controllers/pages/class-submit-listing.php:1243
|
1521 |
#, fuzzy
|
1522 |
msgid "Username"
|
1523 |
msgstr "Benutzer"
|
1524 |
|
1525 |
+
#: includes/controllers/pages/class-submit-listing.php:1265
|
1526 |
#, fuzzy
|
1527 |
msgid "Clear Form"
|
1528 |
msgstr "Zurücksetzen"
|
1840 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: includes/helpers/functions/general.php:568
|
|
|
1844 |
msgid "Free"
|
1845 |
msgstr "Kostenlos"
|
1846 |
|
1855 |
msgstr "Bezahlte Einträge verwalten"
|
1856 |
|
1857 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1858 |
+
#: includes/licensing.php:150
|
1859 |
msgid ""
|
1860 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1861 |
"get updates."
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: includes/licensing.php:203 includes/licensing.php:206
|
1865 |
#, fuzzy
|
1866 |
msgid "Licenses"
|
1867 |
msgstr "Lizenz"
|
1868 |
|
1869 |
+
#: includes/licensing.php:273
|
1870 |
msgid "Build more powerful directories"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: includes/licensing.php:274
|
1874 |
msgid ""
|
1875 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: includes/licensing.php:276
|
1879 |
#, fuzzy
|
1880 |
msgid "Already purchased?"
|
1881 |
msgstr "Bereits installiert"
|
1882 |
|
1883 |
#. translators: %s: item type.
|
1884 |
+
#: includes/licensing.php:294
|
1885 |
msgid "%s will not get updates until license is reauthorized."
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: includes/licensing.php:315
|
1889 |
#, fuzzy
|
1890 |
msgid "Enter License Key here"
|
1891 |
msgstr "Erneuere Lizenzschlüssel"
|
1892 |
|
1893 |
+
#: includes/licensing.php:316
|
1894 |
#, fuzzy
|
1895 |
msgid "Authorize"
|
1896 |
msgstr "Aktiviere Lizenz"
|
1897 |
|
1898 |
+
#: includes/licensing.php:420
|
1899 |
#, fuzzy
|
1900 |
msgid "Invalid item ID"
|
1901 |
msgstr "Ungültige Feld ID"
|
1902 |
|
1903 |
+
#: includes/licensing.php:433
|
1904 |
#, fuzzy
|
1905 |
msgid "No license key provided"
|
1906 |
msgstr "Kein Lizenzschlüssel"
|
1907 |
|
1908 |
+
#: includes/licensing.php:482 includes/licensing.php:520
|
1909 |
#, fuzzy
|
1910 |
msgid "License key is invalid"
|
1911 |
msgstr "Lizenzschlüssel ungültig "
|
1912 |
|
1913 |
+
#: includes/licensing.php:486
|
1914 |
#, fuzzy
|
1915 |
msgid "Deactivation failed"
|
1916 |
msgstr "Deaktivierung fehlgeschlagen"
|
1917 |
|
1918 |
+
#: includes/licensing.php:531
|
1919 |
#, fuzzy
|
1920 |
msgid "The license key was revoked."
|
1921 |
msgstr "Kein Lizenzschlüssel"
|
1922 |
|
1923 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1924 |
+
#: includes/licensing.php:535
|
1925 |
msgid ""
|
1926 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1927 |
"%2$s and let them know your license is being reported as revoked by the "
|
1929 |
"with your report."
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: includes/licensing.php:598
|
1933 |
msgid ""
|
1934 |
"It was not possible to establish a connection with the Business Directory "
|
1935 |
"server. The connection failed with the following error:"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: includes/licensing.php:611
|
1939 |
msgid ""
|
1940 |
"It was not possible to establish a connection with the Business Directory "
|
1941 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: includes/licensing.php:658
|
1945 |
msgid ""
|
1946 |
"It looks like your server is not authorized to make outgoing requests to "
|
1947 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1948 |
"our IP address 52.0.78.177 to your allow list."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: includes/licensing.php:752
|
1952 |
#, fuzzy
|
1953 |
msgid "Business Directory license key is missing."
|
1954 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
1955 |
|
1956 |
+
#: includes/licensing.php:753
|
1957 |
#, fuzzy
|
1958 |
msgid "Business Directory license key has expired"
|
1959 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
1960 |
|
1961 |
+
#: includes/licensing.php:754
|
1962 |
#, fuzzy
|
1963 |
msgid "Could not verify Business Directory license."
|
1964 |
msgstr "Hilf Business Directory zu unterstützen"
|
1965 |
|
1966 |
+
#: includes/licensing.php:765
|
1967 |
#, fuzzy
|
1968 |
msgid "Review license keys"
|
1969 |
msgstr "Erneuere Lizenzschlüssel"
|
1970 |
|
1971 |
+
#: includes/licensing.php:880
|
1972 |
msgid "Missing data. Please reload this page and try again."
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: includes/licensing.php:885
|
1976 |
#, fuzzy
|
1977 |
msgid "Please enter a license key."
|
1978 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
2018 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2019 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
2020 |
|
2021 |
+
#: includes/utils.php:341
|
2022 |
#, fuzzy
|
2023 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2024 |
msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
|
2025 |
|
2026 |
+
#: includes/utils.php:350
|
2027 |
#, fuzzy
|
2028 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2029 |
msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
|
2382 |
msgid "Add New Listing Fee"
|
2383 |
msgstr "Neues Preispaket erstellen"
|
2384 |
|
2385 |
+
#: templates/admin/fees-index.tpl.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2386 |
#, fuzzy
|
2387 |
msgid "Order fees on the frontend by:"
|
2388 |
msgstr "Preise auf der Webseite sortieren nach:"
|
2389 |
|
2390 |
+
#: templates/admin/fees-index.tpl.php:30
|
2391 |
#, fuzzy
|
2392 |
msgid "↑ Ascending"
|
2393 |
msgstr "↑ Aufsteigend"
|
2394 |
|
2395 |
+
#: templates/admin/fees-index.tpl.php:31
|
2396 |
#, fuzzy
|
2397 |
msgid "↓ Descending"
|
2398 |
msgstr "↓ Absteigend"
|
2399 |
|
2400 |
+
#: templates/admin/fees-index.tpl.php:39
|
2401 |
#, fuzzy
|
2402 |
msgid "Drag and drop to re-order fees."
|
2403 |
msgstr "Ziehen um Preise wiederholt zu beauftragen."
|
2404 |
|
|
|
|
|
|
|
|
|
|
|
2405 |
#: templates/admin/fees-index.tpl.php:67
|
|
|
|
|
|
|
|
|
2406 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: templates/admin/fees-index.tpl.php:69
|
2410 |
msgid "Add a payment gateway to increase conversion rates"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
#. translators: %s: payment gateway name */
|
2414 |
+
#: templates/admin/fees-index.tpl.php:88
|
2415 |
msgid "Add the %s gateway as a payment option."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: templates/admin/fees-index.tpl.php:94
|
2419 |
#, fuzzy
|
2420 |
msgid "Upgrade"
|
2421 |
msgstr "Aktualisieren auf %s"
|
2422 |
|
2423 |
+
#: templates/admin/fees-index.tpl.php:102
|
2424 |
msgid "Set up Authorize.net as a payment option."
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: templates/admin/fees-index.tpl.php:105
|
2428 |
msgid "Set Up"
|
2429 |
msgstr ""
|
2430 |
|
2458 |
msgid "Delete Field"
|
2459 |
msgstr "Feld löschen"
|
2460 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2461 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2462 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2463 |
#: templates/login.tpl.php:71
|
2778 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2779 |
msgstr "neue Version verfügbar (<b>%s</b>). <a>Jetzt aktualisieren</a>."
|
2780 |
|
2781 |
+
#: templates/admin/themes-item.tpl.php:45
|
2782 |
#, fuzzy
|
2783 |
msgid "Inactive"
|
2784 |
msgstr "Nur Aktiv"
|
3827 |
msgid "Fee \"%s\" deleted."
|
3828 |
msgstr "Preis gelöscht."
|
3829 |
|
3830 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3831 |
+
#, fuzzy
|
3832 |
+
msgctxt "fees admin"
|
3833 |
+
msgid "Fee enabled."
|
3834 |
+
msgstr "Preis gelöscht."
|
3835 |
+
|
3836 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3837 |
msgctxt "fees admin"
|
3838 |
msgid "Fee disabled."
|
3839 |
msgstr "Preis gelöscht."
|
3848 |
msgid "fees"
|
3849 |
msgstr "Preise"
|
3850 |
|
3851 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3852 |
#, fuzzy
|
3853 |
msgctxt "fees admin"
|
3854 |
msgid "Attributes"
|
3855 |
msgstr "Feld Attribute"
|
3856 |
|
3857 |
+
#: includes/admin/helpers/tables/class-fees-table.php:137
|
3858 |
msgctxt "fees admin"
|
3859 |
msgid "Edit"
|
3860 |
msgstr "Bearbeiten"
|
3861 |
|
3862 |
+
#: includes/admin/helpers/tables/class-fees-table.php:207
|
3863 |
#, fuzzy
|
3864 |
msgctxt "fees admin"
|
3865 |
msgid "Variable"
|
3866 |
msgstr "Deaktivieren"
|
3867 |
|
3868 |
+
#: includes/admin/helpers/tables/class-fees-table.php:212
|
3869 |
#, fuzzy
|
3870 |
msgctxt "fees admin"
|
3871 |
msgid "%1$s + %2$s per category"
|
3872 |
msgstr "Preis \"%s\" für Kategorie \"%s\""
|
3873 |
|
3874 |
+
#: includes/admin/helpers/tables/class-fees-table.php:231
|
3875 |
msgctxt "fees admin"
|
3876 |
msgid "Forever"
|
3877 |
msgstr "Für immer"
|
3878 |
|
3879 |
+
#: includes/admin/helpers/tables/class-fees-table.php:233
|
3880 |
msgctxt "fees admin"
|
3881 |
msgid "%d day"
|
3882 |
msgid_plural "%d days"
|
3883 |
msgstr[0] "%d Tag"
|
3884 |
msgstr[1] "%d Tage"
|
3885 |
|
3886 |
+
#: includes/admin/helpers/tables/class-fees-table.php:263
|
3887 |
msgctxt "fees admin"
|
3888 |
msgid "All categories"
|
3889 |
msgstr "Alle Kategorien"
|
3890 |
|
3891 |
+
#: includes/admin/helpers/tables/class-fees-table.php:292
|
3892 |
msgctxt "fees admin"
|
3893 |
msgid "Sticky"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: includes/admin/helpers/tables/class-fees-table.php:296
|
3897 |
#, fuzzy
|
3898 |
msgctxt "fees admin"
|
3899 |
msgid "Recurring"
|
3900 |
msgstr "(wiederkehrend)"
|
3901 |
|
3902 |
+
#: includes/admin/helpers/tables/class-fees-table.php:300
|
3903 |
#, fuzzy
|
3904 |
msgctxt "fees admin"
|
3905 |
msgid "Private"
|
4090 |
msgid "Reported"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: includes/models/class-listing.php:961
|
4094 |
msgctxt "listing status"
|
4095 |
msgid "Unknown"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: includes/models/class-listing.php:962
|
4099 |
msgctxt "listing status"
|
4100 |
msgid "Legacy"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
+
#: includes/models/class-listing.php:963
|
4104 |
#, fuzzy
|
4105 |
msgctxt "listing status"
|
4106 |
msgid "Incomplete"
|
4107 |
msgstr "Abgeschlossen"
|
4108 |
|
4109 |
+
#: includes/models/class-listing.php:964
|
4110 |
#, fuzzy
|
4111 |
msgctxt "listing status"
|
4112 |
msgid "Pending Payment"
|
4113 |
msgstr "Ausstehende Zahlungen"
|
4114 |
|
4115 |
+
#: includes/models/class-listing.php:965
|
4116 |
#, fuzzy
|
4117 |
msgctxt "listing status"
|
4118 |
msgid "Complete"
|
4119 |
msgstr "Abgeschlossen"
|
4120 |
|
4121 |
+
#: includes/models/class-listing.php:966
|
4122 |
#, fuzzy
|
4123 |
msgctxt "listing status"
|
4124 |
msgid "Pending Upgrade"
|
4125 |
msgstr "Ausstehende Aktualisierung"
|
4126 |
|
4127 |
+
#: includes/models/class-listing.php:967
|
4128 |
#, fuzzy
|
4129 |
msgctxt "listing status"
|
4130 |
msgid "Expired"
|
4131 |
msgstr "Abgelaufen"
|
4132 |
|
4133 |
+
#: includes/models/class-listing.php:968
|
4134 |
#, fuzzy
|
4135 |
msgctxt "listing status"
|
4136 |
msgid "Pending Renewal"
|
4137 |
msgstr "Aktiv + Ausstehende Erneuerungen"
|
4138 |
|
4139 |
+
#: includes/models/class-listing.php:969
|
4140 |
#, fuzzy
|
4141 |
msgctxt "listing status"
|
4142 |
msgid "Abandoned"
|
4804 |
msgstr "Author"
|
4805 |
|
4806 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4807 |
+
#: includes/helpers/functions/general.php:1281
|
4808 |
msgctxt "admin settings"
|
4809 |
msgid "Date posted"
|
4810 |
msgstr "Datum gepostet"
|
4811 |
|
4812 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4813 |
+
#: includes/helpers/functions/general.php:1282
|
4814 |
msgctxt "admin settings"
|
4815 |
msgid "Date last modified"
|
4816 |
msgstr "Datum zuletzt verändert"
|
4985 |
msgid "U.S. Dollar (USD)"
|
4986 |
msgstr "U.S. Dollar"
|
4987 |
|
4988 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
4989 |
msgctxt "admin settings"
|
4990 |
msgid "Show currency symbol on the left"
|
4991 |
msgstr "Währungssymbol links anzeigen"
|
4992 |
|
4993 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
4994 |
msgctxt "admin settings"
|
4995 |
msgid "Show currency symbol on the right"
|
4996 |
msgstr "Währungssymbol rechts anzeigen"
|
4997 |
|
4998 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
4999 |
msgctxt "admin settings"
|
5000 |
msgid "Do not show currency symbol"
|
5001 |
msgstr "Währungssymbol nicht anzeigen"
|
5002 |
|
5003 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5004 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
5005 |
msgctxt "admin settings"
|
5006 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
5010 |
msgctxt "admin settings"
|
5011 |
msgid ""
|
5012 |
"Listings with pending payments are marked as abandoned after this time. You "
|
5013 |
"can also <a>customize the email</a> users receive."
|
5014 |
msgstr ""
|
5015 |
|
5016 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1320
|
5017 |
msgctxt "admin settings"
|
5018 |
msgid "Try listing's email field first, then author's email."
|
5019 |
msgstr "Versuchen Sie das E-Mail-Feld zuerst, dann die E-Mail des Autors."
|
5020 |
|
5021 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1321
|
5022 |
msgctxt "admin settings"
|
5023 |
msgid "Try author's email first and then listing's email field."
|
5024 |
msgstr ""
|
5025 |
"Probieren sie erst die E-Mail des Authors und dann die E-Mail des Felds."
|
5026 |
|
5027 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1334
|
5028 |
msgctxt "admin settings"
|
5029 |
msgid "Plain (text/plain)"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1335
|
5033 |
msgctxt "admin settings"
|
5034 |
msgid "HTML (text/html)"
|
5035 |
msgstr ""
|
5036 |
|
5037 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1336
|
5038 |
msgctxt "admin settings"
|
5039 |
msgid "Both (multipart/alternative)"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1350
|
5043 |
msgctxt "admin settings"
|
5044 |
msgid "A new listing is submitted."
|
5045 |
msgstr "Ein neuer Eintrag wurde übermittelt."
|
5046 |
|
5047 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1351
|
5048 |
msgctxt "admin settings"
|
5049 |
msgid "A listing is edited."
|
5050 |
msgstr "Ein Eintrag wurde bearbeitet."
|
5051 |
|
5052 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
5053 |
msgctxt "admin settings"
|
5054 |
msgid "A listing expires."
|
5055 |
msgstr "Ein Eintrag läuft aus."
|
5056 |
|
5057 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
5058 |
#, fuzzy
|
5059 |
msgctxt "admin settings"
|
5060 |
msgid "A listing is renewed."
|
5061 |
msgstr "Ein Eintrag wurde bearbeitet."
|
5062 |
|
5063 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1354
|
5064 |
#, fuzzy
|
5065 |
msgctxt "admin settings"
|
5066 |
msgid "A listing payment is completed."
|
5067 |
msgstr "Ein Eintrag wurde bearbeitet."
|
5068 |
|
5069 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1355
|
5070 |
#, fuzzy
|
5071 |
msgctxt "admin settings"
|
5072 |
msgid "A listing has been reported as inappropriate."
|
5073 |
msgstr "Der Eintrag wurde aktualisiert"
|
5074 |
|
5075 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
5076 |
msgctxt "admin settings"
|
5077 |
msgid "A contact message is sent to a listing's owner."
|
5078 |
msgstr "Eine Nachricht wurde an einen Eintrags-Eigentümer versendet."
|
5079 |
|
5080 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
5081 |
msgctxt "admin settings"
|
5082 |
msgid "Their listing is submitted."
|
5083 |
msgstr "Ihr Eintrag ist eingereicht."
|
5084 |
|
5085 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1384
|
5086 |
msgctxt "admin settings"
|
5087 |
msgid "Their listing is approved/published."
|
5088 |
msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
|
5089 |
|
5090 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1385
|
5091 |
#, fuzzy
|
5092 |
msgctxt "admin settings"
|
5093 |
msgid "A payment for their listing is completed."
|
5094 |
msgstr "Ihr Eintrag ist eingereicht."
|
5095 |
|
5096 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
5097 |
#, fuzzy
|
5098 |
msgctxt "admin settings"
|
5099 |
msgid "Their listing expired or is about to expire."
|
5100 |
msgstr "Ihr Eintrag ist eingereicht."
|
5101 |
|
5102 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1404
|
5103 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
5104 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
5105 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
5106 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1514
|
5107 |
msgctxt "admin settings"
|
5108 |
msgid "Listing's title"
|
5109 |
msgstr "Eintrag Titel"
|
5110 |
|
5111 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1405
|
5112 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
5113 |
#, fuzzy
|
5114 |
msgctxt "admin settings"
|
5115 |
msgid "Listing's fee plan name"
|
5116 |
msgstr "Eintrag Enddatum"
|
5117 |
|
5118 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1406
|
5119 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
5120 |
#, fuzzy
|
5121 |
msgctxt "admin settings"
|
5122 |
msgid "Listing's fee plan description"
|
5123 |
msgstr "Auswahl der Preispakete"
|
5124 |
|
5125 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
5126 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
5127 |
#, fuzzy
|
5128 |
msgctxt "admin settings"
|
5129 |
msgid "Listing's fee plan details"
|
5130 |
msgstr "Eintrag Enddatum"
|
5131 |
|
5132 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
5133 |
msgctxt "admin settings"
|
5134 |
msgid ""
|
5135 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
5138 |
"Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
|
5139 |
"kann öffentlich eingesehen werden."
|
5140 |
|
5141 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1424
|
5142 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1458
|
5143 |
msgctxt "admin settings"
|
5144 |
msgid "Listing's URL"
|
5145 |
msgstr "Eintrags URL"
|
5146 |
|
5147 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1425
|
5148 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1465
|
5149 |
#, fuzzy
|
5150 |
msgctxt "admin settings"
|
5151 |
msgid "Listing's Access Key"
|
5152 |
msgstr "Eintrag Felder / Bilder"
|
5153 |
|
5154 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
5155 |
#, fuzzy
|
5156 |
msgctxt "admin settings"
|
5157 |
msgid "Sender's name"
|
5158 |
msgstr "Authorname"
|
5159 |
|
5160 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1463
|
5161 |
#, fuzzy
|
5162 |
msgctxt "admin settings"
|
5163 |
msgid "Contact message"
|
5164 |
msgstr "Neue Eintrag Anweisungen"
|
5165 |
|
5166 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1464
|
5167 |
msgctxt "admin settings"
|
5168 |
msgid "Date and time the message was sent"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
5172 |
#, fuzzy
|
5173 |
msgctxt "admin settings"
|
5174 |
msgid "Payment items details."
|
5175 |
msgstr "Bezahldetails"
|
5176 |
|
5177 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
5178 |
msgctxt "admin settings"
|
5179 |
msgid "URL where user can review and print payment receipt."
|
5180 |
msgstr ""
|
5181 |
|
5182 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
5183 |
#, fuzzy
|
5184 |
msgctxt "admin settings"
|
5185 |
msgid "Gateway used to process listing's payment."
|
5186 |
msgstr "Bezahlung ausführen"
|
5187 |
|
5188 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1515
|
5189 |
msgctxt "admin settings"
|
5190 |
msgid "Checkout URL link"
|
5191 |
msgstr "Kasse"
|
5192 |
|
5193 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1617
|
5194 |
#, fuzzy
|
5195 |
msgctxt "admin settings"
|
5196 |
msgid "Uploaded Image (no resize)"
|
5197 |
msgstr "Dateien hochladen"
|
5198 |
|
5199 |
+
#: includes/helpers/functions/general.php:1279
|
5200 |
msgctxt "admin settings"
|
5201 |
msgid "User"
|
5202 |
msgstr "Benutzer"
|
5203 |
|
5204 |
+
#: includes/helpers/functions/general.php:1280
|
5205 |
msgctxt "admin settings"
|
5206 |
msgid "User registration date"
|
5207 |
msgstr "Eintrag Enddatum"
|
5436 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5437 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5438 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5439 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1301
|
5440 |
#: includes/admin/settings/class-settings.php:341
|
5441 |
#, fuzzy
|
5442 |
msgctxt "settings"
|
6113 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6114 |
msgstr ""
|
6115 |
|
6116 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1132
|
6117 |
#, fuzzy
|
6118 |
msgctxt "settings"
|
6119 |
msgid "Fee Order"
|
6120 |
msgstr "Auftrag"
|
6121 |
|
6122 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1145
|
|
|
|
|
|
|
|
|
|
|
|
|
6123 |
#, fuzzy
|
6124 |
msgctxt "settings"
|
6125 |
msgid "Put payment gateways in test mode?"
|
6131 |
msgid "Currency Code"
|
6132 |
msgstr "Währungsschlüssel"
|
6133 |
|
6134 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
6135 |
#, fuzzy
|
6136 |
msgctxt "settings"
|
6137 |
msgid "Currency Symbol"
|
6138 |
msgstr "Währungssymbol"
|
6139 |
|
6140 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
6141 |
#, fuzzy
|
6142 |
msgctxt "settings"
|
6143 |
msgid "Currency symbol display"
|
6144 |
msgstr "Währungssymbol Anzeige"
|
6145 |
|
6146 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
6147 |
msgctxt "settings"
|
6148 |
msgid "Include fee description in receipt?"
|
6149 |
msgstr ""
|
6150 |
|
6151 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1225
|
6152 |
#, fuzzy
|
6153 |
msgctxt "settings"
|
6154 |
msgid "Thank you for payment message"
|
6155 |
msgstr "Danke für die Bezahlung Nachricht"
|
6156 |
|
6157 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1278
|
6158 |
msgctxt "settings"
|
6159 |
msgid "Ask users to come back for abandoned payments?"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1289
|
6163 |
#, fuzzy
|
6164 |
msgctxt "settings"
|
6165 |
msgid "Listing abandonment threshold (hours)"
|
6166 |
msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
|
6167 |
|
6168 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1306
|
6169 |
#, fuzzy
|
6170 |
msgctxt "settings"
|
6171 |
msgid "Display email address fields publicly?"
|
6172 |
msgstr "E-mail Adressfeld öffentlich anzeigen?"
|
6173 |
|
6174 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1307
|
6175 |
#, fuzzy
|
6176 |
msgctxt "settings"
|
6177 |
msgid ""
|
6181 |
msgstr ""
|
6182 |
"E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
|
6183 |
|
6184 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1316
|
6185 |
#, fuzzy
|
6186 |
msgctxt "settings"
|
6187 |
msgid "How to determine the listing's email address?"
|
6188 |
msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
|
6189 |
|
6190 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1317
|
6191 |
#, fuzzy
|
6192 |
msgctxt "settings"
|
6193 |
msgid ""
|
6197 |
"Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
|
6198 |
"Eintrag abläuft."
|
6199 |
|
6200 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1330
|
6201 |
msgctxt "settings"
|
6202 |
msgid "Email Content-Type header"
|
6203 |
msgstr ""
|
6204 |
|
6205 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1331
|
6206 |
msgctxt "settings"
|
6207 |
msgid ""
|
6208 |
"Use this setting to control the format of the emails explicitly. Some "
|
6211 |
"then \"Both\"."
|
6212 |
msgstr ""
|
6213 |
|
6214 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
6215 |
#, fuzzy
|
6216 |
msgctxt "settings"
|
6217 |
msgid "Templates"
|
6218 |
msgstr "E-mail Templates"
|
6219 |
|
6220 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1397
|
6221 |
#, fuzzy
|
6222 |
msgctxt "settings"
|
6223 |
msgid "Email confirmation message"
|
6224 |
msgstr "Email Bestätigungsnachricht"
|
6225 |
|
6226 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1398
|
6227 |
#, fuzzy
|
6228 |
msgctxt "settings"
|
6229 |
msgid "Sent after a listing has been submitted."
|
6230 |
msgstr "Senden nachdem der Eintrag eingestellt wurde."
|
6231 |
|
6232 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1416
|
6233 |
#, fuzzy
|
6234 |
msgctxt "settings"
|
6235 |
msgid "Listing published message"
|
6236 |
msgstr "Eintrag veröffentlicht Nachricht"
|
6237 |
|
6238 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1417
|
6239 |
#, fuzzy
|
6240 |
msgctxt "settings"
|
6241 |
msgid "Sent when the listing has been published or approved by an admin."
|
6243 |
"Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
|
6244 |
"wurde."
|
6245 |
|
6246 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
6247 |
#, fuzzy
|
6248 |
msgctxt "settings"
|
6249 |
msgid "Listing Contact Message"
|
6250 |
msgstr "Neue Eintrag Anweisungen"
|
6251 |
|
6252 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1435
|
6253 |
#, fuzzy
|
6254 |
msgctxt "settings"
|
6255 |
msgid ""
|
6259 |
"An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
|
6260 |
"verwendet."
|
6261 |
|
6262 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1475
|
6263 |
#, fuzzy
|
6264 |
msgctxt "settings"
|
6265 |
msgid "Payment completed message"
|
6266 |
msgstr "Erneuerungserinnerung E-mail Nachricht"
|
6267 |
|
6268 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
6269 |
msgctxt "settings"
|
6270 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6271 |
msgstr ""
|
6272 |
|
6273 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
6274 |
#, fuzzy
|
6275 |
msgctxt "settings"
|
6276 |
msgid "Payment abandoned reminder message"
|
6277 |
msgstr "Erneuerungserinnerung E-mail Nachricht"
|
6278 |
|
6279 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1638
|
6280 |
msgctxt "settings"
|
6281 |
msgid "Cropped"
|
6282 |
msgstr ""
|
6292 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6293 |
msgstr ""
|
6294 |
|
6295 |
+
#: includes/licensing.php:245
|
6296 |
#, fuzzy
|
6297 |
msgctxt "settings"
|
6298 |
msgid "Themes"
|
6299 |
msgstr "Preise Verwalten"
|
6300 |
|
6301 |
+
#: includes/licensing.php:316 includes/licensing.php:317
|
6302 |
msgctxt "settings"
|
6303 |
msgid "Please wait..."
|
6304 |
msgstr ""
|
6305 |
|
6306 |
+
#: includes/licensing.php:317
|
6307 |
#, fuzzy
|
6308 |
msgctxt "settings"
|
6309 |
msgid "Deauthorize"
|
6360 |
msgid "Could not delete theme directory. Check permissions."
|
6361 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
6362 |
|
6363 |
+
#: includes/admin/controllers/class-themes-admin.php:240
|
6364 |
msgctxt "themes"
|
6365 |
msgid "Please upload a valid theme file."
|
6366 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
6367 |
|
6368 |
+
#: includes/admin/controllers/class-themes-admin.php:249
|
6369 |
msgctxt "themes"
|
6370 |
msgid "Could not move \"%s\" to a temporary directory."
|
6371 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
6372 |
|
6373 |
+
#: includes/admin/controllers/class-themes-admin.php:335
|
6374 |
msgctxt "themes"
|
6375 |
msgid "Activate your <a>license key</a> to use this theme."
|
6376 |
msgstr ""
|
6377 |
"Aktivieren Sie Ihren <a>Lizenzschlüssel</a>, um dieses Theme zu verwenden."
|
6378 |
|
6379 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
6380 |
#, fuzzy
|
6381 |
msgctxt "themes"
|
6382 |
msgid "Invalid theme ID"
|
6383 |
msgstr "Ungültige Feld ID"
|
6384 |
|
6385 |
+
#: includes/admin/controllers/class-themes-admin.php:384
|
6386 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6387 |
msgctxt "themes"
|
6388 |
msgid "Could not update theme: %s"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
#. translators: %s: url shortcode
|
6833 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
6834 |
msgctxt "contact email"
|
6835 |
msgid "You have received a reply from your listing at %s."
|
6836 |
msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
|
6837 |
|
6838 |
#. translators: %s: name shortcode
|
6839 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
6840 |
msgctxt "contact email"
|
6841 |
msgid "Name: %s"
|
6842 |
msgstr "Name: %s"
|
6843 |
|
6844 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1451
|
6845 |
msgctxt "contact email"
|
6846 |
msgid "Message:"
|
6847 |
msgstr "Nachricht:"
|
6848 |
|
6849 |
#. translators: %s: date shortcode
|
6850 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1455
|
6851 |
msgctxt "contact email"
|
6852 |
msgid "Time: %s"
|
6853 |
msgstr "Zeit: %s"
|
7147 |
msgid "Add New Listing"
|
7148 |
msgstr "Neuer Eintrag"
|
7149 |
|
7150 |
+
#: includes/models/class-listing.php:421
|
7151 |
#, fuzzy
|
7152 |
msgctxt "listing"
|
7153 |
msgid "Listing has no registered payments"
|
7154 |
msgstr "Eintrag Enddatum"
|
7155 |
|
7156 |
+
#: includes/models/class-listing.php:430
|
7157 |
#, fuzzy
|
7158 |
msgctxt "listing"
|
7159 |
msgid "Can't delete payment"
|
7160 |
msgstr "Bezahlung zurückweisen"
|
7161 |
|
7162 |
+
#: includes/models/class-listing.php:468
|
7163 |
#, fuzzy
|
7164 |
msgctxt "listing"
|
7165 |
msgid "Listing expired"
|
7166 |
msgstr "Ein Eintrag läuft aus."
|
7167 |
|
7168 |
+
#: includes/models/class-listing.php:668
|
7169 |
#, fuzzy
|
7170 |
msgctxt "listing"
|
7171 |
msgid "(Unavailable Plan)"
|
7172 |
msgstr "(Preis nicht verfügbar)"
|
7173 |
|
7174 |
+
#: includes/models/class-listing.php:858
|
7175 |
#, fuzzy
|
7176 |
msgctxt "listing"
|
7177 |
msgid "Plan \"%s\" (recurring)"
|
7178 |
msgstr "(wiederkehrend)"
|
7179 |
|
7180 |
+
#: includes/models/class-listing.php:860
|
7181 |
msgctxt "listing"
|
7182 |
msgid "Plan \"%s\""
|
7183 |
msgstr ""
|
7316 |
msgid "Enable %s?"
|
7317 |
msgstr "Aktivieren"
|
7318 |
|
7319 |
+
#: includes/class-payment-gateways.php:131
|
7320 |
#, fuzzy
|
7321 |
msgctxt "payment-gateways"
|
7322 |
msgid ""
|
7327 |
"Gateway funktioniert nicht bis folgende Probleme gelöst wurden: <b>%s</b>. "
|
7328 |
"Prüfe die <a href=\"%s\">Bezahlung Einstellungen</a>."
|
7329 |
|
7330 |
+
#: includes/class-payment-gateways.php:133
|
7331 |
msgctxt "payment-gateways"
|
7332 |
msgid "Please check the <link>payment settings</link>."
|
7333 |
msgstr ""
|
7334 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7335 |
#: includes/class-recaptcha.php:32
|
7336 |
msgctxt "recaptcha"
|
7337 |
msgid "The reCAPTCHA wasn't entered correctly."
|
7557 |
"angezeigt. Wenn du das nicht möchtest, klicke <a>hier</a> um die "
|
7558 |
"Einstellungen zu ändern."
|
7559 |
|
7560 |
+
#: includes/controllers/pages/class-submit-listing.php:424
|
7561 |
msgctxt "templates"
|
7562 |
msgid ""
|
7563 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7566 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7567 |
"Submission?\" setting checked?"
|
7568 |
|
7569 |
+
#: includes/controllers/pages/class-submit-listing.php:426
|
7570 |
msgctxt "templates"
|
7571 |
msgid ""
|
7572 |
"Listing submission has been disabled. Contact the administrator for details."
|
7573 |
msgstr ""
|
7574 |
|
7575 |
+
#: includes/controllers/pages/class-submit-listing.php:824
|
7576 |
msgctxt "templates"
|
7577 |
msgid ""
|
7578 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7579 |
"submit a listing. %s to create a fee plan"
|
7580 |
msgstr ""
|
7581 |
|
7582 |
+
#: includes/controllers/pages/class-submit-listing.php:838
|
7583 |
msgctxt "templates"
|
7584 |
msgid ""
|
7585 |
"Listing submission is not available at the moment. Contact the administrator "
|
7586 |
"for details."
|
7587 |
msgstr ""
|
7588 |
|
7589 |
+
#: includes/controllers/pages/class-submit-listing.php:841
|
7590 |
msgctxt "templates"
|
7591 |
msgid ""
|
7592 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
7594 |
"an existing field"
|
7595 |
msgstr ""
|
7596 |
|
7597 |
+
#: includes/controllers/pages/class-submit-listing.php:1286
|
7598 |
msgctxt "templates"
|
7599 |
msgid "Please agree to the Terms and Conditions."
|
7600 |
msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
|
7601 |
|
7602 |
+
#: includes/controllers/pages/class-submit-listing.php:1300
|
7603 |
msgctxt "templates"
|
7604 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7605 |
msgstr "Ich akzeptiere die <a>AGB</a>s"
|
7606 |
|
7607 |
+
#: includes/helpers/functions/general.php:1362
|
7608 |
msgctxt "templates"
|
7609 |
msgid "Return to results"
|
7610 |
msgstr "Zurück zu den Ergebnissen"
|
7954 |
msgid "You can't edit this listing."
|
7955 |
msgstr "Kategorie für diesen Eintrag"
|
7956 |
|
7957 |
+
#: includes/controllers/pages/class-submit-listing.php:168
|
7958 |
msgctxt "submit listing"
|
7959 |
msgid ""
|
7960 |
"This listing can't be edited at this time because it has no fee plan "
|
7962 |
"to a fee plan."
|
7963 |
msgstr ""
|
7964 |
|
7965 |
+
#: includes/controllers/pages/class-submit-listing.php:174
|
7966 |
msgctxt "submit listing"
|
7967 |
msgid ""
|
7968 |
"This listing can't be edited at this time. Please try again later or contact "
|
7969 |
"the admin if the problem persists."
|
7970 |
msgstr ""
|
7971 |
|
7972 |
+
#: includes/controllers/pages/class-submit-listing.php:198
|
7973 |
#, fuzzy
|
7974 |
msgctxt "submit listing"
|
7975 |
msgid "You're logged in as admin, payment will be skipped."
|
7977 |
"Du bist als Administrator eingeloggt. Alle Bezahlungsschritte werden "
|
7978 |
"übersprungen."
|
7979 |
|
7980 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7981 |
#, fuzzy
|
7982 |
msgctxt "submit listing"
|
7983 |
msgid "Category selection"
|
7984 |
msgstr "Kategorien auswählen"
|
7985 |
|
7986 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7987 |
#, fuzzy
|
7988 |
msgctxt "submit listing"
|
7989 |
msgid "Category & plan selection"
|
7990 |
msgstr "Kategorien auswählen"
|
7991 |
|
7992 |
+
#: includes/controllers/pages/class-submit-listing.php:821
|
7993 |
#, fuzzy
|
7994 |
msgctxt "submit listing"
|
7995 |
msgid "Can not submit a listing at this moment. Please try again later."
|
7997 |
"Ihre Zahlung kann momentan nicht ausgeführt werden. Bitte versuchen Sie es "
|
7998 |
"später noch einmal."
|
7999 |
|
8000 |
+
#: includes/controllers/pages/class-submit-listing.php:870
|
8001 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
8002 |
#, fuzzy
|
8003 |
msgctxt "submit listing"
|
8004 |
msgid "Please select a category."
|
8005 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
8006 |
|
8007 |
+
#: includes/controllers/pages/class-submit-listing.php:893
|
8008 |
msgctxt "submit listing"
|
8009 |
msgid "Please choose a valid category for your plan."
|
8010 |
msgstr ""
|
8011 |
|
8012 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
8013 |
#, fuzzy
|
8014 |
msgctxt "submit listing"
|
8015 |
msgid "Please choose a valid fee plan for your category selection."
|
8016 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
8017 |
|
8018 |
+
#: includes/controllers/pages/class-submit-listing.php:1206
|
8019 |
#, fuzzy
|
8020 |
msgctxt "submit listing"
|
8021 |
msgid "Please enter your desired username."
|
8022 |
msgstr "Bitte geben Sie einen Namen ein."
|
8023 |
|
8024 |
+
#: includes/controllers/pages/class-submit-listing.php:1211
|
8025 |
#, fuzzy
|
8026 |
msgctxt "submit listing"
|
8027 |
msgid "Please enter the e-mail for your new account."
|
8028 |
msgstr "Bitte geben Sie einen Namen ein."
|
8029 |
|
8030 |
+
#: includes/controllers/pages/class-submit-listing.php:1216
|
8031 |
msgctxt "submit listing"
|
8032 |
msgid "The username you chose is already in use. Please use a different one."
|
8033 |
msgstr ""
|
8034 |
|
8035 |
+
#: includes/controllers/pages/class-submit-listing.php:1221
|
8036 |
msgctxt "submit listing"
|
8037 |
msgid "The e-mail address you chose for your account is already in use."
|
8038 |
msgstr ""
|
8043 |
msgid "Listing submitted by admin. Payment skipped."
|
8044 |
msgstr "Eintrag zusenden (Initialbezahlung)"
|
8045 |
|
8046 |
+
#: includes/controllers/pages/class-submit-listing.php:1161
|
8047 |
msgctxt "listing submit"
|
8048 |
msgid ""
|
8049 |
"Image upload is required, please provide at least one image and submit again."
|
8372 |
msgid "General"
|
8373 |
msgstr "Allgemein"
|
8374 |
|
8375 |
+
#: includes/licensing.php:571
|
8376 |
msgctxt "licensing"
|
8377 |
msgid "Could not contact licensing server"
|
8378 |
msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
|
8379 |
|
8380 |
+
#: includes/licensing.php:584
|
8381 |
msgctxt "licensing"
|
8382 |
msgid ""
|
8383 |
"It was not possible to establish a connection with Business Directory's "
|
8384 |
"server. cURL was not found in your system"
|
8385 |
msgstr ""
|
8386 |
|
8387 |
+
#: includes/licensing.php:586 includes/licensing.php:616
|
8388 |
msgctxt "licensing"
|
8389 |
msgid ""
|
8390 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8393 |
"1.0.1c)."
|
8394 |
msgstr ""
|
8395 |
|
8396 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8397 |
msgctxt "licensing"
|
8398 |
msgid ""
|
8399 |
"Upgrading your system will not only allow you to communicate with Business "
|
8401 |
"services using the latest security standards."
|
8402 |
msgstr ""
|
8403 |
|
8404 |
+
#: includes/licensing.php:590
|
8405 |
msgctxt "licensing"
|
8406 |
msgid ""
|
8407 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8408 |
"Include this message if necessary"
|
8409 |
msgstr ""
|
8410 |
|
8411 |
+
#: includes/licensing.php:620
|
8412 |
msgctxt "licensing"
|
8413 |
msgid ""
|
8414 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8415 |
"Include this message if necessary."
|
8416 |
msgstr ""
|
8417 |
|
8418 |
+
#: includes/licensing.php:656
|
8419 |
msgctxt "licensing"
|
8420 |
msgid "The server returned a 403 Forbidden error."
|
8421 |
msgstr ""
|
8422 |
|
8423 |
+
#: includes/licensing.php:902
|
8424 |
msgctxt "licensing"
|
8425 |
msgid "Could not activate license: %s."
|
8426 |
msgstr "Konnte Lizenz nicht aktivieren: %s"
|
8427 |
|
8428 |
+
#: includes/licensing.php:907
|
8429 |
msgctxt "licensing"
|
8430 |
msgid "License activated"
|
8431 |
msgstr "Lizenz aktiviert"
|
8432 |
|
8433 |
+
#: includes/licensing.php:939
|
8434 |
msgctxt "licensing"
|
8435 |
msgid "Could not deactivate license: %s."
|
8436 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
8437 |
|
8438 |
+
#: includes/licensing.php:941
|
8439 |
msgctxt "licensing"
|
8440 |
msgid "License deactivated"
|
8441 |
msgstr "Lizenz deaktiviert"
|
8442 |
|
8443 |
#. translators: "<module-name>" version <version-number> is not...
|
8444 |
+
#: includes/licensing.php:1181
|
8445 |
msgctxt "deprecation"
|
8446 |
msgid ""
|
8447 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8460 |
msgstr[0] "%d Bild erlaubt."
|
8461 |
msgstr[1] "%d Bilder erlaubt."
|
8462 |
|
8463 |
+
#: includes/models/class-fee-plan.php:387
|
8464 |
msgctxt "fees-api"
|
8465 |
msgid "Fee label is required."
|
8466 |
msgstr "Preisbezeichnung erforderlich."
|
8467 |
|
8468 |
+
#: includes/models/class-fee-plan.php:393
|
8469 |
msgctxt "fees-api"
|
8470 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8471 |
msgstr ""
|
8472 |
"Preis Eintrag Zeitraum muss eine Nummer kleiner als 10 Jahre sein (3650 "
|
8473 |
"Tage)."
|
8474 |
|
8475 |
+
#: includes/models/class-fee-plan.php:398
|
8476 |
msgctxt "fees-api"
|
8477 |
msgid ""
|
8478 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
8480 |
"<a>fee plan</a> appropriately."
|
8481 |
msgstr ""
|
8482 |
|
8483 |
+
#: includes/models/class-fee-plan.php:401
|
8484 |
msgctxt "fees-api"
|
8485 |
msgid ""
|
8486 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
8559 |
msgid "Unkown error while uploading file."
|
8560 |
msgstr "Unbekannter Fehler beim Hochladen der Datei."
|
8561 |
|
8562 |
+
#: includes/utils.php:335
|
8563 |
msgctxt "utils"
|
8564 |
msgid "Error while uploading file"
|
8565 |
msgstr "Fehler während des Hochladens der Datei"
|
8566 |
|
8567 |
+
#: includes/utils.php:359 includes/utils.php:366
|
8568 |
msgctxt "utils"
|
8569 |
msgid "File type \"%s\" is not allowed"
|
8570 |
msgstr "Dateityp \"%s\" ist nicht erlaubt"
|
8571 |
|
8572 |
+
#: includes/utils.php:585
|
8573 |
msgctxt "utils"
|
8574 |
msgid ""
|
8575 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8679 |
msgid "required"
|
8680 |
msgstr "Pflichtfeld"
|
8681 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8682 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8683 |
#, fuzzy
|
8684 |
msgctxt "admin infometabox"
|
8964 |
msgid "Continue"
|
8965 |
msgstr "Weiter"
|
8966 |
|
8967 |
+
#, fuzzy
|
8968 |
+
#~ msgid "Payments are currently turned off."
|
8969 |
+
#~ msgstr "Bezahlungen sind derzeit nicht aktiviert."
|
8970 |
+
|
8971 |
+
#, fuzzy
|
8972 |
+
#~ msgid ""
|
8973 |
+
#~ "To manage fees you need to go to the %1$sManage Options - Payment%2$s "
|
8974 |
+
#~ "page and check the box next to 'Turn On Payments' under 'Payment "
|
8975 |
+
#~ "Settings'."
|
8976 |
+
#~ msgstr ""
|
8977 |
+
#~ "Um Preise zu verwalten gehe zu <a>Optionen verwalten - Bezahlungen</a> "
|
8978 |
+
#~ "und aktiviere die Box 'Bezahlungen aktivieren' unter 'Bezahlungen "
|
8979 |
+
#~ "Einstellungen'"
|
8980 |
+
|
8981 |
+
#~ msgid "Paid"
|
8982 |
+
#~ msgstr "Bezahlt"
|
8983 |
+
|
8984 |
+
#, fuzzy
|
8985 |
+
#~ msgid "Manage Options"
|
8986 |
+
#~ msgstr "Optionen Verwalten"
|
8987 |
+
|
8988 |
+
#~ msgid "Manage Paid Listings"
|
8989 |
+
#~ msgstr "Bezahlte Einträge verwalten"
|
8990 |
+
|
8991 |
+
#, fuzzy
|
8992 |
+
#~ msgctxt "settings"
|
8993 |
+
#~ msgid "Turn On payments?"
|
8994 |
+
#~ msgstr "Bezahlungen aktivieren?"
|
8995 |
+
|
8996 |
+
#, fuzzy
|
8997 |
+
#~ msgctxt "payment-gateways"
|
8998 |
+
#~ msgid ""
|
8999 |
+
#~ "You have payments turned on but no gateway is active and properly "
|
9000 |
+
#~ "configured. Go to <link>Manage Options - Payment</link> to change the "
|
9001 |
+
#~ "payment settings. Until you change this, the directory will operate in "
|
9002 |
+
#~ "<i>Free Mode</i>."
|
9003 |
+
#~ msgstr ""
|
9004 |
+
#~ "Bezahlungen sind aktiviert aber kein Gateway ist aktiv oder richtig "
|
9005 |
+
#~ "konfiguriert. Nach <a href=\"%s\">Optionen Verwalten - Bezahlung</a>, um "
|
9006 |
+
#~ "die Bezahleinstellungen zu ändern. Das Verzeichnis wird im <i>kostenlosen "
|
9007 |
+
#~ "Modus</i> ausgeführt, bis die Änderungen gemacht wurden."
|
9008 |
+
|
9009 |
#, fuzzy
|
9010 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
9011 |
#~ msgstr ""
|
languages/business-directory-plugin-en_US.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -76,16 +76,16 @@ msgstr ""
|
|
76 |
msgid "Directory"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: includes/admin/class-admin.php:312
|
80 |
msgid "Fee Plans"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: includes/admin/class-admin.php:315
|
84 |
msgid "Form Fields"
|
85 |
msgstr ""
|
86 |
|
87 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
88 |
-
#: includes/licensing.php:
|
89 |
msgid "Modules"
|
90 |
msgstr ""
|
91 |
|
@@ -190,7 +190,7 @@ msgid "Amount"
|
|
190 |
msgstr ""
|
191 |
|
192 |
#: includes/admin/controllers/class-admin-fees.php:49
|
193 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
194 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
195 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
196 |
msgid "Images"
|
@@ -222,7 +222,7 @@ msgid "Fee plan listings updated."
|
|
222 |
msgstr ""
|
223 |
|
224 |
#: includes/admin/controllers/class-admin-listings.php:185
|
225 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
226 |
#: templates/email/listing-reported.tpl.php:7
|
227 |
msgid "Listing Information"
|
228 |
msgstr ""
|
@@ -267,13 +267,13 @@ msgid ""
|
|
267 |
msgstr ""
|
268 |
|
269 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
270 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
271 |
msgid "Go to \"Form Fields\""
|
272 |
msgstr ""
|
273 |
|
274 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
275 |
-
#: includes/helpers/functions/general.php:
|
276 |
-
#: includes/helpers/functions/general.php:
|
277 |
msgid "Go back"
|
278 |
msgstr ""
|
279 |
|
@@ -369,11 +369,11 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: includes/admin/controllers/class-settings-admin.php:536
|
372 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
373 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
374 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
375 |
#: templates/admin/payments-note.tpl.php:14
|
376 |
-
#: templates/admin/themes-item.tpl.php:
|
377 |
#: templates/parts/listing-buttons.tpl.php:31
|
378 |
#: templates/parts/listing-buttons.tpl.php:65
|
379 |
msgid "Delete"
|
@@ -419,8 +419,8 @@ msgid "Installed"
|
|
419 |
msgstr ""
|
420 |
|
421 |
#: includes/admin/helpers/class-modules-list.php:187
|
422 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
423 |
-
#: templates/admin/themes-item.tpl.php:
|
424 |
msgid "Active"
|
425 |
msgstr ""
|
426 |
|
@@ -430,12 +430,12 @@ msgstr ""
|
|
430 |
|
431 |
#: includes/admin/helpers/class-modules-list.php:225
|
432 |
#: includes/controllers/class-smtp.php:317
|
433 |
-
#: templates/admin/themes-item.tpl.php:
|
434 |
msgid "Activate"
|
435 |
msgstr ""
|
436 |
|
437 |
#: includes/admin/helpers/class-modules-list.php:235
|
438 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
439 |
msgid "Upgrade Now"
|
440 |
msgstr ""
|
441 |
|
@@ -449,50 +449,53 @@ msgid "There are no fees right now. %1$sCreate one%2$s."
|
|
449 |
msgstr ""
|
450 |
|
451 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
452 |
-
msgid "
|
453 |
msgstr ""
|
454 |
|
455 |
#: includes/admin/helpers/tables/class-fees-table.php:62
|
456 |
-
msgid "
|
457 |
msgstr ""
|
458 |
|
459 |
#: includes/admin/helpers/tables/class-fees-table.php:63
|
|
|
|
|
|
|
|
|
460 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
461 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
462 |
#: includes/helpers/class-app.php:92
|
463 |
msgid "Listings"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
467 |
msgid "Disable"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
471 |
msgid "Enable"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
475 |
msgid "ID: %s"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
479 |
msgid "Paid Plan"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
483 |
msgid "Free Plan"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
487 |
msgid "%1$s for %2$s"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
491 |
-
#: includes/admin/helpers/tables/class-fees-table.php:293
|
492 |
msgid "Disabled"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
496 |
#: includes/helpers/functions/templates-ui.php:431
|
497 |
msgid "Default"
|
498 |
msgstr ""
|
@@ -530,7 +533,7 @@ msgid "Missing tables: %s"
|
|
530 |
msgstr ""
|
531 |
|
532 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
533 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
534 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
535 |
#: templates/listing-contactform.tpl.php:33
|
536 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -572,7 +575,7 @@ msgstr ""
|
|
572 |
|
573 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
574 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
575 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
576 |
msgid "Terms and Conditions"
|
577 |
msgstr ""
|
578 |
|
@@ -762,11 +765,11 @@ msgstr ""
|
|
762 |
msgid "URL"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
766 |
msgid "Thank you for your payment."
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
770 |
msgid ""
|
771 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
772 |
"collect payments in this currency."
|
@@ -776,51 +779,51 @@ msgid_plural ""
|
|
776 |
msgstr[0] ""
|
777 |
msgstr[1] ""
|
778 |
|
779 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
780 |
msgid "Email Notifications"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
784 |
msgid "Notify admin via email when..."
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
788 |
msgid "CC this email address too"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
792 |
msgid ""
|
793 |
"You can modify the text template used for most of these emails in the "
|
794 |
"<templates-link>Templates</templates-link> tab."
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
798 |
msgid "Notify users via email when..."
|
799 |
msgstr ""
|
800 |
|
801 |
#. translators: %s: email shortcode
|
802 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
803 |
msgid "Email: %s"
|
804 |
msgstr ""
|
805 |
|
806 |
#. translators: %s: phone shortcode
|
807 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
808 |
msgid "Phone Number: %s"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
812 |
msgid "Sender's email address"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
816 |
msgid "Sender's phone number"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
820 |
msgid "Renewal and expiration"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
824 |
#: templates/admin/uninstall-complete.tpl.php:4
|
825 |
msgid "Uninstall"
|
826 |
msgstr ""
|
@@ -912,7 +915,7 @@ msgstr ""
|
|
912 |
|
913 |
#. translators: %s: Status name
|
914 |
#: includes/admin/views/modules/list.php:63
|
915 |
-
#: templates/admin/themes-item.tpl.php:
|
916 |
msgid "Status: %s"
|
917 |
msgstr ""
|
918 |
|
@@ -1069,12 +1072,10 @@ msgstr ""
|
|
1069 |
msgid "View All Listings"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
|
1073 |
-
#: includes/class-payment-gateways.php:165
|
1074 |
msgid ""
|
1075 |
-
"You have
|
1076 |
-
"
|
1077 |
-
"to %1$sFee Plans%2$s to add or edit your fee plan(s)."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
#: includes/class-wpbdp.php:369
|
@@ -1095,7 +1096,7 @@ msgid ""
|
|
1095 |
"admin."
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:
|
1099 |
msgid "Could not find image ID"
|
1100 |
msgstr ""
|
1101 |
|
@@ -1282,35 +1283,35 @@ msgstr ""
|
|
1282 |
msgid "This is just a preview. The listing has not been published yet."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1286 |
msgid "Listing Images"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1290 |
msgid "Account Creation"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1294 |
msgid "Go to \"Fee Plans\""
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1298 |
msgid "Please choose a fee plan."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1302 |
msgid "Please check the form for errors, correct them and submit again."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1306 |
msgid "Create a user account on this site"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1310 |
msgid "Username"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1314 |
msgid "Clear Form"
|
1315 |
msgstr ""
|
1316 |
|
@@ -1574,8 +1575,7 @@ msgid ""
|
|
1574 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: includes/helpers/functions/general.php:
|
1578 |
-
#: templates/admin/fees-index.tpl.php:67
|
1579 |
msgid "Free"
|
1580 |
msgstr ""
|
1581 |
|
@@ -1588,64 +1588,64 @@ msgid "Manage Listings"
|
|
1588 |
msgstr ""
|
1589 |
|
1590 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1591 |
-
#: includes/licensing.php:
|
1592 |
msgid ""
|
1593 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1594 |
"get updates."
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: includes/licensing.php:
|
1598 |
msgid "Licenses"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: includes/licensing.php:
|
1602 |
msgid "Build more powerful directories"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: includes/licensing.php:
|
1606 |
msgid ""
|
1607 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: includes/licensing.php:
|
1611 |
msgid "Already purchased?"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
#. translators: %s: item type.
|
1615 |
-
#: includes/licensing.php:
|
1616 |
msgid "%s will not get updates until license is reauthorized."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: includes/licensing.php:
|
1620 |
msgid "Enter License Key here"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: includes/licensing.php:
|
1624 |
msgid "Authorize"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: includes/licensing.php:
|
1628 |
msgid "Invalid item ID"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: includes/licensing.php:
|
1632 |
msgid "No license key provided"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: includes/licensing.php:
|
1636 |
msgid "License key is invalid"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: includes/licensing.php:
|
1640 |
msgid "Deactivation failed"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: includes/licensing.php:
|
1644 |
msgid "The license key was revoked."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1648 |
-
#: includes/licensing.php:
|
1649 |
msgid ""
|
1650 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1651 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -1653,46 +1653,46 @@ msgid ""
|
|
1653 |
"with your report."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: includes/licensing.php:
|
1657 |
msgid ""
|
1658 |
"It was not possible to establish a connection with the Business Directory "
|
1659 |
"server. The connection failed with the following error:"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: includes/licensing.php:
|
1663 |
msgid ""
|
1664 |
"It was not possible to establish a connection with the Business Directory "
|
1665 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: includes/licensing.php:
|
1669 |
msgid ""
|
1670 |
"It looks like your server is not authorized to make outgoing requests to "
|
1671 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1672 |
"our IP address 52.0.78.177 to your allow list."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: includes/licensing.php:
|
1676 |
msgid "Business Directory license key is missing."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: includes/licensing.php:
|
1680 |
msgid "Business Directory license key has expired"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: includes/licensing.php:
|
1684 |
msgid "Could not verify Business Directory license."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: includes/licensing.php:
|
1688 |
msgid "Review license keys"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: includes/licensing.php:
|
1692 |
msgid "Missing data. Please reload this page and try again."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: includes/licensing.php:
|
1696 |
msgid "Please enter a license key."
|
1697 |
msgstr ""
|
1698 |
|
@@ -1733,11 +1733,11 @@ msgstr ""
|
|
1733 |
msgid "ZIP file is not a valid Business Directory theme file."
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: includes/utils.php:
|
1737 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: includes/utils.php:
|
1741 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
1742 |
msgstr ""
|
1743 |
|
@@ -2027,64 +2027,44 @@ msgstr ""
|
|
2027 |
msgid "Add New Listing Fee"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: templates/admin/fees-index.tpl.php:
|
2031 |
-
msgid "Payments are currently turned off."
|
2032 |
-
msgstr ""
|
2033 |
-
|
2034 |
-
#. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
|
2035 |
-
#: templates/admin/fees-index.tpl.php:21
|
2036 |
-
msgid ""
|
2037 |
-
"To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
|
2038 |
-
"and check the box next to 'Turn On Payments' under 'Payment Settings'."
|
2039 |
-
msgstr ""
|
2040 |
-
|
2041 |
-
#: templates/admin/fees-index.tpl.php:34
|
2042 |
msgid "Order fees on the frontend by:"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: templates/admin/fees-index.tpl.php:
|
2046 |
msgid "↑ Ascending"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: templates/admin/fees-index.tpl.php:
|
2050 |
msgid "↓ Descending"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: templates/admin/fees-index.tpl.php:
|
2054 |
msgid "Drag and drop to re-order fees."
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#. translators: %1$s is directory payment mode (Free or Paid)
|
2058 |
-
#: templates/admin/fees-index.tpl.php:66
|
2059 |
-
msgid "All fee plans may not be available in \"%1$s\" mode."
|
2060 |
-
msgstr ""
|
2061 |
-
|
2062 |
#: templates/admin/fees-index.tpl.php:67
|
2063 |
-
msgid "Paid"
|
2064 |
-
msgstr ""
|
2065 |
-
|
2066 |
-
#: templates/admin/fees-index.tpl.php:92
|
2067 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: templates/admin/fees-index.tpl.php:
|
2071 |
msgid "Add a payment gateway to increase conversion rates"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
#. translators: %s: payment gateway name */
|
2075 |
-
#: templates/admin/fees-index.tpl.php:
|
2076 |
msgid "Add the %s gateway as a payment option."
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: templates/admin/fees-index.tpl.php:
|
2080 |
msgid "Upgrade"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: templates/admin/fees-index.tpl.php:
|
2084 |
msgid "Set up Authorize.net as a payment option."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: templates/admin/fees-index.tpl.php:
|
2088 |
msgid "Set Up"
|
2089 |
msgstr ""
|
2090 |
|
@@ -2112,14 +2092,6 @@ msgstr ""
|
|
2112 |
msgid "Delete Field"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: templates/admin/home.tpl.php:55
|
2116 |
-
msgid "Manage Options"
|
2117 |
-
msgstr ""
|
2118 |
-
|
2119 |
-
#: templates/admin/home.tpl.php:74
|
2120 |
-
msgid "Manage Paid Listings"
|
2121 |
-
msgstr ""
|
2122 |
-
|
2123 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2124 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2125 |
#: templates/login.tpl.php:71
|
@@ -2389,7 +2361,7 @@ msgstr ""
|
|
2389 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#: templates/admin/themes-item.tpl.php:
|
2393 |
msgid "Inactive"
|
2394 |
msgstr ""
|
2395 |
|
@@ -3294,7 +3266,12 @@ msgctxt "fees admin"
|
|
3294 |
msgid "Fee \"%s\" deleted."
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
3298 |
msgctxt "fees admin"
|
3299 |
msgid "Fee disabled."
|
3300 |
msgstr ""
|
@@ -3309,54 +3286,54 @@ msgctxt "fees admin"
|
|
3309 |
msgid "fees"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3313 |
msgctxt "fees admin"
|
3314 |
msgid "Attributes"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3318 |
msgctxt "fees admin"
|
3319 |
msgid "Edit"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3323 |
msgctxt "fees admin"
|
3324 |
msgid "Variable"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3328 |
msgctxt "fees admin"
|
3329 |
msgid "%1$s + %2$s per category"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3333 |
msgctxt "fees admin"
|
3334 |
msgid "Forever"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3338 |
msgctxt "fees admin"
|
3339 |
msgid "%d day"
|
3340 |
msgid_plural "%d days"
|
3341 |
msgstr[0] ""
|
3342 |
msgstr[1] ""
|
3343 |
|
3344 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3345 |
msgctxt "fees admin"
|
3346 |
msgid "All categories"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3350 |
msgctxt "fees admin"
|
3351 |
msgid "Sticky"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3355 |
msgctxt "fees admin"
|
3356 |
msgid "Recurring"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3360 |
msgctxt "fees admin"
|
3361 |
msgid "Private"
|
3362 |
msgstr ""
|
@@ -3524,47 +3501,47 @@ msgctxt "listing status"
|
|
3524 |
msgid "Reported"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
-
#: includes/models/class-listing.php:
|
3528 |
msgctxt "listing status"
|
3529 |
msgid "Unknown"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#: includes/models/class-listing.php:
|
3533 |
msgctxt "listing status"
|
3534 |
msgid "Legacy"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
-
#: includes/models/class-listing.php:
|
3538 |
msgctxt "listing status"
|
3539 |
msgid "Incomplete"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: includes/models/class-listing.php:
|
3543 |
msgctxt "listing status"
|
3544 |
msgid "Pending Payment"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#: includes/models/class-listing.php:
|
3548 |
msgctxt "listing status"
|
3549 |
msgid "Complete"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: includes/models/class-listing.php:
|
3553 |
msgctxt "listing status"
|
3554 |
msgid "Pending Upgrade"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
-
#: includes/models/class-listing.php:
|
3558 |
msgctxt "listing status"
|
3559 |
msgid "Expired"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: includes/models/class-listing.php:
|
3563 |
msgctxt "listing status"
|
3564 |
msgid "Pending Renewal"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
-
#: includes/models/class-listing.php:
|
3568 |
msgctxt "listing status"
|
3569 |
msgid "Abandoned"
|
3570 |
msgstr ""
|
@@ -4182,13 +4159,13 @@ msgid "Author"
|
|
4182 |
msgstr ""
|
4183 |
|
4184 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4185 |
-
#: includes/helpers/functions/general.php:
|
4186 |
msgctxt "admin settings"
|
4187 |
msgid "Date posted"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4191 |
-
#: includes/helpers/functions/general.php:
|
4192 |
msgctxt "admin settings"
|
4193 |
msgid "Date last modified"
|
4194 |
msgstr ""
|
@@ -4361,206 +4338,206 @@ msgctxt "admin settings"
|
|
4361 |
msgid "U.S. Dollar (USD)"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4365 |
msgctxt "admin settings"
|
4366 |
msgid "Show currency symbol on the left"
|
4367 |
msgstr ""
|
4368 |
|
4369 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4370 |
msgctxt "admin settings"
|
4371 |
msgid "Show currency symbol on the right"
|
4372 |
msgstr ""
|
4373 |
|
4374 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4375 |
msgctxt "admin settings"
|
4376 |
msgid "Do not show currency symbol"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4380 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4381 |
msgctxt "admin settings"
|
4382 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4386 |
msgctxt "admin settings"
|
4387 |
msgid ""
|
4388 |
"Listings with pending payments are marked as abandoned after this time. You "
|
4389 |
"can also <a>customize the email</a> users receive."
|
4390 |
msgstr ""
|
4391 |
|
4392 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4393 |
msgctxt "admin settings"
|
4394 |
msgid "Try listing's email field first, then author's email."
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4398 |
msgctxt "admin settings"
|
4399 |
msgid "Try author's email first and then listing's email field."
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4403 |
msgctxt "admin settings"
|
4404 |
msgid "Plain (text/plain)"
|
4405 |
msgstr ""
|
4406 |
|
4407 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4408 |
msgctxt "admin settings"
|
4409 |
msgid "HTML (text/html)"
|
4410 |
msgstr ""
|
4411 |
|
4412 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4413 |
msgctxt "admin settings"
|
4414 |
msgid "Both (multipart/alternative)"
|
4415 |
msgstr ""
|
4416 |
|
4417 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4418 |
msgctxt "admin settings"
|
4419 |
msgid "A new listing is submitted."
|
4420 |
msgstr ""
|
4421 |
|
4422 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4423 |
msgctxt "admin settings"
|
4424 |
msgid "A listing is edited."
|
4425 |
msgstr ""
|
4426 |
|
4427 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4428 |
msgctxt "admin settings"
|
4429 |
msgid "A listing expires."
|
4430 |
msgstr ""
|
4431 |
|
4432 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4433 |
msgctxt "admin settings"
|
4434 |
msgid "A listing is renewed."
|
4435 |
msgstr ""
|
4436 |
|
4437 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4438 |
msgctxt "admin settings"
|
4439 |
msgid "A listing payment is completed."
|
4440 |
msgstr ""
|
4441 |
|
4442 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4443 |
msgctxt "admin settings"
|
4444 |
msgid "A listing has been reported as inappropriate."
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4448 |
msgctxt "admin settings"
|
4449 |
msgid "A contact message is sent to a listing's owner."
|
4450 |
msgstr ""
|
4451 |
|
4452 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4453 |
msgctxt "admin settings"
|
4454 |
msgid "Their listing is submitted."
|
4455 |
msgstr ""
|
4456 |
|
4457 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4458 |
msgctxt "admin settings"
|
4459 |
msgid "Their listing is approved/published."
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4463 |
msgctxt "admin settings"
|
4464 |
msgid "A payment for their listing is completed."
|
4465 |
msgstr ""
|
4466 |
|
4467 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4468 |
msgctxt "admin settings"
|
4469 |
msgid "Their listing expired or is about to expire."
|
4470 |
msgstr ""
|
4471 |
|
4472 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4473 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4474 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4475 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4476 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4477 |
msgctxt "admin settings"
|
4478 |
msgid "Listing's title"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4482 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4483 |
msgctxt "admin settings"
|
4484 |
msgid "Listing's fee plan name"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4488 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4489 |
msgctxt "admin settings"
|
4490 |
msgid "Listing's fee plan description"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4494 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4495 |
msgctxt "admin settings"
|
4496 |
msgid "Listing's fee plan details"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4500 |
msgctxt "admin settings"
|
4501 |
msgid ""
|
4502 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
4503 |
"viewed by the public."
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4507 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4508 |
msgctxt "admin settings"
|
4509 |
msgid "Listing's URL"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4513 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4514 |
msgctxt "admin settings"
|
4515 |
msgid "Listing's Access Key"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4519 |
msgctxt "admin settings"
|
4520 |
msgid "Sender's name"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4524 |
msgctxt "admin settings"
|
4525 |
msgid "Contact message"
|
4526 |
msgstr ""
|
4527 |
|
4528 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4529 |
msgctxt "admin settings"
|
4530 |
msgid "Date and time the message was sent"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4534 |
msgctxt "admin settings"
|
4535 |
msgid "Payment items details."
|
4536 |
msgstr ""
|
4537 |
|
4538 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4539 |
msgctxt "admin settings"
|
4540 |
msgid "URL where user can review and print payment receipt."
|
4541 |
msgstr ""
|
4542 |
|
4543 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4544 |
msgctxt "admin settings"
|
4545 |
msgid "Gateway used to process listing's payment."
|
4546 |
msgstr ""
|
4547 |
|
4548 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4549 |
msgctxt "admin settings"
|
4550 |
msgid "Checkout URL link"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4554 |
msgctxt "admin settings"
|
4555 |
msgid "Uploaded Image (no resize)"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: includes/helpers/functions/general.php:
|
4559 |
msgctxt "admin settings"
|
4560 |
msgid "User"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
-
#: includes/helpers/functions/general.php:
|
4564 |
msgctxt "admin settings"
|
4565 |
msgid "User registration date"
|
4566 |
msgstr ""
|
@@ -4777,7 +4754,7 @@ msgstr ""
|
|
4777 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
4778 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
4779 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
4780 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4781 |
#: includes/admin/settings/class-settings.php:341
|
4782 |
msgctxt "settings"
|
4783 |
msgid "General Settings"
|
@@ -5339,17 +5316,12 @@ msgctxt "settings"
|
|
5339 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
5340 |
msgstr ""
|
5341 |
|
5342 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5343 |
msgctxt "settings"
|
5344 |
msgid "Fee Order"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5348 |
-
msgctxt "settings"
|
5349 |
-
msgid "Turn On payments?"
|
5350 |
-
msgstr ""
|
5351 |
-
|
5352 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1144
|
5353 |
msgctxt "settings"
|
5354 |
msgid "Put payment gateways in test mode?"
|
5355 |
msgstr ""
|
@@ -5359,42 +5331,42 @@ msgctxt "settings"
|
|
5359 |
msgid "Currency Code"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5363 |
msgctxt "settings"
|
5364 |
msgid "Currency Symbol"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5368 |
msgctxt "settings"
|
5369 |
msgid "Currency symbol display"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5373 |
msgctxt "settings"
|
5374 |
msgid "Include fee description in receipt?"
|
5375 |
msgstr ""
|
5376 |
|
5377 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5378 |
msgctxt "settings"
|
5379 |
msgid "Thank you for payment message"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5383 |
msgctxt "settings"
|
5384 |
msgid "Ask users to come back for abandoned payments?"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5388 |
msgctxt "settings"
|
5389 |
msgid "Listing abandonment threshold (hours)"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5393 |
msgctxt "settings"
|
5394 |
msgid "Display email address fields publicly?"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5398 |
msgctxt "settings"
|
5399 |
msgid ""
|
5400 |
"Shows the email address of the listing owner to all web users. NOT "
|
@@ -5402,24 +5374,24 @@ msgid ""
|
|
5402 |
"harvest it for future use."
|
5403 |
msgstr ""
|
5404 |
|
5405 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5406 |
msgctxt "settings"
|
5407 |
msgid "How to determine the listing's email address?"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5411 |
msgctxt "settings"
|
5412 |
msgid ""
|
5413 |
"This affects emails sent to listing owners via contact forms or when their "
|
5414 |
"listings expire."
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5418 |
msgctxt "settings"
|
5419 |
msgid "Email Content-Type header"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5423 |
msgctxt "settings"
|
5424 |
msgid ""
|
5425 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -5428,59 +5400,59 @@ msgid ""
|
|
5428 |
"then \"Both\"."
|
5429 |
msgstr ""
|
5430 |
|
5431 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5432 |
msgctxt "settings"
|
5433 |
msgid "Templates"
|
5434 |
msgstr ""
|
5435 |
|
5436 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5437 |
msgctxt "settings"
|
5438 |
msgid "Email confirmation message"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5442 |
msgctxt "settings"
|
5443 |
msgid "Sent after a listing has been submitted."
|
5444 |
msgstr ""
|
5445 |
|
5446 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5447 |
msgctxt "settings"
|
5448 |
msgid "Listing published message"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5452 |
msgctxt "settings"
|
5453 |
msgid "Sent when the listing has been published or approved by an admin."
|
5454 |
msgstr ""
|
5455 |
|
5456 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5457 |
msgctxt "settings"
|
5458 |
msgid "Listing Contact Message"
|
5459 |
msgstr ""
|
5460 |
|
5461 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5462 |
msgctxt "settings"
|
5463 |
msgid ""
|
5464 |
"Sent to listing owners when someone uses the contact form on their listing "
|
5465 |
"pages."
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5469 |
msgctxt "settings"
|
5470 |
msgid "Payment completed message"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5474 |
msgctxt "settings"
|
5475 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5479 |
msgctxt "settings"
|
5480 |
msgid "Payment abandoned reminder message"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5484 |
msgctxt "settings"
|
5485 |
msgid "Cropped"
|
5486 |
msgstr ""
|
@@ -5496,17 +5468,17 @@ msgctxt "settings"
|
|
5496 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: includes/licensing.php:
|
5500 |
msgctxt "settings"
|
5501 |
msgid "Themes"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
-
#: includes/licensing.php:
|
5505 |
msgctxt "settings"
|
5506 |
msgid "Please wait..."
|
5507 |
msgstr ""
|
5508 |
|
5509 |
-
#: includes/licensing.php:
|
5510 |
msgctxt "settings"
|
5511 |
msgid "Deauthorize"
|
5512 |
msgstr ""
|
@@ -5558,27 +5530,27 @@ msgctxt "themes"
|
|
5558 |
msgid "Could not delete theme directory. Check permissions."
|
5559 |
msgstr ""
|
5560 |
|
5561 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5562 |
msgctxt "themes"
|
5563 |
msgid "Please upload a valid theme file."
|
5564 |
msgstr ""
|
5565 |
|
5566 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5567 |
msgctxt "themes"
|
5568 |
msgid "Could not move \"%s\" to a temporary directory."
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5572 |
msgctxt "themes"
|
5573 |
msgid "Activate your <a>license key</a> to use this theme."
|
5574 |
msgstr ""
|
5575 |
|
5576 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5577 |
msgctxt "themes"
|
5578 |
msgid "Invalid theme ID"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5582 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
5583 |
msgctxt "themes"
|
5584 |
msgid "Could not update theme: %s"
|
@@ -5975,24 +5947,24 @@ msgid "Trash"
|
|
5975 |
msgstr ""
|
5976 |
|
5977 |
#. translators: %s: url shortcode
|
5978 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5979 |
msgctxt "contact email"
|
5980 |
msgid "You have received a reply from your listing at %s."
|
5981 |
msgstr ""
|
5982 |
|
5983 |
#. translators: %s: name shortcode
|
5984 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5985 |
msgctxt "contact email"
|
5986 |
msgid "Name: %s"
|
5987 |
msgstr ""
|
5988 |
|
5989 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5990 |
msgctxt "contact email"
|
5991 |
msgid "Message:"
|
5992 |
msgstr ""
|
5993 |
|
5994 |
#. translators: %s: date shortcode
|
5995 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5996 |
msgctxt "contact email"
|
5997 |
msgid "Time: %s"
|
5998 |
msgstr ""
|
@@ -6267,32 +6239,32 @@ msgctxt "listing"
|
|
6267 |
msgid "Add New Listing"
|
6268 |
msgstr ""
|
6269 |
|
6270 |
-
#: includes/models/class-listing.php:
|
6271 |
msgctxt "listing"
|
6272 |
msgid "Listing has no registered payments"
|
6273 |
msgstr ""
|
6274 |
|
6275 |
-
#: includes/models/class-listing.php:
|
6276 |
msgctxt "listing"
|
6277 |
msgid "Can't delete payment"
|
6278 |
msgstr ""
|
6279 |
|
6280 |
-
#: includes/models/class-listing.php:
|
6281 |
msgctxt "listing"
|
6282 |
msgid "Listing expired"
|
6283 |
msgstr ""
|
6284 |
|
6285 |
-
#: includes/models/class-listing.php:
|
6286 |
msgctxt "listing"
|
6287 |
msgid "(Unavailable Plan)"
|
6288 |
msgstr ""
|
6289 |
|
6290 |
-
#: includes/models/class-listing.php:
|
6291 |
msgctxt "listing"
|
6292 |
msgid "Plan \"%s\" (recurring)"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
-
#: includes/models/class-listing.php:
|
6296 |
msgctxt "listing"
|
6297 |
msgid "Plan \"%s\""
|
6298 |
msgstr ""
|
@@ -6420,27 +6392,18 @@ msgctxt "payment-gateways"
|
|
6420 |
msgid "Enable %s?"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
-
#: includes/class-payment-gateways.php:
|
6424 |
msgctxt "payment-gateways"
|
6425 |
msgid ""
|
6426 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
6427 |
"won't be available until the following problems are fixed: <problems>."
|
6428 |
msgstr ""
|
6429 |
|
6430 |
-
#: includes/class-payment-gateways.php:
|
6431 |
msgctxt "payment-gateways"
|
6432 |
msgid "Please check the <link>payment settings</link>."
|
6433 |
msgstr ""
|
6434 |
|
6435 |
-
#: includes/class-payment-gateways.php:142
|
6436 |
-
msgctxt "payment-gateways"
|
6437 |
-
msgid ""
|
6438 |
-
"You have payments turned on but no gateway is active and properly "
|
6439 |
-
"configured. Go to <link>Manage Options - Payment</link> to change the "
|
6440 |
-
"payment settings. Until you change this, the directory will operate in "
|
6441 |
-
"<i>Free Mode</i>."
|
6442 |
-
msgstr ""
|
6443 |
-
|
6444 |
#: includes/class-recaptcha.php:32
|
6445 |
msgctxt "recaptcha"
|
6446 |
msgid "The reCAPTCHA wasn't entered correctly."
|
@@ -6636,34 +6599,34 @@ msgid ""
|
|
6636 |
"site. If you didn't want that, click <a>here</a> to change the setting."
|
6637 |
msgstr ""
|
6638 |
|
6639 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6640 |
msgctxt "templates"
|
6641 |
msgid ""
|
6642 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
6643 |
"Submission?\" setting checked?"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6647 |
msgctxt "templates"
|
6648 |
msgid ""
|
6649 |
"Listing submission has been disabled. Contact the administrator for details."
|
6650 |
msgstr ""
|
6651 |
|
6652 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6653 |
msgctxt "templates"
|
6654 |
msgid ""
|
6655 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
6656 |
"submit a listing. %s to create a fee plan"
|
6657 |
msgstr ""
|
6658 |
|
6659 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6660 |
msgctxt "templates"
|
6661 |
msgid ""
|
6662 |
"Listing submission is not available at the moment. Contact the administrator "
|
6663 |
"for details."
|
6664 |
msgstr ""
|
6665 |
|
6666 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6667 |
msgctxt "templates"
|
6668 |
msgid ""
|
6669 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -6671,17 +6634,17 @@ msgid ""
|
|
6671 |
"an existing field"
|
6672 |
msgstr ""
|
6673 |
|
6674 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6675 |
msgctxt "templates"
|
6676 |
msgid "Please agree to the Terms and Conditions."
|
6677 |
msgstr ""
|
6678 |
|
6679 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6680 |
msgctxt "templates"
|
6681 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
-
#: includes/helpers/functions/general.php:
|
6685 |
msgctxt "templates"
|
6686 |
msgid "Return to results"
|
6687 |
msgstr ""
|
@@ -6994,7 +6957,7 @@ msgctxt "submit listing"
|
|
6994 |
msgid "You can't edit this listing."
|
6995 |
msgstr ""
|
6996 |
|
6997 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6998 |
msgctxt "submit listing"
|
6999 |
msgid ""
|
7000 |
"This listing can't be edited at this time because it has no fee plan "
|
@@ -7002,65 +6965,65 @@ msgid ""
|
|
7002 |
"to a fee plan."
|
7003 |
msgstr ""
|
7004 |
|
7005 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7006 |
msgctxt "submit listing"
|
7007 |
msgid ""
|
7008 |
"This listing can't be edited at this time. Please try again later or contact "
|
7009 |
"the admin if the problem persists."
|
7010 |
msgstr ""
|
7011 |
|
7012 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7013 |
msgctxt "submit listing"
|
7014 |
msgid "You're logged in as admin, payment will be skipped."
|
7015 |
msgstr ""
|
7016 |
|
7017 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7018 |
msgctxt "submit listing"
|
7019 |
msgid "Category selection"
|
7020 |
msgstr ""
|
7021 |
|
7022 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7023 |
msgctxt "submit listing"
|
7024 |
msgid "Category & plan selection"
|
7025 |
msgstr ""
|
7026 |
|
7027 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7028 |
msgctxt "submit listing"
|
7029 |
msgid "Can not submit a listing at this moment. Please try again later."
|
7030 |
msgstr ""
|
7031 |
|
7032 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7033 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7034 |
msgctxt "submit listing"
|
7035 |
msgid "Please select a category."
|
7036 |
msgstr ""
|
7037 |
|
7038 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7039 |
msgctxt "submit listing"
|
7040 |
msgid "Please choose a valid category for your plan."
|
7041 |
msgstr ""
|
7042 |
|
7043 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7044 |
msgctxt "submit listing"
|
7045 |
msgid "Please choose a valid fee plan for your category selection."
|
7046 |
msgstr ""
|
7047 |
|
7048 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7049 |
msgctxt "submit listing"
|
7050 |
msgid "Please enter your desired username."
|
7051 |
msgstr ""
|
7052 |
|
7053 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7054 |
msgctxt "submit listing"
|
7055 |
msgid "Please enter the e-mail for your new account."
|
7056 |
msgstr ""
|
7057 |
|
7058 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7059 |
msgctxt "submit listing"
|
7060 |
msgid "The username you chose is already in use. Please use a different one."
|
7061 |
msgstr ""
|
7062 |
|
7063 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7064 |
msgctxt "submit listing"
|
7065 |
msgid "The e-mail address you chose for your account is already in use."
|
7066 |
msgstr ""
|
@@ -7070,7 +7033,7 @@ msgctxt "submit listing"
|
|
7070 |
msgid "Listing submitted by admin. Payment skipped."
|
7071 |
msgstr ""
|
7072 |
|
7073 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7074 |
msgctxt "listing submit"
|
7075 |
msgid ""
|
7076 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -7375,19 +7338,19 @@ msgctxt "default category name"
|
|
7375 |
msgid "General"
|
7376 |
msgstr ""
|
7377 |
|
7378 |
-
#: includes/licensing.php:
|
7379 |
msgctxt "licensing"
|
7380 |
msgid "Could not contact licensing server"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
-
#: includes/licensing.php:
|
7384 |
msgctxt "licensing"
|
7385 |
msgid ""
|
7386 |
"It was not possible to establish a connection with Business Directory's "
|
7387 |
"server. cURL was not found in your system"
|
7388 |
msgstr ""
|
7389 |
|
7390 |
-
#: includes/licensing.php:
|
7391 |
msgctxt "licensing"
|
7392 |
msgid ""
|
7393 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -7396,7 +7359,7 @@ msgid ""
|
|
7396 |
"1.0.1c)."
|
7397 |
msgstr ""
|
7398 |
|
7399 |
-
#: includes/licensing.php:
|
7400 |
msgctxt "licensing"
|
7401 |
msgid ""
|
7402 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -7404,47 +7367,47 @@ msgid ""
|
|
7404 |
"services using the latest security standards."
|
7405 |
msgstr ""
|
7406 |
|
7407 |
-
#: includes/licensing.php:
|
7408 |
msgctxt "licensing"
|
7409 |
msgid ""
|
7410 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7411 |
"Include this message if necessary"
|
7412 |
msgstr ""
|
7413 |
|
7414 |
-
#: includes/licensing.php:
|
7415 |
msgctxt "licensing"
|
7416 |
msgid ""
|
7417 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7418 |
"Include this message if necessary."
|
7419 |
msgstr ""
|
7420 |
|
7421 |
-
#: includes/licensing.php:
|
7422 |
msgctxt "licensing"
|
7423 |
msgid "The server returned a 403 Forbidden error."
|
7424 |
msgstr ""
|
7425 |
|
7426 |
-
#: includes/licensing.php:
|
7427 |
msgctxt "licensing"
|
7428 |
msgid "Could not activate license: %s."
|
7429 |
msgstr ""
|
7430 |
|
7431 |
-
#: includes/licensing.php:
|
7432 |
msgctxt "licensing"
|
7433 |
msgid "License activated"
|
7434 |
msgstr ""
|
7435 |
|
7436 |
-
#: includes/licensing.php:
|
7437 |
msgctxt "licensing"
|
7438 |
msgid "Could not deactivate license: %s."
|
7439 |
msgstr ""
|
7440 |
|
7441 |
-
#: includes/licensing.php:
|
7442 |
msgctxt "licensing"
|
7443 |
msgid "License deactivated"
|
7444 |
msgstr ""
|
7445 |
|
7446 |
#. translators: "<module-name>" version <version-number> is not...
|
7447 |
-
#: includes/licensing.php:
|
7448 |
msgctxt "deprecation"
|
7449 |
msgid ""
|
7450 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -7463,17 +7426,17 @@ msgid_plural "%d images allowed."
|
|
7463 |
msgstr[0] ""
|
7464 |
msgstr[1] ""
|
7465 |
|
7466 |
-
#: includes/models/class-fee-plan.php:
|
7467 |
msgctxt "fees-api"
|
7468 |
msgid "Fee label is required."
|
7469 |
msgstr ""
|
7470 |
|
7471 |
-
#: includes/models/class-fee-plan.php:
|
7472 |
msgctxt "fees-api"
|
7473 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
7474 |
msgstr ""
|
7475 |
|
7476 |
-
#: includes/models/class-fee-plan.php:
|
7477 |
msgctxt "fees-api"
|
7478 |
msgid ""
|
7479 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
@@ -7481,7 +7444,7 @@ msgid ""
|
|
7481 |
"<a>fee plan</a> appropriately."
|
7482 |
msgstr ""
|
7483 |
|
7484 |
-
#: includes/models/class-fee-plan.php:
|
7485 |
msgctxt "fees-api"
|
7486 |
msgid ""
|
7487 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
@@ -7553,17 +7516,17 @@ msgctxt "utils"
|
|
7553 |
msgid "Unkown error while uploading file."
|
7554 |
msgstr ""
|
7555 |
|
7556 |
-
#: includes/utils.php:
|
7557 |
msgctxt "utils"
|
7558 |
msgid "Error while uploading file"
|
7559 |
msgstr ""
|
7560 |
|
7561 |
-
#: includes/utils.php:
|
7562 |
msgctxt "utils"
|
7563 |
msgid "File type \"%s\" is not allowed"
|
7564 |
msgstr ""
|
7565 |
|
7566 |
-
#: includes/utils.php:
|
7567 |
msgctxt "utils"
|
7568 |
msgid ""
|
7569 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -7669,39 +7632,6 @@ msgctxt "admin forms"
|
|
7669 |
msgid "required"
|
7670 |
msgstr ""
|
7671 |
|
7672 |
-
#: templates/admin/home.tpl.php:12
|
7673 |
-
msgctxt "admin home"
|
7674 |
-
msgid "Welcome to Business Directory Plugin. You are using %s."
|
7675 |
-
msgstr ""
|
7676 |
-
|
7677 |
-
#: templates/admin/home.tpl.php:15
|
7678 |
-
msgctxt "admin home"
|
7679 |
-
msgid ""
|
7680 |
-
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
7681 |
-
"let's jump right in!"
|
7682 |
-
msgstr ""
|
7683 |
-
|
7684 |
-
#: templates/admin/home.tpl.php:28
|
7685 |
-
msgctxt "admin home"
|
7686 |
-
msgid ""
|
7687 |
-
"Our complete documentation is <a>here</a> which we encourage you to use "
|
7688 |
-
"while setting things up."
|
7689 |
-
msgstr ""
|
7690 |
-
|
7691 |
-
#: templates/admin/home.tpl.php:36
|
7692 |
-
msgctxt "admin home"
|
7693 |
-
msgid ""
|
7694 |
-
"We have some quick-start scenarios that you will find useful regarding setup "
|
7695 |
-
"and configuration <a>here</a>."
|
7696 |
-
msgstr ""
|
7697 |
-
|
7698 |
-
#: templates/admin/home.tpl.php:45
|
7699 |
-
msgctxt "admin home"
|
7700 |
-
msgid ""
|
7701 |
-
"If you have questions, please post a comment on <a>support forum</a> and "
|
7702 |
-
"we'll answer it within 24 hours most days."
|
7703 |
-
msgstr ""
|
7704 |
-
|
7705 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
7706 |
msgctxt "admin infometabox"
|
7707 |
msgid "Renewal url (copy & paste)"
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-02 19:38:07+00:00\n"
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
76 |
msgid "Directory"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: includes/admin/class-admin.php:312
|
80 |
msgid "Fee Plans"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: includes/admin/class-admin.php:315
|
84 |
msgid "Form Fields"
|
85 |
msgstr ""
|
86 |
|
87 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
88 |
+
#: includes/licensing.php:227
|
89 |
msgid "Modules"
|
90 |
msgstr ""
|
91 |
|
190 |
msgstr ""
|
191 |
|
192 |
#: includes/admin/controllers/class-admin-fees.php:49
|
193 |
+
#: includes/admin/helpers/tables/class-fees-table.php:65
|
194 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
195 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
196 |
msgid "Images"
|
222 |
msgstr ""
|
223 |
|
224 |
#: includes/admin/controllers/class-admin-listings.php:185
|
225 |
+
#: includes/controllers/pages/class-submit-listing.php:518
|
226 |
#: templates/email/listing-reported.tpl.php:7
|
227 |
msgid "Listing Information"
|
228 |
msgstr ""
|
267 |
msgstr ""
|
268 |
|
269 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
270 |
+
#: includes/controllers/pages/class-submit-listing.php:848
|
271 |
msgid "Go to \"Form Fields\""
|
272 |
msgstr ""
|
273 |
|
274 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
275 |
+
#: includes/helpers/functions/general.php:1366
|
276 |
+
#: includes/helpers/functions/general.php:1371
|
277 |
msgid "Go back"
|
278 |
msgstr ""
|
279 |
|
369 |
msgstr ""
|
370 |
|
371 |
#: includes/admin/controllers/class-settings-admin.php:536
|
372 |
+
#: includes/admin/helpers/tables/class-fees-table.php:174
|
373 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
374 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
375 |
#: templates/admin/payments-note.tpl.php:14
|
376 |
+
#: templates/admin/themes-item.tpl.php:66
|
377 |
#: templates/parts/listing-buttons.tpl.php:31
|
378 |
#: templates/parts/listing-buttons.tpl.php:65
|
379 |
msgid "Delete"
|
419 |
msgstr ""
|
420 |
|
421 |
#: includes/admin/helpers/class-modules-list.php:187
|
422 |
+
#: includes/admin/helpers/tables/class-fees-table.php:284
|
423 |
+
#: templates/admin/themes-item.tpl.php:41
|
424 |
msgid "Active"
|
425 |
msgstr ""
|
426 |
|
430 |
|
431 |
#: includes/admin/helpers/class-modules-list.php:225
|
432 |
#: includes/controllers/class-smtp.php:317
|
433 |
+
#: templates/admin/themes-item.tpl.php:61
|
434 |
msgid "Activate"
|
435 |
msgstr ""
|
436 |
|
437 |
#: includes/admin/helpers/class-modules-list.php:235
|
438 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:275
|
439 |
msgid "Upgrade Now"
|
440 |
msgstr ""
|
441 |
|
449 |
msgstr ""
|
450 |
|
451 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
452 |
+
msgid "Order"
|
453 |
msgstr ""
|
454 |
|
455 |
#: includes/admin/helpers/tables/class-fees-table.php:62
|
456 |
+
msgid "Plan Details"
|
457 |
msgstr ""
|
458 |
|
459 |
#: includes/admin/helpers/tables/class-fees-table.php:63
|
460 |
+
msgid "Pricing"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
464 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
465 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
466 |
#: includes/helpers/class-app.php:92
|
467 |
msgid "Listings"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/admin/helpers/tables/class-fees-table.php:153
|
471 |
msgid "Disable"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: includes/admin/helpers/tables/class-fees-table.php:159
|
475 |
msgid "Enable"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: includes/admin/helpers/tables/class-fees-table.php:181
|
479 |
msgid "ID: %s"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
483 |
msgid "Paid Plan"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
487 |
msgid "Free Plan"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: includes/admin/helpers/tables/class-fees-table.php:219
|
491 |
msgid "%1$s for %2$s"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: includes/admin/helpers/tables/class-fees-table.php:282
|
|
|
495 |
msgid "Disabled"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: includes/admin/helpers/tables/class-fees-table.php:288
|
499 |
#: includes/helpers/functions/templates-ui.php:431
|
500 |
msgid "Default"
|
501 |
msgstr ""
|
533 |
msgstr ""
|
534 |
|
535 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
536 |
+
#: includes/controllers/pages/class-submit-listing.php:1252
|
537 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
538 |
#: templates/listing-contactform.tpl.php:33
|
539 |
#: templates/listing-flagging-form.tpl.php:39
|
575 |
|
576 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
577 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
578 |
+
#: includes/controllers/pages/class-submit-listing.php:531
|
579 |
msgid "Terms and Conditions"
|
580 |
msgstr ""
|
581 |
|
765 |
msgid "URL"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1226
|
769 |
msgid "Thank you for your payment."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1254
|
773 |
msgid ""
|
774 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
775 |
"collect payments in this currency."
|
779 |
msgstr[0] ""
|
780 |
msgstr[1] ""
|
781 |
|
782 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
783 |
msgid "Email Notifications"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1347
|
787 |
msgid "Notify admin via email when..."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1365
|
791 |
msgid "CC this email address too"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
795 |
msgid ""
|
796 |
"You can modify the text template used for most of these emails in the "
|
797 |
"<templates-link>Templates</templates-link> tab."
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1379
|
801 |
msgid "Notify users via email when..."
|
802 |
msgstr ""
|
803 |
|
804 |
#. translators: %s: email shortcode
|
805 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1446
|
806 |
msgid "Email: %s"
|
807 |
msgstr ""
|
808 |
|
809 |
#. translators: %s: phone shortcode
|
810 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1449
|
811 |
msgid "Phone Number: %s"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
815 |
msgid "Sender's email address"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1462
|
819 |
msgid "Sender's phone number"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1526
|
823 |
msgid "Renewal and expiration"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1662
|
827 |
#: templates/admin/uninstall-complete.tpl.php:4
|
828 |
msgid "Uninstall"
|
829 |
msgstr ""
|
915 |
|
916 |
#. translators: %s: Status name
|
917 |
#: includes/admin/views/modules/list.php:63
|
918 |
+
#: templates/admin/themes-item.tpl.php:50
|
919 |
msgid "Status: %s"
|
920 |
msgstr ""
|
921 |
|
1072 |
msgid "View All Listings"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/class-payment-gateways.php:144
|
|
|
1076 |
msgid ""
|
1077 |
+
"You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s "
|
1078 |
+
"to set up a gateway. Until you do this, only free plans will be available."
|
|
|
1079 |
msgstr ""
|
1080 |
|
1081 |
#: includes/class-wpbdp.php:369
|
1096 |
"admin."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:322
|
1100 |
msgid "Could not find image ID"
|
1101 |
msgstr ""
|
1102 |
|
1283 |
msgid "This is just a preview. The listing has not been published yet."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/controllers/pages/class-submit-listing.php:564
|
1287 |
msgid "Listing Images"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/controllers/pages/class-submit-listing.php:632
|
1291 |
msgid "Account Creation"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/controllers/pages/class-submit-listing.php:831
|
1295 |
msgid "Go to \"Fee Plans\""
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/controllers/pages/class-submit-listing.php:887
|
1299 |
msgid "Please choose a fee plan."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1303 |
msgid "Please check the form for errors, correct them and submit again."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/controllers/pages/class-submit-listing.php:1236
|
1307 |
msgid "Create a user account on this site"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/controllers/pages/class-submit-listing.php:1243
|
1311 |
msgid "Username"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: includes/controllers/pages/class-submit-listing.php:1265
|
1315 |
msgid "Clear Form"
|
1316 |
msgstr ""
|
1317 |
|
1575 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: includes/helpers/functions/general.php:568
|
|
|
1579 |
msgid "Free"
|
1580 |
msgstr ""
|
1581 |
|
1588 |
msgstr ""
|
1589 |
|
1590 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1591 |
+
#: includes/licensing.php:150
|
1592 |
msgid ""
|
1593 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1594 |
"get updates."
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: includes/licensing.php:203 includes/licensing.php:206
|
1598 |
msgid "Licenses"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: includes/licensing.php:273
|
1602 |
msgid "Build more powerful directories"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: includes/licensing.php:274
|
1606 |
msgid ""
|
1607 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: includes/licensing.php:276
|
1611 |
msgid "Already purchased?"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
#. translators: %s: item type.
|
1615 |
+
#: includes/licensing.php:294
|
1616 |
msgid "%s will not get updates until license is reauthorized."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: includes/licensing.php:315
|
1620 |
msgid "Enter License Key here"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: includes/licensing.php:316
|
1624 |
msgid "Authorize"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: includes/licensing.php:420
|
1628 |
msgid "Invalid item ID"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: includes/licensing.php:433
|
1632 |
msgid "No license key provided"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: includes/licensing.php:482 includes/licensing.php:520
|
1636 |
msgid "License key is invalid"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: includes/licensing.php:486
|
1640 |
msgid "Deactivation failed"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: includes/licensing.php:531
|
1644 |
msgid "The license key was revoked."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1648 |
+
#: includes/licensing.php:535
|
1649 |
msgid ""
|
1650 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1651 |
"%2$s and let them know your license is being reported as revoked by the "
|
1653 |
"with your report."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: includes/licensing.php:598
|
1657 |
msgid ""
|
1658 |
"It was not possible to establish a connection with the Business Directory "
|
1659 |
"server. The connection failed with the following error:"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: includes/licensing.php:611
|
1663 |
msgid ""
|
1664 |
"It was not possible to establish a connection with the Business Directory "
|
1665 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: includes/licensing.php:658
|
1669 |
msgid ""
|
1670 |
"It looks like your server is not authorized to make outgoing requests to "
|
1671 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1672 |
"our IP address 52.0.78.177 to your allow list."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: includes/licensing.php:752
|
1676 |
msgid "Business Directory license key is missing."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: includes/licensing.php:753
|
1680 |
msgid "Business Directory license key has expired"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: includes/licensing.php:754
|
1684 |
msgid "Could not verify Business Directory license."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: includes/licensing.php:765
|
1688 |
msgid "Review license keys"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: includes/licensing.php:880
|
1692 |
msgid "Missing data. Please reload this page and try again."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: includes/licensing.php:885
|
1696 |
msgid "Please enter a license key."
|
1697 |
msgstr ""
|
1698 |
|
1733 |
msgid "ZIP file is not a valid Business Directory theme file."
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: includes/utils.php:341
|
1737 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: includes/utils.php:350
|
1741 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
1742 |
msgstr ""
|
1743 |
|
2027 |
msgid "Add New Listing Fee"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: templates/admin/fees-index.tpl.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2031 |
msgid "Order fees on the frontend by:"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: templates/admin/fees-index.tpl.php:30
|
2035 |
msgid "↑ Ascending"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: templates/admin/fees-index.tpl.php:31
|
2039 |
msgid "↓ Descending"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: templates/admin/fees-index.tpl.php:39
|
2043 |
msgid "Drag and drop to re-order fees."
|
2044 |
msgstr ""
|
2045 |
|
|
|
|
|
|
|
|
|
|
|
2046 |
#: templates/admin/fees-index.tpl.php:67
|
|
|
|
|
|
|
|
|
2047 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: templates/admin/fees-index.tpl.php:69
|
2051 |
msgid "Add a payment gateway to increase conversion rates"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
#. translators: %s: payment gateway name */
|
2055 |
+
#: templates/admin/fees-index.tpl.php:88
|
2056 |
msgid "Add the %s gateway as a payment option."
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: templates/admin/fees-index.tpl.php:94
|
2060 |
msgid "Upgrade"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: templates/admin/fees-index.tpl.php:102
|
2064 |
msgid "Set up Authorize.net as a payment option."
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: templates/admin/fees-index.tpl.php:105
|
2068 |
msgid "Set Up"
|
2069 |
msgstr ""
|
2070 |
|
2092 |
msgid "Delete Field"
|
2093 |
msgstr ""
|
2094 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2095 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2096 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2097 |
#: templates/login.tpl.php:71
|
2361 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: templates/admin/themes-item.tpl.php:45
|
2365 |
msgid "Inactive"
|
2366 |
msgstr ""
|
2367 |
|
3266 |
msgid "Fee \"%s\" deleted."
|
3267 |
msgstr ""
|
3268 |
|
3269 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3270 |
+
msgctxt "fees admin"
|
3271 |
+
msgid "Fee enabled."
|
3272 |
+
msgstr ""
|
3273 |
+
|
3274 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3275 |
msgctxt "fees admin"
|
3276 |
msgid "Fee disabled."
|
3277 |
msgstr ""
|
3286 |
msgid "fees"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3290 |
msgctxt "fees admin"
|
3291 |
msgid "Attributes"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
+
#: includes/admin/helpers/tables/class-fees-table.php:137
|
3295 |
msgctxt "fees admin"
|
3296 |
msgid "Edit"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
+
#: includes/admin/helpers/tables/class-fees-table.php:207
|
3300 |
msgctxt "fees admin"
|
3301 |
msgid "Variable"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: includes/admin/helpers/tables/class-fees-table.php:212
|
3305 |
msgctxt "fees admin"
|
3306 |
msgid "%1$s + %2$s per category"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: includes/admin/helpers/tables/class-fees-table.php:231
|
3310 |
msgctxt "fees admin"
|
3311 |
msgid "Forever"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: includes/admin/helpers/tables/class-fees-table.php:233
|
3315 |
msgctxt "fees admin"
|
3316 |
msgid "%d day"
|
3317 |
msgid_plural "%d days"
|
3318 |
msgstr[0] ""
|
3319 |
msgstr[1] ""
|
3320 |
|
3321 |
+
#: includes/admin/helpers/tables/class-fees-table.php:263
|
3322 |
msgctxt "fees admin"
|
3323 |
msgid "All categories"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: includes/admin/helpers/tables/class-fees-table.php:292
|
3327 |
msgctxt "fees admin"
|
3328 |
msgid "Sticky"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
+
#: includes/admin/helpers/tables/class-fees-table.php:296
|
3332 |
msgctxt "fees admin"
|
3333 |
msgid "Recurring"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: includes/admin/helpers/tables/class-fees-table.php:300
|
3337 |
msgctxt "fees admin"
|
3338 |
msgid "Private"
|
3339 |
msgstr ""
|
3501 |
msgid "Reported"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: includes/models/class-listing.php:961
|
3505 |
msgctxt "listing status"
|
3506 |
msgid "Unknown"
|
3507 |
msgstr ""
|
3508 |
|
3509 |
+
#: includes/models/class-listing.php:962
|
3510 |
msgctxt "listing status"
|
3511 |
msgid "Legacy"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: includes/models/class-listing.php:963
|
3515 |
msgctxt "listing status"
|
3516 |
msgid "Incomplete"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: includes/models/class-listing.php:964
|
3520 |
msgctxt "listing status"
|
3521 |
msgid "Pending Payment"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: includes/models/class-listing.php:965
|
3525 |
msgctxt "listing status"
|
3526 |
msgid "Complete"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
+
#: includes/models/class-listing.php:966
|
3530 |
msgctxt "listing status"
|
3531 |
msgid "Pending Upgrade"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
+
#: includes/models/class-listing.php:967
|
3535 |
msgctxt "listing status"
|
3536 |
msgid "Expired"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: includes/models/class-listing.php:968
|
3540 |
msgctxt "listing status"
|
3541 |
msgid "Pending Renewal"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: includes/models/class-listing.php:969
|
3545 |
msgctxt "listing status"
|
3546 |
msgid "Abandoned"
|
3547 |
msgstr ""
|
4159 |
msgstr ""
|
4160 |
|
4161 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4162 |
+
#: includes/helpers/functions/general.php:1281
|
4163 |
msgctxt "admin settings"
|
4164 |
msgid "Date posted"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4168 |
+
#: includes/helpers/functions/general.php:1282
|
4169 |
msgctxt "admin settings"
|
4170 |
msgid "Date last modified"
|
4171 |
msgstr ""
|
4338 |
msgid "U.S. Dollar (USD)"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
4342 |
msgctxt "admin settings"
|
4343 |
msgid "Show currency symbol on the left"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
4347 |
msgctxt "admin settings"
|
4348 |
msgid "Show currency symbol on the right"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
4352 |
msgctxt "admin settings"
|
4353 |
msgid "Do not show currency symbol"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4357 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
4358 |
msgctxt "admin settings"
|
4359 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4360 |
msgstr ""
|
4361 |
|
4362 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
4363 |
msgctxt "admin settings"
|
4364 |
msgid ""
|
4365 |
"Listings with pending payments are marked as abandoned after this time. You "
|
4366 |
"can also <a>customize the email</a> users receive."
|
4367 |
msgstr ""
|
4368 |
|
4369 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1320
|
4370 |
msgctxt "admin settings"
|
4371 |
msgid "Try listing's email field first, then author's email."
|
4372 |
msgstr ""
|
4373 |
|
4374 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1321
|
4375 |
msgctxt "admin settings"
|
4376 |
msgid "Try author's email first and then listing's email field."
|
4377 |
msgstr ""
|
4378 |
|
4379 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1334
|
4380 |
msgctxt "admin settings"
|
4381 |
msgid "Plain (text/plain)"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1335
|
4385 |
msgctxt "admin settings"
|
4386 |
msgid "HTML (text/html)"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1336
|
4390 |
msgctxt "admin settings"
|
4391 |
msgid "Both (multipart/alternative)"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1350
|
4395 |
msgctxt "admin settings"
|
4396 |
msgid "A new listing is submitted."
|
4397 |
msgstr ""
|
4398 |
|
4399 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1351
|
4400 |
msgctxt "admin settings"
|
4401 |
msgid "A listing is edited."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
4405 |
msgctxt "admin settings"
|
4406 |
msgid "A listing expires."
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
4410 |
msgctxt "admin settings"
|
4411 |
msgid "A listing is renewed."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1354
|
4415 |
msgctxt "admin settings"
|
4416 |
msgid "A listing payment is completed."
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1355
|
4420 |
msgctxt "admin settings"
|
4421 |
msgid "A listing has been reported as inappropriate."
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
4425 |
msgctxt "admin settings"
|
4426 |
msgid "A contact message is sent to a listing's owner."
|
4427 |
msgstr ""
|
4428 |
|
4429 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
4430 |
msgctxt "admin settings"
|
4431 |
msgid "Their listing is submitted."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1384
|
4435 |
msgctxt "admin settings"
|
4436 |
msgid "Their listing is approved/published."
|
4437 |
msgstr ""
|
4438 |
|
4439 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1385
|
4440 |
msgctxt "admin settings"
|
4441 |
msgid "A payment for their listing is completed."
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
4445 |
msgctxt "admin settings"
|
4446 |
msgid "Their listing expired or is about to expire."
|
4447 |
msgstr ""
|
4448 |
|
4449 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1404
|
4450 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
4451 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
4452 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
4453 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1514
|
4454 |
msgctxt "admin settings"
|
4455 |
msgid "Listing's title"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1405
|
4459 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
4460 |
msgctxt "admin settings"
|
4461 |
msgid "Listing's fee plan name"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1406
|
4465 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
4466 |
msgctxt "admin settings"
|
4467 |
msgid "Listing's fee plan description"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
4471 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
4472 |
msgctxt "admin settings"
|
4473 |
msgid "Listing's fee plan details"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
4477 |
msgctxt "admin settings"
|
4478 |
msgid ""
|
4479 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
4480 |
"viewed by the public."
|
4481 |
msgstr ""
|
4482 |
|
4483 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1424
|
4484 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1458
|
4485 |
msgctxt "admin settings"
|
4486 |
msgid "Listing's URL"
|
4487 |
msgstr ""
|
4488 |
|
4489 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1425
|
4490 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1465
|
4491 |
msgctxt "admin settings"
|
4492 |
msgid "Listing's Access Key"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
4496 |
msgctxt "admin settings"
|
4497 |
msgid "Sender's name"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1463
|
4501 |
msgctxt "admin settings"
|
4502 |
msgid "Contact message"
|
4503 |
msgstr ""
|
4504 |
|
4505 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1464
|
4506 |
msgctxt "admin settings"
|
4507 |
msgid "Date and time the message was sent"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
4511 |
msgctxt "admin settings"
|
4512 |
msgid "Payment items details."
|
4513 |
msgstr ""
|
4514 |
|
4515 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
4516 |
msgctxt "admin settings"
|
4517 |
msgid "URL where user can review and print payment receipt."
|
4518 |
msgstr ""
|
4519 |
|
4520 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
4521 |
msgctxt "admin settings"
|
4522 |
msgid "Gateway used to process listing's payment."
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1515
|
4526 |
msgctxt "admin settings"
|
4527 |
msgid "Checkout URL link"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1617
|
4531 |
msgctxt "admin settings"
|
4532 |
msgid "Uploaded Image (no resize)"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: includes/helpers/functions/general.php:1279
|
4536 |
msgctxt "admin settings"
|
4537 |
msgid "User"
|
4538 |
msgstr ""
|
4539 |
|
4540 |
+
#: includes/helpers/functions/general.php:1280
|
4541 |
msgctxt "admin settings"
|
4542 |
msgid "User registration date"
|
4543 |
msgstr ""
|
4754 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
4755 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
4756 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
4757 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1301
|
4758 |
#: includes/admin/settings/class-settings.php:341
|
4759 |
msgctxt "settings"
|
4760 |
msgid "General Settings"
|
5316 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
5317 |
msgstr ""
|
5318 |
|
5319 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1132
|
5320 |
msgctxt "settings"
|
5321 |
msgid "Fee Order"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1145
|
|
|
|
|
|
|
|
|
|
|
5325 |
msgctxt "settings"
|
5326 |
msgid "Put payment gateways in test mode?"
|
5327 |
msgstr ""
|
5331 |
msgid "Currency Code"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
5335 |
msgctxt "settings"
|
5336 |
msgid "Currency Symbol"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
5340 |
msgctxt "settings"
|
5341 |
msgid "Currency symbol display"
|
5342 |
msgstr ""
|
5343 |
|
5344 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
5345 |
msgctxt "settings"
|
5346 |
msgid "Include fee description in receipt?"
|
5347 |
msgstr ""
|
5348 |
|
5349 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1225
|
5350 |
msgctxt "settings"
|
5351 |
msgid "Thank you for payment message"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1278
|
5355 |
msgctxt "settings"
|
5356 |
msgid "Ask users to come back for abandoned payments?"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1289
|
5360 |
msgctxt "settings"
|
5361 |
msgid "Listing abandonment threshold (hours)"
|
5362 |
msgstr ""
|
5363 |
|
5364 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1306
|
5365 |
msgctxt "settings"
|
5366 |
msgid "Display email address fields publicly?"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1307
|
5370 |
msgctxt "settings"
|
5371 |
msgid ""
|
5372 |
"Shows the email address of the listing owner to all web users. NOT "
|
5374 |
"harvest it for future use."
|
5375 |
msgstr ""
|
5376 |
|
5377 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1316
|
5378 |
msgctxt "settings"
|
5379 |
msgid "How to determine the listing's email address?"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1317
|
5383 |
msgctxt "settings"
|
5384 |
msgid ""
|
5385 |
"This affects emails sent to listing owners via contact forms or when their "
|
5386 |
"listings expire."
|
5387 |
msgstr ""
|
5388 |
|
5389 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1330
|
5390 |
msgctxt "settings"
|
5391 |
msgid "Email Content-Type header"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1331
|
5395 |
msgctxt "settings"
|
5396 |
msgid ""
|
5397 |
"Use this setting to control the format of the emails explicitly. Some "
|
5400 |
"then \"Both\"."
|
5401 |
msgstr ""
|
5402 |
|
5403 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
5404 |
msgctxt "settings"
|
5405 |
msgid "Templates"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1397
|
5409 |
msgctxt "settings"
|
5410 |
msgid "Email confirmation message"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1398
|
5414 |
msgctxt "settings"
|
5415 |
msgid "Sent after a listing has been submitted."
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1416
|
5419 |
msgctxt "settings"
|
5420 |
msgid "Listing published message"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1417
|
5424 |
msgctxt "settings"
|
5425 |
msgid "Sent when the listing has been published or approved by an admin."
|
5426 |
msgstr ""
|
5427 |
|
5428 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
5429 |
msgctxt "settings"
|
5430 |
msgid "Listing Contact Message"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1435
|
5434 |
msgctxt "settings"
|
5435 |
msgid ""
|
5436 |
"Sent to listing owners when someone uses the contact form on their listing "
|
5437 |
"pages."
|
5438 |
msgstr ""
|
5439 |
|
5440 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1475
|
5441 |
msgctxt "settings"
|
5442 |
msgid "Payment completed message"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
5446 |
msgctxt "settings"
|
5447 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
5448 |
msgstr ""
|
5449 |
|
5450 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
5451 |
msgctxt "settings"
|
5452 |
msgid "Payment abandoned reminder message"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1638
|
5456 |
msgctxt "settings"
|
5457 |
msgid "Cropped"
|
5458 |
msgstr ""
|
5468 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: includes/licensing.php:245
|
5472 |
msgctxt "settings"
|
5473 |
msgid "Themes"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: includes/licensing.php:316 includes/licensing.php:317
|
5477 |
msgctxt "settings"
|
5478 |
msgid "Please wait..."
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: includes/licensing.php:317
|
5482 |
msgctxt "settings"
|
5483 |
msgid "Deauthorize"
|
5484 |
msgstr ""
|
5530 |
msgid "Could not delete theme directory. Check permissions."
|
5531 |
msgstr ""
|
5532 |
|
5533 |
+
#: includes/admin/controllers/class-themes-admin.php:240
|
5534 |
msgctxt "themes"
|
5535 |
msgid "Please upload a valid theme file."
|
5536 |
msgstr ""
|
5537 |
|
5538 |
+
#: includes/admin/controllers/class-themes-admin.php:249
|
5539 |
msgctxt "themes"
|
5540 |
msgid "Could not move \"%s\" to a temporary directory."
|
5541 |
msgstr ""
|
5542 |
|
5543 |
+
#: includes/admin/controllers/class-themes-admin.php:335
|
5544 |
msgctxt "themes"
|
5545 |
msgid "Activate your <a>license key</a> to use this theme."
|
5546 |
msgstr ""
|
5547 |
|
5548 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
5549 |
msgctxt "themes"
|
5550 |
msgid "Invalid theme ID"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: includes/admin/controllers/class-themes-admin.php:384
|
5554 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
5555 |
msgctxt "themes"
|
5556 |
msgid "Could not update theme: %s"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
#. translators: %s: url shortcode
|
5950 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
5951 |
msgctxt "contact email"
|
5952 |
msgid "You have received a reply from your listing at %s."
|
5953 |
msgstr ""
|
5954 |
|
5955 |
#. translators: %s: name shortcode
|
5956 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
5957 |
msgctxt "contact email"
|
5958 |
msgid "Name: %s"
|
5959 |
msgstr ""
|
5960 |
|
5961 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1451
|
5962 |
msgctxt "contact email"
|
5963 |
msgid "Message:"
|
5964 |
msgstr ""
|
5965 |
|
5966 |
#. translators: %s: date shortcode
|
5967 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1455
|
5968 |
msgctxt "contact email"
|
5969 |
msgid "Time: %s"
|
5970 |
msgstr ""
|
6239 |
msgid "Add New Listing"
|
6240 |
msgstr ""
|
6241 |
|
6242 |
+
#: includes/models/class-listing.php:421
|
6243 |
msgctxt "listing"
|
6244 |
msgid "Listing has no registered payments"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
+
#: includes/models/class-listing.php:430
|
6248 |
msgctxt "listing"
|
6249 |
msgid "Can't delete payment"
|
6250 |
msgstr ""
|
6251 |
|
6252 |
+
#: includes/models/class-listing.php:468
|
6253 |
msgctxt "listing"
|
6254 |
msgid "Listing expired"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
+
#: includes/models/class-listing.php:668
|
6258 |
msgctxt "listing"
|
6259 |
msgid "(Unavailable Plan)"
|
6260 |
msgstr ""
|
6261 |
|
6262 |
+
#: includes/models/class-listing.php:858
|
6263 |
msgctxt "listing"
|
6264 |
msgid "Plan \"%s\" (recurring)"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
+
#: includes/models/class-listing.php:860
|
6268 |
msgctxt "listing"
|
6269 |
msgid "Plan \"%s\""
|
6270 |
msgstr ""
|
6392 |
msgid "Enable %s?"
|
6393 |
msgstr ""
|
6394 |
|
6395 |
+
#: includes/class-payment-gateways.php:131
|
6396 |
msgctxt "payment-gateways"
|
6397 |
msgid ""
|
6398 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
6399 |
"won't be available until the following problems are fixed: <problems>."
|
6400 |
msgstr ""
|
6401 |
|
6402 |
+
#: includes/class-payment-gateways.php:133
|
6403 |
msgctxt "payment-gateways"
|
6404 |
msgid "Please check the <link>payment settings</link>."
|
6405 |
msgstr ""
|
6406 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6407 |
#: includes/class-recaptcha.php:32
|
6408 |
msgctxt "recaptcha"
|
6409 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6599 |
"site. If you didn't want that, click <a>here</a> to change the setting."
|
6600 |
msgstr ""
|
6601 |
|
6602 |
+
#: includes/controllers/pages/class-submit-listing.php:424
|
6603 |
msgctxt "templates"
|
6604 |
msgid ""
|
6605 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
6606 |
"Submission?\" setting checked?"
|
6607 |
msgstr ""
|
6608 |
|
6609 |
+
#: includes/controllers/pages/class-submit-listing.php:426
|
6610 |
msgctxt "templates"
|
6611 |
msgid ""
|
6612 |
"Listing submission has been disabled. Contact the administrator for details."
|
6613 |
msgstr ""
|
6614 |
|
6615 |
+
#: includes/controllers/pages/class-submit-listing.php:824
|
6616 |
msgctxt "templates"
|
6617 |
msgid ""
|
6618 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
6619 |
"submit a listing. %s to create a fee plan"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
+
#: includes/controllers/pages/class-submit-listing.php:838
|
6623 |
msgctxt "templates"
|
6624 |
msgid ""
|
6625 |
"Listing submission is not available at the moment. Contact the administrator "
|
6626 |
"for details."
|
6627 |
msgstr ""
|
6628 |
|
6629 |
+
#: includes/controllers/pages/class-submit-listing.php:841
|
6630 |
msgctxt "templates"
|
6631 |
msgid ""
|
6632 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
6634 |
"an existing field"
|
6635 |
msgstr ""
|
6636 |
|
6637 |
+
#: includes/controllers/pages/class-submit-listing.php:1286
|
6638 |
msgctxt "templates"
|
6639 |
msgid "Please agree to the Terms and Conditions."
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: includes/controllers/pages/class-submit-listing.php:1300
|
6643 |
msgctxt "templates"
|
6644 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
6645 |
msgstr ""
|
6646 |
|
6647 |
+
#: includes/helpers/functions/general.php:1362
|
6648 |
msgctxt "templates"
|
6649 |
msgid "Return to results"
|
6650 |
msgstr ""
|
6957 |
msgid "You can't edit this listing."
|
6958 |
msgstr ""
|
6959 |
|
6960 |
+
#: includes/controllers/pages/class-submit-listing.php:168
|
6961 |
msgctxt "submit listing"
|
6962 |
msgid ""
|
6963 |
"This listing can't be edited at this time because it has no fee plan "
|
6965 |
"to a fee plan."
|
6966 |
msgstr ""
|
6967 |
|
6968 |
+
#: includes/controllers/pages/class-submit-listing.php:174
|
6969 |
msgctxt "submit listing"
|
6970 |
msgid ""
|
6971 |
"This listing can't be edited at this time. Please try again later or contact "
|
6972 |
"the admin if the problem persists."
|
6973 |
msgstr ""
|
6974 |
|
6975 |
+
#: includes/controllers/pages/class-submit-listing.php:198
|
6976 |
msgctxt "submit listing"
|
6977 |
msgid "You're logged in as admin, payment will be skipped."
|
6978 |
msgstr ""
|
6979 |
|
6980 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
6981 |
msgctxt "submit listing"
|
6982 |
msgid "Category selection"
|
6983 |
msgstr ""
|
6984 |
|
6985 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
6986 |
msgctxt "submit listing"
|
6987 |
msgid "Category & plan selection"
|
6988 |
msgstr ""
|
6989 |
|
6990 |
+
#: includes/controllers/pages/class-submit-listing.php:821
|
6991 |
msgctxt "submit listing"
|
6992 |
msgid "Can not submit a listing at this moment. Please try again later."
|
6993 |
msgstr ""
|
6994 |
|
6995 |
+
#: includes/controllers/pages/class-submit-listing.php:870
|
6996 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
6997 |
msgctxt "submit listing"
|
6998 |
msgid "Please select a category."
|
6999 |
msgstr ""
|
7000 |
|
7001 |
+
#: includes/controllers/pages/class-submit-listing.php:893
|
7002 |
msgctxt "submit listing"
|
7003 |
msgid "Please choose a valid category for your plan."
|
7004 |
msgstr ""
|
7005 |
|
7006 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
7007 |
msgctxt "submit listing"
|
7008 |
msgid "Please choose a valid fee plan for your category selection."
|
7009 |
msgstr ""
|
7010 |
|
7011 |
+
#: includes/controllers/pages/class-submit-listing.php:1206
|
7012 |
msgctxt "submit listing"
|
7013 |
msgid "Please enter your desired username."
|
7014 |
msgstr ""
|
7015 |
|
7016 |
+
#: includes/controllers/pages/class-submit-listing.php:1211
|
7017 |
msgctxt "submit listing"
|
7018 |
msgid "Please enter the e-mail for your new account."
|
7019 |
msgstr ""
|
7020 |
|
7021 |
+
#: includes/controllers/pages/class-submit-listing.php:1216
|
7022 |
msgctxt "submit listing"
|
7023 |
msgid "The username you chose is already in use. Please use a different one."
|
7024 |
msgstr ""
|
7025 |
|
7026 |
+
#: includes/controllers/pages/class-submit-listing.php:1221
|
7027 |
msgctxt "submit listing"
|
7028 |
msgid "The e-mail address you chose for your account is already in use."
|
7029 |
msgstr ""
|
7033 |
msgid "Listing submitted by admin. Payment skipped."
|
7034 |
msgstr ""
|
7035 |
|
7036 |
+
#: includes/controllers/pages/class-submit-listing.php:1161
|
7037 |
msgctxt "listing submit"
|
7038 |
msgid ""
|
7039 |
"Image upload is required, please provide at least one image and submit again."
|
7338 |
msgid "General"
|
7339 |
msgstr ""
|
7340 |
|
7341 |
+
#: includes/licensing.php:571
|
7342 |
msgctxt "licensing"
|
7343 |
msgid "Could not contact licensing server"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
+
#: includes/licensing.php:584
|
7347 |
msgctxt "licensing"
|
7348 |
msgid ""
|
7349 |
"It was not possible to establish a connection with Business Directory's "
|
7350 |
"server. cURL was not found in your system"
|
7351 |
msgstr ""
|
7352 |
|
7353 |
+
#: includes/licensing.php:586 includes/licensing.php:616
|
7354 |
msgctxt "licensing"
|
7355 |
msgid ""
|
7356 |
"To ensure the security of our systems and adhere to industry best practices, "
|
7359 |
"1.0.1c)."
|
7360 |
msgstr ""
|
7361 |
|
7362 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
7363 |
msgctxt "licensing"
|
7364 |
msgid ""
|
7365 |
"Upgrading your system will not only allow you to communicate with Business "
|
7367 |
"services using the latest security standards."
|
7368 |
msgstr ""
|
7369 |
|
7370 |
+
#: includes/licensing.php:590
|
7371 |
msgctxt "licensing"
|
7372 |
msgid ""
|
7373 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7374 |
"Include this message if necessary"
|
7375 |
msgstr ""
|
7376 |
|
7377 |
+
#: includes/licensing.php:620
|
7378 |
msgctxt "licensing"
|
7379 |
msgid ""
|
7380 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7381 |
"Include this message if necessary."
|
7382 |
msgstr ""
|
7383 |
|
7384 |
+
#: includes/licensing.php:656
|
7385 |
msgctxt "licensing"
|
7386 |
msgid "The server returned a 403 Forbidden error."
|
7387 |
msgstr ""
|
7388 |
|
7389 |
+
#: includes/licensing.php:902
|
7390 |
msgctxt "licensing"
|
7391 |
msgid "Could not activate license: %s."
|
7392 |
msgstr ""
|
7393 |
|
7394 |
+
#: includes/licensing.php:907
|
7395 |
msgctxt "licensing"
|
7396 |
msgid "License activated"
|
7397 |
msgstr ""
|
7398 |
|
7399 |
+
#: includes/licensing.php:939
|
7400 |
msgctxt "licensing"
|
7401 |
msgid "Could not deactivate license: %s."
|
7402 |
msgstr ""
|
7403 |
|
7404 |
+
#: includes/licensing.php:941
|
7405 |
msgctxt "licensing"
|
7406 |
msgid "License deactivated"
|
7407 |
msgstr ""
|
7408 |
|
7409 |
#. translators: "<module-name>" version <version-number> is not...
|
7410 |
+
#: includes/licensing.php:1181
|
7411 |
msgctxt "deprecation"
|
7412 |
msgid ""
|
7413 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
7426 |
msgstr[0] ""
|
7427 |
msgstr[1] ""
|
7428 |
|
7429 |
+
#: includes/models/class-fee-plan.php:387
|
7430 |
msgctxt "fees-api"
|
7431 |
msgid "Fee label is required."
|
7432 |
msgstr ""
|
7433 |
|
7434 |
+
#: includes/models/class-fee-plan.php:393
|
7435 |
msgctxt "fees-api"
|
7436 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
7437 |
msgstr ""
|
7438 |
|
7439 |
+
#: includes/models/class-fee-plan.php:398
|
7440 |
msgctxt "fees-api"
|
7441 |
msgid ""
|
7442 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
7444 |
"<a>fee plan</a> appropriately."
|
7445 |
msgstr ""
|
7446 |
|
7447 |
+
#: includes/models/class-fee-plan.php:401
|
7448 |
msgctxt "fees-api"
|
7449 |
msgid ""
|
7450 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
7516 |
msgid "Unkown error while uploading file."
|
7517 |
msgstr ""
|
7518 |
|
7519 |
+
#: includes/utils.php:335
|
7520 |
msgctxt "utils"
|
7521 |
msgid "Error while uploading file"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
+
#: includes/utils.php:359 includes/utils.php:366
|
7525 |
msgctxt "utils"
|
7526 |
msgid "File type \"%s\" is not allowed"
|
7527 |
msgstr ""
|
7528 |
|
7529 |
+
#: includes/utils.php:585
|
7530 |
msgctxt "utils"
|
7531 |
msgid ""
|
7532 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
7632 |
msgid "required"
|
7633 |
msgstr ""
|
7634 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7635 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
7636 |
msgctxt "admin infometabox"
|
7637 |
msgid "Renewal url (copy & paste)"
|
languages/business-directory-plugin-fr_FR.mo
CHANGED
Binary file
|
languages/business-directory-plugin-fr_FR.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -92,18 +92,18 @@ msgstr "Administrateur de l'Annuaire Professionnel"
|
|
92 |
msgid "Directory"
|
93 |
msgstr "Annuaire"
|
94 |
|
95 |
-
#: includes/admin/class-admin.php:312
|
96 |
#, fuzzy
|
97 |
msgid "Fee Plans"
|
98 |
msgstr "Plan tarifaire"
|
99 |
|
100 |
-
#: includes/admin/class-admin.php:315
|
101 |
#, fuzzy
|
102 |
msgid "Form Fields"
|
103 |
msgstr "champ de formulaires"
|
104 |
|
105 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
106 |
-
#: includes/licensing.php:
|
107 |
#, fuzzy
|
108 |
msgid "Modules"
|
109 |
msgstr "Tous les (modules installés)"
|
@@ -232,7 +232,7 @@ msgid "Amount"
|
|
232 |
msgstr "Montant"
|
233 |
|
234 |
#: includes/admin/controllers/class-admin-fees.php:49
|
235 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
236 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
237 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
238 |
#, fuzzy
|
@@ -270,7 +270,7 @@ msgid "Fee plan listings updated."
|
|
270 |
msgstr "Frais mis à jour."
|
271 |
|
272 |
#: includes/admin/controllers/class-admin-listings.php:185
|
273 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
274 |
#: templates/email/listing-reported.tpl.php:7
|
275 |
msgid "Listing Information"
|
276 |
msgstr "Information sur l'annonce"
|
@@ -320,14 +320,14 @@ msgstr ""
|
|
320 |
"Champs\" ou laissez le plugin le faire pour vous automatiquement."
|
321 |
|
322 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
323 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
324 |
#, fuzzy
|
325 |
msgid "Go to \"Form Fields\""
|
326 |
msgstr "Aller à \"Gestion des Champs\""
|
327 |
|
328 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
329 |
-
#: includes/helpers/functions/general.php:
|
330 |
-
#: includes/helpers/functions/general.php:
|
331 |
#, fuzzy
|
332 |
msgid "Go back"
|
333 |
msgstr "Non, reviens"
|
@@ -440,11 +440,11 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
440 |
msgstr "Pourquoi avez-vous désinstallé le plugin Business Directory?"
|
441 |
|
442 |
#: includes/admin/controllers/class-settings-admin.php:536
|
443 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
444 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
445 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
446 |
#: templates/admin/payments-note.tpl.php:14
|
447 |
-
#: templates/admin/themes-item.tpl.php:
|
448 |
#: templates/parts/listing-buttons.tpl.php:31
|
449 |
#: templates/parts/listing-buttons.tpl.php:65
|
450 |
#, fuzzy
|
@@ -498,8 +498,8 @@ msgid "Installed"
|
|
498 |
msgstr "Installé"
|
499 |
|
500 |
#: includes/admin/helpers/class-modules-list.php:187
|
501 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
502 |
-
#: templates/admin/themes-item.tpl.php:
|
503 |
#, fuzzy
|
504 |
msgid "Active"
|
505 |
msgstr "Actif"
|
@@ -511,13 +511,13 @@ msgstr "Non installé"
|
|
511 |
|
512 |
#: includes/admin/helpers/class-modules-list.php:225
|
513 |
#: includes/controllers/class-smtp.php:317
|
514 |
-
#: templates/admin/themes-item.tpl.php:
|
515 |
#, fuzzy
|
516 |
msgid "Activate"
|
517 |
msgstr "Activer"
|
518 |
|
519 |
#: includes/admin/helpers/class-modules-list.php:235
|
520 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
521 |
#, fuzzy
|
522 |
msgid "Upgrade Now"
|
523 |
msgstr "Mettre à jour vers %s"
|
@@ -537,15 +537,20 @@ msgstr ""
|
|
537 |
|
538 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
539 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
540 |
msgid "Plan Details"
|
541 |
msgstr "Détails des plans"
|
542 |
|
543 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
544 |
#, fuzzy
|
545 |
msgid "Pricing"
|
546 |
msgstr "Prix"
|
547 |
|
548 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
549 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
550 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
551 |
#: includes/helpers/class-app.php:92
|
@@ -553,42 +558,41 @@ msgstr "Prix"
|
|
553 |
msgid "Listings"
|
554 |
msgstr "Listes"
|
555 |
|
556 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
557 |
#, fuzzy
|
558 |
msgid "Disable"
|
559 |
msgstr "Effacer les Frais"
|
560 |
|
561 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
562 |
#, fuzzy
|
563 |
msgid "Enable"
|
564 |
msgstr "Activer"
|
565 |
|
566 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
567 |
msgid "ID: %s"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
571 |
#, fuzzy
|
572 |
msgid "Paid Plan"
|
573 |
msgstr "Payé"
|
574 |
|
575 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
576 |
#, fuzzy
|
577 |
msgid "Free Plan"
|
578 |
msgstr "Plan tarifaire"
|
579 |
|
580 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
581 |
#, fuzzy
|
582 |
msgid "%1$s for %2$s"
|
583 |
msgstr "%s (ex. %s)"
|
584 |
|
585 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
586 |
-
#: includes/admin/helpers/tables/class-fees-table.php:293
|
587 |
#, fuzzy
|
588 |
msgid "Disabled"
|
589 |
msgstr "Effacer les Frais"
|
590 |
|
591 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
592 |
#: includes/helpers/functions/templates-ui.php:431
|
593 |
#, fuzzy
|
594 |
msgid "Default"
|
@@ -631,7 +635,7 @@ msgid "Missing tables: %s"
|
|
631 |
msgstr "Tables manquantes: %s"
|
632 |
|
633 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
634 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
635 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
636 |
#: templates/listing-contactform.tpl.php:33
|
637 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -680,7 +684,7 @@ msgstr "Le nom est requis"
|
|
680 |
|
681 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
682 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
683 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
684 |
#, fuzzy
|
685 |
msgid "Terms and Conditions"
|
686 |
msgstr "Conditions d'utilisation"
|
@@ -921,12 +925,12 @@ msgstr ""
|
|
921 |
msgid "URL"
|
922 |
msgstr "URL"
|
923 |
|
924 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
925 |
#, fuzzy
|
926 |
msgid "Thank you for your payment."
|
927 |
msgstr "Nous vous remercions pour votre paiement"
|
928 |
|
929 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
930 |
msgid ""
|
931 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
932 |
"collect payments in this currency."
|
@@ -936,22 +940,22 @@ msgid_plural ""
|
|
936 |
msgstr[0] ""
|
937 |
msgstr[1] ""
|
938 |
|
939 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
940 |
#, fuzzy
|
941 |
msgid "Email Notifications"
|
942 |
msgstr "Notification mail"
|
943 |
|
944 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
945 |
#, fuzzy
|
946 |
msgid "Notify admin via email when..."
|
947 |
msgstr "Prévenir l'administrateur via courriel quand..."
|
948 |
|
949 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
950 |
#, fuzzy
|
951 |
msgid "CC this email address too"
|
952 |
msgstr "CC cette adresse mail aussi"
|
953 |
|
954 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
955 |
#, fuzzy
|
956 |
msgid ""
|
957 |
"You can modify the text template used for most of these emails in the "
|
@@ -960,39 +964,39 @@ msgstr ""
|
|
960 |
"Vous pouvez modifier le modèle de texte utilisé pour la plupart de ces e-"
|
961 |
"mails ci-dessous."
|
962 |
|
963 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
964 |
#, fuzzy
|
965 |
msgid "Notify users via email when..."
|
966 |
msgstr "Prévenir les utilisateurs via courriel quand..."
|
967 |
|
968 |
#. translators: %s: email shortcode
|
969 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
970 |
#, fuzzy
|
971 |
msgid "Email: %s"
|
972 |
msgstr "E-Mail: %s"
|
973 |
|
974 |
#. translators: %s: phone shortcode
|
975 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
976 |
#, fuzzy
|
977 |
msgid "Phone Number: %s"
|
978 |
msgstr "Numéro de téléphone"
|
979 |
|
980 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
981 |
#, fuzzy
|
982 |
msgid "Sender's email address"
|
983 |
msgstr "Adresse e-mail non valide"
|
984 |
|
985 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
986 |
#, fuzzy
|
987 |
msgid "Sender's phone number"
|
988 |
msgstr "Nom de l'auteur"
|
989 |
|
990 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
991 |
#, fuzzy
|
992 |
msgid "Renewal and expiration"
|
993 |
msgstr "%d semaine après expiration"
|
994 |
|
995 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
996 |
#: templates/admin/uninstall-complete.tpl.php:4
|
997 |
msgid "Uninstall"
|
998 |
msgstr "Désinstaller"
|
@@ -1101,7 +1105,7 @@ msgstr "Vue"
|
|
1101 |
|
1102 |
#. translators: %s: Status name
|
1103 |
#: includes/admin/views/modules/list.php:63
|
1104 |
-
#: templates/admin/themes-item.tpl.php:
|
1105 |
#, fuzzy
|
1106 |
msgid "Status: %s"
|
1107 |
msgstr "Statut:"
|
@@ -1275,12 +1279,10 @@ msgstr "Ajouter les droits d'inscription"
|
|
1275 |
msgid "View All Listings"
|
1276 |
msgstr "Voir toutes les annonces"
|
1277 |
|
1278 |
-
|
1279 |
-
#: includes/class-payment-gateways.php:165
|
1280 |
msgid ""
|
1281 |
-
"You have
|
1282 |
-
"
|
1283 |
-
"to %1$sFee Plans%2$s to add or edit your fee plan(s)."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
#: includes/class-wpbdp.php:369
|
@@ -1307,7 +1309,7 @@ msgstr ""
|
|
1307 |
"Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
|
1308 |
"erreurs et soumettre à nouveau."
|
1309 |
|
1310 |
-
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:
|
1311 |
#, fuzzy
|
1312 |
msgid "Could not find image ID"
|
1313 |
msgstr "Impossible de mettre à jour le thème: %s"
|
@@ -1517,44 +1519,44 @@ msgstr ""
|
|
1517 |
"Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
|
1518 |
"publiée."
|
1519 |
|
1520 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1521 |
#, fuzzy
|
1522 |
msgid "Listing Images"
|
1523 |
msgstr "Liste des images"
|
1524 |
|
1525 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1526 |
#, fuzzy
|
1527 |
msgid "Account Creation"
|
1528 |
msgstr "Création de compte"
|
1529 |
|
1530 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1531 |
#, fuzzy
|
1532 |
msgid "Go to \"Fee Plans\""
|
1533 |
msgstr "Plan tarifaire"
|
1534 |
|
1535 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1536 |
#, fuzzy
|
1537 |
msgid "Please choose a fee plan."
|
1538 |
msgstr "(Veuillez choisir un tarif ci-dessus)"
|
1539 |
|
1540 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1541 |
#, fuzzy
|
1542 |
msgid "Please check the form for errors, correct them and submit again."
|
1543 |
msgstr ""
|
1544 |
"Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
|
1545 |
"erreurs et soumettre à nouveau."
|
1546 |
|
1547 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1548 |
#, fuzzy
|
1549 |
msgid "Create a user account on this site"
|
1550 |
msgstr "Créer un compte utilisateur sur ce site"
|
1551 |
|
1552 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1553 |
#, fuzzy
|
1554 |
msgid "Username"
|
1555 |
msgstr "Nom d'utilisateur (login) :"
|
1556 |
|
1557 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1558 |
#, fuzzy
|
1559 |
msgid "Clear Form"
|
1560 |
msgstr "Effacer le formulaire"
|
@@ -1876,8 +1878,7 @@ msgid ""
|
|
1876 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: includes/helpers/functions/general.php:
|
1880 |
-
#: templates/admin/fees-index.tpl.php:67
|
1881 |
msgid "Free"
|
1882 |
msgstr "Gratuit"
|
1883 |
|
@@ -1892,72 +1893,72 @@ msgid "Manage Listings"
|
|
1892 |
msgstr "Gérer annonces payées"
|
1893 |
|
1894 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1895 |
-
#: includes/licensing.php:
|
1896 |
msgid ""
|
1897 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1898 |
"get updates."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: includes/licensing.php:
|
1902 |
msgid "Licenses"
|
1903 |
msgstr "Licences"
|
1904 |
|
1905 |
-
#: includes/licensing.php:
|
1906 |
msgid "Build more powerful directories"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: includes/licensing.php:
|
1910 |
msgid ""
|
1911 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: includes/licensing.php:
|
1915 |
#, fuzzy
|
1916 |
msgid "Already purchased?"
|
1917 |
msgstr "Déjà installé."
|
1918 |
|
1919 |
#. translators: %s: item type.
|
1920 |
-
#: includes/licensing.php:
|
1921 |
msgid "%s will not get updates until license is reauthorized."
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: includes/licensing.php:
|
1925 |
#, fuzzy
|
1926 |
msgid "Enter License Key here"
|
1927 |
msgstr "Entrer la clé de licence"
|
1928 |
|
1929 |
-
#: includes/licensing.php:
|
1930 |
#, fuzzy
|
1931 |
msgid "Authorize"
|
1932 |
msgstr "Activer Authorize.net"
|
1933 |
|
1934 |
-
#: includes/licensing.php:
|
1935 |
#, fuzzy
|
1936 |
msgid "Invalid item ID"
|
1937 |
msgstr "ID d'élément non valide"
|
1938 |
|
1939 |
-
#: includes/licensing.php:
|
1940 |
#, fuzzy
|
1941 |
msgid "No license key provided"
|
1942 |
msgstr "Aucune clé de licence fournie"
|
1943 |
|
1944 |
-
#: includes/licensing.php:
|
1945 |
#, fuzzy
|
1946 |
msgid "License key is invalid"
|
1947 |
msgstr "La clé de licence est invalide"
|
1948 |
|
1949 |
-
#: includes/licensing.php:
|
1950 |
#, fuzzy
|
1951 |
msgid "Deactivation failed"
|
1952 |
msgstr "La désactivation a échoué"
|
1953 |
|
1954 |
-
#: includes/licensing.php:
|
1955 |
#, fuzzy
|
1956 |
msgid "The license key was revoked."
|
1957 |
msgstr "Aucune clé de licence fournie"
|
1958 |
|
1959 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1960 |
-
#: includes/licensing.php:
|
1961 |
#, fuzzy
|
1962 |
msgid ""
|
1963 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
@@ -1970,7 +1971,7 @@ msgstr ""
|
|
1970 |
"technique</support-link> et demandez-leur d'ajouter votre adresse IP <ip-"
|
1971 |
"address> à la liste blanche."
|
1972 |
|
1973 |
-
#: includes/licensing.php:
|
1974 |
#, fuzzy
|
1975 |
msgid ""
|
1976 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1979,7 +1980,7 @@ msgstr ""
|
|
1979 |
"Il n'a pas été possible d'établir une connexion avec le serveur de Business "
|
1980 |
"Directory. La connexion a échoué avec l'erreur suivante:"
|
1981 |
|
1982 |
-
#: includes/licensing.php:
|
1983 |
#, fuzzy
|
1984 |
msgid ""
|
1985 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1989,7 +1990,7 @@ msgstr ""
|
|
1989 |
"Directory. Un problème est survenu lors de l'établissement de liaison SSL / "
|
1990 |
"TLS:"
|
1991 |
|
1992 |
-
#: includes/licensing.php:
|
1993 |
#, fuzzy
|
1994 |
msgid ""
|
1995 |
"It looks like your server is not authorized to make outgoing requests to "
|
@@ -2000,31 +2001,31 @@ msgstr ""
|
|
2000 |
"aux serveurs de Business Directory. Contactez le support technique et "
|
2001 |
"demandez-leur d'ajouter votre adresse IP <ip-address> à la liste blanche."
|
2002 |
|
2003 |
-
#: includes/licensing.php:
|
2004 |
#, fuzzy
|
2005 |
msgid "Business Directory license key is missing."
|
2006 |
msgstr "Business Directory - Clé de licence expirée"
|
2007 |
|
2008 |
-
#: includes/licensing.php:
|
2009 |
#, fuzzy
|
2010 |
msgid "Business Directory license key has expired"
|
2011 |
msgstr "Business Directory - Clé de licence expirée"
|
2012 |
|
2013 |
-
#: includes/licensing.php:
|
2014 |
#, fuzzy
|
2015 |
msgid "Could not verify Business Directory license."
|
2016 |
msgstr "Aider à améliorer Business Directory"
|
2017 |
|
2018 |
-
#: includes/licensing.php:
|
2019 |
#, fuzzy
|
2020 |
msgid "Review license keys"
|
2021 |
msgstr "Renouveller la clé de licence"
|
2022 |
|
2023 |
-
#: includes/licensing.php:
|
2024 |
msgid "Missing data. Please reload this page and try again."
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: includes/licensing.php:
|
2028 |
#, fuzzy
|
2029 |
msgid "Please enter a license key."
|
2030 |
msgstr "S'il vous plaît entrer une clé de licence."
|
@@ -2072,12 +2073,12 @@ msgstr "Abandonné"
|
|
2072 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2073 |
msgstr "Le fichier ZIP n'est pas un fichier de thème valide."
|
2074 |
|
2075 |
-
#: includes/utils.php:
|
2076 |
#, fuzzy
|
2077 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2078 |
msgstr "La taille du fichier (%s) excède la taille maximale permise de %s"
|
2079 |
|
2080 |
-
#: includes/utils.php:
|
2081 |
#, fuzzy
|
2082 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2083 |
msgstr ""
|
@@ -2447,73 +2448,49 @@ msgstr "Sauvegarder les modifications"
|
|
2447 |
msgid "Add New Listing Fee"
|
2448 |
msgstr "Ajouter de nouveaux droits d'inscription"
|
2449 |
|
2450 |
-
#: templates/admin/fees-index.tpl.php:
|
2451 |
-
#, fuzzy
|
2452 |
-
msgid "Payments are currently turned off."
|
2453 |
-
msgstr "Les paiements sont actuellement désactivés."
|
2454 |
-
|
2455 |
-
#. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
|
2456 |
-
#: templates/admin/fees-index.tpl.php:21
|
2457 |
-
#, fuzzy
|
2458 |
-
msgid ""
|
2459 |
-
"To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
|
2460 |
-
"and check the box next to 'Turn On Payments' under 'Payment Settings'."
|
2461 |
-
msgstr ""
|
2462 |
-
"Pour régler le montant des honoraires, vous devez aller à la page <a>Réglage "
|
2463 |
-
"des Options de Paiement</a> et activer."
|
2464 |
-
|
2465 |
-
#: templates/admin/fees-index.tpl.php:34
|
2466 |
#, fuzzy
|
2467 |
msgid "Order fees on the frontend by:"
|
2468 |
msgstr "Ordonner les honoraires dans l'interface par:"
|
2469 |
|
2470 |
-
#: templates/admin/fees-index.tpl.php:
|
2471 |
#, fuzzy
|
2472 |
msgid "↑ Ascending"
|
2473 |
msgstr "↑ Ascendant"
|
2474 |
|
2475 |
-
#: templates/admin/fees-index.tpl.php:
|
2476 |
#, fuzzy
|
2477 |
msgid "↓ Descending"
|
2478 |
msgstr "↓ Descendant"
|
2479 |
|
2480 |
-
#: templates/admin/fees-index.tpl.php:
|
2481 |
#, fuzzy
|
2482 |
msgid "Drag and drop to re-order fees."
|
2483 |
msgstr "Glisser-déposer pour réorganiser les frais."
|
2484 |
|
2485 |
-
#. translators: %1$s is directory payment mode (Free or Paid)
|
2486 |
-
#: templates/admin/fees-index.tpl.php:66
|
2487 |
-
msgid "All fee plans may not be available in \"%1$s\" mode."
|
2488 |
-
msgstr ""
|
2489 |
-
|
2490 |
#: templates/admin/fees-index.tpl.php:67
|
2491 |
-
msgid "Paid"
|
2492 |
-
msgstr "Payé"
|
2493 |
-
|
2494 |
-
#: templates/admin/fees-index.tpl.php:92
|
2495 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: templates/admin/fees-index.tpl.php:
|
2499 |
msgid "Add a payment gateway to increase conversion rates"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
#. translators: %s: payment gateway name */
|
2503 |
-
#: templates/admin/fees-index.tpl.php:
|
2504 |
msgid "Add the %s gateway as a payment option."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: templates/admin/fees-index.tpl.php:
|
2508 |
#, fuzzy
|
2509 |
msgid "Upgrade"
|
2510 |
msgstr "Mettre à jour vers %s"
|
2511 |
|
2512 |
-
#: templates/admin/fees-index.tpl.php:
|
2513 |
msgid "Set up Authorize.net as a payment option."
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: templates/admin/fees-index.tpl.php:
|
2517 |
msgid "Set Up"
|
2518 |
msgstr ""
|
2519 |
|
@@ -2547,14 +2524,6 @@ msgstr "Etes-vous sûr de vouloir effacer le \"%s\" champ?"
|
|
2547 |
msgid "Delete Field"
|
2548 |
msgstr "Effacer le champ"
|
2549 |
|
2550 |
-
#: templates/admin/home.tpl.php:55
|
2551 |
-
msgid "Manage Options"
|
2552 |
-
msgstr "Gestion des options"
|
2553 |
-
|
2554 |
-
#: templates/admin/home.tpl.php:74
|
2555 |
-
msgid "Manage Paid Listings"
|
2556 |
-
msgstr "Gérer annonces payées"
|
2557 |
-
|
2558 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2559 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2560 |
#: templates/login.tpl.php:71
|
@@ -2876,7 +2845,7 @@ msgid "New version available. %1$sUpdate now.%2$s"
|
|
2876 |
msgstr ""
|
2877 |
"Nouvelle version disponible (<b>%s</b>). <a>Mettre à jour maintenant.</a>"
|
2878 |
|
2879 |
-
#: templates/admin/themes-item.tpl.php:
|
2880 |
#, fuzzy
|
2881 |
msgid "Inactive"
|
2882 |
msgstr "Actif"
|
@@ -3947,7 +3916,13 @@ msgctxt "fees admin"
|
|
3947 |
msgid "Fee \"%s\" deleted."
|
3948 |
msgstr "Frais \"%s\" effacé."
|
3949 |
|
3950 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3951 |
msgctxt "fees admin"
|
3952 |
msgid "Fee disabled."
|
3953 |
msgstr "Frais désactivé."
|
@@ -3962,55 +3937,55 @@ msgctxt "fees admin"
|
|
3962 |
msgid "fees"
|
3963 |
msgstr "frais"
|
3964 |
|
3965 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3966 |
msgctxt "fees admin"
|
3967 |
msgid "Attributes"
|
3968 |
msgstr "Attributs"
|
3969 |
|
3970 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3971 |
msgctxt "fees admin"
|
3972 |
msgid "Edit"
|
3973 |
msgstr "Editer"
|
3974 |
|
3975 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3976 |
msgctxt "fees admin"
|
3977 |
msgid "Variable"
|
3978 |
msgstr "Variable"
|
3979 |
|
3980 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3981 |
#, fuzzy
|
3982 |
msgctxt "fees admin"
|
3983 |
msgid "%1$s + %2$s per category"
|
3984 |
msgstr "%s + %s par catégorie"
|
3985 |
|
3986 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3987 |
msgctxt "fees admin"
|
3988 |
msgid "Forever"
|
3989 |
msgstr "Pour toujours"
|
3990 |
|
3991 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3992 |
msgctxt "fees admin"
|
3993 |
msgid "%d day"
|
3994 |
msgid_plural "%d days"
|
3995 |
msgstr[0] "%d jour"
|
3996 |
msgstr[1] "%d jours"
|
3997 |
|
3998 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3999 |
msgctxt "fees admin"
|
4000 |
msgid "All categories"
|
4001 |
msgstr "Toutes catégories"
|
4002 |
|
4003 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4004 |
msgctxt "fees admin"
|
4005 |
msgid "Sticky"
|
4006 |
msgstr "Premium"
|
4007 |
|
4008 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4009 |
msgctxt "fees admin"
|
4010 |
msgid "Recurring"
|
4011 |
msgstr "Récurrent"
|
4012 |
|
4013 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4014 |
#, fuzzy
|
4015 |
msgctxt "fees admin"
|
4016 |
msgid "Private"
|
@@ -4189,47 +4164,47 @@ msgctxt "listing status"
|
|
4189 |
msgid "Reported"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
-
#: includes/models/class-listing.php:
|
4193 |
msgctxt "listing status"
|
4194 |
msgid "Unknown"
|
4195 |
msgstr "Inconnu"
|
4196 |
|
4197 |
-
#: includes/models/class-listing.php:
|
4198 |
msgctxt "listing status"
|
4199 |
msgid "Legacy"
|
4200 |
msgstr "Don"
|
4201 |
|
4202 |
-
#: includes/models/class-listing.php:
|
4203 |
msgctxt "listing status"
|
4204 |
msgid "Incomplete"
|
4205 |
msgstr "Incomplet"
|
4206 |
|
4207 |
-
#: includes/models/class-listing.php:
|
4208 |
msgctxt "listing status"
|
4209 |
msgid "Pending Payment"
|
4210 |
msgstr "Paiement en attente"
|
4211 |
|
4212 |
-
#: includes/models/class-listing.php:
|
4213 |
msgctxt "listing status"
|
4214 |
msgid "Complete"
|
4215 |
msgstr "Complet"
|
4216 |
|
4217 |
-
#: includes/models/class-listing.php:
|
4218 |
msgctxt "listing status"
|
4219 |
msgid "Pending Upgrade"
|
4220 |
msgstr "En attente de mise à niveau"
|
4221 |
|
4222 |
-
#: includes/models/class-listing.php:
|
4223 |
msgctxt "listing status"
|
4224 |
msgid "Expired"
|
4225 |
msgstr "Expiré"
|
4226 |
|
4227 |
-
#: includes/models/class-listing.php:
|
4228 |
msgctxt "listing status"
|
4229 |
msgid "Pending Renewal"
|
4230 |
msgstr "Actives + En attente de renouvellement"
|
4231 |
|
4232 |
-
#: includes/models/class-listing.php:
|
4233 |
msgctxt "listing status"
|
4234 |
msgid "Abandoned"
|
4235 |
msgstr "Abandonné"
|
@@ -4897,13 +4872,13 @@ msgid "Author"
|
|
4897 |
msgstr "Auteur"
|
4898 |
|
4899 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4900 |
-
#: includes/helpers/functions/general.php:
|
4901 |
msgctxt "admin settings"
|
4902 |
msgid "Date posted"
|
4903 |
msgstr "Date d'ajout"
|
4904 |
|
4905 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4906 |
-
#: includes/helpers/functions/general.php:
|
4907 |
msgctxt "admin settings"
|
4908 |
msgid "Date last modified"
|
4909 |
msgstr "Date de dernière modification"
|
@@ -5078,28 +5053,28 @@ msgctxt "admin settings"
|
|
5078 |
msgid "U.S. Dollar (USD)"
|
5079 |
msgstr "U.S. Dollar (USD)"
|
5080 |
|
5081 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5082 |
msgctxt "admin settings"
|
5083 |
msgid "Show currency symbol on the left"
|
5084 |
msgstr "Afficher le symbole de devise à gauche"
|
5085 |
|
5086 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5087 |
msgctxt "admin settings"
|
5088 |
msgid "Show currency symbol on the right"
|
5089 |
msgstr "Afficher le symbole de devise à droite"
|
5090 |
|
5091 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5092 |
msgctxt "admin settings"
|
5093 |
msgid "Do not show currency symbol"
|
5094 |
msgstr "Ne pas montrer la devise"
|
5095 |
|
5096 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5097 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5098 |
msgctxt "admin settings"
|
5099 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5103 |
#, fuzzy
|
5104 |
msgctxt "admin settings"
|
5105 |
msgid ""
|
@@ -5110,126 +5085,126 @@ msgstr ""
|
|
5110 |
"cette heure. Vous pouvez également personnaliser <a> l'e-mail </a> que les "
|
5111 |
"utilisateurs reçoivent."
|
5112 |
|
5113 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5114 |
msgctxt "admin settings"
|
5115 |
msgid "Try listing's email field first, then author's email."
|
5116 |
msgstr ""
|
5117 |
"Essayez d'abord le champ \"Adresse mail\" de l'annonce, puis l'adresse mail "
|
5118 |
"de l'auteur."
|
5119 |
|
5120 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5121 |
msgctxt "admin settings"
|
5122 |
msgid "Try author's email first and then listing's email field."
|
5123 |
msgstr ""
|
5124 |
"Essayez d'abord l'adresse mail de l'auteur, puis le champ \"Adresse mail\" "
|
5125 |
"de l'annonce."
|
5126 |
|
5127 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5128 |
msgctxt "admin settings"
|
5129 |
msgid "Plain (text/plain)"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5133 |
msgctxt "admin settings"
|
5134 |
msgid "HTML (text/html)"
|
5135 |
msgstr ""
|
5136 |
|
5137 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5138 |
msgctxt "admin settings"
|
5139 |
msgid "Both (multipart/alternative)"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5143 |
msgctxt "admin settings"
|
5144 |
msgid "A new listing is submitted."
|
5145 |
msgstr "Une nouvelle annonce a été soumise."
|
5146 |
|
5147 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5148 |
msgctxt "admin settings"
|
5149 |
msgid "A listing is edited."
|
5150 |
msgstr "Une annonce est éditée."
|
5151 |
|
5152 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5153 |
msgctxt "admin settings"
|
5154 |
msgid "A listing expires."
|
5155 |
msgstr "Une annonce expire."
|
5156 |
|
5157 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5158 |
#, fuzzy
|
5159 |
msgctxt "admin settings"
|
5160 |
msgid "A listing is renewed."
|
5161 |
msgstr "Une annonce est éditée."
|
5162 |
|
5163 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5164 |
#, fuzzy
|
5165 |
msgctxt "admin settings"
|
5166 |
msgid "A listing payment is completed."
|
5167 |
msgstr "Une annonce est éditée."
|
5168 |
|
5169 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5170 |
#, fuzzy
|
5171 |
msgctxt "admin settings"
|
5172 |
msgid "A listing has been reported as inappropriate."
|
5173 |
msgstr "L'annonce a été mise à jour."
|
5174 |
|
5175 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5176 |
msgctxt "admin settings"
|
5177 |
msgid "A contact message is sent to a listing's owner."
|
5178 |
msgstr "Un message de contact est envoyé a un propriétaire d'annonce."
|
5179 |
|
5180 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5181 |
msgctxt "admin settings"
|
5182 |
msgid "Their listing is submitted."
|
5183 |
msgstr "Leur annonce est soumise."
|
5184 |
|
5185 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5186 |
msgctxt "admin settings"
|
5187 |
msgid "Their listing is approved/published."
|
5188 |
msgstr "Leur annonce est approuvée/publiée."
|
5189 |
|
5190 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5191 |
#, fuzzy
|
5192 |
msgctxt "admin settings"
|
5193 |
msgid "A payment for their listing is completed."
|
5194 |
msgstr "Leur annonce est soumise."
|
5195 |
|
5196 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5197 |
#, fuzzy
|
5198 |
msgctxt "admin settings"
|
5199 |
msgid "Their listing expired or is about to expire."
|
5200 |
msgstr "Leur annonce est soumise."
|
5201 |
|
5202 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5203 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5204 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5205 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5206 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5207 |
msgctxt "admin settings"
|
5208 |
msgid "Listing's title"
|
5209 |
msgstr "Titre de l'annonce"
|
5210 |
|
5211 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5212 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5213 |
#, fuzzy
|
5214 |
msgctxt "admin settings"
|
5215 |
msgid "Listing's fee plan name"
|
5216 |
msgstr "Date d'expiration de l'annonce"
|
5217 |
|
5218 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5219 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5220 |
#, fuzzy
|
5221 |
msgctxt "admin settings"
|
5222 |
msgid "Listing's fee plan description"
|
5223 |
msgstr "Sélection des droits d'inscription"
|
5224 |
|
5225 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5226 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5227 |
#, fuzzy
|
5228 |
msgctxt "admin settings"
|
5229 |
msgid "Listing's fee plan details"
|
5230 |
msgstr "Date d'expiration de l'annonce"
|
5231 |
|
5232 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5233 |
msgctxt "admin settings"
|
5234 |
msgid ""
|
5235 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
@@ -5238,70 +5213,70 @@ msgstr ""
|
|
5238 |
"Votre annonce \"[listing]\" est maintenant disponible à [listing-url] et "
|
5239 |
"elle peut être vu par tout le monde."
|
5240 |
|
5241 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5242 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5243 |
msgctxt "admin settings"
|
5244 |
msgid "Listing's URL"
|
5245 |
msgstr "Url de l'annonce"
|
5246 |
|
5247 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5248 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5249 |
#, fuzzy
|
5250 |
msgctxt "admin settings"
|
5251 |
msgid "Listing's Access Key"
|
5252 |
msgstr "Liste des clés d'accès"
|
5253 |
|
5254 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5255 |
#, fuzzy
|
5256 |
msgctxt "admin settings"
|
5257 |
msgid "Sender's name"
|
5258 |
msgstr "Nom de l'auteur"
|
5259 |
|
5260 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5261 |
#, fuzzy
|
5262 |
msgctxt "admin settings"
|
5263 |
msgid "Contact message"
|
5264 |
msgstr "Lister des messages de contact"
|
5265 |
|
5266 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5267 |
msgctxt "admin settings"
|
5268 |
msgid "Date and time the message was sent"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5272 |
#, fuzzy
|
5273 |
msgctxt "admin settings"
|
5274 |
msgid "Payment items details."
|
5275 |
msgstr "Détails de paiement"
|
5276 |
|
5277 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5278 |
msgctxt "admin settings"
|
5279 |
msgid "URL where user can review and print payment receipt."
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5283 |
#, fuzzy
|
5284 |
msgctxt "admin settings"
|
5285 |
msgid "Gateway used to process listing's payment."
|
5286 |
msgstr "Impossible de procéder au paiement."
|
5287 |
|
5288 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5289 |
msgctxt "admin settings"
|
5290 |
msgid "Checkout URL link"
|
5291 |
msgstr "Vérificateur de lien URL"
|
5292 |
|
5293 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5294 |
#, fuzzy
|
5295 |
msgctxt "admin settings"
|
5296 |
msgid "Uploaded Image (no resize)"
|
5297 |
msgstr "Télécharger les images"
|
5298 |
|
5299 |
-
#: includes/helpers/functions/general.php:
|
5300 |
msgctxt "admin settings"
|
5301 |
msgid "User"
|
5302 |
msgstr "Utilisateur"
|
5303 |
|
5304 |
-
#: includes/helpers/functions/general.php:
|
5305 |
msgctxt "admin settings"
|
5306 |
msgid "User registration date"
|
5307 |
msgstr "Date d'expiration de l'annonce"
|
@@ -5524,7 +5499,7 @@ msgstr "Listes"
|
|
5524 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5525 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5526 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5527 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5528 |
#: includes/admin/settings/class-settings.php:341
|
5529 |
msgctxt "settings"
|
5530 |
msgid "General Settings"
|
@@ -6139,17 +6114,12 @@ msgctxt "settings"
|
|
6139 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6140 |
msgstr ""
|
6141 |
|
6142 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6143 |
msgctxt "settings"
|
6144 |
msgid "Fee Order"
|
6145 |
msgstr "Ordre des prix"
|
6146 |
|
6147 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6148 |
-
msgctxt "settings"
|
6149 |
-
msgid "Turn On payments?"
|
6150 |
-
msgstr "Activer les paiements ?"
|
6151 |
-
|
6152 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1144
|
6153 |
msgctxt "settings"
|
6154 |
msgid "Put payment gateways in test mode?"
|
6155 |
msgstr "Passer les passerelles de paiement en mode test ?"
|
@@ -6159,42 +6129,42 @@ msgctxt "settings"
|
|
6159 |
msgid "Currency Code"
|
6160 |
msgstr "Code de devise"
|
6161 |
|
6162 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6163 |
msgctxt "settings"
|
6164 |
msgid "Currency Symbol"
|
6165 |
msgstr "Devise"
|
6166 |
|
6167 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6168 |
msgctxt "settings"
|
6169 |
msgid "Currency symbol display"
|
6170 |
msgstr "Affichage de la devise"
|
6171 |
|
6172 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6173 |
msgctxt "settings"
|
6174 |
msgid "Include fee description in receipt?"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6178 |
msgctxt "settings"
|
6179 |
msgid "Thank you for payment message"
|
6180 |
msgstr "Nous vous remercions pour votre paiement"
|
6181 |
|
6182 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6183 |
msgctxt "settings"
|
6184 |
msgid "Ask users to come back for abandoned payments?"
|
6185 |
msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés ?"
|
6186 |
|
6187 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6188 |
msgctxt "settings"
|
6189 |
msgid "Listing abandonment threshold (hours)"
|
6190 |
msgstr "Seuil d'abandon de l'annonce (heures)"
|
6191 |
|
6192 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6193 |
msgctxt "settings"
|
6194 |
msgid "Display email address fields publicly?"
|
6195 |
msgstr "Affichage des champs d'adresses e-mail au public ?"
|
6196 |
|
6197 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6198 |
msgctxt "settings"
|
6199 |
msgid ""
|
6200 |
"Shows the email address of the listing owner to all web users. NOT "
|
@@ -6205,12 +6175,12 @@ msgstr ""
|
|
6205 |
"utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
|
6206 |
"question et permet aux spam bots de la récolter pour une utilisation future."
|
6207 |
|
6208 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6209 |
msgctxt "settings"
|
6210 |
msgid "How to determine the listing's email address?"
|
6211 |
msgstr "Comment définir l'adresse e-mail de l'annonce ?"
|
6212 |
|
6213 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6214 |
msgctxt "settings"
|
6215 |
msgid ""
|
6216 |
"This affects emails sent to listing owners via contact forms or when their "
|
@@ -6219,12 +6189,12 @@ msgstr ""
|
|
6219 |
"Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
|
6220 |
"formulaire de contact ou quand leurs annonces expirent."
|
6221 |
|
6222 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6223 |
msgctxt "settings"
|
6224 |
msgid "Email Content-Type header"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6228 |
msgctxt "settings"
|
6229 |
msgid ""
|
6230 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -6233,38 +6203,38 @@ msgid ""
|
|
6233 |
"then \"Both\"."
|
6234 |
msgstr ""
|
6235 |
|
6236 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6237 |
msgctxt "settings"
|
6238 |
msgid "Templates"
|
6239 |
msgstr "Template d'E-Mail"
|
6240 |
|
6241 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6242 |
msgctxt "settings"
|
6243 |
msgid "Email confirmation message"
|
6244 |
msgstr "Message de confirmation par E-Mail"
|
6245 |
|
6246 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6247 |
msgctxt "settings"
|
6248 |
msgid "Sent after a listing has been submitted."
|
6249 |
msgstr "Envoyer après qu'une annonce ait été soumise."
|
6250 |
|
6251 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6252 |
msgctxt "settings"
|
6253 |
msgid "Listing published message"
|
6254 |
msgstr "Message publié de l'annonce"
|
6255 |
|
6256 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6257 |
msgctxt "settings"
|
6258 |
msgid "Sent when the listing has been published or approved by an admin."
|
6259 |
msgstr ""
|
6260 |
"Envoyé lorsque l'annonce a été publiée ou approuvée par un administrateur."
|
6261 |
|
6262 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6263 |
msgctxt "settings"
|
6264 |
msgid "Listing Contact Message"
|
6265 |
msgstr "Lister des messages de contact"
|
6266 |
|
6267 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6268 |
msgctxt "settings"
|
6269 |
msgid ""
|
6270 |
"Sent to listing owners when someone uses the contact form on their listing "
|
@@ -6273,13 +6243,13 @@ msgstr ""
|
|
6273 |
"Envoyer aux propriétaires des annonces quand quelqu'un utilise le formulaire "
|
6274 |
"de contact sur leurs pages d'annonces."
|
6275 |
|
6276 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6277 |
#, fuzzy
|
6278 |
msgctxt "settings"
|
6279 |
msgid "Payment completed message"
|
6280 |
msgstr "Paiement abandonné, message de rappel"
|
6281 |
|
6282 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6283 |
#, fuzzy
|
6284 |
msgctxt "settings"
|
6285 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
@@ -6287,12 +6257,12 @@ msgstr ""
|
|
6287 |
"Envoyer après un certain temps lorsqu'un paiement en attente est abandonné "
|
6288 |
"par les utilisateurs."
|
6289 |
|
6290 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6291 |
msgctxt "settings"
|
6292 |
msgid "Payment abandoned reminder message"
|
6293 |
msgstr "Paiement abandonné, message de rappel"
|
6294 |
|
6295 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6296 |
msgctxt "settings"
|
6297 |
msgid "Cropped"
|
6298 |
msgstr ""
|
@@ -6308,17 +6278,17 @@ msgctxt "settings"
|
|
6308 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6309 |
msgstr "L'élément \"%s\" est déjà utilisé pour une autre taxinomie."
|
6310 |
|
6311 |
-
#: includes/licensing.php:
|
6312 |
msgctxt "settings"
|
6313 |
msgid "Themes"
|
6314 |
msgstr "Thèmes"
|
6315 |
|
6316 |
-
#: includes/licensing.php:
|
6317 |
msgctxt "settings"
|
6318 |
msgid "Please wait..."
|
6319 |
msgstr "Veuillez attendre..."
|
6320 |
|
6321 |
-
#: includes/licensing.php:
|
6322 |
#, fuzzy
|
6323 |
msgctxt "settings"
|
6324 |
msgid "Deauthorize"
|
@@ -6374,28 +6344,28 @@ msgctxt "themes"
|
|
6374 |
msgid "Could not delete theme directory. Check permissions."
|
6375 |
msgstr "Impossible de supprimer le dossier du thème. Vérifier les permissions."
|
6376 |
|
6377 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6378 |
msgctxt "themes"
|
6379 |
msgid "Please upload a valid theme file."
|
6380 |
msgstr "Veuillez télécharger un fichier de thème valide."
|
6381 |
|
6382 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6383 |
msgctxt "themes"
|
6384 |
msgid "Could not move \"%s\" to a temporary directory."
|
6385 |
msgstr "Impossible de déplacer \"%s\" vers un dossier temporaire."
|
6386 |
|
6387 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6388 |
msgctxt "themes"
|
6389 |
msgid "Activate your <a>license key</a> to use this theme."
|
6390 |
msgstr "Activer votre <a>numéro de licence</a> pour utiliser ce thème."
|
6391 |
|
6392 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6393 |
#, fuzzy
|
6394 |
msgctxt "themes"
|
6395 |
msgid "Invalid theme ID"
|
6396 |
msgstr "ID d'élément non valide"
|
6397 |
|
6398 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6399 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6400 |
msgctxt "themes"
|
6401 |
msgid "Could not update theme: %s"
|
@@ -6827,24 +6797,24 @@ msgid "Trash"
|
|
6827 |
msgstr "Corbeille"
|
6828 |
|
6829 |
#. translators: %s: url shortcode
|
6830 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6831 |
msgctxt "contact email"
|
6832 |
msgid "You have received a reply from your listing at %s."
|
6833 |
msgstr "Vous avez reçu une réponse à votre annonce de %s."
|
6834 |
|
6835 |
#. translators: %s: name shortcode
|
6836 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6837 |
msgctxt "contact email"
|
6838 |
msgid "Name: %s"
|
6839 |
msgstr "Nom: %s"
|
6840 |
|
6841 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6842 |
msgctxt "contact email"
|
6843 |
msgid "Message:"
|
6844 |
msgstr "Message:"
|
6845 |
|
6846 |
#. translators: %s: date shortcode
|
6847 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6848 |
msgctxt "contact email"
|
6849 |
msgid "Time: %s"
|
6850 |
msgstr "Date: %s"
|
@@ -7152,35 +7122,35 @@ msgctxt "listing"
|
|
7152 |
msgid "Add New Listing"
|
7153 |
msgstr "Ajouter une nouvelle annonce"
|
7154 |
|
7155 |
-
#: includes/models/class-listing.php:
|
7156 |
#, fuzzy
|
7157 |
msgctxt "listing"
|
7158 |
msgid "Listing has no registered payments"
|
7159 |
msgstr "Date d'expiration de l'annonce"
|
7160 |
|
7161 |
-
#: includes/models/class-listing.php:
|
7162 |
#, fuzzy
|
7163 |
msgctxt "listing"
|
7164 |
msgid "Can't delete payment"
|
7165 |
msgstr "Supprimer le paiement"
|
7166 |
|
7167 |
-
#: includes/models/class-listing.php:
|
7168 |
msgctxt "listing"
|
7169 |
msgid "Listing expired"
|
7170 |
msgstr "Une annonce expire"
|
7171 |
|
7172 |
-
#: includes/models/class-listing.php:
|
7173 |
msgctxt "listing"
|
7174 |
msgid "(Unavailable Plan)"
|
7175 |
msgstr "(Plan indisponible disponible)"
|
7176 |
|
7177 |
-
#: includes/models/class-listing.php:
|
7178 |
#, fuzzy
|
7179 |
msgctxt "listing"
|
7180 |
msgid "Plan \"%s\" (recurring)"
|
7181 |
msgstr "(récurrent)"
|
7182 |
|
7183 |
-
#: includes/models/class-listing.php:
|
7184 |
msgctxt "listing"
|
7185 |
msgid "Plan \"%s\""
|
7186 |
msgstr "Statut \"%s\""
|
@@ -7318,7 +7288,7 @@ msgctxt "payment-gateways"
|
|
7318 |
msgid "Enable %s?"
|
7319 |
msgstr "Activer %s?"
|
7320 |
|
7321 |
-
#: includes/class-payment-gateways.php:
|
7322 |
msgctxt "payment-gateways"
|
7323 |
msgid ""
|
7324 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
@@ -7328,24 +7298,11 @@ msgstr ""
|
|
7328 |
"passerelle ne sera pas disponible jusqu'à ce que les problèmes suivants sont "
|
7329 |
"résolus: <problems>."
|
7330 |
|
7331 |
-
#: includes/class-payment-gateways.php:
|
7332 |
msgctxt "payment-gateways"
|
7333 |
msgid "Please check the <link>payment settings</link>."
|
7334 |
msgstr "Veuillez vérifier les <link>paramètres de paiement</link>."
|
7335 |
|
7336 |
-
#: includes/class-payment-gateways.php:142
|
7337 |
-
msgctxt "payment-gateways"
|
7338 |
-
msgid ""
|
7339 |
-
"You have payments turned on but no gateway is active and properly "
|
7340 |
-
"configured. Go to <link>Manage Options - Payment</link> to change the "
|
7341 |
-
"payment settings. Until you change this, the directory will operate in "
|
7342 |
-
"<i>Free Mode</i>."
|
7343 |
-
msgstr ""
|
7344 |
-
"Vous avez activé les paiements mais aucune passerelle n'est actif et "
|
7345 |
-
"correctement configurée. Allez à <link> gérer les options - Paiement </link> "
|
7346 |
-
"pour modifier les paramètres de paiement. Jusqu'à ce que vous modifiez cela, "
|
7347 |
-
"le répertoire fonctionnera en <i> Mode libre </ i>."
|
7348 |
-
|
7349 |
#: includes/class-recaptcha.php:32
|
7350 |
msgctxt "recaptcha"
|
7351 |
msgid "The reCAPTCHA wasn't entered correctly."
|
@@ -7577,7 +7534,7 @@ msgstr ""
|
|
7577 |
"frontal votre site. Si cela ne correspond pas à votre souhait, cliquez </a> "
|
7578 |
"ici <a> pour modifier le paramétrage."
|
7579 |
|
7580 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7581 |
msgctxt "templates"
|
7582 |
msgid ""
|
7583 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
@@ -7586,27 +7543,27 @@ msgstr ""
|
|
7586 |
"<b>Aperçu non disponible</b>. Avez-vous coché le paramètre \"Désactiver la "
|
7587 |
"soumission de l'annonce publique ?\" ?"
|
7588 |
|
7589 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7590 |
msgctxt "templates"
|
7591 |
msgid ""
|
7592 |
"Listing submission has been disabled. Contact the administrator for details."
|
7593 |
msgstr ""
|
7594 |
|
7595 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7596 |
msgctxt "templates"
|
7597 |
msgid ""
|
7598 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7599 |
"submit a listing. %s to create a fee plan"
|
7600 |
msgstr ""
|
7601 |
|
7602 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7603 |
msgctxt "templates"
|
7604 |
msgid ""
|
7605 |
"Listing submission is not available at the moment. Contact the administrator "
|
7606 |
"for details."
|
7607 |
msgstr ""
|
7608 |
|
7609 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7610 |
msgctxt "templates"
|
7611 |
msgid ""
|
7612 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -7614,17 +7571,17 @@ msgid ""
|
|
7614 |
"an existing field"
|
7615 |
msgstr ""
|
7616 |
|
7617 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7618 |
msgctxt "templates"
|
7619 |
msgid "Please agree to the Terms and Conditions."
|
7620 |
msgstr "Veuillez accepter les conditions d'utilisation."
|
7621 |
|
7622 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7623 |
msgctxt "templates"
|
7624 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7625 |
msgstr "J'accepte <a> Conditions générales </a>"
|
7626 |
|
7627 |
-
#: includes/helpers/functions/general.php:
|
7628 |
#, fuzzy
|
7629 |
msgctxt "templates"
|
7630 |
msgid "Return to results"
|
@@ -7973,7 +7930,7 @@ msgctxt "submit listing"
|
|
7973 |
msgid "You can't edit this listing."
|
7974 |
msgstr "Catégories pour cette annonce"
|
7975 |
|
7976 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7977 |
msgctxt "submit listing"
|
7978 |
msgid ""
|
7979 |
"This listing can't be edited at this time because it has no fee plan "
|
@@ -7984,7 +7941,7 @@ msgstr ""
|
|
7984 |
"frais n'est associé. S'il vous plaît <a>modifier l'annonce</a> sur le "
|
7985 |
"backend et l'associer à un plan de frais."
|
7986 |
|
7987 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7988 |
msgctxt "submit listing"
|
7989 |
msgid ""
|
7990 |
"This listing can't be edited at this time. Please try again later or contact "
|
@@ -7993,66 +7950,66 @@ msgstr ""
|
|
7993 |
"L'annuaire n'est pas disponible pour le moment. Veuillez réessayer dans "
|
7994 |
"quelques minutes ou contactez l'administrateur si le problème persiste."
|
7995 |
|
7996 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7997 |
msgctxt "submit listing"
|
7998 |
msgid "You're logged in as admin, payment will be skipped."
|
7999 |
msgstr ""
|
8000 |
"Vous êtes connecté en tant qu'administrateur. Toutes les étapes de paiement "
|
8001 |
"seront passées."
|
8002 |
|
8003 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8004 |
#, fuzzy
|
8005 |
msgctxt "submit listing"
|
8006 |
msgid "Category selection"
|
8007 |
msgstr "Sélection de la catégorie"
|
8008 |
|
8009 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8010 |
msgctxt "submit listing"
|
8011 |
msgid "Category & plan selection"
|
8012 |
msgstr "Sélection Catégorie et plan"
|
8013 |
|
8014 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8015 |
msgctxt "submit listing"
|
8016 |
msgid "Can not submit a listing at this moment. Please try again later."
|
8017 |
msgstr ""
|
8018 |
"Impossible de soumettre une liste en ce moment. Veuillez réessayer plus tard."
|
8019 |
|
8020 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8021 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8022 |
msgctxt "submit listing"
|
8023 |
msgid "Please select a category."
|
8024 |
msgstr "Veuillez sélectionner une catégorie."
|
8025 |
|
8026 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8027 |
msgctxt "submit listing"
|
8028 |
msgid "Please choose a valid category for your plan."
|
8029 |
msgstr "Veuillez choisir une catégorie valide pour votre annonce."
|
8030 |
|
8031 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8032 |
msgctxt "submit listing"
|
8033 |
msgid "Please choose a valid fee plan for your category selection."
|
8034 |
msgstr ""
|
8035 |
"S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
|
8036 |
"catégorie."
|
8037 |
|
8038 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8039 |
msgctxt "submit listing"
|
8040 |
msgid "Please enter your desired username."
|
8041 |
msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
|
8042 |
|
8043 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8044 |
msgctxt "submit listing"
|
8045 |
msgid "Please enter the e-mail for your new account."
|
8046 |
msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
|
8047 |
|
8048 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8049 |
msgctxt "submit listing"
|
8050 |
msgid "The username you chose is already in use. Please use a different one."
|
8051 |
msgstr ""
|
8052 |
"Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
|
8053 |
"utiliser un autre."
|
8054 |
|
8055 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8056 |
msgctxt "submit listing"
|
8057 |
msgid "The e-mail address you chose for your account is already in use."
|
8058 |
msgstr ""
|
@@ -8063,7 +8020,7 @@ msgctxt "submit listing"
|
|
8063 |
msgid "Listing submitted by admin. Payment skipped."
|
8064 |
msgstr "Annonce soumis par admin. Paiement sauté."
|
8065 |
|
8066 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8067 |
msgctxt "listing submit"
|
8068 |
msgid ""
|
8069 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8397,12 +8354,12 @@ msgctxt "default category name"
|
|
8397 |
msgid "General"
|
8398 |
msgstr "Général"
|
8399 |
|
8400 |
-
#: includes/licensing.php:
|
8401 |
msgctxt "licensing"
|
8402 |
msgid "Could not contact licensing server"
|
8403 |
msgstr "Impossible de contacter le serveur de licences"
|
8404 |
|
8405 |
-
#: includes/licensing.php:
|
8406 |
#, fuzzy
|
8407 |
msgctxt "licensing"
|
8408 |
msgid ""
|
@@ -8413,7 +8370,7 @@ msgstr ""
|
|
8413 |
"Directory. Un problème est survenu lors de l'établissement de liaison SSL / "
|
8414 |
"TLS:"
|
8415 |
|
8416 |
-
#: includes/licensing.php:
|
8417 |
msgctxt "licensing"
|
8418 |
msgid ""
|
8419 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8426,7 +8383,7 @@ msgstr ""
|
|
8426 |
"version d'OpenSSL qui supporte TLSv1.2 (la version minimale avec le support "
|
8427 |
"est OpenSSL 1.0.1c)."
|
8428 |
|
8429 |
-
#: includes/licensing.php:
|
8430 |
msgctxt "licensing"
|
8431 |
msgid ""
|
8432 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8438,7 +8395,7 @@ msgstr ""
|
|
8438 |
"votre site Web à pouvoir interagir avec les services en utilisant les "
|
8439 |
"dernières normes de sécurité."
|
8440 |
|
8441 |
-
#: includes/licensing.php:
|
8442 |
#, fuzzy
|
8443 |
msgctxt "licensing"
|
8444 |
msgid ""
|
@@ -8448,7 +8405,7 @@ msgstr ""
|
|
8448 |
"Veuillez contacter votre fournisseur d'hébergement et demandez-lui de mettre "
|
8449 |
"à jour votre hébergement. Incluez ce message si nécessaire."
|
8450 |
|
8451 |
-
#: includes/licensing.php:
|
8452 |
#, fuzzy
|
8453 |
msgctxt "licensing"
|
8454 |
msgid ""
|
@@ -8458,33 +8415,33 @@ msgstr ""
|
|
8458 |
"Veuillez contacter votre fournisseur d'hébergement et demandez-lui de mettre "
|
8459 |
"à jour votre hébergement. Incluez ce message si nécessaire."
|
8460 |
|
8461 |
-
#: includes/licensing.php:
|
8462 |
msgctxt "licensing"
|
8463 |
msgid "The server returned a 403 Forbidden error."
|
8464 |
msgstr "Le serveur a renvoyé une erreur 403 Forbidden."
|
8465 |
|
8466 |
-
#: includes/licensing.php:
|
8467 |
msgctxt "licensing"
|
8468 |
msgid "Could not activate license: %s."
|
8469 |
msgstr "Impossible d'activer la licence: %s."
|
8470 |
|
8471 |
-
#: includes/licensing.php:
|
8472 |
msgctxt "licensing"
|
8473 |
msgid "License activated"
|
8474 |
msgstr "Licence activée"
|
8475 |
|
8476 |
-
#: includes/licensing.php:
|
8477 |
msgctxt "licensing"
|
8478 |
msgid "Could not deactivate license: %s."
|
8479 |
msgstr "Impossible de désactiver la licence: %s."
|
8480 |
|
8481 |
-
#: includes/licensing.php:
|
8482 |
msgctxt "licensing"
|
8483 |
msgid "License deactivated"
|
8484 |
msgstr "Licence désactivée"
|
8485 |
|
8486 |
#. translators: "<module-name>" version <version-number> is not...
|
8487 |
-
#: includes/licensing.php:
|
8488 |
#, fuzzy
|
8489 |
msgctxt "deprecation"
|
8490 |
msgid ""
|
@@ -8506,19 +8463,19 @@ msgid_plural "%d images allowed."
|
|
8506 |
msgstr[0] "Image %d autorisée."
|
8507 |
msgstr[1] "Images autorisées"
|
8508 |
|
8509 |
-
#: includes/models/class-fee-plan.php:
|
8510 |
msgctxt "fees-api"
|
8511 |
msgid "Fee label is required."
|
8512 |
msgstr "Une étiquette de frais est requise."
|
8513 |
|
8514 |
-
#: includes/models/class-fee-plan.php:
|
8515 |
msgctxt "fees-api"
|
8516 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8517 |
msgstr ""
|
8518 |
"La durée des frais d'annonce doit être un nombre inférieur à 10 ans (3650 "
|
8519 |
"jours)."
|
8520 |
|
8521 |
-
#: includes/models/class-fee-plan.php:
|
8522 |
msgctxt "fees-api"
|
8523 |
msgid ""
|
8524 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
@@ -8526,7 +8483,7 @@ msgid ""
|
|
8526 |
"<a>fee plan</a> appropriately."
|
8527 |
msgstr ""
|
8528 |
|
8529 |
-
#: includes/models/class-fee-plan.php:
|
8530 |
msgctxt "fees-api"
|
8531 |
msgid ""
|
8532 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
@@ -8600,17 +8557,17 @@ msgctxt "utils"
|
|
8600 |
msgid "Unkown error while uploading file."
|
8601 |
msgstr "Une erreur inconnue est survenu lors de l'upload du fichier."
|
8602 |
|
8603 |
-
#: includes/utils.php:
|
8604 |
msgctxt "utils"
|
8605 |
msgid "Error while uploading file"
|
8606 |
msgstr "Erreur durant l'upload du fichier"
|
8607 |
|
8608 |
-
#: includes/utils.php:
|
8609 |
msgctxt "utils"
|
8610 |
msgid "File type \"%s\" is not allowed"
|
8611 |
msgstr "Le type de fichier \"%s\" n'est pas autorisé"
|
8612 |
|
8613 |
-
#: includes/utils.php:
|
8614 |
msgctxt "utils"
|
8615 |
msgid ""
|
8616 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8721,48 +8678,6 @@ msgctxt "admin forms"
|
|
8721 |
msgid "required"
|
8722 |
msgstr "requis"
|
8723 |
|
8724 |
-
#: templates/admin/home.tpl.php:12
|
8725 |
-
msgctxt "admin home"
|
8726 |
-
msgid "Welcome to Business Directory Plugin. You are using %s."
|
8727 |
-
msgstr "Bienvenue sur le plugin Business Directory. Vous utilisez %s."
|
8728 |
-
|
8729 |
-
#: templates/admin/home.tpl.php:15
|
8730 |
-
msgctxt "admin home"
|
8731 |
-
msgid ""
|
8732 |
-
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
8733 |
-
"let's jump right in!"
|
8734 |
-
msgstr ""
|
8735 |
-
"Merci de nous avoir choisi. Vous avez surement baucoup de choses à faire "
|
8736 |
-
"maintenant, donc, allons-y!"
|
8737 |
-
|
8738 |
-
#: templates/admin/home.tpl.php:28
|
8739 |
-
msgctxt "admin home"
|
8740 |
-
msgid ""
|
8741 |
-
"Our complete documentation is <a>here</a> which we encourage you to use "
|
8742 |
-
"while setting things up."
|
8743 |
-
msgstr ""
|
8744 |
-
"Notre documentation complète est <a>ICI</a> que nous vous encourageons à "
|
8745 |
-
"utiliser tout en paramétrant le plugin."
|
8746 |
-
|
8747 |
-
#: templates/admin/home.tpl.php:36
|
8748 |
-
msgctxt "admin home"
|
8749 |
-
msgid ""
|
8750 |
-
"We have some quick-start scenarios that you will find useful regarding setup "
|
8751 |
-
"and configuration <a>here</a>."
|
8752 |
-
msgstr ""
|
8753 |
-
"Nous avons des scénarios de démarrage rapide que vous trouverez utiles "
|
8754 |
-
"concernant l'installation et la configuration <a> ICI </a>."
|
8755 |
-
|
8756 |
-
#: templates/admin/home.tpl.php:45
|
8757 |
-
msgctxt "admin home"
|
8758 |
-
msgid ""
|
8759 |
-
"If you have questions, please post a comment on <a>support forum</a> and "
|
8760 |
-
"we'll answer it within 24 hours most days."
|
8761 |
-
msgstr ""
|
8762 |
-
"Si vous avez des questions, veuillez poster un commentaire sur <a> le forum "
|
8763 |
-
"d'assistance </a> et nous y répondrons dans les 24 heures la plupart du "
|
8764 |
-
"temps."
|
8765 |
-
|
8766 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8767 |
msgctxt "admin infometabox"
|
8768 |
msgid "Renewal url (copy & paste)"
|
@@ -9051,6 +8966,44 @@ msgctxt "send-access-keys"
|
|
9051 |
msgid "Continue"
|
9052 |
msgstr "Continuer"
|
9053 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9054 |
#, fuzzy
|
9055 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
9056 |
#~ msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-02 19:38:07+00:00\n"
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
92 |
msgid "Directory"
|
93 |
msgstr "Annuaire"
|
94 |
|
95 |
+
#: includes/admin/class-admin.php:312
|
96 |
#, fuzzy
|
97 |
msgid "Fee Plans"
|
98 |
msgstr "Plan tarifaire"
|
99 |
|
100 |
+
#: includes/admin/class-admin.php:315
|
101 |
#, fuzzy
|
102 |
msgid "Form Fields"
|
103 |
msgstr "champ de formulaires"
|
104 |
|
105 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
106 |
+
#: includes/licensing.php:227
|
107 |
#, fuzzy
|
108 |
msgid "Modules"
|
109 |
msgstr "Tous les (modules installés)"
|
232 |
msgstr "Montant"
|
233 |
|
234 |
#: includes/admin/controllers/class-admin-fees.php:49
|
235 |
+
#: includes/admin/helpers/tables/class-fees-table.php:65
|
236 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
237 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
238 |
#, fuzzy
|
270 |
msgstr "Frais mis à jour."
|
271 |
|
272 |
#: includes/admin/controllers/class-admin-listings.php:185
|
273 |
+
#: includes/controllers/pages/class-submit-listing.php:518
|
274 |
#: templates/email/listing-reported.tpl.php:7
|
275 |
msgid "Listing Information"
|
276 |
msgstr "Information sur l'annonce"
|
320 |
"Champs\" ou laissez le plugin le faire pour vous automatiquement."
|
321 |
|
322 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
323 |
+
#: includes/controllers/pages/class-submit-listing.php:848
|
324 |
#, fuzzy
|
325 |
msgid "Go to \"Form Fields\""
|
326 |
msgstr "Aller à \"Gestion des Champs\""
|
327 |
|
328 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
329 |
+
#: includes/helpers/functions/general.php:1366
|
330 |
+
#: includes/helpers/functions/general.php:1371
|
331 |
#, fuzzy
|
332 |
msgid "Go back"
|
333 |
msgstr "Non, reviens"
|
440 |
msgstr "Pourquoi avez-vous désinstallé le plugin Business Directory?"
|
441 |
|
442 |
#: includes/admin/controllers/class-settings-admin.php:536
|
443 |
+
#: includes/admin/helpers/tables/class-fees-table.php:174
|
444 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
445 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
446 |
#: templates/admin/payments-note.tpl.php:14
|
447 |
+
#: templates/admin/themes-item.tpl.php:66
|
448 |
#: templates/parts/listing-buttons.tpl.php:31
|
449 |
#: templates/parts/listing-buttons.tpl.php:65
|
450 |
#, fuzzy
|
498 |
msgstr "Installé"
|
499 |
|
500 |
#: includes/admin/helpers/class-modules-list.php:187
|
501 |
+
#: includes/admin/helpers/tables/class-fees-table.php:284
|
502 |
+
#: templates/admin/themes-item.tpl.php:41
|
503 |
#, fuzzy
|
504 |
msgid "Active"
|
505 |
msgstr "Actif"
|
511 |
|
512 |
#: includes/admin/helpers/class-modules-list.php:225
|
513 |
#: includes/controllers/class-smtp.php:317
|
514 |
+
#: templates/admin/themes-item.tpl.php:61
|
515 |
#, fuzzy
|
516 |
msgid "Activate"
|
517 |
msgstr "Activer"
|
518 |
|
519 |
#: includes/admin/helpers/class-modules-list.php:235
|
520 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:275
|
521 |
#, fuzzy
|
522 |
msgid "Upgrade Now"
|
523 |
msgstr "Mettre à jour vers %s"
|
537 |
|
538 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
539 |
#, fuzzy
|
540 |
+
msgid "Order"
|
541 |
+
msgstr "Ordre"
|
542 |
+
|
543 |
+
#: includes/admin/helpers/tables/class-fees-table.php:62
|
544 |
+
#, fuzzy
|
545 |
msgid "Plan Details"
|
546 |
msgstr "Détails des plans"
|
547 |
|
548 |
+
#: includes/admin/helpers/tables/class-fees-table.php:63
|
549 |
#, fuzzy
|
550 |
msgid "Pricing"
|
551 |
msgstr "Prix"
|
552 |
|
553 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
554 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
555 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
556 |
#: includes/helpers/class-app.php:92
|
558 |
msgid "Listings"
|
559 |
msgstr "Listes"
|
560 |
|
561 |
+
#: includes/admin/helpers/tables/class-fees-table.php:153
|
562 |
#, fuzzy
|
563 |
msgid "Disable"
|
564 |
msgstr "Effacer les Frais"
|
565 |
|
566 |
+
#: includes/admin/helpers/tables/class-fees-table.php:159
|
567 |
#, fuzzy
|
568 |
msgid "Enable"
|
569 |
msgstr "Activer"
|
570 |
|
571 |
+
#: includes/admin/helpers/tables/class-fees-table.php:181
|
572 |
msgid "ID: %s"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
576 |
#, fuzzy
|
577 |
msgid "Paid Plan"
|
578 |
msgstr "Payé"
|
579 |
|
580 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
581 |
#, fuzzy
|
582 |
msgid "Free Plan"
|
583 |
msgstr "Plan tarifaire"
|
584 |
|
585 |
+
#: includes/admin/helpers/tables/class-fees-table.php:219
|
586 |
#, fuzzy
|
587 |
msgid "%1$s for %2$s"
|
588 |
msgstr "%s (ex. %s)"
|
589 |
|
590 |
+
#: includes/admin/helpers/tables/class-fees-table.php:282
|
|
|
591 |
#, fuzzy
|
592 |
msgid "Disabled"
|
593 |
msgstr "Effacer les Frais"
|
594 |
|
595 |
+
#: includes/admin/helpers/tables/class-fees-table.php:288
|
596 |
#: includes/helpers/functions/templates-ui.php:431
|
597 |
#, fuzzy
|
598 |
msgid "Default"
|
635 |
msgstr "Tables manquantes: %s"
|
636 |
|
637 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
638 |
+
#: includes/controllers/pages/class-submit-listing.php:1252
|
639 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
640 |
#: templates/listing-contactform.tpl.php:33
|
641 |
#: templates/listing-flagging-form.tpl.php:39
|
684 |
|
685 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
686 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
687 |
+
#: includes/controllers/pages/class-submit-listing.php:531
|
688 |
#, fuzzy
|
689 |
msgid "Terms and Conditions"
|
690 |
msgstr "Conditions d'utilisation"
|
925 |
msgid "URL"
|
926 |
msgstr "URL"
|
927 |
|
928 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1226
|
929 |
#, fuzzy
|
930 |
msgid "Thank you for your payment."
|
931 |
msgstr "Nous vous remercions pour votre paiement"
|
932 |
|
933 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1254
|
934 |
msgid ""
|
935 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
936 |
"collect payments in this currency."
|
940 |
msgstr[0] ""
|
941 |
msgstr[1] ""
|
942 |
|
943 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
944 |
#, fuzzy
|
945 |
msgid "Email Notifications"
|
946 |
msgstr "Notification mail"
|
947 |
|
948 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1347
|
949 |
#, fuzzy
|
950 |
msgid "Notify admin via email when..."
|
951 |
msgstr "Prévenir l'administrateur via courriel quand..."
|
952 |
|
953 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1365
|
954 |
#, fuzzy
|
955 |
msgid "CC this email address too"
|
956 |
msgstr "CC cette adresse mail aussi"
|
957 |
|
958 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
959 |
#, fuzzy
|
960 |
msgid ""
|
961 |
"You can modify the text template used for most of these emails in the "
|
964 |
"Vous pouvez modifier le modèle de texte utilisé pour la plupart de ces e-"
|
965 |
"mails ci-dessous."
|
966 |
|
967 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1379
|
968 |
#, fuzzy
|
969 |
msgid "Notify users via email when..."
|
970 |
msgstr "Prévenir les utilisateurs via courriel quand..."
|
971 |
|
972 |
#. translators: %s: email shortcode
|
973 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1446
|
974 |
#, fuzzy
|
975 |
msgid "Email: %s"
|
976 |
msgstr "E-Mail: %s"
|
977 |
|
978 |
#. translators: %s: phone shortcode
|
979 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1449
|
980 |
#, fuzzy
|
981 |
msgid "Phone Number: %s"
|
982 |
msgstr "Numéro de téléphone"
|
983 |
|
984 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
985 |
#, fuzzy
|
986 |
msgid "Sender's email address"
|
987 |
msgstr "Adresse e-mail non valide"
|
988 |
|
989 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1462
|
990 |
#, fuzzy
|
991 |
msgid "Sender's phone number"
|
992 |
msgstr "Nom de l'auteur"
|
993 |
|
994 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1526
|
995 |
#, fuzzy
|
996 |
msgid "Renewal and expiration"
|
997 |
msgstr "%d semaine après expiration"
|
998 |
|
999 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1662
|
1000 |
#: templates/admin/uninstall-complete.tpl.php:4
|
1001 |
msgid "Uninstall"
|
1002 |
msgstr "Désinstaller"
|
1105 |
|
1106 |
#. translators: %s: Status name
|
1107 |
#: includes/admin/views/modules/list.php:63
|
1108 |
+
#: templates/admin/themes-item.tpl.php:50
|
1109 |
#, fuzzy
|
1110 |
msgid "Status: %s"
|
1111 |
msgstr "Statut:"
|
1279 |
msgid "View All Listings"
|
1280 |
msgstr "Voir toutes les annonces"
|
1281 |
|
1282 |
+
#: includes/class-payment-gateways.php:144
|
|
|
1283 |
msgid ""
|
1284 |
+
"You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s "
|
1285 |
+
"to set up a gateway. Until you do this, only free plans will be available."
|
|
|
1286 |
msgstr ""
|
1287 |
|
1288 |
#: includes/class-wpbdp.php:369
|
1309 |
"Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
|
1310 |
"erreurs et soumettre à nouveau."
|
1311 |
|
1312 |
+
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:322
|
1313 |
#, fuzzy
|
1314 |
msgid "Could not find image ID"
|
1315 |
msgstr "Impossible de mettre à jour le thème: %s"
|
1519 |
"Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
|
1520 |
"publiée."
|
1521 |
|
1522 |
+
#: includes/controllers/pages/class-submit-listing.php:564
|
1523 |
#, fuzzy
|
1524 |
msgid "Listing Images"
|
1525 |
msgstr "Liste des images"
|
1526 |
|
1527 |
+
#: includes/controllers/pages/class-submit-listing.php:632
|
1528 |
#, fuzzy
|
1529 |
msgid "Account Creation"
|
1530 |
msgstr "Création de compte"
|
1531 |
|
1532 |
+
#: includes/controllers/pages/class-submit-listing.php:831
|
1533 |
#, fuzzy
|
1534 |
msgid "Go to \"Fee Plans\""
|
1535 |
msgstr "Plan tarifaire"
|
1536 |
|
1537 |
+
#: includes/controllers/pages/class-submit-listing.php:887
|
1538 |
#, fuzzy
|
1539 |
msgid "Please choose a fee plan."
|
1540 |
msgstr "(Veuillez choisir un tarif ci-dessus)"
|
1541 |
|
1542 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1543 |
#, fuzzy
|
1544 |
msgid "Please check the form for errors, correct them and submit again."
|
1545 |
msgstr ""
|
1546 |
"Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
|
1547 |
"erreurs et soumettre à nouveau."
|
1548 |
|
1549 |
+
#: includes/controllers/pages/class-submit-listing.php:1236
|
1550 |
#, fuzzy
|
1551 |
msgid "Create a user account on this site"
|
1552 |
msgstr "Créer un compte utilisateur sur ce site"
|
1553 |
|
1554 |
+
#: includes/controllers/pages/class-submit-listing.php:1243
|
1555 |
#, fuzzy
|
1556 |
msgid "Username"
|
1557 |
msgstr "Nom d'utilisateur (login) :"
|
1558 |
|
1559 |
+
#: includes/controllers/pages/class-submit-listing.php:1265
|
1560 |
#, fuzzy
|
1561 |
msgid "Clear Form"
|
1562 |
msgstr "Effacer le formulaire"
|
1878 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: includes/helpers/functions/general.php:568
|
|
|
1882 |
msgid "Free"
|
1883 |
msgstr "Gratuit"
|
1884 |
|
1893 |
msgstr "Gérer annonces payées"
|
1894 |
|
1895 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1896 |
+
#: includes/licensing.php:150
|
1897 |
msgid ""
|
1898 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1899 |
"get updates."
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: includes/licensing.php:203 includes/licensing.php:206
|
1903 |
msgid "Licenses"
|
1904 |
msgstr "Licences"
|
1905 |
|
1906 |
+
#: includes/licensing.php:273
|
1907 |
msgid "Build more powerful directories"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: includes/licensing.php:274
|
1911 |
msgid ""
|
1912 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: includes/licensing.php:276
|
1916 |
#, fuzzy
|
1917 |
msgid "Already purchased?"
|
1918 |
msgstr "Déjà installé."
|
1919 |
|
1920 |
#. translators: %s: item type.
|
1921 |
+
#: includes/licensing.php:294
|
1922 |
msgid "%s will not get updates until license is reauthorized."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: includes/licensing.php:315
|
1926 |
#, fuzzy
|
1927 |
msgid "Enter License Key here"
|
1928 |
msgstr "Entrer la clé de licence"
|
1929 |
|
1930 |
+
#: includes/licensing.php:316
|
1931 |
#, fuzzy
|
1932 |
msgid "Authorize"
|
1933 |
msgstr "Activer Authorize.net"
|
1934 |
|
1935 |
+
#: includes/licensing.php:420
|
1936 |
#, fuzzy
|
1937 |
msgid "Invalid item ID"
|
1938 |
msgstr "ID d'élément non valide"
|
1939 |
|
1940 |
+
#: includes/licensing.php:433
|
1941 |
#, fuzzy
|
1942 |
msgid "No license key provided"
|
1943 |
msgstr "Aucune clé de licence fournie"
|
1944 |
|
1945 |
+
#: includes/licensing.php:482 includes/licensing.php:520
|
1946 |
#, fuzzy
|
1947 |
msgid "License key is invalid"
|
1948 |
msgstr "La clé de licence est invalide"
|
1949 |
|
1950 |
+
#: includes/licensing.php:486
|
1951 |
#, fuzzy
|
1952 |
msgid "Deactivation failed"
|
1953 |
msgstr "La désactivation a échoué"
|
1954 |
|
1955 |
+
#: includes/licensing.php:531
|
1956 |
#, fuzzy
|
1957 |
msgid "The license key was revoked."
|
1958 |
msgstr "Aucune clé de licence fournie"
|
1959 |
|
1960 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1961 |
+
#: includes/licensing.php:535
|
1962 |
#, fuzzy
|
1963 |
msgid ""
|
1964 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1971 |
"technique</support-link> et demandez-leur d'ajouter votre adresse IP <ip-"
|
1972 |
"address> à la liste blanche."
|
1973 |
|
1974 |
+
#: includes/licensing.php:598
|
1975 |
#, fuzzy
|
1976 |
msgid ""
|
1977 |
"It was not possible to establish a connection with the Business Directory "
|
1980 |
"Il n'a pas été possible d'établir une connexion avec le serveur de Business "
|
1981 |
"Directory. La connexion a échoué avec l'erreur suivante:"
|
1982 |
|
1983 |
+
#: includes/licensing.php:611
|
1984 |
#, fuzzy
|
1985 |
msgid ""
|
1986 |
"It was not possible to establish a connection with the Business Directory "
|
1990 |
"Directory. Un problème est survenu lors de l'établissement de liaison SSL / "
|
1991 |
"TLS:"
|
1992 |
|
1993 |
+
#: includes/licensing.php:658
|
1994 |
#, fuzzy
|
1995 |
msgid ""
|
1996 |
"It looks like your server is not authorized to make outgoing requests to "
|
2001 |
"aux serveurs de Business Directory. Contactez le support technique et "
|
2002 |
"demandez-leur d'ajouter votre adresse IP <ip-address> à la liste blanche."
|
2003 |
|
2004 |
+
#: includes/licensing.php:752
|
2005 |
#, fuzzy
|
2006 |
msgid "Business Directory license key is missing."
|
2007 |
msgstr "Business Directory - Clé de licence expirée"
|
2008 |
|
2009 |
+
#: includes/licensing.php:753
|
2010 |
#, fuzzy
|
2011 |
msgid "Business Directory license key has expired"
|
2012 |
msgstr "Business Directory - Clé de licence expirée"
|
2013 |
|
2014 |
+
#: includes/licensing.php:754
|
2015 |
#, fuzzy
|
2016 |
msgid "Could not verify Business Directory license."
|
2017 |
msgstr "Aider à améliorer Business Directory"
|
2018 |
|
2019 |
+
#: includes/licensing.php:765
|
2020 |
#, fuzzy
|
2021 |
msgid "Review license keys"
|
2022 |
msgstr "Renouveller la clé de licence"
|
2023 |
|
2024 |
+
#: includes/licensing.php:880
|
2025 |
msgid "Missing data. Please reload this page and try again."
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: includes/licensing.php:885
|
2029 |
#, fuzzy
|
2030 |
msgid "Please enter a license key."
|
2031 |
msgstr "S'il vous plaît entrer une clé de licence."
|
2073 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2074 |
msgstr "Le fichier ZIP n'est pas un fichier de thème valide."
|
2075 |
|
2076 |
+
#: includes/utils.php:341
|
2077 |
#, fuzzy
|
2078 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2079 |
msgstr "La taille du fichier (%s) excède la taille maximale permise de %s"
|
2080 |
|
2081 |
+
#: includes/utils.php:350
|
2082 |
#, fuzzy
|
2083 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2084 |
msgstr ""
|
2448 |
msgid "Add New Listing Fee"
|
2449 |
msgstr "Ajouter de nouveaux droits d'inscription"
|
2450 |
|
2451 |
+
#: templates/admin/fees-index.tpl.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2452 |
#, fuzzy
|
2453 |
msgid "Order fees on the frontend by:"
|
2454 |
msgstr "Ordonner les honoraires dans l'interface par:"
|
2455 |
|
2456 |
+
#: templates/admin/fees-index.tpl.php:30
|
2457 |
#, fuzzy
|
2458 |
msgid "↑ Ascending"
|
2459 |
msgstr "↑ Ascendant"
|
2460 |
|
2461 |
+
#: templates/admin/fees-index.tpl.php:31
|
2462 |
#, fuzzy
|
2463 |
msgid "↓ Descending"
|
2464 |
msgstr "↓ Descendant"
|
2465 |
|
2466 |
+
#: templates/admin/fees-index.tpl.php:39
|
2467 |
#, fuzzy
|
2468 |
msgid "Drag and drop to re-order fees."
|
2469 |
msgstr "Glisser-déposer pour réorganiser les frais."
|
2470 |
|
|
|
|
|
|
|
|
|
|
|
2471 |
#: templates/admin/fees-index.tpl.php:67
|
|
|
|
|
|
|
|
|
2472 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: templates/admin/fees-index.tpl.php:69
|
2476 |
msgid "Add a payment gateway to increase conversion rates"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
#. translators: %s: payment gateway name */
|
2480 |
+
#: templates/admin/fees-index.tpl.php:88
|
2481 |
msgid "Add the %s gateway as a payment option."
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: templates/admin/fees-index.tpl.php:94
|
2485 |
#, fuzzy
|
2486 |
msgid "Upgrade"
|
2487 |
msgstr "Mettre à jour vers %s"
|
2488 |
|
2489 |
+
#: templates/admin/fees-index.tpl.php:102
|
2490 |
msgid "Set up Authorize.net as a payment option."
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: templates/admin/fees-index.tpl.php:105
|
2494 |
msgid "Set Up"
|
2495 |
msgstr ""
|
2496 |
|
2524 |
msgid "Delete Field"
|
2525 |
msgstr "Effacer le champ"
|
2526 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2527 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2528 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2529 |
#: templates/login.tpl.php:71
|
2845 |
msgstr ""
|
2846 |
"Nouvelle version disponible (<b>%s</b>). <a>Mettre à jour maintenant.</a>"
|
2847 |
|
2848 |
+
#: templates/admin/themes-item.tpl.php:45
|
2849 |
#, fuzzy
|
2850 |
msgid "Inactive"
|
2851 |
msgstr "Actif"
|
3916 |
msgid "Fee \"%s\" deleted."
|
3917 |
msgstr "Frais \"%s\" effacé."
|
3918 |
|
3919 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3920 |
+
#, fuzzy
|
3921 |
+
msgctxt "fees admin"
|
3922 |
+
msgid "Fee enabled."
|
3923 |
+
msgstr "Frais désactivé."
|
3924 |
+
|
3925 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3926 |
msgctxt "fees admin"
|
3927 |
msgid "Fee disabled."
|
3928 |
msgstr "Frais désactivé."
|
3937 |
msgid "fees"
|
3938 |
msgstr "frais"
|
3939 |
|
3940 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3941 |
msgctxt "fees admin"
|
3942 |
msgid "Attributes"
|
3943 |
msgstr "Attributs"
|
3944 |
|
3945 |
+
#: includes/admin/helpers/tables/class-fees-table.php:137
|
3946 |
msgctxt "fees admin"
|
3947 |
msgid "Edit"
|
3948 |
msgstr "Editer"
|
3949 |
|
3950 |
+
#: includes/admin/helpers/tables/class-fees-table.php:207
|
3951 |
msgctxt "fees admin"
|
3952 |
msgid "Variable"
|
3953 |
msgstr "Variable"
|
3954 |
|
3955 |
+
#: includes/admin/helpers/tables/class-fees-table.php:212
|
3956 |
#, fuzzy
|
3957 |
msgctxt "fees admin"
|
3958 |
msgid "%1$s + %2$s per category"
|
3959 |
msgstr "%s + %s par catégorie"
|
3960 |
|
3961 |
+
#: includes/admin/helpers/tables/class-fees-table.php:231
|
3962 |
msgctxt "fees admin"
|
3963 |
msgid "Forever"
|
3964 |
msgstr "Pour toujours"
|
3965 |
|
3966 |
+
#: includes/admin/helpers/tables/class-fees-table.php:233
|
3967 |
msgctxt "fees admin"
|
3968 |
msgid "%d day"
|
3969 |
msgid_plural "%d days"
|
3970 |
msgstr[0] "%d jour"
|
3971 |
msgstr[1] "%d jours"
|
3972 |
|
3973 |
+
#: includes/admin/helpers/tables/class-fees-table.php:263
|
3974 |
msgctxt "fees admin"
|
3975 |
msgid "All categories"
|
3976 |
msgstr "Toutes catégories"
|
3977 |
|
3978 |
+
#: includes/admin/helpers/tables/class-fees-table.php:292
|
3979 |
msgctxt "fees admin"
|
3980 |
msgid "Sticky"
|
3981 |
msgstr "Premium"
|
3982 |
|
3983 |
+
#: includes/admin/helpers/tables/class-fees-table.php:296
|
3984 |
msgctxt "fees admin"
|
3985 |
msgid "Recurring"
|
3986 |
msgstr "Récurrent"
|
3987 |
|
3988 |
+
#: includes/admin/helpers/tables/class-fees-table.php:300
|
3989 |
#, fuzzy
|
3990 |
msgctxt "fees admin"
|
3991 |
msgid "Private"
|
4164 |
msgid "Reported"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: includes/models/class-listing.php:961
|
4168 |
msgctxt "listing status"
|
4169 |
msgid "Unknown"
|
4170 |
msgstr "Inconnu"
|
4171 |
|
4172 |
+
#: includes/models/class-listing.php:962
|
4173 |
msgctxt "listing status"
|
4174 |
msgid "Legacy"
|
4175 |
msgstr "Don"
|
4176 |
|
4177 |
+
#: includes/models/class-listing.php:963
|
4178 |
msgctxt "listing status"
|
4179 |
msgid "Incomplete"
|
4180 |
msgstr "Incomplet"
|
4181 |
|
4182 |
+
#: includes/models/class-listing.php:964
|
4183 |
msgctxt "listing status"
|
4184 |
msgid "Pending Payment"
|
4185 |
msgstr "Paiement en attente"
|
4186 |
|
4187 |
+
#: includes/models/class-listing.php:965
|
4188 |
msgctxt "listing status"
|
4189 |
msgid "Complete"
|
4190 |
msgstr "Complet"
|
4191 |
|
4192 |
+
#: includes/models/class-listing.php:966
|
4193 |
msgctxt "listing status"
|
4194 |
msgid "Pending Upgrade"
|
4195 |
msgstr "En attente de mise à niveau"
|
4196 |
|
4197 |
+
#: includes/models/class-listing.php:967
|
4198 |
msgctxt "listing status"
|
4199 |
msgid "Expired"
|
4200 |
msgstr "Expiré"
|
4201 |
|
4202 |
+
#: includes/models/class-listing.php:968
|
4203 |
msgctxt "listing status"
|
4204 |
msgid "Pending Renewal"
|
4205 |
msgstr "Actives + En attente de renouvellement"
|
4206 |
|
4207 |
+
#: includes/models/class-listing.php:969
|
4208 |
msgctxt "listing status"
|
4209 |
msgid "Abandoned"
|
4210 |
msgstr "Abandonné"
|
4872 |
msgstr "Auteur"
|
4873 |
|
4874 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4875 |
+
#: includes/helpers/functions/general.php:1281
|
4876 |
msgctxt "admin settings"
|
4877 |
msgid "Date posted"
|
4878 |
msgstr "Date d'ajout"
|
4879 |
|
4880 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4881 |
+
#: includes/helpers/functions/general.php:1282
|
4882 |
msgctxt "admin settings"
|
4883 |
msgid "Date last modified"
|
4884 |
msgstr "Date de dernière modification"
|
5053 |
msgid "U.S. Dollar (USD)"
|
5054 |
msgstr "U.S. Dollar (USD)"
|
5055 |
|
5056 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
5057 |
msgctxt "admin settings"
|
5058 |
msgid "Show currency symbol on the left"
|
5059 |
msgstr "Afficher le symbole de devise à gauche"
|
5060 |
|
5061 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
5062 |
msgctxt "admin settings"
|
5063 |
msgid "Show currency symbol on the right"
|
5064 |
msgstr "Afficher le symbole de devise à droite"
|
5065 |
|
5066 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
5067 |
msgctxt "admin settings"
|
5068 |
msgid "Do not show currency symbol"
|
5069 |
msgstr "Ne pas montrer la devise"
|
5070 |
|
5071 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5072 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
5073 |
msgctxt "admin settings"
|
5074 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5075 |
msgstr ""
|
5076 |
|
5077 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
5078 |
#, fuzzy
|
5079 |
msgctxt "admin settings"
|
5080 |
msgid ""
|
5085 |
"cette heure. Vous pouvez également personnaliser <a> l'e-mail </a> que les "
|
5086 |
"utilisateurs reçoivent."
|
5087 |
|
5088 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1320
|
5089 |
msgctxt "admin settings"
|
5090 |
msgid "Try listing's email field first, then author's email."
|
5091 |
msgstr ""
|
5092 |
"Essayez d'abord le champ \"Adresse mail\" de l'annonce, puis l'adresse mail "
|
5093 |
"de l'auteur."
|
5094 |
|
5095 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1321
|
5096 |
msgctxt "admin settings"
|
5097 |
msgid "Try author's email first and then listing's email field."
|
5098 |
msgstr ""
|
5099 |
"Essayez d'abord l'adresse mail de l'auteur, puis le champ \"Adresse mail\" "
|
5100 |
"de l'annonce."
|
5101 |
|
5102 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1334
|
5103 |
msgctxt "admin settings"
|
5104 |
msgid "Plain (text/plain)"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1335
|
5108 |
msgctxt "admin settings"
|
5109 |
msgid "HTML (text/html)"
|
5110 |
msgstr ""
|
5111 |
|
5112 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1336
|
5113 |
msgctxt "admin settings"
|
5114 |
msgid "Both (multipart/alternative)"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1350
|
5118 |
msgctxt "admin settings"
|
5119 |
msgid "A new listing is submitted."
|
5120 |
msgstr "Une nouvelle annonce a été soumise."
|
5121 |
|
5122 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1351
|
5123 |
msgctxt "admin settings"
|
5124 |
msgid "A listing is edited."
|
5125 |
msgstr "Une annonce est éditée."
|
5126 |
|
5127 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
5128 |
msgctxt "admin settings"
|
5129 |
msgid "A listing expires."
|
5130 |
msgstr "Une annonce expire."
|
5131 |
|
5132 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
5133 |
#, fuzzy
|
5134 |
msgctxt "admin settings"
|
5135 |
msgid "A listing is renewed."
|
5136 |
msgstr "Une annonce est éditée."
|
5137 |
|
5138 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1354
|
5139 |
#, fuzzy
|
5140 |
msgctxt "admin settings"
|
5141 |
msgid "A listing payment is completed."
|
5142 |
msgstr "Une annonce est éditée."
|
5143 |
|
5144 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1355
|
5145 |
#, fuzzy
|
5146 |
msgctxt "admin settings"
|
5147 |
msgid "A listing has been reported as inappropriate."
|
5148 |
msgstr "L'annonce a été mise à jour."
|
5149 |
|
5150 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
5151 |
msgctxt "admin settings"
|
5152 |
msgid "A contact message is sent to a listing's owner."
|
5153 |
msgstr "Un message de contact est envoyé a un propriétaire d'annonce."
|
5154 |
|
5155 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
5156 |
msgctxt "admin settings"
|
5157 |
msgid "Their listing is submitted."
|
5158 |
msgstr "Leur annonce est soumise."
|
5159 |
|
5160 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1384
|
5161 |
msgctxt "admin settings"
|
5162 |
msgid "Their listing is approved/published."
|
5163 |
msgstr "Leur annonce est approuvée/publiée."
|
5164 |
|
5165 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1385
|
5166 |
#, fuzzy
|
5167 |
msgctxt "admin settings"
|
5168 |
msgid "A payment for their listing is completed."
|
5169 |
msgstr "Leur annonce est soumise."
|
5170 |
|
5171 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
5172 |
#, fuzzy
|
5173 |
msgctxt "admin settings"
|
5174 |
msgid "Their listing expired or is about to expire."
|
5175 |
msgstr "Leur annonce est soumise."
|
5176 |
|
5177 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1404
|
5178 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
5179 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
5180 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
5181 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1514
|
5182 |
msgctxt "admin settings"
|
5183 |
msgid "Listing's title"
|
5184 |
msgstr "Titre de l'annonce"
|
5185 |
|
5186 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1405
|
5187 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
5188 |
#, fuzzy
|
5189 |
msgctxt "admin settings"
|
5190 |
msgid "Listing's fee plan name"
|
5191 |
msgstr "Date d'expiration de l'annonce"
|
5192 |
|
5193 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1406
|
5194 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
5195 |
#, fuzzy
|
5196 |
msgctxt "admin settings"
|
5197 |
msgid "Listing's fee plan description"
|
5198 |
msgstr "Sélection des droits d'inscription"
|
5199 |
|
5200 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
5201 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
5202 |
#, fuzzy
|
5203 |
msgctxt "admin settings"
|
5204 |
msgid "Listing's fee plan details"
|
5205 |
msgstr "Date d'expiration de l'annonce"
|
5206 |
|
5207 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
5208 |
msgctxt "admin settings"
|
5209 |
msgid ""
|
5210 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
5213 |
"Votre annonce \"[listing]\" est maintenant disponible à [listing-url] et "
|
5214 |
"elle peut être vu par tout le monde."
|
5215 |
|
5216 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1424
|
5217 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1458
|
5218 |
msgctxt "admin settings"
|
5219 |
msgid "Listing's URL"
|
5220 |
msgstr "Url de l'annonce"
|
5221 |
|
5222 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1425
|
5223 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1465
|
5224 |
#, fuzzy
|
5225 |
msgctxt "admin settings"
|
5226 |
msgid "Listing's Access Key"
|
5227 |
msgstr "Liste des clés d'accès"
|
5228 |
|
5229 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
5230 |
#, fuzzy
|
5231 |
msgctxt "admin settings"
|
5232 |
msgid "Sender's name"
|
5233 |
msgstr "Nom de l'auteur"
|
5234 |
|
5235 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1463
|
5236 |
#, fuzzy
|
5237 |
msgctxt "admin settings"
|
5238 |
msgid "Contact message"
|
5239 |
msgstr "Lister des messages de contact"
|
5240 |
|
5241 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1464
|
5242 |
msgctxt "admin settings"
|
5243 |
msgid "Date and time the message was sent"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
5247 |
#, fuzzy
|
5248 |
msgctxt "admin settings"
|
5249 |
msgid "Payment items details."
|
5250 |
msgstr "Détails de paiement"
|
5251 |
|
5252 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
5253 |
msgctxt "admin settings"
|
5254 |
msgid "URL where user can review and print payment receipt."
|
5255 |
msgstr ""
|
5256 |
|
5257 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
5258 |
#, fuzzy
|
5259 |
msgctxt "admin settings"
|
5260 |
msgid "Gateway used to process listing's payment."
|
5261 |
msgstr "Impossible de procéder au paiement."
|
5262 |
|
5263 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1515
|
5264 |
msgctxt "admin settings"
|
5265 |
msgid "Checkout URL link"
|
5266 |
msgstr "Vérificateur de lien URL"
|
5267 |
|
5268 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1617
|
5269 |
#, fuzzy
|
5270 |
msgctxt "admin settings"
|
5271 |
msgid "Uploaded Image (no resize)"
|
5272 |
msgstr "Télécharger les images"
|
5273 |
|
5274 |
+
#: includes/helpers/functions/general.php:1279
|
5275 |
msgctxt "admin settings"
|
5276 |
msgid "User"
|
5277 |
msgstr "Utilisateur"
|
5278 |
|
5279 |
+
#: includes/helpers/functions/general.php:1280
|
5280 |
msgctxt "admin settings"
|
5281 |
msgid "User registration date"
|
5282 |
msgstr "Date d'expiration de l'annonce"
|
5499 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5500 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5501 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5502 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1301
|
5503 |
#: includes/admin/settings/class-settings.php:341
|
5504 |
msgctxt "settings"
|
5505 |
msgid "General Settings"
|
6114 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6115 |
msgstr ""
|
6116 |
|
6117 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1132
|
6118 |
msgctxt "settings"
|
6119 |
msgid "Fee Order"
|
6120 |
msgstr "Ordre des prix"
|
6121 |
|
6122 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1145
|
|
|
|
|
|
|
|
|
|
|
6123 |
msgctxt "settings"
|
6124 |
msgid "Put payment gateways in test mode?"
|
6125 |
msgstr "Passer les passerelles de paiement en mode test ?"
|
6129 |
msgid "Currency Code"
|
6130 |
msgstr "Code de devise"
|
6131 |
|
6132 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
6133 |
msgctxt "settings"
|
6134 |
msgid "Currency Symbol"
|
6135 |
msgstr "Devise"
|
6136 |
|
6137 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
6138 |
msgctxt "settings"
|
6139 |
msgid "Currency symbol display"
|
6140 |
msgstr "Affichage de la devise"
|
6141 |
|
6142 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
6143 |
msgctxt "settings"
|
6144 |
msgid "Include fee description in receipt?"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1225
|
6148 |
msgctxt "settings"
|
6149 |
msgid "Thank you for payment message"
|
6150 |
msgstr "Nous vous remercions pour votre paiement"
|
6151 |
|
6152 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1278
|
6153 |
msgctxt "settings"
|
6154 |
msgid "Ask users to come back for abandoned payments?"
|
6155 |
msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés ?"
|
6156 |
|
6157 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1289
|
6158 |
msgctxt "settings"
|
6159 |
msgid "Listing abandonment threshold (hours)"
|
6160 |
msgstr "Seuil d'abandon de l'annonce (heures)"
|
6161 |
|
6162 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1306
|
6163 |
msgctxt "settings"
|
6164 |
msgid "Display email address fields publicly?"
|
6165 |
msgstr "Affichage des champs d'adresses e-mail au public ?"
|
6166 |
|
6167 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1307
|
6168 |
msgctxt "settings"
|
6169 |
msgid ""
|
6170 |
"Shows the email address of the listing owner to all web users. NOT "
|
6175 |
"utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
|
6176 |
"question et permet aux spam bots de la récolter pour une utilisation future."
|
6177 |
|
6178 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1316
|
6179 |
msgctxt "settings"
|
6180 |
msgid "How to determine the listing's email address?"
|
6181 |
msgstr "Comment définir l'adresse e-mail de l'annonce ?"
|
6182 |
|
6183 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1317
|
6184 |
msgctxt "settings"
|
6185 |
msgid ""
|
6186 |
"This affects emails sent to listing owners via contact forms or when their "
|
6189 |
"Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
|
6190 |
"formulaire de contact ou quand leurs annonces expirent."
|
6191 |
|
6192 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1330
|
6193 |
msgctxt "settings"
|
6194 |
msgid "Email Content-Type header"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1331
|
6198 |
msgctxt "settings"
|
6199 |
msgid ""
|
6200 |
"Use this setting to control the format of the emails explicitly. Some "
|
6203 |
"then \"Both\"."
|
6204 |
msgstr ""
|
6205 |
|
6206 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
6207 |
msgctxt "settings"
|
6208 |
msgid "Templates"
|
6209 |
msgstr "Template d'E-Mail"
|
6210 |
|
6211 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1397
|
6212 |
msgctxt "settings"
|
6213 |
msgid "Email confirmation message"
|
6214 |
msgstr "Message de confirmation par E-Mail"
|
6215 |
|
6216 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1398
|
6217 |
msgctxt "settings"
|
6218 |
msgid "Sent after a listing has been submitted."
|
6219 |
msgstr "Envoyer après qu'une annonce ait été soumise."
|
6220 |
|
6221 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1416
|
6222 |
msgctxt "settings"
|
6223 |
msgid "Listing published message"
|
6224 |
msgstr "Message publié de l'annonce"
|
6225 |
|
6226 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1417
|
6227 |
msgctxt "settings"
|
6228 |
msgid "Sent when the listing has been published or approved by an admin."
|
6229 |
msgstr ""
|
6230 |
"Envoyé lorsque l'annonce a été publiée ou approuvée par un administrateur."
|
6231 |
|
6232 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
6233 |
msgctxt "settings"
|
6234 |
msgid "Listing Contact Message"
|
6235 |
msgstr "Lister des messages de contact"
|
6236 |
|
6237 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1435
|
6238 |
msgctxt "settings"
|
6239 |
msgid ""
|
6240 |
"Sent to listing owners when someone uses the contact form on their listing "
|
6243 |
"Envoyer aux propriétaires des annonces quand quelqu'un utilise le formulaire "
|
6244 |
"de contact sur leurs pages d'annonces."
|
6245 |
|
6246 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1475
|
6247 |
#, fuzzy
|
6248 |
msgctxt "settings"
|
6249 |
msgid "Payment completed message"
|
6250 |
msgstr "Paiement abandonné, message de rappel"
|
6251 |
|
6252 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
6253 |
#, fuzzy
|
6254 |
msgctxt "settings"
|
6255 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6257 |
"Envoyer après un certain temps lorsqu'un paiement en attente est abandonné "
|
6258 |
"par les utilisateurs."
|
6259 |
|
6260 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
6261 |
msgctxt "settings"
|
6262 |
msgid "Payment abandoned reminder message"
|
6263 |
msgstr "Paiement abandonné, message de rappel"
|
6264 |
|
6265 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1638
|
6266 |
msgctxt "settings"
|
6267 |
msgid "Cropped"
|
6268 |
msgstr ""
|
6278 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6279 |
msgstr "L'élément \"%s\" est déjà utilisé pour une autre taxinomie."
|
6280 |
|
6281 |
+
#: includes/licensing.php:245
|
6282 |
msgctxt "settings"
|
6283 |
msgid "Themes"
|
6284 |
msgstr "Thèmes"
|
6285 |
|
6286 |
+
#: includes/licensing.php:316 includes/licensing.php:317
|
6287 |
msgctxt "settings"
|
6288 |
msgid "Please wait..."
|
6289 |
msgstr "Veuillez attendre..."
|
6290 |
|
6291 |
+
#: includes/licensing.php:317
|
6292 |
#, fuzzy
|
6293 |
msgctxt "settings"
|
6294 |
msgid "Deauthorize"
|
6344 |
msgid "Could not delete theme directory. Check permissions."
|
6345 |
msgstr "Impossible de supprimer le dossier du thème. Vérifier les permissions."
|
6346 |
|
6347 |
+
#: includes/admin/controllers/class-themes-admin.php:240
|
6348 |
msgctxt "themes"
|
6349 |
msgid "Please upload a valid theme file."
|
6350 |
msgstr "Veuillez télécharger un fichier de thème valide."
|
6351 |
|
6352 |
+
#: includes/admin/controllers/class-themes-admin.php:249
|
6353 |
msgctxt "themes"
|
6354 |
msgid "Could not move \"%s\" to a temporary directory."
|
6355 |
msgstr "Impossible de déplacer \"%s\" vers un dossier temporaire."
|
6356 |
|
6357 |
+
#: includes/admin/controllers/class-themes-admin.php:335
|
6358 |
msgctxt "themes"
|
6359 |
msgid "Activate your <a>license key</a> to use this theme."
|
6360 |
msgstr "Activer votre <a>numéro de licence</a> pour utiliser ce thème."
|
6361 |
|
6362 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
6363 |
#, fuzzy
|
6364 |
msgctxt "themes"
|
6365 |
msgid "Invalid theme ID"
|
6366 |
msgstr "ID d'élément non valide"
|
6367 |
|
6368 |
+
#: includes/admin/controllers/class-themes-admin.php:384
|
6369 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6370 |
msgctxt "themes"
|
6371 |
msgid "Could not update theme: %s"
|
6797 |
msgstr "Corbeille"
|
6798 |
|
6799 |
#. translators: %s: url shortcode
|
6800 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
6801 |
msgctxt "contact email"
|
6802 |
msgid "You have received a reply from your listing at %s."
|
6803 |
msgstr "Vous avez reçu une réponse à votre annonce de %s."
|
6804 |
|
6805 |
#. translators: %s: name shortcode
|
6806 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
6807 |
msgctxt "contact email"
|
6808 |
msgid "Name: %s"
|
6809 |
msgstr "Nom: %s"
|
6810 |
|
6811 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1451
|
6812 |
msgctxt "contact email"
|
6813 |
msgid "Message:"
|
6814 |
msgstr "Message:"
|
6815 |
|
6816 |
#. translators: %s: date shortcode
|
6817 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1455
|
6818 |
msgctxt "contact email"
|
6819 |
msgid "Time: %s"
|
6820 |
msgstr "Date: %s"
|
7122 |
msgid "Add New Listing"
|
7123 |
msgstr "Ajouter une nouvelle annonce"
|
7124 |
|
7125 |
+
#: includes/models/class-listing.php:421
|
7126 |
#, fuzzy
|
7127 |
msgctxt "listing"
|
7128 |
msgid "Listing has no registered payments"
|
7129 |
msgstr "Date d'expiration de l'annonce"
|
7130 |
|
7131 |
+
#: includes/models/class-listing.php:430
|
7132 |
#, fuzzy
|
7133 |
msgctxt "listing"
|
7134 |
msgid "Can't delete payment"
|
7135 |
msgstr "Supprimer le paiement"
|
7136 |
|
7137 |
+
#: includes/models/class-listing.php:468
|
7138 |
msgctxt "listing"
|
7139 |
msgid "Listing expired"
|
7140 |
msgstr "Une annonce expire"
|
7141 |
|
7142 |
+
#: includes/models/class-listing.php:668
|
7143 |
msgctxt "listing"
|
7144 |
msgid "(Unavailable Plan)"
|
7145 |
msgstr "(Plan indisponible disponible)"
|
7146 |
|
7147 |
+
#: includes/models/class-listing.php:858
|
7148 |
#, fuzzy
|
7149 |
msgctxt "listing"
|
7150 |
msgid "Plan \"%s\" (recurring)"
|
7151 |
msgstr "(récurrent)"
|
7152 |
|
7153 |
+
#: includes/models/class-listing.php:860
|
7154 |
msgctxt "listing"
|
7155 |
msgid "Plan \"%s\""
|
7156 |
msgstr "Statut \"%s\""
|
7288 |
msgid "Enable %s?"
|
7289 |
msgstr "Activer %s?"
|
7290 |
|
7291 |
+
#: includes/class-payment-gateways.php:131
|
7292 |
msgctxt "payment-gateways"
|
7293 |
msgid ""
|
7294 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
7298 |
"passerelle ne sera pas disponible jusqu'à ce que les problèmes suivants sont "
|
7299 |
"résolus: <problems>."
|
7300 |
|
7301 |
+
#: includes/class-payment-gateways.php:133
|
7302 |
msgctxt "payment-gateways"
|
7303 |
msgid "Please check the <link>payment settings</link>."
|
7304 |
msgstr "Veuillez vérifier les <link>paramètres de paiement</link>."
|
7305 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7306 |
#: includes/class-recaptcha.php:32
|
7307 |
msgctxt "recaptcha"
|
7308 |
msgid "The reCAPTCHA wasn't entered correctly."
|
7534 |
"frontal votre site. Si cela ne correspond pas à votre souhait, cliquez </a> "
|
7535 |
"ici <a> pour modifier le paramétrage."
|
7536 |
|
7537 |
+
#: includes/controllers/pages/class-submit-listing.php:424
|
7538 |
msgctxt "templates"
|
7539 |
msgid ""
|
7540 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7543 |
"<b>Aperçu non disponible</b>. Avez-vous coché le paramètre \"Désactiver la "
|
7544 |
"soumission de l'annonce publique ?\" ?"
|
7545 |
|
7546 |
+
#: includes/controllers/pages/class-submit-listing.php:426
|
7547 |
msgctxt "templates"
|
7548 |
msgid ""
|
7549 |
"Listing submission has been disabled. Contact the administrator for details."
|
7550 |
msgstr ""
|
7551 |
|
7552 |
+
#: includes/controllers/pages/class-submit-listing.php:824
|
7553 |
msgctxt "templates"
|
7554 |
msgid ""
|
7555 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7556 |
"submit a listing. %s to create a fee plan"
|
7557 |
msgstr ""
|
7558 |
|
7559 |
+
#: includes/controllers/pages/class-submit-listing.php:838
|
7560 |
msgctxt "templates"
|
7561 |
msgid ""
|
7562 |
"Listing submission is not available at the moment. Contact the administrator "
|
7563 |
"for details."
|
7564 |
msgstr ""
|
7565 |
|
7566 |
+
#: includes/controllers/pages/class-submit-listing.php:841
|
7567 |
msgctxt "templates"
|
7568 |
msgid ""
|
7569 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
7571 |
"an existing field"
|
7572 |
msgstr ""
|
7573 |
|
7574 |
+
#: includes/controllers/pages/class-submit-listing.php:1286
|
7575 |
msgctxt "templates"
|
7576 |
msgid "Please agree to the Terms and Conditions."
|
7577 |
msgstr "Veuillez accepter les conditions d'utilisation."
|
7578 |
|
7579 |
+
#: includes/controllers/pages/class-submit-listing.php:1300
|
7580 |
msgctxt "templates"
|
7581 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7582 |
msgstr "J'accepte <a> Conditions générales </a>"
|
7583 |
|
7584 |
+
#: includes/helpers/functions/general.php:1362
|
7585 |
#, fuzzy
|
7586 |
msgctxt "templates"
|
7587 |
msgid "Return to results"
|
7930 |
msgid "You can't edit this listing."
|
7931 |
msgstr "Catégories pour cette annonce"
|
7932 |
|
7933 |
+
#: includes/controllers/pages/class-submit-listing.php:168
|
7934 |
msgctxt "submit listing"
|
7935 |
msgid ""
|
7936 |
"This listing can't be edited at this time because it has no fee plan "
|
7941 |
"frais n'est associé. S'il vous plaît <a>modifier l'annonce</a> sur le "
|
7942 |
"backend et l'associer à un plan de frais."
|
7943 |
|
7944 |
+
#: includes/controllers/pages/class-submit-listing.php:174
|
7945 |
msgctxt "submit listing"
|
7946 |
msgid ""
|
7947 |
"This listing can't be edited at this time. Please try again later or contact "
|
7950 |
"L'annuaire n'est pas disponible pour le moment. Veuillez réessayer dans "
|
7951 |
"quelques minutes ou contactez l'administrateur si le problème persiste."
|
7952 |
|
7953 |
+
#: includes/controllers/pages/class-submit-listing.php:198
|
7954 |
msgctxt "submit listing"
|
7955 |
msgid "You're logged in as admin, payment will be skipped."
|
7956 |
msgstr ""
|
7957 |
"Vous êtes connecté en tant qu'administrateur. Toutes les étapes de paiement "
|
7958 |
"seront passées."
|
7959 |
|
7960 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7961 |
#, fuzzy
|
7962 |
msgctxt "submit listing"
|
7963 |
msgid "Category selection"
|
7964 |
msgstr "Sélection de la catégorie"
|
7965 |
|
7966 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7967 |
msgctxt "submit listing"
|
7968 |
msgid "Category & plan selection"
|
7969 |
msgstr "Sélection Catégorie et plan"
|
7970 |
|
7971 |
+
#: includes/controllers/pages/class-submit-listing.php:821
|
7972 |
msgctxt "submit listing"
|
7973 |
msgid "Can not submit a listing at this moment. Please try again later."
|
7974 |
msgstr ""
|
7975 |
"Impossible de soumettre une liste en ce moment. Veuillez réessayer plus tard."
|
7976 |
|
7977 |
+
#: includes/controllers/pages/class-submit-listing.php:870
|
7978 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
7979 |
msgctxt "submit listing"
|
7980 |
msgid "Please select a category."
|
7981 |
msgstr "Veuillez sélectionner une catégorie."
|
7982 |
|
7983 |
+
#: includes/controllers/pages/class-submit-listing.php:893
|
7984 |
msgctxt "submit listing"
|
7985 |
msgid "Please choose a valid category for your plan."
|
7986 |
msgstr "Veuillez choisir une catégorie valide pour votre annonce."
|
7987 |
|
7988 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
7989 |
msgctxt "submit listing"
|
7990 |
msgid "Please choose a valid fee plan for your category selection."
|
7991 |
msgstr ""
|
7992 |
"S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
|
7993 |
"catégorie."
|
7994 |
|
7995 |
+
#: includes/controllers/pages/class-submit-listing.php:1206
|
7996 |
msgctxt "submit listing"
|
7997 |
msgid "Please enter your desired username."
|
7998 |
msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
|
7999 |
|
8000 |
+
#: includes/controllers/pages/class-submit-listing.php:1211
|
8001 |
msgctxt "submit listing"
|
8002 |
msgid "Please enter the e-mail for your new account."
|
8003 |
msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
|
8004 |
|
8005 |
+
#: includes/controllers/pages/class-submit-listing.php:1216
|
8006 |
msgctxt "submit listing"
|
8007 |
msgid "The username you chose is already in use. Please use a different one."
|
8008 |
msgstr ""
|
8009 |
"Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
|
8010 |
"utiliser un autre."
|
8011 |
|
8012 |
+
#: includes/controllers/pages/class-submit-listing.php:1221
|
8013 |
msgctxt "submit listing"
|
8014 |
msgid "The e-mail address you chose for your account is already in use."
|
8015 |
msgstr ""
|
8020 |
msgid "Listing submitted by admin. Payment skipped."
|
8021 |
msgstr "Annonce soumis par admin. Paiement sauté."
|
8022 |
|
8023 |
+
#: includes/controllers/pages/class-submit-listing.php:1161
|
8024 |
msgctxt "listing submit"
|
8025 |
msgid ""
|
8026 |
"Image upload is required, please provide at least one image and submit again."
|
8354 |
msgid "General"
|
8355 |
msgstr "Général"
|
8356 |
|
8357 |
+
#: includes/licensing.php:571
|
8358 |
msgctxt "licensing"
|
8359 |
msgid "Could not contact licensing server"
|
8360 |
msgstr "Impossible de contacter le serveur de licences"
|
8361 |
|
8362 |
+
#: includes/licensing.php:584
|
8363 |
#, fuzzy
|
8364 |
msgctxt "licensing"
|
8365 |
msgid ""
|
8370 |
"Directory. Un problème est survenu lors de l'établissement de liaison SSL / "
|
8371 |
"TLS:"
|
8372 |
|
8373 |
+
#: includes/licensing.php:586 includes/licensing.php:616
|
8374 |
msgctxt "licensing"
|
8375 |
msgid ""
|
8376 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8383 |
"version d'OpenSSL qui supporte TLSv1.2 (la version minimale avec le support "
|
8384 |
"est OpenSSL 1.0.1c)."
|
8385 |
|
8386 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8387 |
msgctxt "licensing"
|
8388 |
msgid ""
|
8389 |
"Upgrading your system will not only allow you to communicate with Business "
|
8395 |
"votre site Web à pouvoir interagir avec les services en utilisant les "
|
8396 |
"dernières normes de sécurité."
|
8397 |
|
8398 |
+
#: includes/licensing.php:590
|
8399 |
#, fuzzy
|
8400 |
msgctxt "licensing"
|
8401 |
msgid ""
|
8405 |
"Veuillez contacter votre fournisseur d'hébergement et demandez-lui de mettre "
|
8406 |
"à jour votre hébergement. Incluez ce message si nécessaire."
|
8407 |
|
8408 |
+
#: includes/licensing.php:620
|
8409 |
#, fuzzy
|
8410 |
msgctxt "licensing"
|
8411 |
msgid ""
|
8415 |
"Veuillez contacter votre fournisseur d'hébergement et demandez-lui de mettre "
|
8416 |
"à jour votre hébergement. Incluez ce message si nécessaire."
|
8417 |
|
8418 |
+
#: includes/licensing.php:656
|
8419 |
msgctxt "licensing"
|
8420 |
msgid "The server returned a 403 Forbidden error."
|
8421 |
msgstr "Le serveur a renvoyé une erreur 403 Forbidden."
|
8422 |
|
8423 |
+
#: includes/licensing.php:902
|
8424 |
msgctxt "licensing"
|
8425 |
msgid "Could not activate license: %s."
|
8426 |
msgstr "Impossible d'activer la licence: %s."
|
8427 |
|
8428 |
+
#: includes/licensing.php:907
|
8429 |
msgctxt "licensing"
|
8430 |
msgid "License activated"
|
8431 |
msgstr "Licence activée"
|
8432 |
|
8433 |
+
#: includes/licensing.php:939
|
8434 |
msgctxt "licensing"
|
8435 |
msgid "Could not deactivate license: %s."
|
8436 |
msgstr "Impossible de désactiver la licence: %s."
|
8437 |
|
8438 |
+
#: includes/licensing.php:941
|
8439 |
msgctxt "licensing"
|
8440 |
msgid "License deactivated"
|
8441 |
msgstr "Licence désactivée"
|
8442 |
|
8443 |
#. translators: "<module-name>" version <version-number> is not...
|
8444 |
+
#: includes/licensing.php:1181
|
8445 |
#, fuzzy
|
8446 |
msgctxt "deprecation"
|
8447 |
msgid ""
|
8463 |
msgstr[0] "Image %d autorisée."
|
8464 |
msgstr[1] "Images autorisées"
|
8465 |
|
8466 |
+
#: includes/models/class-fee-plan.php:387
|
8467 |
msgctxt "fees-api"
|
8468 |
msgid "Fee label is required."
|
8469 |
msgstr "Une étiquette de frais est requise."
|
8470 |
|
8471 |
+
#: includes/models/class-fee-plan.php:393
|
8472 |
msgctxt "fees-api"
|
8473 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8474 |
msgstr ""
|
8475 |
"La durée des frais d'annonce doit être un nombre inférieur à 10 ans (3650 "
|
8476 |
"jours)."
|
8477 |
|
8478 |
+
#: includes/models/class-fee-plan.php:398
|
8479 |
msgctxt "fees-api"
|
8480 |
msgid ""
|
8481 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
8483 |
"<a>fee plan</a> appropriately."
|
8484 |
msgstr ""
|
8485 |
|
8486 |
+
#: includes/models/class-fee-plan.php:401
|
8487 |
msgctxt "fees-api"
|
8488 |
msgid ""
|
8489 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
8557 |
msgid "Unkown error while uploading file."
|
8558 |
msgstr "Une erreur inconnue est survenu lors de l'upload du fichier."
|
8559 |
|
8560 |
+
#: includes/utils.php:335
|
8561 |
msgctxt "utils"
|
8562 |
msgid "Error while uploading file"
|
8563 |
msgstr "Erreur durant l'upload du fichier"
|
8564 |
|
8565 |
+
#: includes/utils.php:359 includes/utils.php:366
|
8566 |
msgctxt "utils"
|
8567 |
msgid "File type \"%s\" is not allowed"
|
8568 |
msgstr "Le type de fichier \"%s\" n'est pas autorisé"
|
8569 |
|
8570 |
+
#: includes/utils.php:585
|
8571 |
msgctxt "utils"
|
8572 |
msgid ""
|
8573 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8678 |
msgid "required"
|
8679 |
msgstr "requis"
|
8680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8681 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8682 |
msgctxt "admin infometabox"
|
8683 |
msgid "Renewal url (copy & paste)"
|
8966 |
msgid "Continue"
|
8967 |
msgstr "Continuer"
|
8968 |
|
8969 |
+
#, fuzzy
|
8970 |
+
#~ msgid "Payments are currently turned off."
|
8971 |
+
#~ msgstr "Les paiements sont actuellement désactivés."
|
8972 |
+
|
8973 |
+
#, fuzzy
|
8974 |
+
#~ msgid ""
|
8975 |
+
#~ "To manage fees you need to go to the %1$sManage Options - Payment%2$s "
|
8976 |
+
#~ "page and check the box next to 'Turn On Payments' under 'Payment "
|
8977 |
+
#~ "Settings'."
|
8978 |
+
#~ msgstr ""
|
8979 |
+
#~ "Pour régler le montant des honoraires, vous devez aller à la page "
|
8980 |
+
#~ "<a>Réglage des Options de Paiement</a> et activer."
|
8981 |
+
|
8982 |
+
#~ msgid "Paid"
|
8983 |
+
#~ msgstr "Payé"
|
8984 |
+
|
8985 |
+
#~ msgid "Manage Options"
|
8986 |
+
#~ msgstr "Gestion des options"
|
8987 |
+
|
8988 |
+
#~ msgid "Manage Paid Listings"
|
8989 |
+
#~ msgstr "Gérer annonces payées"
|
8990 |
+
|
8991 |
+
#~ msgctxt "settings"
|
8992 |
+
#~ msgid "Turn On payments?"
|
8993 |
+
#~ msgstr "Activer les paiements ?"
|
8994 |
+
|
8995 |
+
#~ msgctxt "payment-gateways"
|
8996 |
+
#~ msgid ""
|
8997 |
+
#~ "You have payments turned on but no gateway is active and properly "
|
8998 |
+
#~ "configured. Go to <link>Manage Options - Payment</link> to change the "
|
8999 |
+
#~ "payment settings. Until you change this, the directory will operate in "
|
9000 |
+
#~ "<i>Free Mode</i>."
|
9001 |
+
#~ msgstr ""
|
9002 |
+
#~ "Vous avez activé les paiements mais aucune passerelle n'est actif et "
|
9003 |
+
#~ "correctement configurée. Allez à <link> gérer les options - Paiement </"
|
9004 |
+
#~ "link> pour modifier les paramètres de paiement. Jusqu'à ce que vous "
|
9005 |
+
#~ "modifiez cela, le répertoire fonctionnera en <i> Mode libre </ i>."
|
9006 |
+
|
9007 |
#, fuzzy
|
9008 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
9009 |
#~ msgstr ""
|
languages/business-directory-plugin-it_IT.mo
CHANGED
Binary file
|
languages/business-directory-plugin-it_IT.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2022-
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -101,18 +101,18 @@ msgstr "Business Directory Admin"
|
|
101 |
msgid "Directory"
|
102 |
msgstr "Directory"
|
103 |
|
104 |
-
#: includes/admin/class-admin.php:312
|
105 |
#, fuzzy
|
106 |
msgid "Fee Plans"
|
107 |
msgstr "Piano tariffario"
|
108 |
|
109 |
-
#: includes/admin/class-admin.php:315
|
110 |
#, fuzzy
|
111 |
msgid "Form Fields"
|
112 |
msgstr "campi del modulo"
|
113 |
|
114 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
115 |
-
#: includes/licensing.php:
|
116 |
#, fuzzy
|
117 |
msgid "Modules"
|
118 |
msgstr "(Tutti i moduli)"
|
@@ -236,7 +236,7 @@ msgid "Amount"
|
|
236 |
msgstr "Importo"
|
237 |
|
238 |
#: includes/admin/controllers/class-admin-fees.php:49
|
239 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
240 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
241 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
242 |
#, fuzzy
|
@@ -274,7 +274,7 @@ msgid "Fee plan listings updated."
|
|
274 |
msgstr "Piano tariffario aggiornato."
|
275 |
|
276 |
#: includes/admin/controllers/class-admin-listings.php:185
|
277 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
278 |
#: templates/email/listing-reported.tpl.php:7
|
279 |
msgid "Listing Information"
|
280 |
msgstr "Informazioni sull'annuncio"
|
@@ -324,14 +324,14 @@ msgstr ""
|
|
324 |
"automaticamente."
|
325 |
|
326 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
327 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
328 |
#, fuzzy
|
329 |
msgid "Go to \"Form Fields\""
|
330 |
msgstr "Vai a \"Gestire i campi dei moduli\"."
|
331 |
|
332 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
333 |
-
#: includes/helpers/functions/general.php:
|
334 |
-
#: includes/helpers/functions/general.php:
|
335 |
#, fuzzy
|
336 |
msgid "Go back"
|
337 |
msgstr "Va indietro"
|
@@ -444,11 +444,11 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
444 |
msgstr "Perché stai eliminando Business Directory Plugin?"
|
445 |
|
446 |
#: includes/admin/controllers/class-settings-admin.php:536
|
447 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
448 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
449 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
450 |
#: templates/admin/payments-note.tpl.php:14
|
451 |
-
#: templates/admin/themes-item.tpl.php:
|
452 |
#: templates/parts/listing-buttons.tpl.php:31
|
453 |
#: templates/parts/listing-buttons.tpl.php:65
|
454 |
#, fuzzy
|
@@ -502,8 +502,8 @@ msgid "Installed"
|
|
502 |
msgstr "Installato"
|
503 |
|
504 |
#: includes/admin/helpers/class-modules-list.php:187
|
505 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
506 |
-
#: templates/admin/themes-item.tpl.php:
|
507 |
#, fuzzy
|
508 |
msgid "Active"
|
509 |
msgstr "Attivo"
|
@@ -515,13 +515,13 @@ msgstr "Non installato"
|
|
515 |
|
516 |
#: includes/admin/helpers/class-modules-list.php:225
|
517 |
#: includes/controllers/class-smtp.php:317
|
518 |
-
#: templates/admin/themes-item.tpl.php:
|
519 |
#, fuzzy
|
520 |
msgid "Activate"
|
521 |
msgstr "Attiva"
|
522 |
|
523 |
#: includes/admin/helpers/class-modules-list.php:235
|
524 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
525 |
msgid "Upgrade Now"
|
526 |
msgstr ""
|
527 |
|
@@ -539,15 +539,20 @@ msgstr ""
|
|
539 |
|
540 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
541 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
542 |
msgid "Plan Details"
|
543 |
msgstr "Dettagli del piano"
|
544 |
|
545 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
546 |
#, fuzzy
|
547 |
msgid "Pricing"
|
548 |
msgstr "Prezzi"
|
549 |
|
550 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
551 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
552 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
553 |
#: includes/helpers/class-app.php:92
|
@@ -555,42 +560,41 @@ msgstr "Prezzi"
|
|
555 |
msgid "Listings"
|
556 |
msgstr "Annunci"
|
557 |
|
558 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
559 |
#, fuzzy
|
560 |
msgid "Disable"
|
561 |
msgstr "Disabilita"
|
562 |
|
563 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
564 |
#, fuzzy
|
565 |
msgid "Enable"
|
566 |
msgstr "Abilita"
|
567 |
|
568 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
569 |
msgid "ID: %s"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
573 |
#, fuzzy
|
574 |
msgid "Paid Plan"
|
575 |
msgstr "Pagato come amministratore"
|
576 |
|
577 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
578 |
#, fuzzy
|
579 |
msgid "Free Plan"
|
580 |
msgstr "Piano tariffario"
|
581 |
|
582 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
583 |
#, fuzzy
|
584 |
msgid "%1$s for %2$s"
|
585 |
msgstr "%s (esempio %s)"
|
586 |
|
587 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
588 |
-
#: includes/admin/helpers/tables/class-fees-table.php:293
|
589 |
#, fuzzy
|
590 |
msgid "Disabled"
|
591 |
msgstr "Disabilitato"
|
592 |
|
593 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
594 |
#: includes/helpers/functions/templates-ui.php:431
|
595 |
#, fuzzy
|
596 |
msgid "Default"
|
@@ -634,7 +638,7 @@ msgid "Missing tables: %s"
|
|
634 |
msgstr "Tabelle mancanti: %s"
|
635 |
|
636 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
637 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
638 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
639 |
#: templates/listing-contactform.tpl.php:33
|
640 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -682,7 +686,7 @@ msgstr "Sì, e renderlo obbligatorio"
|
|
682 |
|
683 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
684 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
685 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
686 |
#, fuzzy
|
687 |
msgid "Terms and Conditions"
|
688 |
msgstr "Termini e Condizioni"
|
@@ -924,12 +928,12 @@ msgstr ""
|
|
924 |
msgid "URL"
|
925 |
msgstr "URL"
|
926 |
|
927 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
928 |
#, fuzzy
|
929 |
msgid "Thank you for your payment."
|
930 |
msgstr "Messaggio di ringraziamento per il pagamento"
|
931 |
|
932 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
933 |
msgid ""
|
934 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
935 |
"collect payments in this currency."
|
@@ -943,22 +947,22 @@ msgstr[1] ""
|
|
943 |
"Se si utilizzano questi gateway, si consiglia di disattivarli se si desidera "
|
944 |
"riscuotere i pagamenti in questa valuta."
|
945 |
|
946 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
947 |
#, fuzzy
|
948 |
msgid "Email Notifications"
|
949 |
msgstr "Notifiche di posta elettronica"
|
950 |
|
951 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
952 |
#, fuzzy
|
953 |
msgid "Notify admin via email when..."
|
954 |
msgstr "Notifica admin via e-mail quando ..."
|
955 |
|
956 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
957 |
#, fuzzy
|
958 |
msgid "CC this email address too"
|
959 |
msgstr "CC anche questo indirizzo e-mail"
|
960 |
|
961 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
962 |
#, fuzzy
|
963 |
msgid ""
|
964 |
"You can modify the text template used for most of these emails in the "
|
@@ -967,39 +971,39 @@ msgstr ""
|
|
967 |
"È possibile modificare il modello di testo utilizzato per la maggior parte "
|
968 |
"di queste e-mail nella scheda <templates-link>Modelli</templates-link>."
|
969 |
|
970 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
971 |
#, fuzzy
|
972 |
msgid "Notify users via email when..."
|
973 |
msgstr "Avvisa gli utenti via e-mail quando....."
|
974 |
|
975 |
#. translators: %s: email shortcode
|
976 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
977 |
#, fuzzy
|
978 |
msgid "Email: %s"
|
979 |
msgstr "E-Mail: %s"
|
980 |
|
981 |
#. translators: %s: phone shortcode
|
982 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
983 |
#, fuzzy
|
984 |
msgid "Phone Number: %s"
|
985 |
msgstr "Numero di telefono"
|
986 |
|
987 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
988 |
#, fuzzy
|
989 |
msgid "Sender's email address"
|
990 |
msgstr "Indirizzo e-mail del mittente"
|
991 |
|
992 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
993 |
#, fuzzy
|
994 |
msgid "Sender's phone number"
|
995 |
msgstr "Nome del mittente"
|
996 |
|
997 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
998 |
#, fuzzy
|
999 |
msgid "Renewal and expiration"
|
1000 |
msgstr "%d settimana dopo la scadenza"
|
1001 |
|
1002 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1003 |
#: templates/admin/uninstall-complete.tpl.php:4
|
1004 |
msgid "Uninstall"
|
1005 |
msgstr "Disinstalla"
|
@@ -1105,7 +1109,7 @@ msgstr "Vedi"
|
|
1105 |
|
1106 |
#. translators: %s: Status name
|
1107 |
#: includes/admin/views/modules/list.php:63
|
1108 |
-
#: templates/admin/themes-item.tpl.php:
|
1109 |
#, fuzzy
|
1110 |
msgid "Status: %s"
|
1111 |
msgstr "Stato:"
|
@@ -1279,12 +1283,10 @@ msgstr "Aggiungi la quota di Donazione"
|
|
1279 |
msgid "View All Listings"
|
1280 |
msgstr "Visualizza tutti gli annunci"
|
1281 |
|
1282 |
-
|
1283 |
-
#: includes/class-payment-gateways.php:165
|
1284 |
msgid ""
|
1285 |
-
"You have
|
1286 |
-
"
|
1287 |
-
"to %1$sFee Plans%2$s to add or edit your fee plan(s)."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
#: includes/class-wpbdp.php:369
|
@@ -1307,7 +1309,7 @@ msgid ""
|
|
1307 |
"admin."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:
|
1311 |
#, fuzzy
|
1312 |
msgid "Could not find image ID"
|
1313 |
msgstr "Non è stato possibile aggiornare il tema: %s"
|
@@ -1517,44 +1519,44 @@ msgstr "Questo annuncio non è stato segnalato"
|
|
1517 |
msgid "This is just a preview. The listing has not been published yet."
|
1518 |
msgstr "Questa è solo un'anteprima. L'Annuncio non è ancora stato pubblicato."
|
1519 |
|
1520 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1521 |
#, fuzzy
|
1522 |
msgid "Listing Images"
|
1523 |
msgstr "Immagini annuncio"
|
1524 |
|
1525 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1526 |
#, fuzzy
|
1527 |
msgid "Account Creation"
|
1528 |
msgstr "Creazione account"
|
1529 |
|
1530 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1531 |
#, fuzzy
|
1532 |
msgid "Go to \"Fee Plans\""
|
1533 |
msgstr "Nessun piano tariffario"
|
1534 |
|
1535 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1536 |
#, fuzzy
|
1537 |
msgid "Please choose a fee plan."
|
1538 |
msgstr "(Si prega di scegliere un piano tariffario di cui sopra)"
|
1539 |
|
1540 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1541 |
#, fuzzy
|
1542 |
msgid "Please check the form for errors, correct them and submit again."
|
1543 |
msgstr ""
|
1544 |
"Qualcosa è andato storto. Si prega di controllare il modulo per eventuali "
|
1545 |
"errori, correggerli e ripresentarli di nuovo."
|
1546 |
|
1547 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1548 |
#, fuzzy
|
1549 |
msgid "Create a user account on this site"
|
1550 |
msgstr "Creare un account utente su questo sito"
|
1551 |
|
1552 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1553 |
#, fuzzy
|
1554 |
msgid "Username"
|
1555 |
msgstr "Nome utente:"
|
1556 |
|
1557 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1558 |
#, fuzzy
|
1559 |
msgid "Clear Form"
|
1560 |
msgstr "Cancella"
|
@@ -1879,8 +1881,7 @@ msgid ""
|
|
1879 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: includes/helpers/functions/general.php:
|
1883 |
-
#: templates/admin/fees-index.tpl.php:67
|
1884 |
msgid "Free"
|
1885 |
msgstr "Gratis"
|
1886 |
|
@@ -1895,72 +1896,72 @@ msgid "Manage Listings"
|
|
1895 |
msgstr "Gestione delle Donazioni ricevute"
|
1896 |
|
1897 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1898 |
-
#: includes/licensing.php:
|
1899 |
msgid ""
|
1900 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1901 |
"get updates."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: includes/licensing.php:
|
1905 |
msgid "Licenses"
|
1906 |
msgstr "Licenze"
|
1907 |
|
1908 |
-
#: includes/licensing.php:
|
1909 |
msgid "Build more powerful directories"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: includes/licensing.php:
|
1913 |
msgid ""
|
1914 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: includes/licensing.php:
|
1918 |
#, fuzzy
|
1919 |
msgid "Already purchased?"
|
1920 |
msgstr "Già installato."
|
1921 |
|
1922 |
#. translators: %s: item type.
|
1923 |
-
#: includes/licensing.php:
|
1924 |
msgid "%s will not get updates until license is reauthorized."
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: includes/licensing.php:
|
1928 |
#, fuzzy
|
1929 |
msgid "Enter License Key here"
|
1930 |
msgstr "Inserisci qui il codice di licenza"
|
1931 |
|
1932 |
-
#: includes/licensing.php:
|
1933 |
#, fuzzy
|
1934 |
msgid "Authorize"
|
1935 |
msgstr "Carta di Credito"
|
1936 |
|
1937 |
-
#: includes/licensing.php:
|
1938 |
#, fuzzy
|
1939 |
msgid "Invalid item ID"
|
1940 |
msgstr "ID articolo non valido"
|
1941 |
|
1942 |
-
#: includes/licensing.php:
|
1943 |
#, fuzzy
|
1944 |
msgid "No license key provided"
|
1945 |
msgstr "Nessuna chiave di licenza fornita"
|
1946 |
|
1947 |
-
#: includes/licensing.php:
|
1948 |
#, fuzzy
|
1949 |
msgid "License key is invalid"
|
1950 |
msgstr "La chiave di licenza non è valida"
|
1951 |
|
1952 |
-
#: includes/licensing.php:
|
1953 |
#, fuzzy
|
1954 |
msgid "Deactivation failed"
|
1955 |
msgstr "Disattivazione fallita"
|
1956 |
|
1957 |
-
#: includes/licensing.php:
|
1958 |
#, fuzzy
|
1959 |
msgid "The license key was revoked."
|
1960 |
msgstr "La chiave di licenza è stata revocata."
|
1961 |
|
1962 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1963 |
-
#: includes/licensing.php:
|
1964 |
#, fuzzy
|
1965 |
msgid ""
|
1966 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
@@ -1972,7 +1973,7 @@ msgstr ""
|
|
1972 |
"Business Directory</support-link> e fate loro sapere che la vostra licenza è "
|
1973 |
"stata segnalata come revocata dal software di licenza."
|
1974 |
|
1975 |
-
#: includes/licensing.php:
|
1976 |
#, fuzzy
|
1977 |
msgid ""
|
1978 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1981,7 +1982,7 @@ msgstr ""
|
|
1981 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
1982 |
"Directory. Il collegamento non è riuscito con il seguente errore:"
|
1983 |
|
1984 |
-
#: includes/licensing.php:
|
1985 |
#, fuzzy
|
1986 |
msgid ""
|
1987 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1990,7 +1991,7 @@ msgstr ""
|
|
1990 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
1991 |
"Directory. Si è verificato un problema nella stretta di mano SSL/TSL:"
|
1992 |
|
1993 |
-
#: includes/licensing.php:
|
1994 |
#, fuzzy
|
1995 |
msgid ""
|
1996 |
"It looks like your server is not authorized to make outgoing requests to "
|
@@ -2002,31 +2003,31 @@ msgstr ""
|
|
2002 |
"support-link> e chiedi loro di aggiungere il tuo indirizzo IP <ip-"
|
2003 |
"address>alla whitelist."
|
2004 |
|
2005 |
-
#: includes/licensing.php:
|
2006 |
#, fuzzy
|
2007 |
msgid "Business Directory license key is missing."
|
2008 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2009 |
|
2010 |
-
#: includes/licensing.php:
|
2011 |
#, fuzzy
|
2012 |
msgid "Business Directory license key has expired"
|
2013 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2014 |
|
2015 |
-
#: includes/licensing.php:
|
2016 |
#, fuzzy
|
2017 |
msgid "Could not verify Business Directory license."
|
2018 |
msgstr "Aiuta a migliorare la directory aziendale"
|
2019 |
|
2020 |
-
#: includes/licensing.php:
|
2021 |
#, fuzzy
|
2022 |
msgid "Review license keys"
|
2023 |
msgstr "Rivedere le mie chiavi di licenza"
|
2024 |
|
2025 |
-
#: includes/licensing.php:
|
2026 |
msgid "Missing data. Please reload this page and try again."
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: includes/licensing.php:
|
2030 |
#, fuzzy
|
2031 |
msgid "Please enter a license key."
|
2032 |
msgstr "Per favore inserisci una chiave di licenza."
|
@@ -2075,13 +2076,13 @@ msgstr "Abbandonato"
|
|
2075 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2076 |
msgstr "Il file ZIP non è un file tema BD valido."
|
2077 |
|
2078 |
-
#: includes/utils.php:
|
2079 |
#, fuzzy
|
2080 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2081 |
msgstr ""
|
2082 |
"La dimensione del file (%s) supera la dimensione massima del file di %s"
|
2083 |
|
2084 |
-
#: includes/utils.php:
|
2085 |
#, fuzzy
|
2086 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2087 |
msgstr ""
|
@@ -2461,75 +2462,49 @@ msgstr "Salva modifiche"
|
|
2461 |
msgid "Add New Listing Fee"
|
2462 |
msgstr "Aggiungere una nuovo canone per l'annuncio"
|
2463 |
|
2464 |
-
#: templates/admin/fees-index.tpl.php:
|
2465 |
-
#, fuzzy
|
2466 |
-
msgid "Payments are currently turned off."
|
2467 |
-
msgstr "I pagamenti sono attualmente disattivati."
|
2468 |
-
|
2469 |
-
#. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
|
2470 |
-
#: templates/admin/fees-index.tpl.php:21
|
2471 |
-
#, fuzzy
|
2472 |
-
msgid ""
|
2473 |
-
"To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
|
2474 |
-
"and check the box next to 'Turn On Payments' under 'Payment Settings'."
|
2475 |
-
msgstr ""
|
2476 |
-
"Per gestire le tasse devi andare alla pagina <a>Opzioni di gestione - "
|
2477 |
-
"Donazione</a> e selezionare la casella accanto a 'Attiva pagamenti' sotto "
|
2478 |
-
"'Impostazioni di pagamento'."
|
2479 |
-
|
2480 |
-
#: templates/admin/fees-index.tpl.php:34
|
2481 |
#, fuzzy
|
2482 |
msgid "Order fees on the frontend by:"
|
2483 |
msgstr "Ordina canoni sul frontend per:"
|
2484 |
|
2485 |
-
#: templates/admin/fees-index.tpl.php:
|
2486 |
#, fuzzy
|
2487 |
msgid "↑ Ascending"
|
2488 |
msgstr "↑ Ascendente"
|
2489 |
|
2490 |
-
#: templates/admin/fees-index.tpl.php:
|
2491 |
#, fuzzy
|
2492 |
msgid "↓ Descending"
|
2493 |
msgstr "↓ Discendente"
|
2494 |
|
2495 |
-
#: templates/admin/fees-index.tpl.php:
|
2496 |
#, fuzzy
|
2497 |
msgid "Drag and drop to re-order fees."
|
2498 |
msgstr "Trascinare e rilasciare per ordinare le Donazioni."
|
2499 |
|
2500 |
-
#. translators: %1$s is directory payment mode (Free or Paid)
|
2501 |
-
#: templates/admin/fees-index.tpl.php:66
|
2502 |
-
msgid "All fee plans may not be available in \"%1$s\" mode."
|
2503 |
-
msgstr ""
|
2504 |
-
|
2505 |
#: templates/admin/fees-index.tpl.php:67
|
2506 |
-
#, fuzzy
|
2507 |
-
msgid "Paid"
|
2508 |
-
msgstr "Pagato"
|
2509 |
-
|
2510 |
-
#: templates/admin/fees-index.tpl.php:92
|
2511 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: templates/admin/fees-index.tpl.php:
|
2515 |
msgid "Add a payment gateway to increase conversion rates"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
#. translators: %s: payment gateway name */
|
2519 |
-
#: templates/admin/fees-index.tpl.php:
|
2520 |
msgid "Add the %s gateway as a payment option."
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: templates/admin/fees-index.tpl.php:
|
2524 |
#, fuzzy
|
2525 |
msgid "Upgrade"
|
2526 |
msgstr "Avviare l'aggiornamento"
|
2527 |
|
2528 |
-
#: templates/admin/fees-index.tpl.php:
|
2529 |
msgid "Set up Authorize.net as a payment option."
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: templates/admin/fees-index.tpl.php:
|
2533 |
msgid "Set Up"
|
2534 |
msgstr ""
|
2535 |
|
@@ -2565,14 +2540,6 @@ msgstr "Sei sicuro di voler cancellare il campo \"%s\"?"
|
|
2565 |
msgid "Delete Field"
|
2566 |
msgstr "Elimina Campo"
|
2567 |
|
2568 |
-
#: templates/admin/home.tpl.php:55
|
2569 |
-
msgid "Manage Options"
|
2570 |
-
msgstr "Gestire le opzioni"
|
2571 |
-
|
2572 |
-
#: templates/admin/home.tpl.php:74
|
2573 |
-
msgid "Manage Paid Listings"
|
2574 |
-
msgstr "Gestione delle Donazioni ricevute"
|
2575 |
-
|
2576 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2577 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2578 |
#: templates/login.tpl.php:71
|
@@ -2909,7 +2876,7 @@ msgstr "Tema aggiornato."
|
|
2909 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2910 |
msgstr "Nuova versione disponibile (<b>%s</b>).. <a>Aggiorna ora.</a>"
|
2911 |
|
2912 |
-
#: templates/admin/themes-item.tpl.php:
|
2913 |
#, fuzzy
|
2914 |
msgid "Inactive"
|
2915 |
msgstr "Attivo"
|
@@ -3984,7 +3951,13 @@ msgctxt "fees admin"
|
|
3984 |
msgid "Fee \"%s\" deleted."
|
3985 |
msgstr "Canone \"%s\" soppresso."
|
3986 |
|
3987 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3988 |
msgctxt "fees admin"
|
3989 |
msgid "Fee disabled."
|
3990 |
msgstr "Canone disattivato."
|
@@ -3999,54 +3972,54 @@ msgctxt "fees admin"
|
|
3999 |
msgid "fees"
|
4000 |
msgstr "Canoni"
|
4001 |
|
4002 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4003 |
msgctxt "fees admin"
|
4004 |
msgid "Attributes"
|
4005 |
msgstr "Attributi"
|
4006 |
|
4007 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4008 |
msgctxt "fees admin"
|
4009 |
msgid "Edit"
|
4010 |
msgstr "Modifica"
|
4011 |
|
4012 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4013 |
msgctxt "fees admin"
|
4014 |
msgid "Variable"
|
4015 |
msgstr "Variabile"
|
4016 |
|
4017 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4018 |
msgctxt "fees admin"
|
4019 |
msgid "%1$s + %2$s per category"
|
4020 |
msgstr "%1$s + %2$s per categoria"
|
4021 |
|
4022 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4023 |
msgctxt "fees admin"
|
4024 |
msgid "Forever"
|
4025 |
msgstr "Per sempre"
|
4026 |
|
4027 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4028 |
msgctxt "fees admin"
|
4029 |
msgid "%d day"
|
4030 |
msgid_plural "%d days"
|
4031 |
msgstr[0] "%d giorno"
|
4032 |
msgstr[1] "%d giorni"
|
4033 |
|
4034 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4035 |
msgctxt "fees admin"
|
4036 |
msgid "All categories"
|
4037 |
msgstr "Tutte le categorie"
|
4038 |
|
4039 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4040 |
msgctxt "fees admin"
|
4041 |
msgid "Sticky"
|
4042 |
msgstr "Sticky"
|
4043 |
|
4044 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4045 |
msgctxt "fees admin"
|
4046 |
msgid "Recurring"
|
4047 |
msgstr "Ricorrente"
|
4048 |
|
4049 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4050 |
msgctxt "fees admin"
|
4051 |
msgid "Private"
|
4052 |
msgstr "Privato"
|
@@ -4220,47 +4193,47 @@ msgctxt "listing status"
|
|
4220 |
msgid "Reported"
|
4221 |
msgstr "Segnalato"
|
4222 |
|
4223 |
-
#: includes/models/class-listing.php:
|
4224 |
msgctxt "listing status"
|
4225 |
msgid "Unknown"
|
4226 |
msgstr "Sconosciuto"
|
4227 |
|
4228 |
-
#: includes/models/class-listing.php:
|
4229 |
msgctxt "listing status"
|
4230 |
msgid "Legacy"
|
4231 |
msgstr "Legacy"
|
4232 |
|
4233 |
-
#: includes/models/class-listing.php:
|
4234 |
msgctxt "listing status"
|
4235 |
msgid "Incomplete"
|
4236 |
msgstr "Incompleto"
|
4237 |
|
4238 |
-
#: includes/models/class-listing.php:
|
4239 |
msgctxt "listing status"
|
4240 |
msgid "Pending Payment"
|
4241 |
msgstr "Pagamento in attesa"
|
4242 |
|
4243 |
-
#: includes/models/class-listing.php:
|
4244 |
msgctxt "listing status"
|
4245 |
msgid "Complete"
|
4246 |
msgstr "Completato"
|
4247 |
|
4248 |
-
#: includes/models/class-listing.php:
|
4249 |
msgctxt "listing status"
|
4250 |
msgid "Pending Upgrade"
|
4251 |
msgstr "Aggiornamento in attesa"
|
4252 |
|
4253 |
-
#: includes/models/class-listing.php:
|
4254 |
msgctxt "listing status"
|
4255 |
msgid "Expired"
|
4256 |
msgstr "Scaduto"
|
4257 |
|
4258 |
-
#: includes/models/class-listing.php:
|
4259 |
msgctxt "listing status"
|
4260 |
msgid "Pending Renewal"
|
4261 |
msgstr "In attesa di rinnovo"
|
4262 |
|
4263 |
-
#: includes/models/class-listing.php:
|
4264 |
msgctxt "listing status"
|
4265 |
msgid "Abandoned"
|
4266 |
msgstr "Abbandonato"
|
@@ -4921,13 +4894,13 @@ msgid "Author"
|
|
4921 |
msgstr "Autore"
|
4922 |
|
4923 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4924 |
-
#: includes/helpers/functions/general.php:
|
4925 |
msgctxt "admin settings"
|
4926 |
msgid "Date posted"
|
4927 |
msgstr "Data di pubblicazione"
|
4928 |
|
4929 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4930 |
-
#: includes/helpers/functions/general.php:
|
4931 |
msgctxt "admin settings"
|
4932 |
msgid "Date last modified"
|
4933 |
msgstr "Data ultima modifica"
|
@@ -5100,29 +5073,29 @@ msgctxt "admin settings"
|
|
5100 |
msgid "U.S. Dollar (USD)"
|
5101 |
msgstr "Dollaro USA (USD)"
|
5102 |
|
5103 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5104 |
msgctxt "admin settings"
|
5105 |
msgid "Show currency symbol on the left"
|
5106 |
msgstr "Mostra il simbolo della valuta a sinistra"
|
5107 |
|
5108 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5109 |
msgctxt "admin settings"
|
5110 |
msgid "Show currency symbol on the right"
|
5111 |
msgstr "Mostra il simbolo della valuta a destra"
|
5112 |
|
5113 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5114 |
msgctxt "admin settings"
|
5115 |
msgid "Do not show currency symbol"
|
5116 |
msgstr "Non mostrare il simbolo della valuta"
|
5117 |
|
5118 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5119 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5120 |
#, fuzzy
|
5121 |
msgctxt "admin settings"
|
5122 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5123 |
msgstr "La valuta del AED non è supportata da %s. %s"
|
5124 |
|
5125 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5126 |
#, fuzzy
|
5127 |
msgctxt "admin settings"
|
5128 |
msgid ""
|
@@ -5133,123 +5106,123 @@ msgstr ""
|
|
5133 |
"dopo questo periodo. Puoi anche <a>personalizzare l'e-mail</a> che gli "
|
5134 |
"utenti ricevono."
|
5135 |
|
5136 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5137 |
msgctxt "admin settings"
|
5138 |
msgid "Try listing's email field first, then author's email."
|
5139 |
msgstr ""
|
5140 |
"Prova prima il campo di posta elettronica dell'elenco, quindi l'email "
|
5141 |
"dell'autore."
|
5142 |
|
5143 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5144 |
msgctxt "admin settings"
|
5145 |
msgid "Try author's email first and then listing's email field."
|
5146 |
msgstr ""
|
5147 |
"Prova prima l'email dell'autore e poi il campo di posta elettronica "
|
5148 |
"dell'elenco."
|
5149 |
|
5150 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5151 |
msgctxt "admin settings"
|
5152 |
msgid "Plain (text/plain)"
|
5153 |
msgstr "Testo (text/plain)"
|
5154 |
|
5155 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5156 |
msgctxt "admin settings"
|
5157 |
msgid "HTML (text/html)"
|
5158 |
msgstr "HTML (text/html)"
|
5159 |
|
5160 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5161 |
msgctxt "admin settings"
|
5162 |
msgid "Both (multipart/alternative)"
|
5163 |
msgstr "Entrambi (multipart/alternative)"
|
5164 |
|
5165 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5166 |
msgctxt "admin settings"
|
5167 |
msgid "A new listing is submitted."
|
5168 |
msgstr "Viene inserito un nuovo Annuncio."
|
5169 |
|
5170 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5171 |
msgctxt "admin settings"
|
5172 |
msgid "A listing is edited."
|
5173 |
msgstr "Un annuncio viene modificato."
|
5174 |
|
5175 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5176 |
msgctxt "admin settings"
|
5177 |
msgid "A listing expires."
|
5178 |
msgstr "Un Annuncio è in scadenza."
|
5179 |
|
5180 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5181 |
msgctxt "admin settings"
|
5182 |
msgid "A listing is renewed."
|
5183 |
msgstr "L'annuncio viene rinnovato."
|
5184 |
|
5185 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5186 |
#, fuzzy
|
5187 |
msgctxt "admin settings"
|
5188 |
msgid "A listing payment is completed."
|
5189 |
msgstr "Un annuncio viene modificato."
|
5190 |
|
5191 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5192 |
msgctxt "admin settings"
|
5193 |
msgid "A listing has been reported as inappropriate."
|
5194 |
msgstr "Un annuncio è stato segnalato come inappropriato."
|
5195 |
|
5196 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5197 |
msgctxt "admin settings"
|
5198 |
msgid "A contact message is sent to a listing's owner."
|
5199 |
msgstr "Un messaggio di contatto sarà inviato al proprietario."
|
5200 |
|
5201 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5202 |
msgctxt "admin settings"
|
5203 |
msgid "Their listing is submitted."
|
5204 |
msgstr "Viene inserito un nuovo Annuncio."
|
5205 |
|
5206 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5207 |
msgctxt "admin settings"
|
5208 |
msgid "Their listing is approved/published."
|
5209 |
msgstr "L'iscrizione è stata approvata e pubblicata."
|
5210 |
|
5211 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5212 |
#, fuzzy
|
5213 |
msgctxt "admin settings"
|
5214 |
msgid "A payment for their listing is completed."
|
5215 |
msgstr "Viene inserito un nuovo Annuncio."
|
5216 |
|
5217 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5218 |
msgctxt "admin settings"
|
5219 |
msgid "Their listing expired or is about to expire."
|
5220 |
msgstr "Il loro annuncio è scaduto o sta per scadere."
|
5221 |
|
5222 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5223 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5224 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5225 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5226 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5227 |
msgctxt "admin settings"
|
5228 |
msgid "Listing's title"
|
5229 |
msgstr "Titolo dell'annuncio"
|
5230 |
|
5231 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5232 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5233 |
#, fuzzy
|
5234 |
msgctxt "admin settings"
|
5235 |
msgid "Listing's fee plan name"
|
5236 |
msgstr "Data di scadenza dell'annuncio"
|
5237 |
|
5238 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5239 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5240 |
#, fuzzy
|
5241 |
msgctxt "admin settings"
|
5242 |
msgid "Listing's fee plan description"
|
5243 |
msgstr "Descrizione del campo"
|
5244 |
|
5245 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5246 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5247 |
#, fuzzy
|
5248 |
msgctxt "admin settings"
|
5249 |
msgid "Listing's fee plan details"
|
5250 |
msgstr "Data di scadenza dell'annuncio"
|
5251 |
|
5252 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5253 |
msgctxt "admin settings"
|
5254 |
msgid ""
|
5255 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
@@ -5258,66 +5231,66 @@ msgstr ""
|
|
5258 |
"Il tuo Annuncio \"[listing]\" è ora disponibile all'indirizzo [listing-url] "
|
5259 |
"e può essere visualizzato dal pubblico."
|
5260 |
|
5261 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5262 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5263 |
msgctxt "admin settings"
|
5264 |
msgid "Listing's URL"
|
5265 |
msgstr "URL dell'annuncio"
|
5266 |
|
5267 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5268 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5269 |
msgctxt "admin settings"
|
5270 |
msgid "Listing's Access Key"
|
5271 |
msgstr "Chiave di accesso all'annuncio"
|
5272 |
|
5273 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5274 |
msgctxt "admin settings"
|
5275 |
msgid "Sender's name"
|
5276 |
msgstr "Nome del mittente"
|
5277 |
|
5278 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5279 |
msgctxt "admin settings"
|
5280 |
msgid "Contact message"
|
5281 |
msgstr "Un messaggio di contatto sarà inviato al proprietario."
|
5282 |
|
5283 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5284 |
msgctxt "admin settings"
|
5285 |
msgid "Date and time the message was sent"
|
5286 |
msgstr "Data e ora di invio del messaggio"
|
5287 |
|
5288 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5289 |
#, fuzzy
|
5290 |
msgctxt "admin settings"
|
5291 |
msgid "Payment items details."
|
5292 |
msgstr "Dati di pagamento aggiornati."
|
5293 |
|
5294 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5295 |
msgctxt "admin settings"
|
5296 |
msgid "URL where user can review and print payment receipt."
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5300 |
msgctxt "admin settings"
|
5301 |
msgid "Gateway used to process listing's payment."
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5305 |
msgctxt "admin settings"
|
5306 |
msgid "Checkout URL link"
|
5307 |
msgstr "Collegamento URL Checkout"
|
5308 |
|
5309 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5310 |
#, fuzzy
|
5311 |
msgctxt "admin settings"
|
5312 |
msgid "Uploaded Image (no resize)"
|
5313 |
msgstr "Carica Immagini"
|
5314 |
|
5315 |
-
#: includes/helpers/functions/general.php:
|
5316 |
msgctxt "admin settings"
|
5317 |
msgid "User"
|
5318 |
msgstr "Utente"
|
5319 |
|
5320 |
-
#: includes/helpers/functions/general.php:
|
5321 |
msgctxt "admin settings"
|
5322 |
msgid "User registration date"
|
5323 |
msgstr "Data di registrazione"
|
@@ -5534,7 +5507,7 @@ msgstr "Annunci"
|
|
5534 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5535 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5536 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5537 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5538 |
#: includes/admin/settings/class-settings.php:341
|
5539 |
msgctxt "settings"
|
5540 |
msgid "General Settings"
|
@@ -6164,17 +6137,12 @@ msgstr ""
|
|
6164 |
"Utilizzare questa opzione per impostare l'immagine del badge in primo piano "
|
6165 |
"come collegamento a un URL definito."
|
6166 |
|
6167 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6168 |
msgctxt "settings"
|
6169 |
msgid "Fee Order"
|
6170 |
msgstr "Ordine della tassa"
|
6171 |
|
6172 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6173 |
-
msgctxt "settings"
|
6174 |
-
msgid "Turn On payments?"
|
6175 |
-
msgstr "Attivare i pagamenti?"
|
6176 |
-
|
6177 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1144
|
6178 |
msgctxt "settings"
|
6179 |
msgid "Put payment gateways in test mode?"
|
6180 |
msgstr "Mettere gateway di pagamento in modalità di prova?"
|
@@ -6184,42 +6152,42 @@ msgctxt "settings"
|
|
6184 |
msgid "Currency Code"
|
6185 |
msgstr "Codice Valuta"
|
6186 |
|
6187 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6188 |
msgctxt "settings"
|
6189 |
msgid "Currency Symbol"
|
6190 |
msgstr "Simbolo valuta"
|
6191 |
|
6192 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6193 |
msgctxt "settings"
|
6194 |
msgid "Currency symbol display"
|
6195 |
msgstr "Visualizzazione del simbolo di valuta"
|
6196 |
|
6197 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6198 |
msgctxt "settings"
|
6199 |
msgid "Include fee description in receipt?"
|
6200 |
msgstr "Includere la descrizione della tassa nella ricevuta?"
|
6201 |
|
6202 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6203 |
msgctxt "settings"
|
6204 |
msgid "Thank you for payment message"
|
6205 |
msgstr "Messaggio di ringraziamento per il pagamento"
|
6206 |
|
6207 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6208 |
msgctxt "settings"
|
6209 |
msgid "Ask users to come back for abandoned payments?"
|
6210 |
msgstr "Chiedere agli utenti di tornare per pagamenti abbandonati?"
|
6211 |
|
6212 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6213 |
msgctxt "settings"
|
6214 |
msgid "Listing abandonment threshold (hours)"
|
6215 |
msgstr "Soglia di abbandono dell'elenco (ore)"
|
6216 |
|
6217 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6218 |
msgctxt "settings"
|
6219 |
msgid "Display email address fields publicly?"
|
6220 |
msgstr "Pubblica i campi di posta elettronica pubblicamente?"
|
6221 |
|
6222 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6223 |
msgctxt "settings"
|
6224 |
msgid ""
|
6225 |
"Shows the email address of the listing owner to all web users. NOT "
|
@@ -6230,12 +6198,12 @@ msgstr ""
|
|
6230 |
"web. NON RACCOMANDATO in quanto aumenta lo spam all'indirizzo e consente ai "
|
6231 |
"bot di spam di raccogliere il prodotto per un uso futuro."
|
6232 |
|
6233 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6234 |
msgctxt "settings"
|
6235 |
msgid "How to determine the listing's email address?"
|
6236 |
msgstr "Come determinare l'indirizzo email dell'Annuncio?"
|
6237 |
|
6238 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6239 |
msgctxt "settings"
|
6240 |
msgid ""
|
6241 |
"This affects emails sent to listing owners via contact forms or when their "
|
@@ -6244,12 +6212,12 @@ msgstr ""
|
|
6244 |
"Ciò riguarda le e-mail inviate ai proprietari dell'elenco tramite moduli di "
|
6245 |
"contatto o quando i loro annunci scadono."
|
6246 |
|
6247 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6248 |
msgctxt "settings"
|
6249 |
msgid "Email Content-Type header"
|
6250 |
msgstr "Intestazione e-mail Content-Type"
|
6251 |
|
6252 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6253 |
msgctxt "settings"
|
6254 |
msgid ""
|
6255 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -6262,39 +6230,39 @@ msgstr ""
|
|
6262 |
"tipo di contenuto a meno che non sia esplicitamente impostato, puoi farlo "
|
6263 |
"qui. Se non siete sicuri, provate \"HTML\", \"Plain\" e poi \"Both\"."
|
6264 |
|
6265 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6266 |
msgctxt "settings"
|
6267 |
msgid "Templates"
|
6268 |
msgstr "Modelli"
|
6269 |
|
6270 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6271 |
msgctxt "settings"
|
6272 |
msgid "Email confirmation message"
|
6273 |
msgstr "Messaggio di conferma Email"
|
6274 |
|
6275 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6276 |
msgctxt "settings"
|
6277 |
msgid "Sent after a listing has been submitted."
|
6278 |
msgstr "Inviati dopo l'invio di un annuncio."
|
6279 |
|
6280 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6281 |
msgctxt "settings"
|
6282 |
msgid "Listing published message"
|
6283 |
msgstr "Messaggio di Annuncio pubblicato"
|
6284 |
|
6285 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6286 |
msgctxt "settings"
|
6287 |
msgid "Sent when the listing has been published or approved by an admin."
|
6288 |
msgstr ""
|
6289 |
"Viene inviato quando l'Annuncio è stato pubblicato o approvato da un "
|
6290 |
"amministratore."
|
6291 |
|
6292 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6293 |
msgctxt "settings"
|
6294 |
msgid "Listing Contact Message"
|
6295 |
msgstr "Elenco messaggi"
|
6296 |
|
6297 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6298 |
msgctxt "settings"
|
6299 |
msgid ""
|
6300 |
"Sent to listing owners when someone uses the contact form on their listing "
|
@@ -6303,13 +6271,13 @@ msgstr ""
|
|
6303 |
"Inviato ai proprietari dell'Annuncio quando qualcuno utilizza il modulo di "
|
6304 |
"contatto nelle pagine di inserimento."
|
6305 |
|
6306 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6307 |
#, fuzzy
|
6308 |
msgctxt "settings"
|
6309 |
msgid "Payment completed message"
|
6310 |
msgstr "Messaggio di promemoria per abbandono del pagamento"
|
6311 |
|
6312 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6313 |
#, fuzzy
|
6314 |
msgctxt "settings"
|
6315 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
@@ -6317,12 +6285,12 @@ msgstr ""
|
|
6317 |
"Invia poco tempo dopo che un pagamento in sospeso viene abbandonato dagli "
|
6318 |
"utenti."
|
6319 |
|
6320 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6321 |
msgctxt "settings"
|
6322 |
msgid "Payment abandoned reminder message"
|
6323 |
msgstr "Messaggio di promemoria per abbandono del pagamento"
|
6324 |
|
6325 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6326 |
msgctxt "settings"
|
6327 |
msgid "Cropped"
|
6328 |
msgstr ""
|
@@ -6338,17 +6306,17 @@ msgctxt "settings"
|
|
6338 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6339 |
msgstr "Lo slug \"%s\" è già in uso per un'altra tassonomia."
|
6340 |
|
6341 |
-
#: includes/licensing.php:
|
6342 |
msgctxt "settings"
|
6343 |
msgid "Themes"
|
6344 |
msgstr "Temi"
|
6345 |
|
6346 |
-
#: includes/licensing.php:
|
6347 |
msgctxt "settings"
|
6348 |
msgid "Please wait..."
|
6349 |
msgstr "Attendi..."
|
6350 |
|
6351 |
-
#: includes/licensing.php:
|
6352 |
#, fuzzy
|
6353 |
msgctxt "settings"
|
6354 |
msgid "Deauthorize"
|
@@ -6404,28 +6372,28 @@ msgctxt "themes"
|
|
6404 |
msgid "Could not delete theme directory. Check permissions."
|
6405 |
msgstr "Impossibile eliminare l'elenco dei temi. Controlla i permessi."
|
6406 |
|
6407 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6408 |
msgctxt "themes"
|
6409 |
msgid "Please upload a valid theme file."
|
6410 |
msgstr "Si prega di caricare un file valido del tema."
|
6411 |
|
6412 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6413 |
msgctxt "themes"
|
6414 |
msgid "Could not move \"%s\" to a temporary directory."
|
6415 |
msgstr "Non è stato possibile spostare \"%s\" in un elenco temporaneo."
|
6416 |
|
6417 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6418 |
msgctxt "themes"
|
6419 |
msgid "Activate your <a>license key</a> to use this theme."
|
6420 |
msgstr "Attivare la <a>chiave di licenza</a> per utilizzare questo tema."
|
6421 |
|
6422 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6423 |
#, fuzzy
|
6424 |
msgctxt "themes"
|
6425 |
msgid "Invalid theme ID"
|
6426 |
msgstr "ID articolo non valido"
|
6427 |
|
6428 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6429 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6430 |
msgctxt "themes"
|
6431 |
msgid "Could not update theme: %s"
|
@@ -6853,24 +6821,24 @@ msgid "Trash"
|
|
6853 |
msgstr "Cestino"
|
6854 |
|
6855 |
#. translators: %s: url shortcode
|
6856 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6857 |
msgctxt "contact email"
|
6858 |
msgid "You have received a reply from your listing at %s."
|
6859 |
msgstr "Hai ricevuto una risposta dal tuo annuncio su %s."
|
6860 |
|
6861 |
#. translators: %s: name shortcode
|
6862 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6863 |
msgctxt "contact email"
|
6864 |
msgid "Name: %s"
|
6865 |
msgstr "Nome: %s"
|
6866 |
|
6867 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6868 |
msgctxt "contact email"
|
6869 |
msgid "Message:"
|
6870 |
msgstr "Messaggio:"
|
6871 |
|
6872 |
#. translators: %s: date shortcode
|
6873 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6874 |
msgctxt "contact email"
|
6875 |
msgid "Time: %s"
|
6876 |
msgstr "Tempo: %s"
|
@@ -7181,32 +7149,32 @@ msgctxt "listing"
|
|
7181 |
msgid "Add New Listing"
|
7182 |
msgstr "Aggiungi Nuovo Annuncio"
|
7183 |
|
7184 |
-
#: includes/models/class-listing.php:
|
7185 |
msgctxt "listing"
|
7186 |
msgid "Listing has no registered payments"
|
7187 |
msgstr "L'annuncio non ha pagamenti registrati"
|
7188 |
|
7189 |
-
#: includes/models/class-listing.php:
|
7190 |
msgctxt "listing"
|
7191 |
msgid "Can't delete payment"
|
7192 |
msgstr "Non è possibile cancellare il pagamento"
|
7193 |
|
7194 |
-
#: includes/models/class-listing.php:
|
7195 |
msgctxt "listing"
|
7196 |
msgid "Listing expired"
|
7197 |
msgstr "Annuncio scaduto"
|
7198 |
|
7199 |
-
#: includes/models/class-listing.php:
|
7200 |
msgctxt "listing"
|
7201 |
msgid "(Unavailable Plan)"
|
7202 |
msgstr "(Piano non disponibile)"
|
7203 |
|
7204 |
-
#: includes/models/class-listing.php:
|
7205 |
msgctxt "listing"
|
7206 |
msgid "Plan \"%s\" (recurring)"
|
7207 |
msgstr "Piano \"%s\" (ricorrente)"
|
7208 |
|
7209 |
-
#: includes/models/class-listing.php:
|
7210 |
msgctxt "listing"
|
7211 |
msgid "Plan \"%s\""
|
7212 |
msgstr "Piano \"%s\"."
|
@@ -7340,7 +7308,7 @@ msgctxt "payment-gateways"
|
|
7340 |
msgid "Enable %s?"
|
7341 |
msgstr "Attivare %s?"
|
7342 |
|
7343 |
-
#: includes/class-payment-gateways.php:
|
7344 |
msgctxt "payment-gateways"
|
7345 |
msgid ""
|
7346 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
@@ -7350,24 +7318,11 @@ msgstr ""
|
|
7350 |
"non sarà disponibile fino a quando i seguenti problemi non saranno stati "
|
7351 |
"risolti: <problems>."
|
7352 |
|
7353 |
-
#: includes/class-payment-gateways.php:
|
7354 |
msgctxt "payment-gateways"
|
7355 |
msgid "Please check the <link>payment settings</link>."
|
7356 |
msgstr "Si prega di controllare le <link>impostazioni di pagamento</link>."
|
7357 |
|
7358 |
-
#: includes/class-payment-gateways.php:142
|
7359 |
-
msgctxt "payment-gateways"
|
7360 |
-
msgid ""
|
7361 |
-
"You have payments turned on but no gateway is active and properly "
|
7362 |
-
"configured. Go to <link>Manage Options - Payment</link> to change the "
|
7363 |
-
"payment settings. Until you change this, the directory will operate in "
|
7364 |
-
"<i>Free Mode</i>."
|
7365 |
-
msgstr ""
|
7366 |
-
"I pagamenti sono attivati ma nessun gateway è attivo e configurato "
|
7367 |
-
"correttamente. Vai a <link>Gestione Opzioni - Pagamento</link> per "
|
7368 |
-
"modificare le impostazioni di pagamento. Fino a quando non viene modificato, "
|
7369 |
-
"la directory funzionerà in <i>modalità libera</i>."
|
7370 |
-
|
7371 |
#: includes/class-recaptcha.php:32
|
7372 |
msgctxt "recaptcha"
|
7373 |
msgid "The reCAPTCHA wasn't entered correctly."
|
@@ -7601,7 +7556,7 @@ msgstr ""
|
|
7601 |
"anteriore del tuo sito. Se non l'hai voluto, clicca <a>qui</a> per "
|
7602 |
"modificare l'impostazione."
|
7603 |
|
7604 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7605 |
msgctxt "templates"
|
7606 |
msgid ""
|
7607 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
@@ -7610,7 +7565,7 @@ msgstr ""
|
|
7610 |
"<b>Vista non disponibile</b>. È stata selezionata l'impostazione "
|
7611 |
"\"Disattivare l'invio di annunci da frontend\"?"
|
7612 |
|
7613 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7614 |
msgctxt "templates"
|
7615 |
msgid ""
|
7616 |
"Listing submission has been disabled. Contact the administrator for details."
|
@@ -7618,14 +7573,14 @@ msgstr ""
|
|
7618 |
"L'inserimento di un annuncio è stato disabilitato. Contattare "
|
7619 |
"l'amministratore per i dettagli."
|
7620 |
|
7621 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7622 |
msgctxt "templates"
|
7623 |
msgid ""
|
7624 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7625 |
"submit a listing. %s to create a fee plan"
|
7626 |
msgstr ""
|
7627 |
|
7628 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7629 |
msgctxt "templates"
|
7630 |
msgid ""
|
7631 |
"Listing submission is not available at the moment. Contact the administrator "
|
@@ -7634,7 +7589,7 @@ msgstr ""
|
|
7634 |
"Al momento non è disponibile l'invio di annunci. Contattare l'amministratore "
|
7635 |
"per i dettagli."
|
7636 |
|
7637 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7638 |
msgctxt "templates"
|
7639 |
msgid ""
|
7640 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -7645,17 +7600,17 @@ msgstr ""
|
|
7645 |
"%s e crea un nuovo campo con questa associazione, o assegna questa "
|
7646 |
"associazione ad un campo esistente."
|
7647 |
|
7648 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7649 |
msgctxt "templates"
|
7650 |
msgid "Please agree to the Terms and Conditions."
|
7651 |
msgstr "Per favore è necessario accettare le condizioni d'uso."
|
7652 |
|
7653 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7654 |
msgctxt "templates"
|
7655 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7656 |
msgstr "Accetto i <a>termini e le condizioni</a> d'uso"
|
7657 |
|
7658 |
-
#: includes/helpers/functions/general.php:
|
7659 |
msgctxt "templates"
|
7660 |
msgid "Return to results"
|
7661 |
msgstr "Ritorno ai risultati"
|
@@ -7990,7 +7945,7 @@ msgctxt "submit listing"
|
|
7990 |
msgid "You can't edit this listing."
|
7991 |
msgstr "Non è possibile modificare questo annuncio."
|
7992 |
|
7993 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7994 |
msgctxt "submit listing"
|
7995 |
msgid ""
|
7996 |
"This listing can't be edited at this time because it has no fee plan "
|
@@ -8001,7 +7956,7 @@ msgstr ""
|
|
8001 |
"piano tariffario associato. Si prega di <a>modificare l'annuncio</a> dal "
|
8002 |
"backend e di associarlo a un piano tariffario."
|
8003 |
|
8004 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8005 |
msgctxt "submit listing"
|
8006 |
msgid ""
|
8007 |
"This listing can't be edited at this time. Please try again later or contact "
|
@@ -8010,62 +7965,62 @@ msgstr ""
|
|
8010 |
"Questo annuncio non può essere modificato in questo momento. Riprovare più "
|
8011 |
"tardi o contattare l'amministratore se il problema persiste."
|
8012 |
|
8013 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8014 |
msgctxt "submit listing"
|
8015 |
msgid "You're logged in as admin, payment will be skipped."
|
8016 |
msgstr "Sei loggato come amministratore, il pagamento verrà saltato."
|
8017 |
|
8018 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8019 |
msgctxt "submit listing"
|
8020 |
msgid "Category selection"
|
8021 |
msgstr "Selezione della categoria"
|
8022 |
|
8023 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8024 |
msgctxt "submit listing"
|
8025 |
msgid "Category & plan selection"
|
8026 |
msgstr "Selezione di categorie e piani"
|
8027 |
|
8028 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8029 |
msgctxt "submit listing"
|
8030 |
msgid "Can not submit a listing at this moment. Please try again later."
|
8031 |
msgstr ""
|
8032 |
"Non è possibile inviare un annuncio in questo momento. Per favore, riprova "
|
8033 |
"più tardi."
|
8034 |
|
8035 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8036 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8037 |
msgctxt "submit listing"
|
8038 |
msgid "Please select a category."
|
8039 |
msgstr "Per favore seleziona una categoria."
|
8040 |
|
8041 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8042 |
msgctxt "submit listing"
|
8043 |
msgid "Please choose a valid category for your plan."
|
8044 |
msgstr "Scegli una categoria valida per il tuo piano."
|
8045 |
|
8046 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8047 |
msgctxt "submit listing"
|
8048 |
msgid "Please choose a valid fee plan for your category selection."
|
8049 |
msgstr ""
|
8050 |
"Si prega di scegliere un piano tariffario valido per la selezione della "
|
8051 |
"categoria."
|
8052 |
|
8053 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8054 |
msgctxt "submit listing"
|
8055 |
msgid "Please enter your desired username."
|
8056 |
msgstr "Inserisci il nome utente desiderato."
|
8057 |
|
8058 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8059 |
msgctxt "submit listing"
|
8060 |
msgid "Please enter the e-mail for your new account."
|
8061 |
msgstr "Inserisci l'e-mail per il tuo nuovo account."
|
8062 |
|
8063 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8064 |
msgctxt "submit listing"
|
8065 |
msgid "The username you chose is already in use. Please use a different one."
|
8066 |
msgstr "Il nome utente scelto è già in uso. Per favore, usane un'altra."
|
8067 |
|
8068 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8069 |
msgctxt "submit listing"
|
8070 |
msgid "The e-mail address you chose for your account is already in use."
|
8071 |
msgstr "L'indirizzo e-mail scelto per il tuo account è già in uso."
|
@@ -8075,7 +8030,7 @@ msgctxt "submit listing"
|
|
8075 |
msgid "Listing submitted by admin. Payment skipped."
|
8076 |
msgstr "Annuncio presentato da admin. Pagamento saltato."
|
8077 |
|
8078 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8079 |
msgctxt "listing submit"
|
8080 |
msgid ""
|
8081 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8412,12 +8367,12 @@ msgctxt "default category name"
|
|
8412 |
msgid "General"
|
8413 |
msgstr "Generale"
|
8414 |
|
8415 |
-
#: includes/licensing.php:
|
8416 |
msgctxt "licensing"
|
8417 |
msgid "Could not contact licensing server"
|
8418 |
msgstr "Impossibile contattare il server di licenza"
|
8419 |
|
8420 |
-
#: includes/licensing.php:
|
8421 |
msgctxt "licensing"
|
8422 |
msgid ""
|
8423 |
"It was not possible to establish a connection with Business Directory's "
|
@@ -8426,7 +8381,7 @@ msgstr ""
|
|
8426 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
8427 |
"Directory. cURL non è stato trovato nel sistema."
|
8428 |
|
8429 |
-
#: includes/licensing.php:
|
8430 |
msgctxt "licensing"
|
8431 |
msgid ""
|
8432 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8439,7 +8394,7 @@ msgstr ""
|
|
8439 |
"recente di cURL e una versione di OpenSSL che supporta TLSv1.2 (la versione "
|
8440 |
"minima con supporto è OpenSSL 1.0.1.1c)."
|
8441 |
|
8442 |
-
#: includes/licensing.php:
|
8443 |
msgctxt "licensing"
|
8444 |
msgid ""
|
8445 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8451,7 +8406,7 @@ msgstr ""
|
|
8451 |
"sito web a interagire con i servizi utilizzando i più recenti standard di "
|
8452 |
"sicurezza."
|
8453 |
|
8454 |
-
#: includes/licensing.php:
|
8455 |
msgctxt "licensing"
|
8456 |
msgid ""
|
8457 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
@@ -8460,7 +8415,7 @@ msgstr ""
|
|
8460 |
"Contatta il tuo fornitore di hosting e chiedi loro di aggiornare il tuo "
|
8461 |
"sistema. Includere questo messaggio se necessario"
|
8462 |
|
8463 |
-
#: includes/licensing.php:
|
8464 |
msgctxt "licensing"
|
8465 |
msgid ""
|
8466 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
@@ -8469,33 +8424,33 @@ msgstr ""
|
|
8469 |
"Contatta il tuo fornitore di hosting e chiedi loro di aggiornare il tuo "
|
8470 |
"sistema. Includere questo messaggio se necessario."
|
8471 |
|
8472 |
-
#: includes/licensing.php:
|
8473 |
msgctxt "licensing"
|
8474 |
msgid "The server returned a 403 Forbidden error."
|
8475 |
msgstr "Il server ha restituito un errore 403 Forbidden error."
|
8476 |
|
8477 |
-
#: includes/licensing.php:
|
8478 |
msgctxt "licensing"
|
8479 |
msgid "Could not activate license: %s."
|
8480 |
msgstr "Impossibile attivare la licenza: %s."
|
8481 |
|
8482 |
-
#: includes/licensing.php:
|
8483 |
msgctxt "licensing"
|
8484 |
msgid "License activated"
|
8485 |
msgstr "Licenza attivata"
|
8486 |
|
8487 |
-
#: includes/licensing.php:
|
8488 |
msgctxt "licensing"
|
8489 |
msgid "Could not deactivate license: %s."
|
8490 |
msgstr "Impossibile disattivare la licenza: %s."
|
8491 |
|
8492 |
-
#: includes/licensing.php:
|
8493 |
msgctxt "licensing"
|
8494 |
msgid "License deactivated"
|
8495 |
msgstr "Licenza disattivata"
|
8496 |
|
8497 |
#. translators: "<module-name>" version <version-number> is not...
|
8498 |
-
#: includes/licensing.php:
|
8499 |
msgctxt "deprecation"
|
8500 |
msgid ""
|
8501 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8516,18 +8471,18 @@ msgid_plural "%d images allowed."
|
|
8516 |
msgstr[0] "%d immagine consentita."
|
8517 |
msgstr[1] "%d immagini consentite."
|
8518 |
|
8519 |
-
#: includes/models/class-fee-plan.php:
|
8520 |
msgctxt "fees-api"
|
8521 |
msgid "Fee label is required."
|
8522 |
msgstr "È richiesta l'etichetta della Donazione."
|
8523 |
|
8524 |
-
#: includes/models/class-fee-plan.php:
|
8525 |
msgctxt "fees-api"
|
8526 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8527 |
msgstr ""
|
8528 |
"Il canone per l'annuncio deve essere inferiore a 10 anni (3650 giorni)."
|
8529 |
|
8530 |
-
#: includes/models/class-fee-plan.php:
|
8531 |
msgctxt "fees-api"
|
8532 |
msgid ""
|
8533 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
@@ -8539,7 +8494,7 @@ msgstr ""
|
|
8539 |
"l'inserimento dell'annuncio, si prega di modificare il <a>piano tariffario</"
|
8540 |
"a> in modo appropriato."
|
8541 |
|
8542 |
-
#: includes/models/class-fee-plan.php:
|
8543 |
msgctxt "fees-api"
|
8544 |
msgid ""
|
8545 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
@@ -8616,17 +8571,17 @@ msgctxt "utils"
|
|
8616 |
msgid "Unkown error while uploading file."
|
8617 |
msgstr "Errore durante il caricamento del file."
|
8618 |
|
8619 |
-
#: includes/utils.php:
|
8620 |
msgctxt "utils"
|
8621 |
msgid "Error while uploading file"
|
8622 |
msgstr "Errore durante il caricamento del file"
|
8623 |
|
8624 |
-
#: includes/utils.php:
|
8625 |
msgctxt "utils"
|
8626 |
msgid "File type \"%s\" is not allowed"
|
8627 |
msgstr "Il tipo di file \"%s\" non è consentito"
|
8628 |
|
8629 |
-
#: includes/utils.php:
|
8630 |
msgctxt "utils"
|
8631 |
msgid ""
|
8632 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8736,46 +8691,6 @@ msgctxt "admin forms"
|
|
8736 |
msgid "required"
|
8737 |
msgstr "richiesto"
|
8738 |
|
8739 |
-
#: templates/admin/home.tpl.php:12
|
8740 |
-
msgctxt "admin home"
|
8741 |
-
msgid "Welcome to Business Directory Plugin. You are using %s."
|
8742 |
-
msgstr "Benvenuti a Business Directory Plugin. Stai usando %s."
|
8743 |
-
|
8744 |
-
#: templates/admin/home.tpl.php:15
|
8745 |
-
msgctxt "admin home"
|
8746 |
-
msgid ""
|
8747 |
-
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
8748 |
-
"let's jump right in!"
|
8749 |
-
msgstr ""
|
8750 |
-
"Grazie per aver scelto Terracina Web. C'è molto da fare, quindi iniziamo!"
|
8751 |
-
|
8752 |
-
#: templates/admin/home.tpl.php:28
|
8753 |
-
msgctxt "admin home"
|
8754 |
-
msgid ""
|
8755 |
-
"Our complete documentation is <a>here</a> which we encourage you to use "
|
8756 |
-
"while setting things up."
|
8757 |
-
msgstr ""
|
8758 |
-
"La nostra documentazione completa è <a>qui</a> e vi invitiamo a consultarla "
|
8759 |
-
"durante l'installazione."
|
8760 |
-
|
8761 |
-
#: templates/admin/home.tpl.php:36
|
8762 |
-
msgctxt "admin home"
|
8763 |
-
msgid ""
|
8764 |
-
"We have some quick-start scenarios that you will find useful regarding setup "
|
8765 |
-
"and configuration <a>here</a>."
|
8766 |
-
msgstr ""
|
8767 |
-
"Abbiamo alcuni scenari di avvio rapido che troverete utili per quanto "
|
8768 |
-
"riguarda l'installazione e la configurazione <a>qui</a>."
|
8769 |
-
|
8770 |
-
#: templates/admin/home.tpl.php:45
|
8771 |
-
msgctxt "admin home"
|
8772 |
-
msgid ""
|
8773 |
-
"If you have questions, please post a comment on <a>support forum</a> and "
|
8774 |
-
"we'll answer it within 24 hours most days."
|
8775 |
-
msgstr ""
|
8776 |
-
"Se avete domande, si prega di inviare un commento sul <a>forum di supporto</"
|
8777 |
-
"a> e vi risponderemo entro 24 ore la maggior parte dei giorni."
|
8778 |
-
|
8779 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8780 |
msgctxt "admin infometabox"
|
8781 |
msgid "Renewal url (copy & paste)"
|
@@ -9056,6 +8971,46 @@ msgctxt "send-access-keys"
|
|
9056 |
msgid "Continue"
|
9057 |
msgstr "Continua"
|
9058 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9059 |
#, fuzzy
|
9060 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
9061 |
#~ msgstr ""
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2022-02-02 19:38:07+00:00\n"
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
101 |
msgid "Directory"
|
102 |
msgstr "Directory"
|
103 |
|
104 |
+
#: includes/admin/class-admin.php:312
|
105 |
#, fuzzy
|
106 |
msgid "Fee Plans"
|
107 |
msgstr "Piano tariffario"
|
108 |
|
109 |
+
#: includes/admin/class-admin.php:315
|
110 |
#, fuzzy
|
111 |
msgid "Form Fields"
|
112 |
msgstr "campi del modulo"
|
113 |
|
114 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
115 |
+
#: includes/licensing.php:227
|
116 |
#, fuzzy
|
117 |
msgid "Modules"
|
118 |
msgstr "(Tutti i moduli)"
|
236 |
msgstr "Importo"
|
237 |
|
238 |
#: includes/admin/controllers/class-admin-fees.php:49
|
239 |
+
#: includes/admin/helpers/tables/class-fees-table.php:65
|
240 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
241 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
242 |
#, fuzzy
|
274 |
msgstr "Piano tariffario aggiornato."
|
275 |
|
276 |
#: includes/admin/controllers/class-admin-listings.php:185
|
277 |
+
#: includes/controllers/pages/class-submit-listing.php:518
|
278 |
#: templates/email/listing-reported.tpl.php:7
|
279 |
msgid "Listing Information"
|
280 |
msgstr "Informazioni sull'annuncio"
|
324 |
"automaticamente."
|
325 |
|
326 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
327 |
+
#: includes/controllers/pages/class-submit-listing.php:848
|
328 |
#, fuzzy
|
329 |
msgid "Go to \"Form Fields\""
|
330 |
msgstr "Vai a \"Gestire i campi dei moduli\"."
|
331 |
|
332 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
333 |
+
#: includes/helpers/functions/general.php:1366
|
334 |
+
#: includes/helpers/functions/general.php:1371
|
335 |
#, fuzzy
|
336 |
msgid "Go back"
|
337 |
msgstr "Va indietro"
|
444 |
msgstr "Perché stai eliminando Business Directory Plugin?"
|
445 |
|
446 |
#: includes/admin/controllers/class-settings-admin.php:536
|
447 |
+
#: includes/admin/helpers/tables/class-fees-table.php:174
|
448 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
449 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
450 |
#: templates/admin/payments-note.tpl.php:14
|
451 |
+
#: templates/admin/themes-item.tpl.php:66
|
452 |
#: templates/parts/listing-buttons.tpl.php:31
|
453 |
#: templates/parts/listing-buttons.tpl.php:65
|
454 |
#, fuzzy
|
502 |
msgstr "Installato"
|
503 |
|
504 |
#: includes/admin/helpers/class-modules-list.php:187
|
505 |
+
#: includes/admin/helpers/tables/class-fees-table.php:284
|
506 |
+
#: templates/admin/themes-item.tpl.php:41
|
507 |
#, fuzzy
|
508 |
msgid "Active"
|
509 |
msgstr "Attivo"
|
515 |
|
516 |
#: includes/admin/helpers/class-modules-list.php:225
|
517 |
#: includes/controllers/class-smtp.php:317
|
518 |
+
#: templates/admin/themes-item.tpl.php:61
|
519 |
#, fuzzy
|
520 |
msgid "Activate"
|
521 |
msgstr "Attiva"
|
522 |
|
523 |
#: includes/admin/helpers/class-modules-list.php:235
|
524 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:275
|
525 |
msgid "Upgrade Now"
|
526 |
msgstr ""
|
527 |
|
539 |
|
540 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
541 |
#, fuzzy
|
542 |
+
msgid "Order"
|
543 |
+
msgstr "Ordine"
|
544 |
+
|
545 |
+
#: includes/admin/helpers/tables/class-fees-table.php:62
|
546 |
+
#, fuzzy
|
547 |
msgid "Plan Details"
|
548 |
msgstr "Dettagli del piano"
|
549 |
|
550 |
+
#: includes/admin/helpers/tables/class-fees-table.php:63
|
551 |
#, fuzzy
|
552 |
msgid "Pricing"
|
553 |
msgstr "Prezzi"
|
554 |
|
555 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
556 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
557 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
558 |
#: includes/helpers/class-app.php:92
|
560 |
msgid "Listings"
|
561 |
msgstr "Annunci"
|
562 |
|
563 |
+
#: includes/admin/helpers/tables/class-fees-table.php:153
|
564 |
#, fuzzy
|
565 |
msgid "Disable"
|
566 |
msgstr "Disabilita"
|
567 |
|
568 |
+
#: includes/admin/helpers/tables/class-fees-table.php:159
|
569 |
#, fuzzy
|
570 |
msgid "Enable"
|
571 |
msgstr "Abilita"
|
572 |
|
573 |
+
#: includes/admin/helpers/tables/class-fees-table.php:181
|
574 |
msgid "ID: %s"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
578 |
#, fuzzy
|
579 |
msgid "Paid Plan"
|
580 |
msgstr "Pagato come amministratore"
|
581 |
|
582 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
583 |
#, fuzzy
|
584 |
msgid "Free Plan"
|
585 |
msgstr "Piano tariffario"
|
586 |
|
587 |
+
#: includes/admin/helpers/tables/class-fees-table.php:219
|
588 |
#, fuzzy
|
589 |
msgid "%1$s for %2$s"
|
590 |
msgstr "%s (esempio %s)"
|
591 |
|
592 |
+
#: includes/admin/helpers/tables/class-fees-table.php:282
|
|
|
593 |
#, fuzzy
|
594 |
msgid "Disabled"
|
595 |
msgstr "Disabilitato"
|
596 |
|
597 |
+
#: includes/admin/helpers/tables/class-fees-table.php:288
|
598 |
#: includes/helpers/functions/templates-ui.php:431
|
599 |
#, fuzzy
|
600 |
msgid "Default"
|
638 |
msgstr "Tabelle mancanti: %s"
|
639 |
|
640 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
641 |
+
#: includes/controllers/pages/class-submit-listing.php:1252
|
642 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
643 |
#: templates/listing-contactform.tpl.php:33
|
644 |
#: templates/listing-flagging-form.tpl.php:39
|
686 |
|
687 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
688 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
689 |
+
#: includes/controllers/pages/class-submit-listing.php:531
|
690 |
#, fuzzy
|
691 |
msgid "Terms and Conditions"
|
692 |
msgstr "Termini e Condizioni"
|
928 |
msgid "URL"
|
929 |
msgstr "URL"
|
930 |
|
931 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1226
|
932 |
#, fuzzy
|
933 |
msgid "Thank you for your payment."
|
934 |
msgstr "Messaggio di ringraziamento per il pagamento"
|
935 |
|
936 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1254
|
937 |
msgid ""
|
938 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
939 |
"collect payments in this currency."
|
947 |
"Se si utilizzano questi gateway, si consiglia di disattivarli se si desidera "
|
948 |
"riscuotere i pagamenti in questa valuta."
|
949 |
|
950 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
951 |
#, fuzzy
|
952 |
msgid "Email Notifications"
|
953 |
msgstr "Notifiche di posta elettronica"
|
954 |
|
955 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1347
|
956 |
#, fuzzy
|
957 |
msgid "Notify admin via email when..."
|
958 |
msgstr "Notifica admin via e-mail quando ..."
|
959 |
|
960 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1365
|
961 |
#, fuzzy
|
962 |
msgid "CC this email address too"
|
963 |
msgstr "CC anche questo indirizzo e-mail"
|
964 |
|
965 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
966 |
#, fuzzy
|
967 |
msgid ""
|
968 |
"You can modify the text template used for most of these emails in the "
|
971 |
"È possibile modificare il modello di testo utilizzato per la maggior parte "
|
972 |
"di queste e-mail nella scheda <templates-link>Modelli</templates-link>."
|
973 |
|
974 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1379
|
975 |
#, fuzzy
|
976 |
msgid "Notify users via email when..."
|
977 |
msgstr "Avvisa gli utenti via e-mail quando....."
|
978 |
|
979 |
#. translators: %s: email shortcode
|
980 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1446
|
981 |
#, fuzzy
|
982 |
msgid "Email: %s"
|
983 |
msgstr "E-Mail: %s"
|
984 |
|
985 |
#. translators: %s: phone shortcode
|
986 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1449
|
987 |
#, fuzzy
|
988 |
msgid "Phone Number: %s"
|
989 |
msgstr "Numero di telefono"
|
990 |
|
991 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
992 |
#, fuzzy
|
993 |
msgid "Sender's email address"
|
994 |
msgstr "Indirizzo e-mail del mittente"
|
995 |
|
996 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1462
|
997 |
#, fuzzy
|
998 |
msgid "Sender's phone number"
|
999 |
msgstr "Nome del mittente"
|
1000 |
|
1001 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1526
|
1002 |
#, fuzzy
|
1003 |
msgid "Renewal and expiration"
|
1004 |
msgstr "%d settimana dopo la scadenza"
|
1005 |
|
1006 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1662
|
1007 |
#: templates/admin/uninstall-complete.tpl.php:4
|
1008 |
msgid "Uninstall"
|
1009 |
msgstr "Disinstalla"
|
1109 |
|
1110 |
#. translators: %s: Status name
|
1111 |
#: includes/admin/views/modules/list.php:63
|
1112 |
+
#: templates/admin/themes-item.tpl.php:50
|
1113 |
#, fuzzy
|
1114 |
msgid "Status: %s"
|
1115 |
msgstr "Stato:"
|
1283 |
msgid "View All Listings"
|
1284 |
msgstr "Visualizza tutti gli annunci"
|
1285 |
|
1286 |
+
#: includes/class-payment-gateways.php:144
|
|
|
1287 |
msgid ""
|
1288 |
+
"You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s "
|
1289 |
+
"to set up a gateway. Until you do this, only free plans will be available."
|
|
|
1290 |
msgstr ""
|
1291 |
|
1292 |
#: includes/class-wpbdp.php:369
|
1309 |
"admin."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:322
|
1313 |
#, fuzzy
|
1314 |
msgid "Could not find image ID"
|
1315 |
msgstr "Non è stato possibile aggiornare il tema: %s"
|
1519 |
msgid "This is just a preview. The listing has not been published yet."
|
1520 |
msgstr "Questa è solo un'anteprima. L'Annuncio non è ancora stato pubblicato."
|
1521 |
|
1522 |
+
#: includes/controllers/pages/class-submit-listing.php:564
|
1523 |
#, fuzzy
|
1524 |
msgid "Listing Images"
|
1525 |
msgstr "Immagini annuncio"
|
1526 |
|
1527 |
+
#: includes/controllers/pages/class-submit-listing.php:632
|
1528 |
#, fuzzy
|
1529 |
msgid "Account Creation"
|
1530 |
msgstr "Creazione account"
|
1531 |
|
1532 |
+
#: includes/controllers/pages/class-submit-listing.php:831
|
1533 |
#, fuzzy
|
1534 |
msgid "Go to \"Fee Plans\""
|
1535 |
msgstr "Nessun piano tariffario"
|
1536 |
|
1537 |
+
#: includes/controllers/pages/class-submit-listing.php:887
|
1538 |
#, fuzzy
|
1539 |
msgid "Please choose a fee plan."
|
1540 |
msgstr "(Si prega di scegliere un piano tariffario di cui sopra)"
|
1541 |
|
1542 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1543 |
#, fuzzy
|
1544 |
msgid "Please check the form for errors, correct them and submit again."
|
1545 |
msgstr ""
|
1546 |
"Qualcosa è andato storto. Si prega di controllare il modulo per eventuali "
|
1547 |
"errori, correggerli e ripresentarli di nuovo."
|
1548 |
|
1549 |
+
#: includes/controllers/pages/class-submit-listing.php:1236
|
1550 |
#, fuzzy
|
1551 |
msgid "Create a user account on this site"
|
1552 |
msgstr "Creare un account utente su questo sito"
|
1553 |
|
1554 |
+
#: includes/controllers/pages/class-submit-listing.php:1243
|
1555 |
#, fuzzy
|
1556 |
msgid "Username"
|
1557 |
msgstr "Nome utente:"
|
1558 |
|
1559 |
+
#: includes/controllers/pages/class-submit-listing.php:1265
|
1560 |
#, fuzzy
|
1561 |
msgid "Clear Form"
|
1562 |
msgstr "Cancella"
|
1881 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: includes/helpers/functions/general.php:568
|
|
|
1885 |
msgid "Free"
|
1886 |
msgstr "Gratis"
|
1887 |
|
1896 |
msgstr "Gestione delle Donazioni ricevute"
|
1897 |
|
1898 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1899 |
+
#: includes/licensing.php:150
|
1900 |
msgid ""
|
1901 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1902 |
"get updates."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: includes/licensing.php:203 includes/licensing.php:206
|
1906 |
msgid "Licenses"
|
1907 |
msgstr "Licenze"
|
1908 |
|
1909 |
+
#: includes/licensing.php:273
|
1910 |
msgid "Build more powerful directories"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: includes/licensing.php:274
|
1914 |
msgid ""
|
1915 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: includes/licensing.php:276
|
1919 |
#, fuzzy
|
1920 |
msgid "Already purchased?"
|
1921 |
msgstr "Già installato."
|
1922 |
|
1923 |
#. translators: %s: item type.
|
1924 |
+
#: includes/licensing.php:294
|
1925 |
msgid "%s will not get updates until license is reauthorized."
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: includes/licensing.php:315
|
1929 |
#, fuzzy
|
1930 |
msgid "Enter License Key here"
|
1931 |
msgstr "Inserisci qui il codice di licenza"
|
1932 |
|
1933 |
+
#: includes/licensing.php:316
|
1934 |
#, fuzzy
|
1935 |
msgid "Authorize"
|
1936 |
msgstr "Carta di Credito"
|
1937 |
|
1938 |
+
#: includes/licensing.php:420
|
1939 |
#, fuzzy
|
1940 |
msgid "Invalid item ID"
|
1941 |
msgstr "ID articolo non valido"
|
1942 |
|
1943 |
+
#: includes/licensing.php:433
|
1944 |
#, fuzzy
|
1945 |
msgid "No license key provided"
|
1946 |
msgstr "Nessuna chiave di licenza fornita"
|
1947 |
|
1948 |
+
#: includes/licensing.php:482 includes/licensing.php:520
|
1949 |
#, fuzzy
|
1950 |
msgid "License key is invalid"
|
1951 |
msgstr "La chiave di licenza non è valida"
|
1952 |
|
1953 |
+
#: includes/licensing.php:486
|
1954 |
#, fuzzy
|
1955 |
msgid "Deactivation failed"
|
1956 |
msgstr "Disattivazione fallita"
|
1957 |
|
1958 |
+
#: includes/licensing.php:531
|
1959 |
#, fuzzy
|
1960 |
msgid "The license key was revoked."
|
1961 |
msgstr "La chiave di licenza è stata revocata."
|
1962 |
|
1963 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1964 |
+
#: includes/licensing.php:535
|
1965 |
#, fuzzy
|
1966 |
msgid ""
|
1967 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1973 |
"Business Directory</support-link> e fate loro sapere che la vostra licenza è "
|
1974 |
"stata segnalata come revocata dal software di licenza."
|
1975 |
|
1976 |
+
#: includes/licensing.php:598
|
1977 |
#, fuzzy
|
1978 |
msgid ""
|
1979 |
"It was not possible to establish a connection with the Business Directory "
|
1982 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
1983 |
"Directory. Il collegamento non è riuscito con il seguente errore:"
|
1984 |
|
1985 |
+
#: includes/licensing.php:611
|
1986 |
#, fuzzy
|
1987 |
msgid ""
|
1988 |
"It was not possible to establish a connection with the Business Directory "
|
1991 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
1992 |
"Directory. Si è verificato un problema nella stretta di mano SSL/TSL:"
|
1993 |
|
1994 |
+
#: includes/licensing.php:658
|
1995 |
#, fuzzy
|
1996 |
msgid ""
|
1997 |
"It looks like your server is not authorized to make outgoing requests to "
|
2003 |
"support-link> e chiedi loro di aggiungere il tuo indirizzo IP <ip-"
|
2004 |
"address>alla whitelist."
|
2005 |
|
2006 |
+
#: includes/licensing.php:752
|
2007 |
#, fuzzy
|
2008 |
msgid "Business Directory license key is missing."
|
2009 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2010 |
|
2011 |
+
#: includes/licensing.php:753
|
2012 |
#, fuzzy
|
2013 |
msgid "Business Directory license key has expired"
|
2014 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2015 |
|
2016 |
+
#: includes/licensing.php:754
|
2017 |
#, fuzzy
|
2018 |
msgid "Could not verify Business Directory license."
|
2019 |
msgstr "Aiuta a migliorare la directory aziendale"
|
2020 |
|
2021 |
+
#: includes/licensing.php:765
|
2022 |
#, fuzzy
|
2023 |
msgid "Review license keys"
|
2024 |
msgstr "Rivedere le mie chiavi di licenza"
|
2025 |
|
2026 |
+
#: includes/licensing.php:880
|
2027 |
msgid "Missing data. Please reload this page and try again."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: includes/licensing.php:885
|
2031 |
#, fuzzy
|
2032 |
msgid "Please enter a license key."
|
2033 |
msgstr "Per favore inserisci una chiave di licenza."
|
2076 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2077 |
msgstr "Il file ZIP non è un file tema BD valido."
|
2078 |
|
2079 |
+
#: includes/utils.php:341
|
2080 |
#, fuzzy
|
2081 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2082 |
msgstr ""
|
2083 |
"La dimensione del file (%s) supera la dimensione massima del file di %s"
|
2084 |
|
2085 |
+
#: includes/utils.php:350
|
2086 |
#, fuzzy
|
2087 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2088 |
msgstr ""
|
2462 |
msgid "Add New Listing Fee"
|
2463 |
msgstr "Aggiungere una nuovo canone per l'annuncio"
|
2464 |
|
2465 |
+
#: templates/admin/fees-index.tpl.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2466 |
#, fuzzy
|
2467 |
msgid "Order fees on the frontend by:"
|
2468 |
msgstr "Ordina canoni sul frontend per:"
|
2469 |
|
2470 |
+
#: templates/admin/fees-index.tpl.php:30
|
2471 |
#, fuzzy
|
2472 |
msgid "↑ Ascending"
|
2473 |
msgstr "↑ Ascendente"
|
2474 |
|
2475 |
+
#: templates/admin/fees-index.tpl.php:31
|
2476 |
#, fuzzy
|
2477 |
msgid "↓ Descending"
|
2478 |
msgstr "↓ Discendente"
|
2479 |
|
2480 |
+
#: templates/admin/fees-index.tpl.php:39
|
2481 |
#, fuzzy
|
2482 |
msgid "Drag and drop to re-order fees."
|
2483 |
msgstr "Trascinare e rilasciare per ordinare le Donazioni."
|
2484 |
|
|
|
|
|
|
|
|
|
|
|
2485 |
#: templates/admin/fees-index.tpl.php:67
|
|
|
|
|
|
|
|
|
|
|
2486 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: templates/admin/fees-index.tpl.php:69
|
2490 |
msgid "Add a payment gateway to increase conversion rates"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
#. translators: %s: payment gateway name */
|
2494 |
+
#: templates/admin/fees-index.tpl.php:88
|
2495 |
msgid "Add the %s gateway as a payment option."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: templates/admin/fees-index.tpl.php:94
|
2499 |
#, fuzzy
|
2500 |
msgid "Upgrade"
|
2501 |
msgstr "Avviare l'aggiornamento"
|
2502 |
|
2503 |
+
#: templates/admin/fees-index.tpl.php:102
|
2504 |
msgid "Set up Authorize.net as a payment option."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: templates/admin/fees-index.tpl.php:105
|
2508 |
msgid "Set Up"
|
2509 |
msgstr ""
|
2510 |
|
2540 |
msgid "Delete Field"
|
2541 |
msgstr "Elimina Campo"
|
2542 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2543 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2544 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2545 |
#: templates/login.tpl.php:71
|
2876 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2877 |
msgstr "Nuova versione disponibile (<b>%s</b>).. <a>Aggiorna ora.</a>"
|
2878 |
|
2879 |
+
#: templates/admin/themes-item.tpl.php:45
|
2880 |
#, fuzzy
|
2881 |
msgid "Inactive"
|
2882 |
msgstr "Attivo"
|
3951 |
msgid "Fee \"%s\" deleted."
|
3952 |
msgstr "Canone \"%s\" soppresso."
|
3953 |
|
3954 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3955 |
+
#, fuzzy
|
3956 |
+
msgctxt "fees admin"
|
3957 |
+
msgid "Fee enabled."
|
3958 |
+
msgstr "Canone disattivato."
|
3959 |
+
|
3960 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3961 |
msgctxt "fees admin"
|
3962 |
msgid "Fee disabled."
|
3963 |
msgstr "Canone disattivato."
|
3972 |
msgid "fees"
|
3973 |
msgstr "Canoni"
|
3974 |
|
3975 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3976 |
msgctxt "fees admin"
|
3977 |
msgid "Attributes"
|
3978 |
msgstr "Attributi"
|
3979 |
|
3980 |
+
#: includes/admin/helpers/tables/class-fees-table.php:137
|
3981 |
msgctxt "fees admin"
|
3982 |
msgid "Edit"
|
3983 |
msgstr "Modifica"
|
3984 |
|
3985 |
+
#: includes/admin/helpers/tables/class-fees-table.php:207
|
3986 |
msgctxt "fees admin"
|
3987 |
msgid "Variable"
|
3988 |
msgstr "Variabile"
|
3989 |
|
3990 |
+
#: includes/admin/helpers/tables/class-fees-table.php:212
|
3991 |
msgctxt "fees admin"
|
3992 |
msgid "%1$s + %2$s per category"
|
3993 |
msgstr "%1$s + %2$s per categoria"
|
3994 |
|
3995 |
+
#: includes/admin/helpers/tables/class-fees-table.php:231
|
3996 |
msgctxt "fees admin"
|
3997 |
msgid "Forever"
|
3998 |
msgstr "Per sempre"
|
3999 |
|
4000 |
+
#: includes/admin/helpers/tables/class-fees-table.php:233
|
4001 |
msgctxt "fees admin"
|
4002 |
msgid "%d day"
|
4003 |
msgid_plural "%d days"
|
4004 |
msgstr[0] "%d giorno"
|
4005 |
msgstr[1] "%d giorni"
|
4006 |
|
4007 |
+
#: includes/admin/helpers/tables/class-fees-table.php:263
|
4008 |
msgctxt "fees admin"
|
4009 |
msgid "All categories"
|
4010 |
msgstr "Tutte le categorie"
|
4011 |
|
4012 |
+
#: includes/admin/helpers/tables/class-fees-table.php:292
|
4013 |
msgctxt "fees admin"
|
4014 |
msgid "Sticky"
|
4015 |
msgstr "Sticky"
|
4016 |
|
4017 |
+
#: includes/admin/helpers/tables/class-fees-table.php:296
|
4018 |
msgctxt "fees admin"
|
4019 |
msgid "Recurring"
|
4020 |
msgstr "Ricorrente"
|
4021 |
|
4022 |
+
#: includes/admin/helpers/tables/class-fees-table.php:300
|
4023 |
msgctxt "fees admin"
|
4024 |
msgid "Private"
|
4025 |
msgstr "Privato"
|
4193 |
msgid "Reported"
|
4194 |
msgstr "Segnalato"
|
4195 |
|
4196 |
+
#: includes/models/class-listing.php:961
|
4197 |
msgctxt "listing status"
|
4198 |
msgid "Unknown"
|
4199 |
msgstr "Sconosciuto"
|
4200 |
|
4201 |
+
#: includes/models/class-listing.php:962
|
4202 |
msgctxt "listing status"
|
4203 |
msgid "Legacy"
|
4204 |
msgstr "Legacy"
|
4205 |
|
4206 |
+
#: includes/models/class-listing.php:963
|
4207 |
msgctxt "listing status"
|
4208 |
msgid "Incomplete"
|
4209 |
msgstr "Incompleto"
|
4210 |
|
4211 |
+
#: includes/models/class-listing.php:964
|
4212 |
msgctxt "listing status"
|
4213 |
msgid "Pending Payment"
|
4214 |
msgstr "Pagamento in attesa"
|
4215 |
|
4216 |
+
#: includes/models/class-listing.php:965
|
4217 |
msgctxt "listing status"
|
4218 |
msgid "Complete"
|
4219 |
msgstr "Completato"
|
4220 |
|
4221 |
+
#: includes/models/class-listing.php:966
|
4222 |
msgctxt "listing status"
|
4223 |
msgid "Pending Upgrade"
|
4224 |
msgstr "Aggiornamento in attesa"
|
4225 |
|
4226 |
+
#: includes/models/class-listing.php:967
|
4227 |
msgctxt "listing status"
|
4228 |
msgid "Expired"
|
4229 |
msgstr "Scaduto"
|
4230 |
|
4231 |
+
#: includes/models/class-listing.php:968
|
4232 |
msgctxt "listing status"
|
4233 |
msgid "Pending Renewal"
|
4234 |
msgstr "In attesa di rinnovo"
|
4235 |
|
4236 |
+
#: includes/models/class-listing.php:969
|
4237 |
msgctxt "listing status"
|
4238 |
msgid "Abandoned"
|
4239 |
msgstr "Abbandonato"
|
4894 |
msgstr "Autore"
|
4895 |
|
4896 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4897 |
+
#: includes/helpers/functions/general.php:1281
|
4898 |
msgctxt "admin settings"
|
4899 |
msgid "Date posted"
|
4900 |
msgstr "Data di pubblicazione"
|
4901 |
|
4902 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4903 |
+
#: includes/helpers/functions/general.php:1282
|
4904 |
msgctxt "admin settings"
|
4905 |
msgid "Date last modified"
|
4906 |
msgstr "Data ultima modifica"
|
5073 |
msgid "U.S. Dollar (USD)"
|
5074 |
msgstr "Dollaro USA (USD)"
|
5075 |
|
5076 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
5077 |
msgctxt "admin settings"
|
5078 |
msgid "Show currency symbol on the left"
|
5079 |
msgstr "Mostra il simbolo della valuta a sinistra"
|
5080 |
|
5081 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
5082 |
msgctxt "admin settings"
|
5083 |
msgid "Show currency symbol on the right"
|
5084 |
msgstr "Mostra il simbolo della valuta a destra"
|
5085 |
|
5086 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
5087 |
msgctxt "admin settings"
|
5088 |
msgid "Do not show currency symbol"
|
5089 |
msgstr "Non mostrare il simbolo della valuta"
|
5090 |
|
5091 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5092 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
5093 |
#, fuzzy
|
5094 |
msgctxt "admin settings"
|
5095 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5096 |
msgstr "La valuta del AED non è supportata da %s. %s"
|
5097 |
|
5098 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
5099 |
#, fuzzy
|
5100 |
msgctxt "admin settings"
|
5101 |
msgid ""
|
5106 |
"dopo questo periodo. Puoi anche <a>personalizzare l'e-mail</a> che gli "
|
5107 |
"utenti ricevono."
|
5108 |
|
5109 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1320
|
5110 |
msgctxt "admin settings"
|
5111 |
msgid "Try listing's email field first, then author's email."
|
5112 |
msgstr ""
|
5113 |
"Prova prima il campo di posta elettronica dell'elenco, quindi l'email "
|
5114 |
"dell'autore."
|
5115 |
|
5116 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1321
|
5117 |
msgctxt "admin settings"
|
5118 |
msgid "Try author's email first and then listing's email field."
|
5119 |
msgstr ""
|
5120 |
"Prova prima l'email dell'autore e poi il campo di posta elettronica "
|
5121 |
"dell'elenco."
|
5122 |
|
5123 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1334
|
5124 |
msgctxt "admin settings"
|
5125 |
msgid "Plain (text/plain)"
|
5126 |
msgstr "Testo (text/plain)"
|
5127 |
|
5128 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1335
|
5129 |
msgctxt "admin settings"
|
5130 |
msgid "HTML (text/html)"
|
5131 |
msgstr "HTML (text/html)"
|
5132 |
|
5133 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1336
|
5134 |
msgctxt "admin settings"
|
5135 |
msgid "Both (multipart/alternative)"
|
5136 |
msgstr "Entrambi (multipart/alternative)"
|
5137 |
|
5138 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1350
|
5139 |
msgctxt "admin settings"
|
5140 |
msgid "A new listing is submitted."
|
5141 |
msgstr "Viene inserito un nuovo Annuncio."
|
5142 |
|
5143 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1351
|
5144 |
msgctxt "admin settings"
|
5145 |
msgid "A listing is edited."
|
5146 |
msgstr "Un annuncio viene modificato."
|
5147 |
|
5148 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
5149 |
msgctxt "admin settings"
|
5150 |
msgid "A listing expires."
|
5151 |
msgstr "Un Annuncio è in scadenza."
|
5152 |
|
5153 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
5154 |
msgctxt "admin settings"
|
5155 |
msgid "A listing is renewed."
|
5156 |
msgstr "L'annuncio viene rinnovato."
|
5157 |
|
5158 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1354
|
5159 |
#, fuzzy
|
5160 |
msgctxt "admin settings"
|
5161 |
msgid "A listing payment is completed."
|
5162 |
msgstr "Un annuncio viene modificato."
|
5163 |
|
5164 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1355
|
5165 |
msgctxt "admin settings"
|
5166 |
msgid "A listing has been reported as inappropriate."
|
5167 |
msgstr "Un annuncio è stato segnalato come inappropriato."
|
5168 |
|
5169 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
5170 |
msgctxt "admin settings"
|
5171 |
msgid "A contact message is sent to a listing's owner."
|
5172 |
msgstr "Un messaggio di contatto sarà inviato al proprietario."
|
5173 |
|
5174 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
5175 |
msgctxt "admin settings"
|
5176 |
msgid "Their listing is submitted."
|
5177 |
msgstr "Viene inserito un nuovo Annuncio."
|
5178 |
|
5179 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1384
|
5180 |
msgctxt "admin settings"
|
5181 |
msgid "Their listing is approved/published."
|
5182 |
msgstr "L'iscrizione è stata approvata e pubblicata."
|
5183 |
|
5184 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1385
|
5185 |
#, fuzzy
|
5186 |
msgctxt "admin settings"
|
5187 |
msgid "A payment for their listing is completed."
|
5188 |
msgstr "Viene inserito un nuovo Annuncio."
|
5189 |
|
5190 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
5191 |
msgctxt "admin settings"
|
5192 |
msgid "Their listing expired or is about to expire."
|
5193 |
msgstr "Il loro annuncio è scaduto o sta per scadere."
|
5194 |
|
5195 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1404
|
5196 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
5197 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
5198 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
5199 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1514
|
5200 |
msgctxt "admin settings"
|
5201 |
msgid "Listing's title"
|
5202 |
msgstr "Titolo dell'annuncio"
|
5203 |
|
5204 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1405
|
5205 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
5206 |
#, fuzzy
|
5207 |
msgctxt "admin settings"
|
5208 |
msgid "Listing's fee plan name"
|
5209 |
msgstr "Data di scadenza dell'annuncio"
|
5210 |
|
5211 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1406
|
5212 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
5213 |
#, fuzzy
|
5214 |
msgctxt "admin settings"
|
5215 |
msgid "Listing's fee plan description"
|
5216 |
msgstr "Descrizione del campo"
|
5217 |
|
5218 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
5219 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
5220 |
#, fuzzy
|
5221 |
msgctxt "admin settings"
|
5222 |
msgid "Listing's fee plan details"
|
5223 |
msgstr "Data di scadenza dell'annuncio"
|
5224 |
|
5225 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
5226 |
msgctxt "admin settings"
|
5227 |
msgid ""
|
5228 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
5231 |
"Il tuo Annuncio \"[listing]\" è ora disponibile all'indirizzo [listing-url] "
|
5232 |
"e può essere visualizzato dal pubblico."
|
5233 |
|
5234 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1424
|
5235 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1458
|
5236 |
msgctxt "admin settings"
|
5237 |
msgid "Listing's URL"
|
5238 |
msgstr "URL dell'annuncio"
|
5239 |
|
5240 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1425
|
5241 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1465
|
5242 |
msgctxt "admin settings"
|
5243 |
msgid "Listing's Access Key"
|
5244 |
msgstr "Chiave di accesso all'annuncio"
|
5245 |
|
5246 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
5247 |
msgctxt "admin settings"
|
5248 |
msgid "Sender's name"
|
5249 |
msgstr "Nome del mittente"
|
5250 |
|
5251 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1463
|
5252 |
msgctxt "admin settings"
|
5253 |
msgid "Contact message"
|
5254 |
msgstr "Un messaggio di contatto sarà inviato al proprietario."
|
5255 |
|
5256 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1464
|
5257 |
msgctxt "admin settings"
|
5258 |
msgid "Date and time the message was sent"
|
5259 |
msgstr "Data e ora di invio del messaggio"
|
5260 |
|
5261 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
5262 |
#, fuzzy
|
5263 |
msgctxt "admin settings"
|
5264 |
msgid "Payment items details."
|
5265 |
msgstr "Dati di pagamento aggiornati."
|
5266 |
|
5267 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
5268 |
msgctxt "admin settings"
|
5269 |
msgid "URL where user can review and print payment receipt."
|
5270 |
msgstr ""
|
5271 |
|
5272 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
5273 |
msgctxt "admin settings"
|
5274 |
msgid "Gateway used to process listing's payment."
|
5275 |
msgstr ""
|
5276 |
|
5277 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1515
|
5278 |
msgctxt "admin settings"
|
5279 |
msgid "Checkout URL link"
|
5280 |
msgstr "Collegamento URL Checkout"
|
5281 |
|
5282 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1617
|
5283 |
#, fuzzy
|
5284 |
msgctxt "admin settings"
|
5285 |
msgid "Uploaded Image (no resize)"
|
5286 |
msgstr "Carica Immagini"
|
5287 |
|
5288 |
+
#: includes/helpers/functions/general.php:1279
|
5289 |
msgctxt "admin settings"
|
5290 |
msgid "User"
|
5291 |
msgstr "Utente"
|
5292 |
|
5293 |
+
#: includes/helpers/functions/general.php:1280
|
5294 |
msgctxt "admin settings"
|
5295 |
msgid "User registration date"
|
5296 |
msgstr "Data di registrazione"
|
5507 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5508 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5509 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5510 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1301
|
5511 |
#: includes/admin/settings/class-settings.php:341
|
5512 |
msgctxt "settings"
|
5513 |
msgid "General Settings"
|
6137 |
"Utilizzare questa opzione per impostare l'immagine del badge in primo piano "
|
6138 |
"come collegamento a un URL definito."
|
6139 |
|
6140 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1132
|
6141 |
msgctxt "settings"
|
6142 |
msgid "Fee Order"
|
6143 |
msgstr "Ordine della tassa"
|
6144 |
|
6145 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1145
|
|
|
|
|
|
|
|
|
|
|
6146 |
msgctxt "settings"
|
6147 |
msgid "Put payment gateways in test mode?"
|
6148 |
msgstr "Mettere gateway di pagamento in modalità di prova?"
|
6152 |
msgid "Currency Code"
|
6153 |
msgstr "Codice Valuta"
|
6154 |
|
6155 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
6156 |
msgctxt "settings"
|
6157 |
msgid "Currency Symbol"
|
6158 |
msgstr "Simbolo valuta"
|
6159 |
|
6160 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
6161 |
msgctxt "settings"
|
6162 |
msgid "Currency symbol display"
|
6163 |
msgstr "Visualizzazione del simbolo di valuta"
|
6164 |
|
6165 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
6166 |
msgctxt "settings"
|
6167 |
msgid "Include fee description in receipt?"
|
6168 |
msgstr "Includere la descrizione della tassa nella ricevuta?"
|
6169 |
|
6170 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1225
|
6171 |
msgctxt "settings"
|
6172 |
msgid "Thank you for payment message"
|
6173 |
msgstr "Messaggio di ringraziamento per il pagamento"
|
6174 |
|
6175 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1278
|
6176 |
msgctxt "settings"
|
6177 |
msgid "Ask users to come back for abandoned payments?"
|
6178 |
msgstr "Chiedere agli utenti di tornare per pagamenti abbandonati?"
|
6179 |
|
6180 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1289
|
6181 |
msgctxt "settings"
|
6182 |
msgid "Listing abandonment threshold (hours)"
|
6183 |
msgstr "Soglia di abbandono dell'elenco (ore)"
|
6184 |
|
6185 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1306
|
6186 |
msgctxt "settings"
|
6187 |
msgid "Display email address fields publicly?"
|
6188 |
msgstr "Pubblica i campi di posta elettronica pubblicamente?"
|
6189 |
|
6190 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1307
|
6191 |
msgctxt "settings"
|
6192 |
msgid ""
|
6193 |
"Shows the email address of the listing owner to all web users. NOT "
|
6198 |
"web. NON RACCOMANDATO in quanto aumenta lo spam all'indirizzo e consente ai "
|
6199 |
"bot di spam di raccogliere il prodotto per un uso futuro."
|
6200 |
|
6201 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1316
|
6202 |
msgctxt "settings"
|
6203 |
msgid "How to determine the listing's email address?"
|
6204 |
msgstr "Come determinare l'indirizzo email dell'Annuncio?"
|
6205 |
|
6206 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1317
|
6207 |
msgctxt "settings"
|
6208 |
msgid ""
|
6209 |
"This affects emails sent to listing owners via contact forms or when their "
|
6212 |
"Ciò riguarda le e-mail inviate ai proprietari dell'elenco tramite moduli di "
|
6213 |
"contatto o quando i loro annunci scadono."
|
6214 |
|
6215 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1330
|
6216 |
msgctxt "settings"
|
6217 |
msgid "Email Content-Type header"
|
6218 |
msgstr "Intestazione e-mail Content-Type"
|
6219 |
|
6220 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1331
|
6221 |
msgctxt "settings"
|
6222 |
msgid ""
|
6223 |
"Use this setting to control the format of the emails explicitly. Some "
|
6230 |
"tipo di contenuto a meno che non sia esplicitamente impostato, puoi farlo "
|
6231 |
"qui. Se non siete sicuri, provate \"HTML\", \"Plain\" e poi \"Both\"."
|
6232 |
|
6233 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
6234 |
msgctxt "settings"
|
6235 |
msgid "Templates"
|
6236 |
msgstr "Modelli"
|
6237 |
|
6238 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1397
|
6239 |
msgctxt "settings"
|
6240 |
msgid "Email confirmation message"
|
6241 |
msgstr "Messaggio di conferma Email"
|
6242 |
|
6243 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1398
|
6244 |
msgctxt "settings"
|
6245 |
msgid "Sent after a listing has been submitted."
|
6246 |
msgstr "Inviati dopo l'invio di un annuncio."
|
6247 |
|
6248 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1416
|
6249 |
msgctxt "settings"
|
6250 |
msgid "Listing published message"
|
6251 |
msgstr "Messaggio di Annuncio pubblicato"
|
6252 |
|
6253 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1417
|
6254 |
msgctxt "settings"
|
6255 |
msgid "Sent when the listing has been published or approved by an admin."
|
6256 |
msgstr ""
|
6257 |
"Viene inviato quando l'Annuncio è stato pubblicato o approvato da un "
|
6258 |
"amministratore."
|
6259 |
|
6260 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
6261 |
msgctxt "settings"
|
6262 |
msgid "Listing Contact Message"
|
6263 |
msgstr "Elenco messaggi"
|
6264 |
|
6265 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1435
|
6266 |
msgctxt "settings"
|
6267 |
msgid ""
|
6268 |
"Sent to listing owners when someone uses the contact form on their listing "
|
6271 |
"Inviato ai proprietari dell'Annuncio quando qualcuno utilizza il modulo di "
|
6272 |
"contatto nelle pagine di inserimento."
|
6273 |
|
6274 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1475
|
6275 |
#, fuzzy
|
6276 |
msgctxt "settings"
|
6277 |
msgid "Payment completed message"
|
6278 |
msgstr "Messaggio di promemoria per abbandono del pagamento"
|
6279 |
|
6280 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
6281 |
#, fuzzy
|
6282 |
msgctxt "settings"
|
6283 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6285 |
"Invia poco tempo dopo che un pagamento in sospeso viene abbandonato dagli "
|
6286 |
"utenti."
|
6287 |
|
6288 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
6289 |
msgctxt "settings"
|
6290 |
msgid "Payment abandoned reminder message"
|
6291 |
msgstr "Messaggio di promemoria per abbandono del pagamento"
|
6292 |
|
6293 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1638
|
6294 |
msgctxt "settings"
|
6295 |
msgid "Cropped"
|
6296 |
msgstr ""
|
6306 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6307 |
msgstr "Lo slug \"%s\" è già in uso per un'altra tassonomia."
|
6308 |
|
6309 |
+
#: includes/licensing.php:245
|
6310 |
msgctxt "settings"
|
6311 |
msgid "Themes"
|
6312 |
msgstr "Temi"
|
6313 |
|
6314 |
+
#: includes/licensing.php:316 includes/licensing.php:317
|
6315 |
msgctxt "settings"
|
6316 |
msgid "Please wait..."
|
6317 |
msgstr "Attendi..."
|
6318 |
|
6319 |
+
#: includes/licensing.php:317
|
6320 |
#, fuzzy
|
6321 |
msgctxt "settings"
|
6322 |
msgid "Deauthorize"
|
6372 |
msgid "Could not delete theme directory. Check permissions."
|
6373 |
msgstr "Impossibile eliminare l'elenco dei temi. Controlla i permessi."
|
6374 |
|
6375 |
+
#: includes/admin/controllers/class-themes-admin.php:240
|
6376 |
msgctxt "themes"
|
6377 |
msgid "Please upload a valid theme file."
|
6378 |
msgstr "Si prega di caricare un file valido del tema."
|
6379 |
|
6380 |
+
#: includes/admin/controllers/class-themes-admin.php:249
|
6381 |
msgctxt "themes"
|
6382 |
msgid "Could not move \"%s\" to a temporary directory."
|
6383 |
msgstr "Non è stato possibile spostare \"%s\" in un elenco temporaneo."
|
6384 |
|
6385 |
+
#: includes/admin/controllers/class-themes-admin.php:335
|
6386 |
msgctxt "themes"
|
6387 |
msgid "Activate your <a>license key</a> to use this theme."
|
6388 |
msgstr "Attivare la <a>chiave di licenza</a> per utilizzare questo tema."
|
6389 |
|
6390 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
6391 |
#, fuzzy
|
6392 |
msgctxt "themes"
|
6393 |
msgid "Invalid theme ID"
|
6394 |
msgstr "ID articolo non valido"
|
6395 |
|
6396 |
+
#: includes/admin/controllers/class-themes-admin.php:384
|
6397 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6398 |
msgctxt "themes"
|
6399 |
msgid "Could not update theme: %s"
|
6821 |
msgstr "Cestino"
|
6822 |
|
6823 |
#. translators: %s: url shortcode
|
6824 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
6825 |
msgctxt "contact email"
|
6826 |
msgid "You have received a reply from your listing at %s."
|
6827 |
msgstr "Hai ricevuto una risposta dal tuo annuncio su %s."
|
6828 |
|
6829 |
#. translators: %s: name shortcode
|
6830 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
6831 |
msgctxt "contact email"
|
6832 |
msgid "Name: %s"
|
6833 |
msgstr "Nome: %s"
|
6834 |
|
6835 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1451
|
6836 |
msgctxt "contact email"
|
6837 |
msgid "Message:"
|
6838 |
msgstr "Messaggio:"
|
6839 |
|
6840 |
#. translators: %s: date shortcode
|
6841 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1455
|
6842 |
msgctxt "contact email"
|
6843 |
msgid "Time: %s"
|
6844 |
msgstr "Tempo: %s"
|
7149 |
msgid "Add New Listing"
|
7150 |
msgstr "Aggiungi Nuovo Annuncio"
|
7151 |
|
7152 |
+
#: includes/models/class-listing.php:421
|
7153 |
msgctxt "listing"
|
7154 |
msgid "Listing has no registered payments"
|
7155 |
msgstr "L'annuncio non ha pagamenti registrati"
|
7156 |
|
7157 |
+
#: includes/models/class-listing.php:430
|
7158 |
msgctxt "listing"
|
7159 |
msgid "Can't delete payment"
|
7160 |
msgstr "Non è possibile cancellare il pagamento"
|
7161 |
|
7162 |
+
#: includes/models/class-listing.php:468
|
7163 |
msgctxt "listing"
|
7164 |
msgid "Listing expired"
|
7165 |
msgstr "Annuncio scaduto"
|
7166 |
|
7167 |
+
#: includes/models/class-listing.php:668
|
7168 |
msgctxt "listing"
|
7169 |
msgid "(Unavailable Plan)"
|
7170 |
msgstr "(Piano non disponibile)"
|
7171 |
|
7172 |
+
#: includes/models/class-listing.php:858
|
7173 |
msgctxt "listing"
|
7174 |
msgid "Plan \"%s\" (recurring)"
|
7175 |
msgstr "Piano \"%s\" (ricorrente)"
|
7176 |
|
7177 |
+
#: includes/models/class-listing.php:860
|
7178 |
msgctxt "listing"
|
7179 |
msgid "Plan \"%s\""
|
7180 |
msgstr "Piano \"%s\"."
|
7308 |
msgid "Enable %s?"
|
7309 |
msgstr "Attivare %s?"
|
7310 |
|
7311 |
+
#: includes/class-payment-gateways.php:131
|
7312 |
msgctxt "payment-gateways"
|
7313 |
msgid ""
|
7314 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
7318 |
"non sarà disponibile fino a quando i seguenti problemi non saranno stati "
|
7319 |
"risolti: <problems>."
|
7320 |
|
7321 |
+
#: includes/class-payment-gateways.php:133
|
7322 |
msgctxt "payment-gateways"
|
7323 |
msgid "Please check the <link>payment settings</link>."
|
7324 |
msgstr "Si prega di controllare le <link>impostazioni di pagamento</link>."
|
7325 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7326 |
#: includes/class-recaptcha.php:32
|
7327 |
msgctxt "recaptcha"
|
7328 |
msgid "The reCAPTCHA wasn't entered correctly."
|
7556 |
"anteriore del tuo sito. Se non l'hai voluto, clicca <a>qui</a> per "
|
7557 |
"modificare l'impostazione."
|
7558 |
|
7559 |
+
#: includes/controllers/pages/class-submit-listing.php:424
|
7560 |
msgctxt "templates"
|
7561 |
msgid ""
|
7562 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7565 |
"<b>Vista non disponibile</b>. È stata selezionata l'impostazione "
|
7566 |
"\"Disattivare l'invio di annunci da frontend\"?"
|
7567 |
|
7568 |
+
#: includes/controllers/pages/class-submit-listing.php:426
|
7569 |
msgctxt "templates"
|
7570 |
msgid ""
|
7571 |
"Listing submission has been disabled. Contact the administrator for details."
|
7573 |
"L'inserimento di un annuncio è stato disabilitato. Contattare "
|
7574 |
"l'amministratore per i dettagli."
|
7575 |
|
7576 |
+
#: includes/controllers/pages/class-submit-listing.php:824
|
7577 |
msgctxt "templates"
|
7578 |
msgid ""
|
7579 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7580 |
"submit a listing. %s to create a fee plan"
|
7581 |
msgstr ""
|
7582 |
|
7583 |
+
#: includes/controllers/pages/class-submit-listing.php:838
|
7584 |
msgctxt "templates"
|
7585 |
msgid ""
|
7586 |
"Listing submission is not available at the moment. Contact the administrator "
|
7589 |
"Al momento non è disponibile l'invio di annunci. Contattare l'amministratore "
|
7590 |
"per i dettagli."
|
7591 |
|
7592 |
+
#: includes/controllers/pages/class-submit-listing.php:841
|
7593 |
msgctxt "templates"
|
7594 |
msgid ""
|
7595 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
7600 |
"%s e crea un nuovo campo con questa associazione, o assegna questa "
|
7601 |
"associazione ad un campo esistente."
|
7602 |
|
7603 |
+
#: includes/controllers/pages/class-submit-listing.php:1286
|
7604 |
msgctxt "templates"
|
7605 |
msgid "Please agree to the Terms and Conditions."
|
7606 |
msgstr "Per favore è necessario accettare le condizioni d'uso."
|
7607 |
|
7608 |
+
#: includes/controllers/pages/class-submit-listing.php:1300
|
7609 |
msgctxt "templates"
|
7610 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7611 |
msgstr "Accetto i <a>termini e le condizioni</a> d'uso"
|
7612 |
|
7613 |
+
#: includes/helpers/functions/general.php:1362
|
7614 |
msgctxt "templates"
|
7615 |
msgid "Return to results"
|
7616 |
msgstr "Ritorno ai risultati"
|
7945 |
msgid "You can't edit this listing."
|
7946 |
msgstr "Non è possibile modificare questo annuncio."
|
7947 |
|
7948 |
+
#: includes/controllers/pages/class-submit-listing.php:168
|
7949 |
msgctxt "submit listing"
|
7950 |
msgid ""
|
7951 |
"This listing can't be edited at this time because it has no fee plan "
|
7956 |
"piano tariffario associato. Si prega di <a>modificare l'annuncio</a> dal "
|
7957 |
"backend e di associarlo a un piano tariffario."
|
7958 |
|
7959 |
+
#: includes/controllers/pages/class-submit-listing.php:174
|
7960 |
msgctxt "submit listing"
|
7961 |
msgid ""
|
7962 |
"This listing can't be edited at this time. Please try again later or contact "
|
7965 |
"Questo annuncio non può essere modificato in questo momento. Riprovare più "
|
7966 |
"tardi o contattare l'amministratore se il problema persiste."
|
7967 |
|
7968 |
+
#: includes/controllers/pages/class-submit-listing.php:198
|
7969 |
msgctxt "submit listing"
|
7970 |
msgid "You're logged in as admin, payment will be skipped."
|
7971 |
msgstr "Sei loggato come amministratore, il pagamento verrà saltato."
|
7972 |
|
7973 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7974 |
msgctxt "submit listing"
|
7975 |
msgid "Category selection"
|
7976 |
msgstr "Selezione della categoria"
|
7977 |
|
7978 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7979 |
msgctxt "submit listing"
|
7980 |
msgid "Category & plan selection"
|
7981 |
msgstr "Selezione di categorie e piani"
|
7982 |
|
7983 |
+
#: includes/controllers/pages/class-submit-listing.php:821
|
7984 |
msgctxt "submit listing"
|
7985 |
msgid "Can not submit a listing at this moment. Please try again later."
|
7986 |
msgstr ""
|
7987 |
"Non è possibile inviare un annuncio in questo momento. Per favore, riprova "
|
7988 |
"più tardi."
|
7989 |
|
7990 |
+
#: includes/controllers/pages/class-submit-listing.php:870
|
7991 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
7992 |
msgctxt "submit listing"
|
7993 |
msgid "Please select a category."
|
7994 |
msgstr "Per favore seleziona una categoria."
|
7995 |
|
7996 |
+
#: includes/controllers/pages/class-submit-listing.php:893
|
7997 |
msgctxt "submit listing"
|
7998 |
msgid "Please choose a valid category for your plan."
|
7999 |
msgstr "Scegli una categoria valida per il tuo piano."
|
8000 |
|
8001 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
8002 |
msgctxt "submit listing"
|
8003 |
msgid "Please choose a valid fee plan for your category selection."
|
8004 |
msgstr ""
|
8005 |
"Si prega di scegliere un piano tariffario valido per la selezione della "
|
8006 |
"categoria."
|
8007 |
|
8008 |
+
#: includes/controllers/pages/class-submit-listing.php:1206
|
8009 |
msgctxt "submit listing"
|
8010 |
msgid "Please enter your desired username."
|
8011 |
msgstr "Inserisci il nome utente desiderato."
|
8012 |
|
8013 |
+
#: includes/controllers/pages/class-submit-listing.php:1211
|
8014 |
msgctxt "submit listing"
|
8015 |
msgid "Please enter the e-mail for your new account."
|
8016 |
msgstr "Inserisci l'e-mail per il tuo nuovo account."
|
8017 |
|
8018 |
+
#: includes/controllers/pages/class-submit-listing.php:1216
|
8019 |
msgctxt "submit listing"
|
8020 |
msgid "The username you chose is already in use. Please use a different one."
|
8021 |
msgstr "Il nome utente scelto è già in uso. Per favore, usane un'altra."
|
8022 |
|
8023 |
+
#: includes/controllers/pages/class-submit-listing.php:1221
|
8024 |
msgctxt "submit listing"
|
8025 |
msgid "The e-mail address you chose for your account is already in use."
|
8026 |
msgstr "L'indirizzo e-mail scelto per il tuo account è già in uso."
|
8030 |
msgid "Listing submitted by admin. Payment skipped."
|
8031 |
msgstr "Annuncio presentato da admin. Pagamento saltato."
|
8032 |
|
8033 |
+
#: includes/controllers/pages/class-submit-listing.php:1161
|
8034 |
msgctxt "listing submit"
|
8035 |
msgid ""
|
8036 |
"Image upload is required, please provide at least one image and submit again."
|
8367 |
msgid "General"
|
8368 |
msgstr "Generale"
|
8369 |
|
8370 |
+
#: includes/licensing.php:571
|
8371 |
msgctxt "licensing"
|
8372 |
msgid "Could not contact licensing server"
|
8373 |
msgstr "Impossibile contattare il server di licenza"
|
8374 |
|
8375 |
+
#: includes/licensing.php:584
|
8376 |
msgctxt "licensing"
|
8377 |
msgid ""
|
8378 |
"It was not possible to establish a connection with Business Directory's "
|
8381 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
8382 |
"Directory. cURL non è stato trovato nel sistema."
|
8383 |
|
8384 |
+
#: includes/licensing.php:586 includes/licensing.php:616
|
8385 |
msgctxt "licensing"
|
8386 |
msgid ""
|
8387 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8394 |
"recente di cURL e una versione di OpenSSL che supporta TLSv1.2 (la versione "
|
8395 |
"minima con supporto è OpenSSL 1.0.1.1c)."
|
8396 |
|
8397 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8398 |
msgctxt "licensing"
|
8399 |
msgid ""
|
8400 |
"Upgrading your system will not only allow you to communicate with Business "
|
8406 |
"sito web a interagire con i servizi utilizzando i più recenti standard di "
|
8407 |
"sicurezza."
|
8408 |
|
8409 |
+
#: includes/licensing.php:590
|
8410 |
msgctxt "licensing"
|
8411 |
msgid ""
|
8412 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8415 |
"Contatta il tuo fornitore di hosting e chiedi loro di aggiornare il tuo "
|
8416 |
"sistema. Includere questo messaggio se necessario"
|
8417 |
|
8418 |
+
#: includes/licensing.php:620
|
8419 |
msgctxt "licensing"
|
8420 |
msgid ""
|
8421 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8424 |
"Contatta il tuo fornitore di hosting e chiedi loro di aggiornare il tuo "
|
8425 |
"sistema. Includere questo messaggio se necessario."
|
8426 |
|
8427 |
+
#: includes/licensing.php:656
|
8428 |
msgctxt "licensing"
|
8429 |
msgid "The server returned a 403 Forbidden error."
|
8430 |
msgstr "Il server ha restituito un errore 403 Forbidden error."
|
8431 |
|
8432 |
+
#: includes/licensing.php:902
|
8433 |
msgctxt "licensing"
|
8434 |
msgid "Could not activate license: %s."
|
8435 |
msgstr "Impossibile attivare la licenza: %s."
|
8436 |
|
8437 |
+
#: includes/licensing.php:907
|
8438 |
msgctxt "licensing"
|
8439 |
msgid "License activated"
|
8440 |
msgstr "Licenza attivata"
|
8441 |
|
8442 |
+
#: includes/licensing.php:939
|
8443 |
msgctxt "licensing"
|
8444 |
msgid "Could not deactivate license: %s."
|
8445 |
msgstr "Impossibile disattivare la licenza: %s."
|
8446 |
|
8447 |
+
#: includes/licensing.php:941
|
8448 |
msgctxt "licensing"
|
8449 |
msgid "License deactivated"
|
8450 |
msgstr "Licenza disattivata"
|
8451 |
|
8452 |
#. translators: "<module-name>" version <version-number> is not...
|
8453 |
+
#: includes/licensing.php:1181
|
8454 |
msgctxt "deprecation"
|
8455 |
msgid ""
|
8456 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8471 |
msgstr[0] "%d immagine consentita."
|
8472 |
msgstr[1] "%d immagini consentite."
|
8473 |
|
8474 |
+
#: includes/models/class-fee-plan.php:387
|
8475 |
msgctxt "fees-api"
|
8476 |
msgid "Fee label is required."
|
8477 |
msgstr "È richiesta l'etichetta della Donazione."
|
8478 |
|
8479 |
+
#: includes/models/class-fee-plan.php:393
|
8480 |
msgctxt "fees-api"
|
8481 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8482 |
msgstr ""
|
8483 |
"Il canone per l'annuncio deve essere inferiore a 10 anni (3650 giorni)."
|
8484 |
|
8485 |
+
#: includes/models/class-fee-plan.php:398
|
8486 |
msgctxt "fees-api"
|
8487 |
msgid ""
|
8488 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
8494 |
"l'inserimento dell'annuncio, si prega di modificare il <a>piano tariffario</"
|
8495 |
"a> in modo appropriato."
|
8496 |
|
8497 |
+
#: includes/models/class-fee-plan.php:401
|
8498 |
msgctxt "fees-api"
|
8499 |
msgid ""
|
8500 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
8571 |
msgid "Unkown error while uploading file."
|
8572 |
msgstr "Errore durante il caricamento del file."
|
8573 |
|
8574 |
+
#: includes/utils.php:335
|
8575 |
msgctxt "utils"
|
8576 |
msgid "Error while uploading file"
|
8577 |
msgstr "Errore durante il caricamento del file"
|
8578 |
|
8579 |
+
#: includes/utils.php:359 includes/utils.php:366
|
8580 |
msgctxt "utils"
|
8581 |
msgid "File type \"%s\" is not allowed"
|
8582 |
msgstr "Il tipo di file \"%s\" non è consentito"
|
8583 |
|
8584 |
+
#: includes/utils.php:585
|
8585 |
msgctxt "utils"
|
8586 |
msgid ""
|
8587 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8691 |
msgid "required"
|
8692 |
msgstr "richiesto"
|
8693 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8694 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8695 |
msgctxt "admin infometabox"
|
8696 |
msgid "Renewal url (copy & paste)"
|
8971 |
msgid "Continue"
|
8972 |
msgstr "Continua"
|
8973 |
|
8974 |
+
#, fuzzy
|
8975 |
+
#~ msgid "Payments are currently turned off."
|
8976 |
+
#~ msgstr "I pagamenti sono attualmente disattivati."
|
8977 |
+
|
8978 |
+
#, fuzzy
|
8979 |
+
#~ msgid ""
|
8980 |
+
#~ "To manage fees you need to go to the %1$sManage Options - Payment%2$s "
|
8981 |
+
#~ "page and check the box next to 'Turn On Payments' under 'Payment "
|
8982 |
+
#~ "Settings'."
|
8983 |
+
#~ msgstr ""
|
8984 |
+
#~ "Per gestire le tasse devi andare alla pagina <a>Opzioni di gestione - "
|
8985 |
+
#~ "Donazione</a> e selezionare la casella accanto a 'Attiva pagamenti' sotto "
|
8986 |
+
#~ "'Impostazioni di pagamento'."
|
8987 |
+
|
8988 |
+
#, fuzzy
|
8989 |
+
#~ msgid "Paid"
|
8990 |
+
#~ msgstr "Pagato"
|
8991 |
+
|
8992 |
+
#~ msgid "Manage Options"
|
8993 |
+
#~ msgstr "Gestire le opzioni"
|
8994 |
+
|
8995 |
+
#~ msgid "Manage Paid Listings"
|
8996 |
+
#~ msgstr "Gestione delle Donazioni ricevute"
|
8997 |
+
|
8998 |
+
#~ msgctxt "settings"
|
8999 |
+
#~ msgid "Turn On payments?"
|
9000 |
+
#~ msgstr "Attivare i pagamenti?"
|
9001 |
+
|
9002 |
+
#~ msgctxt "payment-gateways"
|
9003 |
+
#~ msgid ""
|
9004 |
+
#~ "You have payments turned on but no gateway is active and properly "
|
9005 |
+
#~ "configured. Go to <link>Manage Options - Payment</link> to change the "
|
9006 |
+
#~ "payment settings. Until you change this, the directory will operate in "
|
9007 |
+
#~ "<i>Free Mode</i>."
|
9008 |
+
#~ msgstr ""
|
9009 |
+
#~ "I pagamenti sono attivati ma nessun gateway è attivo e configurato "
|
9010 |
+
#~ "correttamente. Vai a <link>Gestione Opzioni - Pagamento</link> per "
|
9011 |
+
#~ "modificare le impostazioni di pagamento. Fino a quando non viene "
|
9012 |
+
#~ "modificato, la directory funzionerà in <i>modalità libera</i>."
|
9013 |
+
|
9014 |
#, fuzzy
|
9015 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
9016 |
#~ msgstr ""
|
languages/business-directory-plugin-nl_NL.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2022-
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: admin <info@nederlofcentrum.nl>\n"
|
9 |
"Language-Team: Dutch\n"
|
@@ -80,17 +80,17 @@ msgstr "Business Directory instellingen"
|
|
80 |
msgid "Directory"
|
81 |
msgstr "Registers"
|
82 |
|
83 |
-
#: includes/admin/class-admin.php:312
|
84 |
msgid "Fee Plans"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/admin/class-admin.php:315
|
88 |
#, fuzzy
|
89 |
msgid "Form Fields"
|
90 |
msgstr "Formulier velden"
|
91 |
|
92 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
93 |
-
#: includes/licensing.php:
|
94 |
msgid "Modules"
|
95 |
msgstr ""
|
96 |
|
@@ -206,7 +206,7 @@ msgid "Amount"
|
|
206 |
msgstr "Bedrag"
|
207 |
|
208 |
#: includes/admin/controllers/class-admin-fees.php:49
|
209 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
210 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
211 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
212 |
#, fuzzy
|
@@ -244,7 +244,7 @@ msgid "Fee plan listings updated."
|
|
244 |
msgstr "Tarief bijgewerkt."
|
245 |
|
246 |
#: includes/admin/controllers/class-admin-listings.php:185
|
247 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
248 |
#: templates/email/listing-reported.tpl.php:7
|
249 |
msgid "Listing Information"
|
250 |
msgstr "Registratie informatie"
|
@@ -294,14 +294,14 @@ msgid ""
|
|
294 |
msgstr ""
|
295 |
|
296 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
297 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
298 |
#, fuzzy
|
299 |
msgid "Go to \"Form Fields\""
|
300 |
msgstr "Ga naar \"instellen formulier velden\""
|
301 |
|
302 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
303 |
-
#: includes/helpers/functions/general.php:
|
304 |
-
#: includes/helpers/functions/general.php:
|
305 |
msgid "Go back"
|
306 |
msgstr ""
|
307 |
|
@@ -410,11 +410,11 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
410 |
msgstr "Business Directory instellingen"
|
411 |
|
412 |
#: includes/admin/controllers/class-settings-admin.php:536
|
413 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
414 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
415 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
416 |
#: templates/admin/payments-note.tpl.php:14
|
417 |
-
#: templates/admin/themes-item.tpl.php:
|
418 |
#: templates/parts/listing-buttons.tpl.php:31
|
419 |
#: templates/parts/listing-buttons.tpl.php:65
|
420 |
#, fuzzy
|
@@ -466,8 +466,8 @@ msgid "Installed"
|
|
466 |
msgstr "Geinstalleerd: %s"
|
467 |
|
468 |
#: includes/admin/helpers/class-modules-list.php:187
|
469 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
470 |
-
#: templates/admin/themes-item.tpl.php:
|
471 |
#, fuzzy
|
472 |
msgid "Active"
|
473 |
msgstr "Actief"
|
@@ -479,13 +479,13 @@ msgstr "Geinstalleerd: %s"
|
|
479 |
|
480 |
#: includes/admin/helpers/class-modules-list.php:225
|
481 |
#: includes/controllers/class-smtp.php:317
|
482 |
-
#: templates/admin/themes-item.tpl.php:
|
483 |
#, fuzzy
|
484 |
msgid "Activate"
|
485 |
msgstr "Actief"
|
486 |
|
487 |
#: includes/admin/helpers/class-modules-list.php:235
|
488 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
489 |
#, fuzzy
|
490 |
msgid "Upgrade Now"
|
491 |
msgstr "Opwaarderen tot %s"
|
@@ -501,14 +501,19 @@ msgstr ""
|
|
501 |
|
502 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
503 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
504 |
msgid "Plan Details"
|
505 |
msgstr "Details kosten"
|
506 |
|
507 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
508 |
msgid "Pricing"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
512 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
513 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
514 |
#: includes/helpers/class-app.php:92
|
@@ -516,41 +521,40 @@ msgstr ""
|
|
516 |
msgid "Listings"
|
517 |
msgstr "Registraties"
|
518 |
|
519 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
520 |
#, fuzzy
|
521 |
msgid "Disable"
|
522 |
msgstr "Uitzetten"
|
523 |
|
524 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
525 |
#, fuzzy
|
526 |
msgid "Enable"
|
527 |
msgstr "Aanzetten"
|
528 |
|
529 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
530 |
msgid "ID: %s"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
534 |
#, fuzzy
|
535 |
msgid "Paid Plan"
|
536 |
msgstr "Betaald"
|
537 |
|
538 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
539 |
#, fuzzy
|
540 |
msgid "Free Plan"
|
541 |
msgstr "Ga naar \"instellen formulier velden\""
|
542 |
|
543 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
544 |
msgid "%1$s for %2$s"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
548 |
-
#: includes/admin/helpers/tables/class-fees-table.php:293
|
549 |
#, fuzzy
|
550 |
msgid "Disabled"
|
551 |
msgstr "Uitgezet"
|
552 |
|
553 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
554 |
#: includes/helpers/functions/templates-ui.php:431
|
555 |
#, fuzzy
|
556 |
msgid "Default"
|
@@ -594,7 +598,7 @@ msgid "Missing tables: %s"
|
|
594 |
msgstr "Missende tabellen: %s"
|
595 |
|
596 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
597 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
598 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
599 |
#: templates/listing-contactform.tpl.php:33
|
600 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -642,7 +646,7 @@ msgstr "%s is vereist."
|
|
642 |
|
643 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
644 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
645 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
646 |
#, fuzzy
|
647 |
msgid "Terms and Conditions"
|
648 |
msgstr "Voorwaarden en condities"
|
@@ -871,11 +875,11 @@ msgstr ""
|
|
871 |
msgid "URL"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
875 |
msgid "Thank you for your payment."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
879 |
msgid ""
|
880 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
881 |
"collect payments in this currency."
|
@@ -885,60 +889,60 @@ msgid_plural ""
|
|
885 |
msgstr[0] ""
|
886 |
msgstr[1] ""
|
887 |
|
888 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
889 |
#, fuzzy
|
890 |
msgid "Email Notifications"
|
891 |
msgstr "E-Mail Notificaties"
|
892 |
|
893 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
894 |
#, fuzzy
|
895 |
msgid "Notify admin via email when..."
|
896 |
msgstr "Bericht via email als..."
|
897 |
|
898 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
899 |
#, fuzzy
|
900 |
msgid "CC this email address too"
|
901 |
msgstr "CC dit email adres ook"
|
902 |
|
903 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
904 |
#, fuzzy
|
905 |
msgid ""
|
906 |
"You can modify the text template used for most of these emails in the "
|
907 |
"<templates-link>Templates</templates-link> tab."
|
908 |
msgstr "Je kunt de tekst veranderen van de meeste e-mail templates hieronder."
|
909 |
|
910 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
911 |
#, fuzzy
|
912 |
msgid "Notify users via email when..."
|
913 |
msgstr "Stuur notificatie naar gebruikers als..."
|
914 |
|
915 |
#. translators: %s: email shortcode
|
916 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
917 |
#, fuzzy
|
918 |
msgid "Email: %s"
|
919 |
msgstr "E-Mail: %s"
|
920 |
|
921 |
#. translators: %s: phone shortcode
|
922 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
923 |
#, fuzzy
|
924 |
msgid "Phone Number: %s"
|
925 |
msgstr "Tel nr"
|
926 |
|
927 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
928 |
#, fuzzy
|
929 |
msgid "Sender's email address"
|
930 |
msgstr "Ongeld e-mail adres."
|
931 |
|
932 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
933 |
#, fuzzy
|
934 |
msgid "Sender's phone number"
|
935 |
msgstr "Naam auteur"
|
936 |
|
937 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
938 |
msgid "Renewal and expiration"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
942 |
#: templates/admin/uninstall-complete.tpl.php:4
|
943 |
msgid "Uninstall"
|
944 |
msgstr ""
|
@@ -1035,7 +1039,7 @@ msgstr "Bekijk "
|
|
1035 |
|
1036 |
#. translators: %s: Status name
|
1037 |
#: includes/admin/views/modules/list.php:63
|
1038 |
-
#: templates/admin/themes-item.tpl.php:
|
1039 |
#, fuzzy
|
1040 |
msgid "Status: %s"
|
1041 |
msgstr "Status"
|
@@ -1204,12 +1208,10 @@ msgstr "Nieuwe registratie toevoegen"
|
|
1204 |
msgid "View All Listings"
|
1205 |
msgstr "Bekijk alle registratie"
|
1206 |
|
1207 |
-
|
1208 |
-
#: includes/class-payment-gateways.php:165
|
1209 |
msgid ""
|
1210 |
-
"You have
|
1211 |
-
"
|
1212 |
-
"to %1$sFee Plans%2$s to add or edit your fee plan(s)."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
#: includes/class-wpbdp.php:369
|
@@ -1232,7 +1234,7 @@ msgid ""
|
|
1232 |
"admin."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:
|
1236 |
msgid "Could not find image ID"
|
1237 |
msgstr ""
|
1238 |
|
@@ -1431,38 +1433,38 @@ msgid "This is just a preview. The listing has not been published yet."
|
|
1431 |
msgstr ""
|
1432 |
"Dit is alleen een voorvertoning. De registratie is nog niet gepubliceerd."
|
1433 |
|
1434 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1435 |
#, fuzzy
|
1436 |
msgid "Listing Images"
|
1437 |
msgstr "Beelden bij de registratie"
|
1438 |
|
1439 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1440 |
msgid "Account Creation"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1444 |
#, fuzzy
|
1445 |
msgid "Go to \"Fee Plans\""
|
1446 |
msgstr "Ga naar \"instellen formulier velden\""
|
1447 |
|
1448 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1449 |
msgid "Please choose a fee plan."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1453 |
msgid "Please check the form for errors, correct them and submit again."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1457 |
msgid "Create a user account on this site"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1461 |
#, fuzzy
|
1462 |
msgid "Username"
|
1463 |
msgstr "Gebruiker"
|
1464 |
|
1465 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1466 |
#, fuzzy
|
1467 |
msgid "Clear Form"
|
1468 |
msgstr "Leegmaken"
|
@@ -1758,8 +1760,7 @@ msgid ""
|
|
1758 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: includes/helpers/functions/general.php:
|
1762 |
-
#: templates/admin/fees-index.tpl.php:67
|
1763 |
msgid "Free"
|
1764 |
msgstr "Gratis"
|
1765 |
|
@@ -1774,68 +1775,68 @@ msgid "Manage Listings"
|
|
1774 |
msgstr "Opties beheren"
|
1775 |
|
1776 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1777 |
-
#: includes/licensing.php:
|
1778 |
msgid ""
|
1779 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1780 |
"get updates."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: includes/licensing.php:
|
1784 |
msgid "Licenses"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: includes/licensing.php:
|
1788 |
msgid "Build more powerful directories"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: includes/licensing.php:
|
1792 |
msgid ""
|
1793 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: includes/licensing.php:
|
1797 |
msgid "Already purchased?"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
#. translators: %s: item type.
|
1801 |
-
#: includes/licensing.php:
|
1802 |
msgid "%s will not get updates until license is reauthorized."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: includes/licensing.php:
|
1806 |
#, fuzzy
|
1807 |
msgid "Enter License Key here"
|
1808 |
msgstr "Beelden bij de registratie"
|
1809 |
|
1810 |
-
#: includes/licensing.php:
|
1811 |
#, fuzzy
|
1812 |
msgid "Authorize"
|
1813 |
msgstr "Auteur"
|
1814 |
|
1815 |
-
#: includes/licensing.php:
|
1816 |
msgid "Invalid item ID"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: includes/licensing.php:
|
1820 |
msgid "No license key provided"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: includes/licensing.php:
|
1824 |
#, fuzzy
|
1825 |
msgid "License key is invalid"
|
1826 |
msgstr "Beelden bij de registratie"
|
1827 |
|
1828 |
-
#: includes/licensing.php:
|
1829 |
#, fuzzy
|
1830 |
msgid "Deactivation failed"
|
1831 |
msgstr "Actief"
|
1832 |
|
1833 |
-
#: includes/licensing.php:
|
1834 |
msgid "The license key was revoked."
|
1835 |
msgstr ""
|
1836 |
|
1837 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1838 |
-
#: includes/licensing.php:
|
1839 |
msgid ""
|
1840 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1841 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -1843,49 +1844,49 @@ msgid ""
|
|
1843 |
"with your report."
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: includes/licensing.php:
|
1847 |
msgid ""
|
1848 |
"It was not possible to establish a connection with the Business Directory "
|
1849 |
"server. The connection failed with the following error:"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: includes/licensing.php:
|
1853 |
msgid ""
|
1854 |
"It was not possible to establish a connection with the Business Directory "
|
1855 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: includes/licensing.php:
|
1859 |
msgid ""
|
1860 |
"It looks like your server is not authorized to make outgoing requests to "
|
1861 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1862 |
"our IP address 52.0.78.177 to your allow list."
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: includes/licensing.php:
|
1866 |
#, fuzzy
|
1867 |
msgid "Business Directory license key is missing."
|
1868 |
msgstr "Business Directory - Zoeken"
|
1869 |
|
1870 |
-
#: includes/licensing.php:
|
1871 |
#, fuzzy
|
1872 |
msgid "Business Directory license key has expired"
|
1873 |
msgstr "Business Directory - Zoeken"
|
1874 |
|
1875 |
-
#: includes/licensing.php:
|
1876 |
#, fuzzy
|
1877 |
msgid "Could not verify Business Directory license."
|
1878 |
msgstr "Business Directory instellingen"
|
1879 |
|
1880 |
-
#: includes/licensing.php:
|
1881 |
msgid "Review license keys"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: includes/licensing.php:
|
1885 |
msgid "Missing data. Please reload this page and try again."
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: includes/licensing.php:
|
1889 |
msgid "Please enter a license key."
|
1890 |
msgstr ""
|
1891 |
|
@@ -1928,11 +1929,11 @@ msgstr ""
|
|
1928 |
msgid "ZIP file is not a valid Business Directory theme file."
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: includes/utils.php:
|
1932 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: includes/utils.php:
|
1936 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
1937 |
msgstr ""
|
1938 |
|
@@ -2252,69 +2253,48 @@ msgstr "Bewaar veranderingen"
|
|
2252 |
msgid "Add New Listing Fee"
|
2253 |
msgstr "Nieuw Registratie tarief toevoegen"
|
2254 |
|
2255 |
-
#: templates/admin/fees-index.tpl.php:
|
2256 |
-
msgid "Payments are currently turned off."
|
2257 |
-
msgstr ""
|
2258 |
-
|
2259 |
-
#. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
|
2260 |
-
#: templates/admin/fees-index.tpl.php:21
|
2261 |
-
msgid ""
|
2262 |
-
"To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
|
2263 |
-
"and check the box next to 'Turn On Payments' under 'Payment Settings'."
|
2264 |
-
msgstr ""
|
2265 |
-
|
2266 |
-
#: templates/admin/fees-index.tpl.php:34
|
2267 |
#, fuzzy
|
2268 |
msgid "Order fees on the frontend by:"
|
2269 |
msgstr "Sorteer tarieven frontend door:"
|
2270 |
|
2271 |
-
#: templates/admin/fees-index.tpl.php:
|
2272 |
#, fuzzy
|
2273 |
msgid "↑ Ascending"
|
2274 |
msgstr "↑ Oplopend"
|
2275 |
|
2276 |
-
#: templates/admin/fees-index.tpl.php:
|
2277 |
#, fuzzy
|
2278 |
msgid "↓ Descending"
|
2279 |
msgstr "↓ Aflopend"
|
2280 |
|
2281 |
-
#: templates/admin/fees-index.tpl.php:
|
2282 |
msgid "Drag and drop to re-order fees."
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#. translators: %1$s is directory payment mode (Free or Paid)
|
2286 |
-
#: templates/admin/fees-index.tpl.php:66
|
2287 |
-
msgid "All fee plans may not be available in \"%1$s\" mode."
|
2288 |
-
msgstr ""
|
2289 |
-
|
2290 |
#: templates/admin/fees-index.tpl.php:67
|
2291 |
-
#, fuzzy
|
2292 |
-
msgid "Paid"
|
2293 |
-
msgstr "Betaald"
|
2294 |
-
|
2295 |
-
#: templates/admin/fees-index.tpl.php:92
|
2296 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: templates/admin/fees-index.tpl.php:
|
2300 |
msgid "Add a payment gateway to increase conversion rates"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
#. translators: %s: payment gateway name */
|
2304 |
-
#: templates/admin/fees-index.tpl.php:
|
2305 |
msgid "Add the %s gateway as a payment option."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: templates/admin/fees-index.tpl.php:
|
2309 |
#, fuzzy
|
2310 |
msgid "Upgrade"
|
2311 |
msgstr "Opwaarderen tot %s"
|
2312 |
|
2313 |
-
#: templates/admin/fees-index.tpl.php:
|
2314 |
msgid "Set up Authorize.net as a payment option."
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: templates/admin/fees-index.tpl.php:
|
2318 |
msgid "Set Up"
|
2319 |
msgstr ""
|
2320 |
|
@@ -2347,15 +2327,6 @@ msgstr "Weet je zeker dat je \"%s\" veld wilt verwijderen?"
|
|
2347 |
msgid "Delete Field"
|
2348 |
msgstr "Verwijder veld"
|
2349 |
|
2350 |
-
#: templates/admin/home.tpl.php:55
|
2351 |
-
#, fuzzy
|
2352 |
-
msgid "Manage Options"
|
2353 |
-
msgstr "Opties beheren"
|
2354 |
-
|
2355 |
-
#: templates/admin/home.tpl.php:74
|
2356 |
-
msgid "Manage Paid Listings"
|
2357 |
-
msgstr ""
|
2358 |
-
|
2359 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2360 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2361 |
#: templates/login.tpl.php:71
|
@@ -2662,7 +2633,7 @@ msgstr "Thema bijgewerkt."
|
|
2662 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#: templates/admin/themes-item.tpl.php:
|
2666 |
#, fuzzy
|
2667 |
msgid "Inactive"
|
2668 |
msgstr "Actief"
|
@@ -3631,7 +3602,13 @@ msgctxt "fees admin"
|
|
3631 |
msgid "Fee \"%s\" deleted."
|
3632 |
msgstr "Tarief verwijderd."
|
3633 |
|
3634 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3635 |
msgctxt "fees admin"
|
3636 |
msgid "Fee disabled."
|
3637 |
msgstr "Tarief gedeactiveerd"
|
@@ -3646,57 +3623,57 @@ msgctxt "fees admin"
|
|
3646 |
msgid "fees"
|
3647 |
msgstr "tarieven"
|
3648 |
|
3649 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3650 |
#, fuzzy
|
3651 |
msgctxt "fees admin"
|
3652 |
msgid "Attributes"
|
3653 |
msgstr "Veld attributen"
|
3654 |
|
3655 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3656 |
msgctxt "fees admin"
|
3657 |
msgid "Edit"
|
3658 |
msgstr "Bewerk"
|
3659 |
|
3660 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3661 |
#, fuzzy
|
3662 |
msgctxt "fees admin"
|
3663 |
msgid "Variable"
|
3664 |
msgstr "Uitzetten"
|
3665 |
|
3666 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3667 |
#, fuzzy
|
3668 |
msgctxt "fees admin"
|
3669 |
msgid "%1$s + %2$s per category"
|
3670 |
msgstr "Categorie selectie"
|
3671 |
|
3672 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3673 |
msgctxt "fees admin"
|
3674 |
msgid "Forever"
|
3675 |
msgstr "Altijd"
|
3676 |
|
3677 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3678 |
msgctxt "fees admin"
|
3679 |
msgid "%d day"
|
3680 |
msgid_plural "%d days"
|
3681 |
msgstr[0] "%d dag"
|
3682 |
msgstr[1] "%d dagen"
|
3683 |
|
3684 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3685 |
msgctxt "fees admin"
|
3686 |
msgid "All categories"
|
3687 |
msgstr "Alle categorieën"
|
3688 |
|
3689 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3690 |
msgctxt "fees admin"
|
3691 |
msgid "Sticky"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3695 |
msgctxt "fees admin"
|
3696 |
msgid "Recurring"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3700 |
#, fuzzy
|
3701 |
msgctxt "fees admin"
|
3702 |
msgid "Private"
|
@@ -3875,53 +3852,53 @@ msgctxt "listing status"
|
|
3875 |
msgid "Reported"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: includes/models/class-listing.php:
|
3879 |
msgctxt "listing status"
|
3880 |
msgid "Unknown"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
-
#: includes/models/class-listing.php:
|
3884 |
msgctxt "listing status"
|
3885 |
msgid "Legacy"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: includes/models/class-listing.php:
|
3889 |
#, fuzzy
|
3890 |
msgctxt "listing status"
|
3891 |
msgid "Incomplete"
|
3892 |
msgstr "Afgerond"
|
3893 |
|
3894 |
-
#: includes/models/class-listing.php:
|
3895 |
#, fuzzy
|
3896 |
msgctxt "listing status"
|
3897 |
msgid "Pending Payment"
|
3898 |
msgstr "Wachtend op upgrade"
|
3899 |
|
3900 |
-
#: includes/models/class-listing.php:
|
3901 |
#, fuzzy
|
3902 |
msgctxt "listing status"
|
3903 |
msgid "Complete"
|
3904 |
msgstr "Afgerond"
|
3905 |
|
3906 |
-
#: includes/models/class-listing.php:
|
3907 |
#, fuzzy
|
3908 |
msgctxt "listing status"
|
3909 |
msgid "Pending Upgrade"
|
3910 |
msgstr "Wachtend op upgrade"
|
3911 |
|
3912 |
-
#: includes/models/class-listing.php:
|
3913 |
#, fuzzy
|
3914 |
msgctxt "listing status"
|
3915 |
msgid "Expired"
|
3916 |
msgstr "Verlopen"
|
3917 |
|
3918 |
-
#: includes/models/class-listing.php:
|
3919 |
#, fuzzy
|
3920 |
msgctxt "listing status"
|
3921 |
msgid "Pending Renewal"
|
3922 |
msgstr "Registratie vernieuwing"
|
3923 |
|
3924 |
-
#: includes/models/class-listing.php:
|
3925 |
msgctxt "listing status"
|
3926 |
msgid "Abandoned"
|
3927 |
msgstr ""
|
@@ -4567,13 +4544,13 @@ msgid "Author"
|
|
4567 |
msgstr "Auteur"
|
4568 |
|
4569 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4570 |
-
#: includes/helpers/functions/general.php:
|
4571 |
msgctxt "admin settings"
|
4572 |
msgid "Date posted"
|
4573 |
msgstr "Datum ingediend"
|
4574 |
|
4575 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4576 |
-
#: includes/helpers/functions/general.php:
|
4577 |
msgctxt "admin settings"
|
4578 |
msgid "Date last modified"
|
4579 |
msgstr ""
|
@@ -4748,150 +4725,150 @@ msgctxt "admin settings"
|
|
4748 |
msgid "U.S. Dollar (USD)"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4752 |
msgctxt "admin settings"
|
4753 |
msgid "Show currency symbol on the left"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4757 |
msgctxt "admin settings"
|
4758 |
msgid "Show currency symbol on the right"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4762 |
msgctxt "admin settings"
|
4763 |
msgid "Do not show currency symbol"
|
4764 |
msgstr ""
|
4765 |
|
4766 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4767 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4768 |
msgctxt "admin settings"
|
4769 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4770 |
msgstr ""
|
4771 |
|
4772 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4773 |
msgctxt "admin settings"
|
4774 |
msgid ""
|
4775 |
"Listings with pending payments are marked as abandoned after this time. You "
|
4776 |
"can also <a>customize the email</a> users receive."
|
4777 |
msgstr ""
|
4778 |
|
4779 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4780 |
msgctxt "admin settings"
|
4781 |
msgid "Try listing's email field first, then author's email."
|
4782 |
msgstr "Probeer eerst email veld, dan email van de auteur."
|
4783 |
|
4784 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4785 |
msgctxt "admin settings"
|
4786 |
msgid "Try author's email first and then listing's email field."
|
4787 |
msgstr "Probeer eerst email van de auteur, dan email veld van registratie. "
|
4788 |
|
4789 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4790 |
msgctxt "admin settings"
|
4791 |
msgid "Plain (text/plain)"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4795 |
msgctxt "admin settings"
|
4796 |
msgid "HTML (text/html)"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4800 |
msgctxt "admin settings"
|
4801 |
msgid "Both (multipart/alternative)"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4805 |
msgctxt "admin settings"
|
4806 |
msgid "A new listing is submitted."
|
4807 |
msgstr "Een nieuwe registratie is ingediend."
|
4808 |
|
4809 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4810 |
msgctxt "admin settings"
|
4811 |
msgid "A listing is edited."
|
4812 |
msgstr "Een registratie is gewijzigd."
|
4813 |
|
4814 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4815 |
msgctxt "admin settings"
|
4816 |
msgid "A listing expires."
|
4817 |
msgstr "Een registratie verloopt."
|
4818 |
|
4819 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4820 |
#, fuzzy
|
4821 |
msgctxt "admin settings"
|
4822 |
msgid "A listing is renewed."
|
4823 |
msgstr "Een registratie is gewijzigd."
|
4824 |
|
4825 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4826 |
#, fuzzy
|
4827 |
msgctxt "admin settings"
|
4828 |
msgid "A listing payment is completed."
|
4829 |
msgstr "Een registratie is gewijzigd."
|
4830 |
|
4831 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4832 |
#, fuzzy
|
4833 |
msgctxt "admin settings"
|
4834 |
msgid "A listing has been reported as inappropriate."
|
4835 |
msgstr "De registratie / vermelding is bijgewerkt."
|
4836 |
|
4837 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4838 |
msgctxt "admin settings"
|
4839 |
msgid "A contact message is sent to a listing's owner."
|
4840 |
msgstr "Een contact boodschap is verzonden naar de registratie-houder"
|
4841 |
|
4842 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4843 |
msgctxt "admin settings"
|
4844 |
msgid "Their listing is submitted."
|
4845 |
msgstr "Hun registratie is ingediend."
|
4846 |
|
4847 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4848 |
msgctxt "admin settings"
|
4849 |
msgid "Their listing is approved/published."
|
4850 |
msgstr "Hun registratie is goedgekeurd."
|
4851 |
|
4852 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4853 |
#, fuzzy
|
4854 |
msgctxt "admin settings"
|
4855 |
msgid "A payment for their listing is completed."
|
4856 |
msgstr "Hun registratie is ingediend."
|
4857 |
|
4858 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4859 |
#, fuzzy
|
4860 |
msgctxt "admin settings"
|
4861 |
msgid "Their listing expired or is about to expire."
|
4862 |
msgstr "Hun registratie is ingediend."
|
4863 |
|
4864 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4865 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4866 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4867 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4868 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4869 |
msgctxt "admin settings"
|
4870 |
msgid "Listing's title"
|
4871 |
msgstr "Titel registratie"
|
4872 |
|
4873 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4874 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4875 |
#, fuzzy
|
4876 |
msgctxt "admin settings"
|
4877 |
msgid "Listing's fee plan name"
|
4878 |
msgstr "Een registratie verloopt."
|
4879 |
|
4880 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4881 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4882 |
#, fuzzy
|
4883 |
msgctxt "admin settings"
|
4884 |
msgid "Listing's fee plan description"
|
4885 |
msgstr "Veld omschrijving"
|
4886 |
|
4887 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4888 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4889 |
#, fuzzy
|
4890 |
msgctxt "admin settings"
|
4891 |
msgid "Listing's fee plan details"
|
4892 |
msgstr "Een registratie verloopt."
|
4893 |
|
4894 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4895 |
msgctxt "admin settings"
|
4896 |
msgid ""
|
4897 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
@@ -4900,69 +4877,69 @@ msgstr ""
|
|
4900 |
"Je registratie \"[listing]\" is nu beschikbaar op [listing-url] en is "
|
4901 |
"zichtbaar voor publiek."
|
4902 |
|
4903 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4904 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4905 |
msgctxt "admin settings"
|
4906 |
msgid "Listing's URL"
|
4907 |
msgstr "URL van de registratie"
|
4908 |
|
4909 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4910 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4911 |
#, fuzzy
|
4912 |
msgctxt "admin settings"
|
4913 |
msgid "Listing's Access Key"
|
4914 |
msgstr "Beelden bij de registratie"
|
4915 |
|
4916 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4917 |
#, fuzzy
|
4918 |
msgctxt "admin settings"
|
4919 |
msgid "Sender's name"
|
4920 |
msgstr "Naam auteur"
|
4921 |
|
4922 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4923 |
#, fuzzy
|
4924 |
msgctxt "admin settings"
|
4925 |
msgid "Contact message"
|
4926 |
msgstr "Aantal registraties"
|
4927 |
|
4928 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4929 |
msgctxt "admin settings"
|
4930 |
msgid "Date and time the message was sent"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4934 |
#, fuzzy
|
4935 |
msgctxt "admin settings"
|
4936 |
msgid "Payment items details."
|
4937 |
msgstr "Betaling gerelateerd"
|
4938 |
|
4939 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4940 |
msgctxt "admin settings"
|
4941 |
msgid "URL where user can review and print payment receipt."
|
4942 |
msgstr ""
|
4943 |
|
4944 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4945 |
msgctxt "admin settings"
|
4946 |
msgid "Gateway used to process listing's payment."
|
4947 |
msgstr ""
|
4948 |
|
4949 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4950 |
msgctxt "admin settings"
|
4951 |
msgid "Checkout URL link"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4955 |
#, fuzzy
|
4956 |
msgctxt "admin settings"
|
4957 |
msgid "Uploaded Image (no resize)"
|
4958 |
msgstr "Beelden uploaden"
|
4959 |
|
4960 |
-
#: includes/helpers/functions/general.php:
|
4961 |
msgctxt "admin settings"
|
4962 |
msgid "User"
|
4963 |
msgstr "Gebruiker"
|
4964 |
|
4965 |
-
#: includes/helpers/functions/general.php:
|
4966 |
msgctxt "admin settings"
|
4967 |
msgid "User registration date"
|
4968 |
msgstr "Gebruikers registratie datum"
|
@@ -5192,7 +5169,7 @@ msgstr "Registraties"
|
|
5192 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5193 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5194 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5195 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5196 |
#: includes/admin/settings/class-settings.php:341
|
5197 |
#, fuzzy
|
5198 |
msgctxt "settings"
|
@@ -5849,19 +5826,13 @@ msgctxt "settings"
|
|
5849 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
5850 |
msgstr ""
|
5851 |
|
5852 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5853 |
#, fuzzy
|
5854 |
msgctxt "settings"
|
5855 |
msgid "Fee Order"
|
5856 |
msgstr "Order"
|
5857 |
|
5858 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5859 |
-
#, fuzzy
|
5860 |
-
msgctxt "settings"
|
5861 |
-
msgid "Turn On payments?"
|
5862 |
-
msgstr "Betalingen aanzetten?"
|
5863 |
-
|
5864 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1144
|
5865 |
msgctxt "settings"
|
5866 |
msgid "Put payment gateways in test mode?"
|
5867 |
msgstr ""
|
@@ -5872,43 +5843,43 @@ msgctxt "settings"
|
|
5872 |
msgid "Currency Code"
|
5873 |
msgstr "Huidige datum"
|
5874 |
|
5875 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5876 |
msgctxt "settings"
|
5877 |
msgid "Currency Symbol"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5881 |
msgctxt "settings"
|
5882 |
msgid "Currency symbol display"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5886 |
msgctxt "settings"
|
5887 |
msgid "Include fee description in receipt?"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5891 |
msgctxt "settings"
|
5892 |
msgid "Thank you for payment message"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5896 |
msgctxt "settings"
|
5897 |
msgid "Ask users to come back for abandoned payments?"
|
5898 |
msgstr ""
|
5899 |
|
5900 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5901 |
msgctxt "settings"
|
5902 |
msgid "Listing abandonment threshold (hours)"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5906 |
#, fuzzy
|
5907 |
msgctxt "settings"
|
5908 |
msgid "Display email address fields publicly?"
|
5909 |
msgstr "Email adres velden vertonen aan publiek?"
|
5910 |
|
5911 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5912 |
#, fuzzy
|
5913 |
msgctxt "settings"
|
5914 |
msgid ""
|
@@ -5920,13 +5891,13 @@ msgstr ""
|
|
5920 |
"bezoekers. NIET AANBEVOLEN omdat dit meer spam oproept en spam-bots toestaat "
|
5921 |
"de adressen te verzamelen. "
|
5922 |
|
5923 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5924 |
#, fuzzy
|
5925 |
msgctxt "settings"
|
5926 |
msgid "How to determine the listing's email address?"
|
5927 |
msgstr "Hoe te bepalen wat email adres is van registratie-houder?"
|
5928 |
|
5929 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5930 |
#, fuzzy
|
5931 |
msgctxt "settings"
|
5932 |
msgid ""
|
@@ -5936,12 +5907,12 @@ msgstr ""
|
|
5936 |
"Dit beïnvloedt email gestuurd naar de registratie-houder via het contact "
|
5937 |
"formulier of als hun registraties verlopen."
|
5938 |
|
5939 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5940 |
msgctxt "settings"
|
5941 |
msgid "Email Content-Type header"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5945 |
msgctxt "settings"
|
5946 |
msgid ""
|
5947 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -5950,30 +5921,30 @@ msgid ""
|
|
5950 |
"then \"Both\"."
|
5951 |
msgstr ""
|
5952 |
|
5953 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5954 |
msgctxt "settings"
|
5955 |
msgid "Templates"
|
5956 |
msgstr ""
|
5957 |
|
5958 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5959 |
#, fuzzy
|
5960 |
msgctxt "settings"
|
5961 |
msgid "Email confirmation message"
|
5962 |
msgstr "Email bevestiging boodschap"
|
5963 |
|
5964 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5965 |
#, fuzzy
|
5966 |
msgctxt "settings"
|
5967 |
msgid "Sent after a listing has been submitted."
|
5968 |
msgstr "Verzonden nadat een registratie is ingediend."
|
5969 |
|
5970 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5971 |
#, fuzzy
|
5972 |
msgctxt "settings"
|
5973 |
msgid "Listing published message"
|
5974 |
msgstr "Boodschap Registratie gepubliceerd"
|
5975 |
|
5976 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5977 |
#, fuzzy
|
5978 |
msgctxt "settings"
|
5979 |
msgid "Sent when the listing has been published or approved by an admin."
|
@@ -5981,13 +5952,13 @@ msgstr ""
|
|
5981 |
"Verzonden wanneer de registratie is gepubliceerd of goedgekeurd door een "
|
5982 |
"beheerder."
|
5983 |
|
5984 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5985 |
#, fuzzy
|
5986 |
msgctxt "settings"
|
5987 |
msgid "Listing Contact Message"
|
5988 |
msgstr "Aantal registraties"
|
5989 |
|
5990 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5991 |
#, fuzzy
|
5992 |
msgctxt "settings"
|
5993 |
msgid ""
|
@@ -5997,23 +5968,23 @@ msgstr ""
|
|
5997 |
"Verzonden naar de eigenaar van vermelding/register als iemand het contact "
|
5998 |
"formulier gebruikt op hun registratie / vermelding pagina. "
|
5999 |
|
6000 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6001 |
#, fuzzy
|
6002 |
msgctxt "settings"
|
6003 |
msgid "Payment completed message"
|
6004 |
msgstr "Betaling gerelateerd"
|
6005 |
|
6006 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6007 |
msgctxt "settings"
|
6008 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6009 |
msgstr ""
|
6010 |
|
6011 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6012 |
msgctxt "settings"
|
6013 |
msgid "Payment abandoned reminder message"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6017 |
msgctxt "settings"
|
6018 |
msgid "Cropped"
|
6019 |
msgstr ""
|
@@ -6029,18 +6000,18 @@ msgctxt "settings"
|
|
6029 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6030 |
msgstr ""
|
6031 |
|
6032 |
-
#: includes/licensing.php:
|
6033 |
#, fuzzy
|
6034 |
msgctxt "settings"
|
6035 |
msgid "Themes"
|
6036 |
msgstr "Thema's"
|
6037 |
|
6038 |
-
#: includes/licensing.php:
|
6039 |
msgctxt "settings"
|
6040 |
msgid "Please wait..."
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#: includes/licensing.php:
|
6044 |
#, fuzzy
|
6045 |
msgctxt "settings"
|
6046 |
msgid "Deauthorize"
|
@@ -6093,27 +6064,27 @@ msgctxt "themes"
|
|
6093 |
msgid "Could not delete theme directory. Check permissions."
|
6094 |
msgstr ""
|
6095 |
|
6096 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6097 |
msgctxt "themes"
|
6098 |
msgid "Please upload a valid theme file."
|
6099 |
msgstr ""
|
6100 |
|
6101 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6102 |
msgctxt "themes"
|
6103 |
msgid "Could not move \"%s\" to a temporary directory."
|
6104 |
msgstr ""
|
6105 |
|
6106 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6107 |
msgctxt "themes"
|
6108 |
msgid "Activate your <a>license key</a> to use this theme."
|
6109 |
msgstr ""
|
6110 |
|
6111 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6112 |
msgctxt "themes"
|
6113 |
msgid "Invalid theme ID"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6117 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6118 |
msgctxt "themes"
|
6119 |
msgid "Could not update theme: %s"
|
@@ -6526,24 +6497,24 @@ msgid "Trash"
|
|
6526 |
msgstr "Prullenbak"
|
6527 |
|
6528 |
#. translators: %s: url shortcode
|
6529 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6530 |
msgctxt "contact email"
|
6531 |
msgid "You have received a reply from your listing at %s."
|
6532 |
msgstr "Je hebt een reactie gekregen op je vermelding op %s."
|
6533 |
|
6534 |
#. translators: %s: name shortcode
|
6535 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6536 |
msgctxt "contact email"
|
6537 |
msgid "Name: %s"
|
6538 |
msgstr "Naam"
|
6539 |
|
6540 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6541 |
msgctxt "contact email"
|
6542 |
msgid "Message:"
|
6543 |
msgstr "Boodschap:"
|
6544 |
|
6545 |
#. translators: %s: date shortcode
|
6546 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6547 |
msgctxt "contact email"
|
6548 |
msgid "Time: %s"
|
6549 |
msgstr "Tijd: %s"
|
@@ -6824,35 +6795,35 @@ msgctxt "listing"
|
|
6824 |
msgid "Add New Listing"
|
6825 |
msgstr "Nieuwe registratie toevoegen"
|
6826 |
|
6827 |
-
#: includes/models/class-listing.php:
|
6828 |
#, fuzzy
|
6829 |
msgctxt "listing"
|
6830 |
msgid "Listing has no registered payments"
|
6831 |
msgstr "Registraties per pagina"
|
6832 |
|
6833 |
-
#: includes/models/class-listing.php:
|
6834 |
#, fuzzy
|
6835 |
msgctxt "listing"
|
6836 |
msgid "Can't delete payment"
|
6837 |
msgstr "Verwijder beeld"
|
6838 |
|
6839 |
-
#: includes/models/class-listing.php:
|
6840 |
#, fuzzy
|
6841 |
msgctxt "listing"
|
6842 |
msgid "Listing expired"
|
6843 |
msgstr "Een registratie verloopt."
|
6844 |
|
6845 |
-
#: includes/models/class-listing.php:
|
6846 |
msgctxt "listing"
|
6847 |
msgid "(Unavailable Plan)"
|
6848 |
msgstr ""
|
6849 |
|
6850 |
-
#: includes/models/class-listing.php:
|
6851 |
msgctxt "listing"
|
6852 |
msgid "Plan \"%s\" (recurring)"
|
6853 |
msgstr ""
|
6854 |
|
6855 |
-
#: includes/models/class-listing.php:
|
6856 |
msgctxt "listing"
|
6857 |
msgid "Plan \"%s\""
|
6858 |
msgstr ""
|
@@ -6991,27 +6962,18 @@ msgctxt "payment-gateways"
|
|
6991 |
msgid "Enable %s?"
|
6992 |
msgstr "Aanzetten"
|
6993 |
|
6994 |
-
#: includes/class-payment-gateways.php:
|
6995 |
msgctxt "payment-gateways"
|
6996 |
msgid ""
|
6997 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
6998 |
"won't be available until the following problems are fixed: <problems>."
|
6999 |
msgstr ""
|
7000 |
|
7001 |
-
#: includes/class-payment-gateways.php:
|
7002 |
msgctxt "payment-gateways"
|
7003 |
msgid "Please check the <link>payment settings</link>."
|
7004 |
msgstr ""
|
7005 |
|
7006 |
-
#: includes/class-payment-gateways.php:142
|
7007 |
-
msgctxt "payment-gateways"
|
7008 |
-
msgid ""
|
7009 |
-
"You have payments turned on but no gateway is active and properly "
|
7010 |
-
"configured. Go to <link>Manage Options - Payment</link> to change the "
|
7011 |
-
"payment settings. Until you change this, the directory will operate in "
|
7012 |
-
"<i>Free Mode</i>."
|
7013 |
-
msgstr ""
|
7014 |
-
|
7015 |
#: includes/class-recaptcha.php:32
|
7016 |
msgctxt "recaptcha"
|
7017 |
msgid "The reCAPTCHA wasn't entered correctly."
|
@@ -7207,34 +7169,34 @@ msgid ""
|
|
7207 |
"site. If you didn't want that, click <a>here</a> to change the setting."
|
7208 |
msgstr ""
|
7209 |
|
7210 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7211 |
msgctxt "templates"
|
7212 |
msgid ""
|
7213 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7214 |
"Submission?\" setting checked?"
|
7215 |
msgstr ""
|
7216 |
|
7217 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7218 |
msgctxt "templates"
|
7219 |
msgid ""
|
7220 |
"Listing submission has been disabled. Contact the administrator for details."
|
7221 |
msgstr ""
|
7222 |
|
7223 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7224 |
msgctxt "templates"
|
7225 |
msgid ""
|
7226 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7227 |
"submit a listing. %s to create a fee plan"
|
7228 |
msgstr ""
|
7229 |
|
7230 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7231 |
msgctxt "templates"
|
7232 |
msgid ""
|
7233 |
"Listing submission is not available at the moment. Contact the administrator "
|
7234 |
"for details."
|
7235 |
msgstr ""
|
7236 |
|
7237 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7238 |
msgctxt "templates"
|
7239 |
msgid ""
|
7240 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -7242,18 +7204,18 @@ msgid ""
|
|
7242 |
"an existing field"
|
7243 |
msgstr ""
|
7244 |
|
7245 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7246 |
msgctxt "templates"
|
7247 |
msgid "Please agree to the Terms and Conditions."
|
7248 |
msgstr "Ga s.v.p. akkoord met de voorwaarden"
|
7249 |
|
7250 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7251 |
#, fuzzy
|
7252 |
msgctxt "templates"
|
7253 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7254 |
msgstr "Ik ben akkoord met de voorwaarden"
|
7255 |
|
7256 |
-
#: includes/helpers/functions/general.php:
|
7257 |
#, fuzzy
|
7258 |
msgctxt "templates"
|
7259 |
msgid "Return to results"
|
@@ -7587,7 +7549,7 @@ msgctxt "submit listing"
|
|
7587 |
msgid "You can't edit this listing."
|
7588 |
msgstr "Categorieën voor deze registratie"
|
7589 |
|
7590 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7591 |
msgctxt "submit listing"
|
7592 |
msgid ""
|
7593 |
"This listing can't be edited at this time because it has no fee plan "
|
@@ -7595,14 +7557,14 @@ msgid ""
|
|
7595 |
"to a fee plan."
|
7596 |
msgstr ""
|
7597 |
|
7598 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7599 |
msgctxt "submit listing"
|
7600 |
msgid ""
|
7601 |
"This listing can't be edited at this time. Please try again later or contact "
|
7602 |
"the admin if the problem persists."
|
7603 |
msgstr ""
|
7604 |
|
7605 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7606 |
#, fuzzy
|
7607 |
msgctxt "submit listing"
|
7608 |
msgid "You're logged in as admin, payment will be skipped."
|
@@ -7610,55 +7572,55 @@ msgstr ""
|
|
7610 |
"Je bent ingelogd als een beheerder (admin). De betaalstappen worden "
|
7611 |
"overgeslagen."
|
7612 |
|
7613 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7614 |
#, fuzzy
|
7615 |
msgctxt "submit listing"
|
7616 |
msgid "Category selection"
|
7617 |
msgstr "categorie selectie"
|
7618 |
|
7619 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7620 |
#, fuzzy
|
7621 |
msgctxt "submit listing"
|
7622 |
msgid "Category & plan selection"
|
7623 |
msgstr "categorie selectie"
|
7624 |
|
7625 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7626 |
msgctxt "submit listing"
|
7627 |
msgid "Can not submit a listing at this moment. Please try again later."
|
7628 |
msgstr ""
|
7629 |
|
7630 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7631 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7632 |
msgctxt "submit listing"
|
7633 |
msgid "Please select a category."
|
7634 |
msgstr ""
|
7635 |
|
7636 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7637 |
msgctxt "submit listing"
|
7638 |
msgid "Please choose a valid category for your plan."
|
7639 |
msgstr ""
|
7640 |
|
7641 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7642 |
msgctxt "submit listing"
|
7643 |
msgid "Please choose a valid fee plan for your category selection."
|
7644 |
msgstr ""
|
7645 |
|
7646 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7647 |
msgctxt "submit listing"
|
7648 |
msgid "Please enter your desired username."
|
7649 |
msgstr ""
|
7650 |
|
7651 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7652 |
msgctxt "submit listing"
|
7653 |
msgid "Please enter the e-mail for your new account."
|
7654 |
msgstr ""
|
7655 |
|
7656 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7657 |
msgctxt "submit listing"
|
7658 |
msgid "The username you chose is already in use. Please use a different one."
|
7659 |
msgstr ""
|
7660 |
|
7661 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7662 |
msgctxt "submit listing"
|
7663 |
msgid "The e-mail address you chose for your account is already in use."
|
7664 |
msgstr ""
|
@@ -7668,7 +7630,7 @@ msgctxt "submit listing"
|
|
7668 |
msgid "Listing submitted by admin. Payment skipped."
|
7669 |
msgstr ""
|
7670 |
|
7671 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7672 |
msgctxt "listing submit"
|
7673 |
msgid ""
|
7674 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -7982,19 +7944,19 @@ msgctxt "default category name"
|
|
7982 |
msgid "General"
|
7983 |
msgstr "Algemeen"
|
7984 |
|
7985 |
-
#: includes/licensing.php:
|
7986 |
msgctxt "licensing"
|
7987 |
msgid "Could not contact licensing server"
|
7988 |
msgstr ""
|
7989 |
|
7990 |
-
#: includes/licensing.php:
|
7991 |
msgctxt "licensing"
|
7992 |
msgid ""
|
7993 |
"It was not possible to establish a connection with Business Directory's "
|
7994 |
"server. cURL was not found in your system"
|
7995 |
msgstr ""
|
7996 |
|
7997 |
-
#: includes/licensing.php:
|
7998 |
msgctxt "licensing"
|
7999 |
msgid ""
|
8000 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8003,7 +7965,7 @@ msgid ""
|
|
8003 |
"1.0.1c)."
|
8004 |
msgstr ""
|
8005 |
|
8006 |
-
#: includes/licensing.php:
|
8007 |
msgctxt "licensing"
|
8008 |
msgid ""
|
8009 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8011,47 +7973,47 @@ msgid ""
|
|
8011 |
"services using the latest security standards."
|
8012 |
msgstr ""
|
8013 |
|
8014 |
-
#: includes/licensing.php:
|
8015 |
msgctxt "licensing"
|
8016 |
msgid ""
|
8017 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8018 |
"Include this message if necessary"
|
8019 |
msgstr ""
|
8020 |
|
8021 |
-
#: includes/licensing.php:
|
8022 |
msgctxt "licensing"
|
8023 |
msgid ""
|
8024 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8025 |
"Include this message if necessary."
|
8026 |
msgstr ""
|
8027 |
|
8028 |
-
#: includes/licensing.php:
|
8029 |
msgctxt "licensing"
|
8030 |
msgid "The server returned a 403 Forbidden error."
|
8031 |
msgstr ""
|
8032 |
|
8033 |
-
#: includes/licensing.php:
|
8034 |
msgctxt "licensing"
|
8035 |
msgid "Could not activate license: %s."
|
8036 |
msgstr ""
|
8037 |
|
8038 |
-
#: includes/licensing.php:
|
8039 |
msgctxt "licensing"
|
8040 |
msgid "License activated"
|
8041 |
msgstr ""
|
8042 |
|
8043 |
-
#: includes/licensing.php:
|
8044 |
msgctxt "licensing"
|
8045 |
msgid "Could not deactivate license: %s."
|
8046 |
msgstr ""
|
8047 |
|
8048 |
-
#: includes/licensing.php:
|
8049 |
msgctxt "licensing"
|
8050 |
msgid "License deactivated"
|
8051 |
msgstr ""
|
8052 |
|
8053 |
#. translators: "<module-name>" version <version-number> is not...
|
8054 |
-
#: includes/licensing.php:
|
8055 |
msgctxt "deprecation"
|
8056 |
msgid ""
|
8057 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8071,19 +8033,19 @@ msgid_plural "%d images allowed."
|
|
8071 |
msgstr[0] "%d beeld"
|
8072 |
msgstr[1] "%d beelden"
|
8073 |
|
8074 |
-
#: includes/models/class-fee-plan.php:
|
8075 |
msgctxt "fees-api"
|
8076 |
msgid "Fee label is required."
|
8077 |
msgstr ""
|
8078 |
|
8079 |
-
#: includes/models/class-fee-plan.php:
|
8080 |
msgctxt "fees-api"
|
8081 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8082 |
msgstr ""
|
8083 |
"Betaalde registratie vertoningstijd als nummer, minder dan 10 jaar (3650 "
|
8084 |
"dagen)."
|
8085 |
|
8086 |
-
#: includes/models/class-fee-plan.php:
|
8087 |
msgctxt "fees-api"
|
8088 |
msgid ""
|
8089 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
@@ -8091,7 +8053,7 @@ msgid ""
|
|
8091 |
"<a>fee plan</a> appropriately."
|
8092 |
msgstr ""
|
8093 |
|
8094 |
-
#: includes/models/class-fee-plan.php:
|
8095 |
msgctxt "fees-api"
|
8096 |
msgid ""
|
8097 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
@@ -8168,17 +8130,17 @@ msgctxt "utils"
|
|
8168 |
msgid "Unkown error while uploading file."
|
8169 |
msgstr ""
|
8170 |
|
8171 |
-
#: includes/utils.php:
|
8172 |
msgctxt "utils"
|
8173 |
msgid "Error while uploading file"
|
8174 |
msgstr ""
|
8175 |
|
8176 |
-
#: includes/utils.php:
|
8177 |
msgctxt "utils"
|
8178 |
msgid "File type \"%s\" is not allowed"
|
8179 |
msgstr ""
|
8180 |
|
8181 |
-
#: includes/utils.php:
|
8182 |
msgctxt "utils"
|
8183 |
msgid ""
|
8184 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8284,39 +8246,6 @@ msgctxt "admin forms"
|
|
8284 |
msgid "required"
|
8285 |
msgstr "vereist"
|
8286 |
|
8287 |
-
#: templates/admin/home.tpl.php:12
|
8288 |
-
msgctxt "admin home"
|
8289 |
-
msgid "Welcome to Business Directory Plugin. You are using %s."
|
8290 |
-
msgstr ""
|
8291 |
-
|
8292 |
-
#: templates/admin/home.tpl.php:15
|
8293 |
-
msgctxt "admin home"
|
8294 |
-
msgid ""
|
8295 |
-
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
8296 |
-
"let's jump right in!"
|
8297 |
-
msgstr ""
|
8298 |
-
|
8299 |
-
#: templates/admin/home.tpl.php:28
|
8300 |
-
msgctxt "admin home"
|
8301 |
-
msgid ""
|
8302 |
-
"Our complete documentation is <a>here</a> which we encourage you to use "
|
8303 |
-
"while setting things up."
|
8304 |
-
msgstr ""
|
8305 |
-
|
8306 |
-
#: templates/admin/home.tpl.php:36
|
8307 |
-
msgctxt "admin home"
|
8308 |
-
msgid ""
|
8309 |
-
"We have some quick-start scenarios that you will find useful regarding setup "
|
8310 |
-
"and configuration <a>here</a>."
|
8311 |
-
msgstr ""
|
8312 |
-
|
8313 |
-
#: templates/admin/home.tpl.php:45
|
8314 |
-
msgctxt "admin home"
|
8315 |
-
msgid ""
|
8316 |
-
"If you have questions, please post a comment on <a>support forum</a> and "
|
8317 |
-
"we'll answer it within 24 hours most days."
|
8318 |
-
msgstr ""
|
8319 |
-
|
8320 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8321 |
msgctxt "admin infometabox"
|
8322 |
msgid "Renewal url (copy & paste)"
|
@@ -8589,6 +8518,19 @@ msgctxt "send-access-keys"
|
|
8589 |
msgid "Continue"
|
8590 |
msgstr "Doorgaan"
|
8591 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8592 |
#~ msgctxt "admin settings"
|
8593 |
#~ msgid ""
|
8594 |
#~ "For paid listing images, configure that by adding or editing a <a>Fee "
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2022-02-02 19:38:07+00:00\n"
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: admin <info@nederlofcentrum.nl>\n"
|
9 |
"Language-Team: Dutch\n"
|
80 |
msgid "Directory"
|
81 |
msgstr "Registers"
|
82 |
|
83 |
+
#: includes/admin/class-admin.php:312
|
84 |
msgid "Fee Plans"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: includes/admin/class-admin.php:315
|
88 |
#, fuzzy
|
89 |
msgid "Form Fields"
|
90 |
msgstr "Formulier velden"
|
91 |
|
92 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
93 |
+
#: includes/licensing.php:227
|
94 |
msgid "Modules"
|
95 |
msgstr ""
|
96 |
|
206 |
msgstr "Bedrag"
|
207 |
|
208 |
#: includes/admin/controllers/class-admin-fees.php:49
|
209 |
+
#: includes/admin/helpers/tables/class-fees-table.php:65
|
210 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
211 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
212 |
#, fuzzy
|
244 |
msgstr "Tarief bijgewerkt."
|
245 |
|
246 |
#: includes/admin/controllers/class-admin-listings.php:185
|
247 |
+
#: includes/controllers/pages/class-submit-listing.php:518
|
248 |
#: templates/email/listing-reported.tpl.php:7
|
249 |
msgid "Listing Information"
|
250 |
msgstr "Registratie informatie"
|
294 |
msgstr ""
|
295 |
|
296 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
297 |
+
#: includes/controllers/pages/class-submit-listing.php:848
|
298 |
#, fuzzy
|
299 |
msgid "Go to \"Form Fields\""
|
300 |
msgstr "Ga naar \"instellen formulier velden\""
|
301 |
|
302 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
303 |
+
#: includes/helpers/functions/general.php:1366
|
304 |
+
#: includes/helpers/functions/general.php:1371
|
305 |
msgid "Go back"
|
306 |
msgstr ""
|
307 |
|
410 |
msgstr "Business Directory instellingen"
|
411 |
|
412 |
#: includes/admin/controllers/class-settings-admin.php:536
|
413 |
+
#: includes/admin/helpers/tables/class-fees-table.php:174
|
414 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
415 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
416 |
#: templates/admin/payments-note.tpl.php:14
|
417 |
+
#: templates/admin/themes-item.tpl.php:66
|
418 |
#: templates/parts/listing-buttons.tpl.php:31
|
419 |
#: templates/parts/listing-buttons.tpl.php:65
|
420 |
#, fuzzy
|
466 |
msgstr "Geinstalleerd: %s"
|
467 |
|
468 |
#: includes/admin/helpers/class-modules-list.php:187
|
469 |
+
#: includes/admin/helpers/tables/class-fees-table.php:284
|
470 |
+
#: templates/admin/themes-item.tpl.php:41
|
471 |
#, fuzzy
|
472 |
msgid "Active"
|
473 |
msgstr "Actief"
|
479 |
|
480 |
#: includes/admin/helpers/class-modules-list.php:225
|
481 |
#: includes/controllers/class-smtp.php:317
|
482 |
+
#: templates/admin/themes-item.tpl.php:61
|
483 |
#, fuzzy
|
484 |
msgid "Activate"
|
485 |
msgstr "Actief"
|
486 |
|
487 |
#: includes/admin/helpers/class-modules-list.php:235
|
488 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:275
|
489 |
#, fuzzy
|
490 |
msgid "Upgrade Now"
|
491 |
msgstr "Opwaarderen tot %s"
|
501 |
|
502 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
503 |
#, fuzzy
|
504 |
+
msgid "Order"
|
505 |
+
msgstr "Order"
|
506 |
+
|
507 |
+
#: includes/admin/helpers/tables/class-fees-table.php:62
|
508 |
+
#, fuzzy
|
509 |
msgid "Plan Details"
|
510 |
msgstr "Details kosten"
|
511 |
|
512 |
+
#: includes/admin/helpers/tables/class-fees-table.php:63
|
513 |
msgid "Pricing"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
517 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
518 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
519 |
#: includes/helpers/class-app.php:92
|
521 |
msgid "Listings"
|
522 |
msgstr "Registraties"
|
523 |
|
524 |
+
#: includes/admin/helpers/tables/class-fees-table.php:153
|
525 |
#, fuzzy
|
526 |
msgid "Disable"
|
527 |
msgstr "Uitzetten"
|
528 |
|
529 |
+
#: includes/admin/helpers/tables/class-fees-table.php:159
|
530 |
#, fuzzy
|
531 |
msgid "Enable"
|
532 |
msgstr "Aanzetten"
|
533 |
|
534 |
+
#: includes/admin/helpers/tables/class-fees-table.php:181
|
535 |
msgid "ID: %s"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
539 |
#, fuzzy
|
540 |
msgid "Paid Plan"
|
541 |
msgstr "Betaald"
|
542 |
|
543 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
544 |
#, fuzzy
|
545 |
msgid "Free Plan"
|
546 |
msgstr "Ga naar \"instellen formulier velden\""
|
547 |
|
548 |
+
#: includes/admin/helpers/tables/class-fees-table.php:219
|
549 |
msgid "%1$s for %2$s"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: includes/admin/helpers/tables/class-fees-table.php:282
|
|
|
553 |
#, fuzzy
|
554 |
msgid "Disabled"
|
555 |
msgstr "Uitgezet"
|
556 |
|
557 |
+
#: includes/admin/helpers/tables/class-fees-table.php:288
|
558 |
#: includes/helpers/functions/templates-ui.php:431
|
559 |
#, fuzzy
|
560 |
msgid "Default"
|
598 |
msgstr "Missende tabellen: %s"
|
599 |
|
600 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
601 |
+
#: includes/controllers/pages/class-submit-listing.php:1252
|
602 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
603 |
#: templates/listing-contactform.tpl.php:33
|
604 |
#: templates/listing-flagging-form.tpl.php:39
|
646 |
|
647 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
648 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
649 |
+
#: includes/controllers/pages/class-submit-listing.php:531
|
650 |
#, fuzzy
|
651 |
msgid "Terms and Conditions"
|
652 |
msgstr "Voorwaarden en condities"
|
875 |
msgid "URL"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1226
|
879 |
msgid "Thank you for your payment."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1254
|
883 |
msgid ""
|
884 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
885 |
"collect payments in this currency."
|
889 |
msgstr[0] ""
|
890 |
msgstr[1] ""
|
891 |
|
892 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
893 |
#, fuzzy
|
894 |
msgid "Email Notifications"
|
895 |
msgstr "E-Mail Notificaties"
|
896 |
|
897 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1347
|
898 |
#, fuzzy
|
899 |
msgid "Notify admin via email when..."
|
900 |
msgstr "Bericht via email als..."
|
901 |
|
902 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1365
|
903 |
#, fuzzy
|
904 |
msgid "CC this email address too"
|
905 |
msgstr "CC dit email adres ook"
|
906 |
|
907 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
908 |
#, fuzzy
|
909 |
msgid ""
|
910 |
"You can modify the text template used for most of these emails in the "
|
911 |
"<templates-link>Templates</templates-link> tab."
|
912 |
msgstr "Je kunt de tekst veranderen van de meeste e-mail templates hieronder."
|
913 |
|
914 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1379
|
915 |
#, fuzzy
|
916 |
msgid "Notify users via email when..."
|
917 |
msgstr "Stuur notificatie naar gebruikers als..."
|
918 |
|
919 |
#. translators: %s: email shortcode
|
920 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1446
|
921 |
#, fuzzy
|
922 |
msgid "Email: %s"
|
923 |
msgstr "E-Mail: %s"
|
924 |
|
925 |
#. translators: %s: phone shortcode
|
926 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1449
|
927 |
#, fuzzy
|
928 |
msgid "Phone Number: %s"
|
929 |
msgstr "Tel nr"
|
930 |
|
931 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
932 |
#, fuzzy
|
933 |
msgid "Sender's email address"
|
934 |
msgstr "Ongeld e-mail adres."
|
935 |
|
936 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1462
|
937 |
#, fuzzy
|
938 |
msgid "Sender's phone number"
|
939 |
msgstr "Naam auteur"
|
940 |
|
941 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1526
|
942 |
msgid "Renewal and expiration"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1662
|
946 |
#: templates/admin/uninstall-complete.tpl.php:4
|
947 |
msgid "Uninstall"
|
948 |
msgstr ""
|
1039 |
|
1040 |
#. translators: %s: Status name
|
1041 |
#: includes/admin/views/modules/list.php:63
|
1042 |
+
#: templates/admin/themes-item.tpl.php:50
|
1043 |
#, fuzzy
|
1044 |
msgid "Status: %s"
|
1045 |
msgstr "Status"
|
1208 |
msgid "View All Listings"
|
1209 |
msgstr "Bekijk alle registratie"
|
1210 |
|
1211 |
+
#: includes/class-payment-gateways.php:144
|
|
|
1212 |
msgid ""
|
1213 |
+
"You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s "
|
1214 |
+
"to set up a gateway. Until you do this, only free plans will be available."
|
|
|
1215 |
msgstr ""
|
1216 |
|
1217 |
#: includes/class-wpbdp.php:369
|
1234 |
"admin."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:322
|
1238 |
msgid "Could not find image ID"
|
1239 |
msgstr ""
|
1240 |
|
1433 |
msgstr ""
|
1434 |
"Dit is alleen een voorvertoning. De registratie is nog niet gepubliceerd."
|
1435 |
|
1436 |
+
#: includes/controllers/pages/class-submit-listing.php:564
|
1437 |
#, fuzzy
|
1438 |
msgid "Listing Images"
|
1439 |
msgstr "Beelden bij de registratie"
|
1440 |
|
1441 |
+
#: includes/controllers/pages/class-submit-listing.php:632
|
1442 |
msgid "Account Creation"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: includes/controllers/pages/class-submit-listing.php:831
|
1446 |
#, fuzzy
|
1447 |
msgid "Go to \"Fee Plans\""
|
1448 |
msgstr "Ga naar \"instellen formulier velden\""
|
1449 |
|
1450 |
+
#: includes/controllers/pages/class-submit-listing.php:887
|
1451 |
msgid "Please choose a fee plan."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1455 |
msgid "Please check the form for errors, correct them and submit again."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: includes/controllers/pages/class-submit-listing.php:1236
|
1459 |
msgid "Create a user account on this site"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: includes/controllers/pages/class-submit-listing.php:1243
|
1463 |
#, fuzzy
|
1464 |
msgid "Username"
|
1465 |
msgstr "Gebruiker"
|
1466 |
|
1467 |
+
#: includes/controllers/pages/class-submit-listing.php:1265
|
1468 |
#, fuzzy
|
1469 |
msgid "Clear Form"
|
1470 |
msgstr "Leegmaken"
|
1760 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: includes/helpers/functions/general.php:568
|
|
|
1764 |
msgid "Free"
|
1765 |
msgstr "Gratis"
|
1766 |
|
1775 |
msgstr "Opties beheren"
|
1776 |
|
1777 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1778 |
+
#: includes/licensing.php:150
|
1779 |
msgid ""
|
1780 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1781 |
"get updates."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: includes/licensing.php:203 includes/licensing.php:206
|
1785 |
msgid "Licenses"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: includes/licensing.php:273
|
1789 |
msgid "Build more powerful directories"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: includes/licensing.php:274
|
1793 |
msgid ""
|
1794 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: includes/licensing.php:276
|
1798 |
msgid "Already purchased?"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
#. translators: %s: item type.
|
1802 |
+
#: includes/licensing.php:294
|
1803 |
msgid "%s will not get updates until license is reauthorized."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: includes/licensing.php:315
|
1807 |
#, fuzzy
|
1808 |
msgid "Enter License Key here"
|
1809 |
msgstr "Beelden bij de registratie"
|
1810 |
|
1811 |
+
#: includes/licensing.php:316
|
1812 |
#, fuzzy
|
1813 |
msgid "Authorize"
|
1814 |
msgstr "Auteur"
|
1815 |
|
1816 |
+
#: includes/licensing.php:420
|
1817 |
msgid "Invalid item ID"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: includes/licensing.php:433
|
1821 |
msgid "No license key provided"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: includes/licensing.php:482 includes/licensing.php:520
|
1825 |
#, fuzzy
|
1826 |
msgid "License key is invalid"
|
1827 |
msgstr "Beelden bij de registratie"
|
1828 |
|
1829 |
+
#: includes/licensing.php:486
|
1830 |
#, fuzzy
|
1831 |
msgid "Deactivation failed"
|
1832 |
msgstr "Actief"
|
1833 |
|
1834 |
+
#: includes/licensing.php:531
|
1835 |
msgid "The license key was revoked."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1839 |
+
#: includes/licensing.php:535
|
1840 |
msgid ""
|
1841 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1842 |
"%2$s and let them know your license is being reported as revoked by the "
|
1844 |
"with your report."
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: includes/licensing.php:598
|
1848 |
msgid ""
|
1849 |
"It was not possible to establish a connection with the Business Directory "
|
1850 |
"server. The connection failed with the following error:"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: includes/licensing.php:611
|
1854 |
msgid ""
|
1855 |
"It was not possible to establish a connection with the Business Directory "
|
1856 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: includes/licensing.php:658
|
1860 |
msgid ""
|
1861 |
"It looks like your server is not authorized to make outgoing requests to "
|
1862 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1863 |
"our IP address 52.0.78.177 to your allow list."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: includes/licensing.php:752
|
1867 |
#, fuzzy
|
1868 |
msgid "Business Directory license key is missing."
|
1869 |
msgstr "Business Directory - Zoeken"
|
1870 |
|
1871 |
+
#: includes/licensing.php:753
|
1872 |
#, fuzzy
|
1873 |
msgid "Business Directory license key has expired"
|
1874 |
msgstr "Business Directory - Zoeken"
|
1875 |
|
1876 |
+
#: includes/licensing.php:754
|
1877 |
#, fuzzy
|
1878 |
msgid "Could not verify Business Directory license."
|
1879 |
msgstr "Business Directory instellingen"
|
1880 |
|
1881 |
+
#: includes/licensing.php:765
|
1882 |
msgid "Review license keys"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: includes/licensing.php:880
|
1886 |
msgid "Missing data. Please reload this page and try again."
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: includes/licensing.php:885
|
1890 |
msgid "Please enter a license key."
|
1891 |
msgstr ""
|
1892 |
|
1929 |
msgid "ZIP file is not a valid Business Directory theme file."
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: includes/utils.php:341
|
1933 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: includes/utils.php:350
|
1937 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
1938 |
msgstr ""
|
1939 |
|
2253 |
msgid "Add New Listing Fee"
|
2254 |
msgstr "Nieuw Registratie tarief toevoegen"
|
2255 |
|
2256 |
+
#: templates/admin/fees-index.tpl.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2257 |
#, fuzzy
|
2258 |
msgid "Order fees on the frontend by:"
|
2259 |
msgstr "Sorteer tarieven frontend door:"
|
2260 |
|
2261 |
+
#: templates/admin/fees-index.tpl.php:30
|
2262 |
#, fuzzy
|
2263 |
msgid "↑ Ascending"
|
2264 |
msgstr "↑ Oplopend"
|
2265 |
|
2266 |
+
#: templates/admin/fees-index.tpl.php:31
|
2267 |
#, fuzzy
|
2268 |
msgid "↓ Descending"
|
2269 |
msgstr "↓ Aflopend"
|
2270 |
|
2271 |
+
#: templates/admin/fees-index.tpl.php:39
|
2272 |
msgid "Drag and drop to re-order fees."
|
2273 |
msgstr ""
|
2274 |
|
|
|
|
|
|
|
|
|
|
|
2275 |
#: templates/admin/fees-index.tpl.php:67
|
|
|
|
|
|
|
|
|
|
|
2276 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: templates/admin/fees-index.tpl.php:69
|
2280 |
msgid "Add a payment gateway to increase conversion rates"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
#. translators: %s: payment gateway name */
|
2284 |
+
#: templates/admin/fees-index.tpl.php:88
|
2285 |
msgid "Add the %s gateway as a payment option."
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: templates/admin/fees-index.tpl.php:94
|
2289 |
#, fuzzy
|
2290 |
msgid "Upgrade"
|
2291 |
msgstr "Opwaarderen tot %s"
|
2292 |
|
2293 |
+
#: templates/admin/fees-index.tpl.php:102
|
2294 |
msgid "Set up Authorize.net as a payment option."
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: templates/admin/fees-index.tpl.php:105
|
2298 |
msgid "Set Up"
|
2299 |
msgstr ""
|
2300 |
|
2327 |
msgid "Delete Field"
|
2328 |
msgstr "Verwijder veld"
|
2329 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2330 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2331 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2332 |
#: templates/login.tpl.php:71
|
2633 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: templates/admin/themes-item.tpl.php:45
|
2637 |
#, fuzzy
|
2638 |
msgid "Inactive"
|
2639 |
msgstr "Actief"
|
3602 |
msgid "Fee \"%s\" deleted."
|
3603 |
msgstr "Tarief verwijderd."
|
3604 |
|
3605 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3606 |
+
#, fuzzy
|
3607 |
+
msgctxt "fees admin"
|
3608 |
+
msgid "Fee enabled."
|
3609 |
+
msgstr "Tarief gedeactiveerd"
|
3610 |
+
|
3611 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3612 |
msgctxt "fees admin"
|
3613 |
msgid "Fee disabled."
|
3614 |
msgstr "Tarief gedeactiveerd"
|
3623 |
msgid "fees"
|
3624 |
msgstr "tarieven"
|
3625 |
|
3626 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3627 |
#, fuzzy
|
3628 |
msgctxt "fees admin"
|
3629 |
msgid "Attributes"
|
3630 |
msgstr "Veld attributen"
|
3631 |
|
3632 |
+
#: includes/admin/helpers/tables/class-fees-table.php:137
|
3633 |
msgctxt "fees admin"
|
3634 |
msgid "Edit"
|
3635 |
msgstr "Bewerk"
|
3636 |
|
3637 |
+
#: includes/admin/helpers/tables/class-fees-table.php:207
|
3638 |
#, fuzzy
|
3639 |
msgctxt "fees admin"
|
3640 |
msgid "Variable"
|
3641 |
msgstr "Uitzetten"
|
3642 |
|
3643 |
+
#: includes/admin/helpers/tables/class-fees-table.php:212
|
3644 |
#, fuzzy
|
3645 |
msgctxt "fees admin"
|
3646 |
msgid "%1$s + %2$s per category"
|
3647 |
msgstr "Categorie selectie"
|
3648 |
|
3649 |
+
#: includes/admin/helpers/tables/class-fees-table.php:231
|
3650 |
msgctxt "fees admin"
|
3651 |
msgid "Forever"
|
3652 |
msgstr "Altijd"
|
3653 |
|
3654 |
+
#: includes/admin/helpers/tables/class-fees-table.php:233
|
3655 |
msgctxt "fees admin"
|
3656 |
msgid "%d day"
|
3657 |
msgid_plural "%d days"
|
3658 |
msgstr[0] "%d dag"
|
3659 |
msgstr[1] "%d dagen"
|
3660 |
|
3661 |
+
#: includes/admin/helpers/tables/class-fees-table.php:263
|
3662 |
msgctxt "fees admin"
|
3663 |
msgid "All categories"
|
3664 |
msgstr "Alle categorieën"
|
3665 |
|
3666 |
+
#: includes/admin/helpers/tables/class-fees-table.php:292
|
3667 |
msgctxt "fees admin"
|
3668 |
msgid "Sticky"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: includes/admin/helpers/tables/class-fees-table.php:296
|
3672 |
msgctxt "fees admin"
|
3673 |
msgid "Recurring"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: includes/admin/helpers/tables/class-fees-table.php:300
|
3677 |
#, fuzzy
|
3678 |
msgctxt "fees admin"
|
3679 |
msgid "Private"
|
3852 |
msgid "Reported"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: includes/models/class-listing.php:961
|
3856 |
msgctxt "listing status"
|
3857 |
msgid "Unknown"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: includes/models/class-listing.php:962
|
3861 |
msgctxt "listing status"
|
3862 |
msgid "Legacy"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
+
#: includes/models/class-listing.php:963
|
3866 |
#, fuzzy
|
3867 |
msgctxt "listing status"
|
3868 |
msgid "Incomplete"
|
3869 |
msgstr "Afgerond"
|
3870 |
|
3871 |
+
#: includes/models/class-listing.php:964
|
3872 |
#, fuzzy
|
3873 |
msgctxt "listing status"
|
3874 |
msgid "Pending Payment"
|
3875 |
msgstr "Wachtend op upgrade"
|
3876 |
|
3877 |
+
#: includes/models/class-listing.php:965
|
3878 |
#, fuzzy
|
3879 |
msgctxt "listing status"
|
3880 |
msgid "Complete"
|
3881 |
msgstr "Afgerond"
|
3882 |
|
3883 |
+
#: includes/models/class-listing.php:966
|
3884 |
#, fuzzy
|
3885 |
msgctxt "listing status"
|
3886 |
msgid "Pending Upgrade"
|
3887 |
msgstr "Wachtend op upgrade"
|
3888 |
|
3889 |
+
#: includes/models/class-listing.php:967
|
3890 |
#, fuzzy
|
3891 |
msgctxt "listing status"
|
3892 |
msgid "Expired"
|
3893 |
msgstr "Verlopen"
|
3894 |
|
3895 |
+
#: includes/models/class-listing.php:968
|
3896 |
#, fuzzy
|
3897 |
msgctxt "listing status"
|
3898 |
msgid "Pending Renewal"
|
3899 |
msgstr "Registratie vernieuwing"
|
3900 |
|
3901 |
+
#: includes/models/class-listing.php:969
|
3902 |
msgctxt "listing status"
|
3903 |
msgid "Abandoned"
|
3904 |
msgstr ""
|
4544 |
msgstr "Auteur"
|
4545 |
|
4546 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4547 |
+
#: includes/helpers/functions/general.php:1281
|
4548 |
msgctxt "admin settings"
|
4549 |
msgid "Date posted"
|
4550 |
msgstr "Datum ingediend"
|
4551 |
|
4552 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4553 |
+
#: includes/helpers/functions/general.php:1282
|
4554 |
msgctxt "admin settings"
|
4555 |
msgid "Date last modified"
|
4556 |
msgstr ""
|
4725 |
msgid "U.S. Dollar (USD)"
|
4726 |
msgstr ""
|
4727 |
|
4728 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
4729 |
msgctxt "admin settings"
|
4730 |
msgid "Show currency symbol on the left"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
4734 |
msgctxt "admin settings"
|
4735 |
msgid "Show currency symbol on the right"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
4739 |
msgctxt "admin settings"
|
4740 |
msgid "Do not show currency symbol"
|
4741 |
msgstr ""
|
4742 |
|
4743 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4744 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
4745 |
msgctxt "admin settings"
|
4746 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
4750 |
msgctxt "admin settings"
|
4751 |
msgid ""
|
4752 |
"Listings with pending payments are marked as abandoned after this time. You "
|
4753 |
"can also <a>customize the email</a> users receive."
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1320
|
4757 |
msgctxt "admin settings"
|
4758 |
msgid "Try listing's email field first, then author's email."
|
4759 |
msgstr "Probeer eerst email veld, dan email van de auteur."
|
4760 |
|
4761 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1321
|
4762 |
msgctxt "admin settings"
|
4763 |
msgid "Try author's email first and then listing's email field."
|
4764 |
msgstr "Probeer eerst email van de auteur, dan email veld van registratie. "
|
4765 |
|
4766 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1334
|
4767 |
msgctxt "admin settings"
|
4768 |
msgid "Plain (text/plain)"
|
4769 |
msgstr ""
|
4770 |
|
4771 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1335
|
4772 |
msgctxt "admin settings"
|
4773 |
msgid "HTML (text/html)"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1336
|
4777 |
msgctxt "admin settings"
|
4778 |
msgid "Both (multipart/alternative)"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1350
|
4782 |
msgctxt "admin settings"
|
4783 |
msgid "A new listing is submitted."
|
4784 |
msgstr "Een nieuwe registratie is ingediend."
|
4785 |
|
4786 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1351
|
4787 |
msgctxt "admin settings"
|
4788 |
msgid "A listing is edited."
|
4789 |
msgstr "Een registratie is gewijzigd."
|
4790 |
|
4791 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
4792 |
msgctxt "admin settings"
|
4793 |
msgid "A listing expires."
|
4794 |
msgstr "Een registratie verloopt."
|
4795 |
|
4796 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
4797 |
#, fuzzy
|
4798 |
msgctxt "admin settings"
|
4799 |
msgid "A listing is renewed."
|
4800 |
msgstr "Een registratie is gewijzigd."
|
4801 |
|
4802 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1354
|
4803 |
#, fuzzy
|
4804 |
msgctxt "admin settings"
|
4805 |
msgid "A listing payment is completed."
|
4806 |
msgstr "Een registratie is gewijzigd."
|
4807 |
|
4808 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1355
|
4809 |
#, fuzzy
|
4810 |
msgctxt "admin settings"
|
4811 |
msgid "A listing has been reported as inappropriate."
|
4812 |
msgstr "De registratie / vermelding is bijgewerkt."
|
4813 |
|
4814 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
4815 |
msgctxt "admin settings"
|
4816 |
msgid "A contact message is sent to a listing's owner."
|
4817 |
msgstr "Een contact boodschap is verzonden naar de registratie-houder"
|
4818 |
|
4819 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
4820 |
msgctxt "admin settings"
|
4821 |
msgid "Their listing is submitted."
|
4822 |
msgstr "Hun registratie is ingediend."
|
4823 |
|
4824 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1384
|
4825 |
msgctxt "admin settings"
|
4826 |
msgid "Their listing is approved/published."
|
4827 |
msgstr "Hun registratie is goedgekeurd."
|
4828 |
|
4829 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1385
|
4830 |
#, fuzzy
|
4831 |
msgctxt "admin settings"
|
4832 |
msgid "A payment for their listing is completed."
|
4833 |
msgstr "Hun registratie is ingediend."
|
4834 |
|
4835 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
4836 |
#, fuzzy
|
4837 |
msgctxt "admin settings"
|
4838 |
msgid "Their listing expired or is about to expire."
|
4839 |
msgstr "Hun registratie is ingediend."
|
4840 |
|
4841 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1404
|
4842 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
4843 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
4844 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
4845 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1514
|
4846 |
msgctxt "admin settings"
|
4847 |
msgid "Listing's title"
|
4848 |
msgstr "Titel registratie"
|
4849 |
|
4850 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1405
|
4851 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
4852 |
#, fuzzy
|
4853 |
msgctxt "admin settings"
|
4854 |
msgid "Listing's fee plan name"
|
4855 |
msgstr "Een registratie verloopt."
|
4856 |
|
4857 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1406
|
4858 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
4859 |
#, fuzzy
|
4860 |
msgctxt "admin settings"
|
4861 |
msgid "Listing's fee plan description"
|
4862 |
msgstr "Veld omschrijving"
|
4863 |
|
4864 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
4865 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
4866 |
#, fuzzy
|
4867 |
msgctxt "admin settings"
|
4868 |
msgid "Listing's fee plan details"
|
4869 |
msgstr "Een registratie verloopt."
|
4870 |
|
4871 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
4872 |
msgctxt "admin settings"
|
4873 |
msgid ""
|
4874 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
4877 |
"Je registratie \"[listing]\" is nu beschikbaar op [listing-url] en is "
|
4878 |
"zichtbaar voor publiek."
|
4879 |
|
4880 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1424
|
4881 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1458
|
4882 |
msgctxt "admin settings"
|
4883 |
msgid "Listing's URL"
|
4884 |
msgstr "URL van de registratie"
|
4885 |
|
4886 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1425
|
4887 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1465
|
4888 |
#, fuzzy
|
4889 |
msgctxt "admin settings"
|
4890 |
msgid "Listing's Access Key"
|
4891 |
msgstr "Beelden bij de registratie"
|
4892 |
|
4893 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
4894 |
#, fuzzy
|
4895 |
msgctxt "admin settings"
|
4896 |
msgid "Sender's name"
|
4897 |
msgstr "Naam auteur"
|
4898 |
|
4899 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1463
|
4900 |
#, fuzzy
|
4901 |
msgctxt "admin settings"
|
4902 |
msgid "Contact message"
|
4903 |
msgstr "Aantal registraties"
|
4904 |
|
4905 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1464
|
4906 |
msgctxt "admin settings"
|
4907 |
msgid "Date and time the message was sent"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
4911 |
#, fuzzy
|
4912 |
msgctxt "admin settings"
|
4913 |
msgid "Payment items details."
|
4914 |
msgstr "Betaling gerelateerd"
|
4915 |
|
4916 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
4917 |
msgctxt "admin settings"
|
4918 |
msgid "URL where user can review and print payment receipt."
|
4919 |
msgstr ""
|
4920 |
|
4921 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
4922 |
msgctxt "admin settings"
|
4923 |
msgid "Gateway used to process listing's payment."
|
4924 |
msgstr ""
|
4925 |
|
4926 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1515
|
4927 |
msgctxt "admin settings"
|
4928 |
msgid "Checkout URL link"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1617
|
4932 |
#, fuzzy
|
4933 |
msgctxt "admin settings"
|
4934 |
msgid "Uploaded Image (no resize)"
|
4935 |
msgstr "Beelden uploaden"
|
4936 |
|
4937 |
+
#: includes/helpers/functions/general.php:1279
|
4938 |
msgctxt "admin settings"
|
4939 |
msgid "User"
|
4940 |
msgstr "Gebruiker"
|
4941 |
|
4942 |
+
#: includes/helpers/functions/general.php:1280
|
4943 |
msgctxt "admin settings"
|
4944 |
msgid "User registration date"
|
4945 |
msgstr "Gebruikers registratie datum"
|
5169 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5170 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5171 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5172 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1301
|
5173 |
#: includes/admin/settings/class-settings.php:341
|
5174 |
#, fuzzy
|
5175 |
msgctxt "settings"
|
5826 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1132
|
5830 |
#, fuzzy
|
5831 |
msgctxt "settings"
|
5832 |
msgid "Fee Order"
|
5833 |
msgstr "Order"
|
5834 |
|
5835 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1145
|
|
|
|
|
|
|
|
|
|
|
|
|
5836 |
msgctxt "settings"
|
5837 |
msgid "Put payment gateways in test mode?"
|
5838 |
msgstr ""
|
5843 |
msgid "Currency Code"
|
5844 |
msgstr "Huidige datum"
|
5845 |
|
5846 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
5847 |
msgctxt "settings"
|
5848 |
msgid "Currency Symbol"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
5852 |
msgctxt "settings"
|
5853 |
msgid "Currency symbol display"
|
5854 |
msgstr ""
|
5855 |
|
5856 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
5857 |
msgctxt "settings"
|
5858 |
msgid "Include fee description in receipt?"
|
5859 |
msgstr ""
|
5860 |
|
5861 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1225
|
5862 |
msgctxt "settings"
|
5863 |
msgid "Thank you for payment message"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1278
|
5867 |
msgctxt "settings"
|
5868 |
msgid "Ask users to come back for abandoned payments?"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1289
|
5872 |
msgctxt "settings"
|
5873 |
msgid "Listing abandonment threshold (hours)"
|
5874 |
msgstr ""
|
5875 |
|
5876 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1306
|
5877 |
#, fuzzy
|
5878 |
msgctxt "settings"
|
5879 |
msgid "Display email address fields publicly?"
|
5880 |
msgstr "Email adres velden vertonen aan publiek?"
|
5881 |
|
5882 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1307
|
5883 |
#, fuzzy
|
5884 |
msgctxt "settings"
|
5885 |
msgid ""
|
5891 |
"bezoekers. NIET AANBEVOLEN omdat dit meer spam oproept en spam-bots toestaat "
|
5892 |
"de adressen te verzamelen. "
|
5893 |
|
5894 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1316
|
5895 |
#, fuzzy
|
5896 |
msgctxt "settings"
|
5897 |
msgid "How to determine the listing's email address?"
|
5898 |
msgstr "Hoe te bepalen wat email adres is van registratie-houder?"
|
5899 |
|
5900 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1317
|
5901 |
#, fuzzy
|
5902 |
msgctxt "settings"
|
5903 |
msgid ""
|
5907 |
"Dit beïnvloedt email gestuurd naar de registratie-houder via het contact "
|
5908 |
"formulier of als hun registraties verlopen."
|
5909 |
|
5910 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1330
|
5911 |
msgctxt "settings"
|
5912 |
msgid "Email Content-Type header"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1331
|
5916 |
msgctxt "settings"
|
5917 |
msgid ""
|
5918 |
"Use this setting to control the format of the emails explicitly. Some "
|
5921 |
"then \"Both\"."
|
5922 |
msgstr ""
|
5923 |
|
5924 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
5925 |
msgctxt "settings"
|
5926 |
msgid "Templates"
|
5927 |
msgstr ""
|
5928 |
|
5929 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1397
|
5930 |
#, fuzzy
|
5931 |
msgctxt "settings"
|
5932 |
msgid "Email confirmation message"
|
5933 |
msgstr "Email bevestiging boodschap"
|
5934 |
|
5935 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1398
|
5936 |
#, fuzzy
|
5937 |
msgctxt "settings"
|
5938 |
msgid "Sent after a listing has been submitted."
|
5939 |
msgstr "Verzonden nadat een registratie is ingediend."
|
5940 |
|
5941 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1416
|
5942 |
#, fuzzy
|
5943 |
msgctxt "settings"
|
5944 |
msgid "Listing published message"
|
5945 |
msgstr "Boodschap Registratie gepubliceerd"
|
5946 |
|
5947 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1417
|
5948 |
#, fuzzy
|
5949 |
msgctxt "settings"
|
5950 |
msgid "Sent when the listing has been published or approved by an admin."
|
5952 |
"Verzonden wanneer de registratie is gepubliceerd of goedgekeurd door een "
|
5953 |
"beheerder."
|
5954 |
|
5955 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
5956 |
#, fuzzy
|
5957 |
msgctxt "settings"
|
5958 |
msgid "Listing Contact Message"
|
5959 |
msgstr "Aantal registraties"
|
5960 |
|
5961 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1435
|
5962 |
#, fuzzy
|
5963 |
msgctxt "settings"
|
5964 |
msgid ""
|
5968 |
"Verzonden naar de eigenaar van vermelding/register als iemand het contact "
|
5969 |
"formulier gebruikt op hun registratie / vermelding pagina. "
|
5970 |
|
5971 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1475
|
5972 |
#, fuzzy
|
5973 |
msgctxt "settings"
|
5974 |
msgid "Payment completed message"
|
5975 |
msgstr "Betaling gerelateerd"
|
5976 |
|
5977 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
5978 |
msgctxt "settings"
|
5979 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
5980 |
msgstr ""
|
5981 |
|
5982 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
5983 |
msgctxt "settings"
|
5984 |
msgid "Payment abandoned reminder message"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1638
|
5988 |
msgctxt "settings"
|
5989 |
msgid "Cropped"
|
5990 |
msgstr ""
|
6000 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6001 |
msgstr ""
|
6002 |
|
6003 |
+
#: includes/licensing.php:245
|
6004 |
#, fuzzy
|
6005 |
msgctxt "settings"
|
6006 |
msgid "Themes"
|
6007 |
msgstr "Thema's"
|
6008 |
|
6009 |
+
#: includes/licensing.php:316 includes/licensing.php:317
|
6010 |
msgctxt "settings"
|
6011 |
msgid "Please wait..."
|
6012 |
msgstr ""
|
6013 |
|
6014 |
+
#: includes/licensing.php:317
|
6015 |
#, fuzzy
|
6016 |
msgctxt "settings"
|
6017 |
msgid "Deauthorize"
|
6064 |
msgid "Could not delete theme directory. Check permissions."
|
6065 |
msgstr ""
|
6066 |
|
6067 |
+
#: includes/admin/controllers/class-themes-admin.php:240
|
6068 |
msgctxt "themes"
|
6069 |
msgid "Please upload a valid theme file."
|
6070 |
msgstr ""
|
6071 |
|
6072 |
+
#: includes/admin/controllers/class-themes-admin.php:249
|
6073 |
msgctxt "themes"
|
6074 |
msgid "Could not move \"%s\" to a temporary directory."
|
6075 |
msgstr ""
|
6076 |
|
6077 |
+
#: includes/admin/controllers/class-themes-admin.php:335
|
6078 |
msgctxt "themes"
|
6079 |
msgid "Activate your <a>license key</a> to use this theme."
|
6080 |
msgstr ""
|
6081 |
|
6082 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
6083 |
msgctxt "themes"
|
6084 |
msgid "Invalid theme ID"
|
6085 |
msgstr ""
|
6086 |
|
6087 |
+
#: includes/admin/controllers/class-themes-admin.php:384
|
6088 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6089 |
msgctxt "themes"
|
6090 |
msgid "Could not update theme: %s"
|
6497 |
msgstr "Prullenbak"
|
6498 |
|
6499 |
#. translators: %s: url shortcode
|
6500 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
6501 |
msgctxt "contact email"
|
6502 |
msgid "You have received a reply from your listing at %s."
|
6503 |
msgstr "Je hebt een reactie gekregen op je vermelding op %s."
|
6504 |
|
6505 |
#. translators: %s: name shortcode
|
6506 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
6507 |
msgctxt "contact email"
|
6508 |
msgid "Name: %s"
|
6509 |
msgstr "Naam"
|
6510 |
|
6511 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1451
|
6512 |
msgctxt "contact email"
|
6513 |
msgid "Message:"
|
6514 |
msgstr "Boodschap:"
|
6515 |
|
6516 |
#. translators: %s: date shortcode
|
6517 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1455
|
6518 |
msgctxt "contact email"
|
6519 |
msgid "Time: %s"
|
6520 |
msgstr "Tijd: %s"
|
6795 |
msgid "Add New Listing"
|
6796 |
msgstr "Nieuwe registratie toevoegen"
|
6797 |
|
6798 |
+
#: includes/models/class-listing.php:421
|
6799 |
#, fuzzy
|
6800 |
msgctxt "listing"
|
6801 |
msgid "Listing has no registered payments"
|
6802 |
msgstr "Registraties per pagina"
|
6803 |
|
6804 |
+
#: includes/models/class-listing.php:430
|
6805 |
#, fuzzy
|
6806 |
msgctxt "listing"
|
6807 |
msgid "Can't delete payment"
|
6808 |
msgstr "Verwijder beeld"
|
6809 |
|
6810 |
+
#: includes/models/class-listing.php:468
|
6811 |
#, fuzzy
|
6812 |
msgctxt "listing"
|
6813 |
msgid "Listing expired"
|
6814 |
msgstr "Een registratie verloopt."
|
6815 |
|
6816 |
+
#: includes/models/class-listing.php:668
|
6817 |
msgctxt "listing"
|
6818 |
msgid "(Unavailable Plan)"
|
6819 |
msgstr ""
|
6820 |
|
6821 |
+
#: includes/models/class-listing.php:858
|
6822 |
msgctxt "listing"
|
6823 |
msgid "Plan \"%s\" (recurring)"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
+
#: includes/models/class-listing.php:860
|
6827 |
msgctxt "listing"
|
6828 |
msgid "Plan \"%s\""
|
6829 |
msgstr ""
|
6962 |
msgid "Enable %s?"
|
6963 |
msgstr "Aanzetten"
|
6964 |
|
6965 |
+
#: includes/class-payment-gateways.php:131
|
6966 |
msgctxt "payment-gateways"
|
6967 |
msgid ""
|
6968 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
6969 |
"won't be available until the following problems are fixed: <problems>."
|
6970 |
msgstr ""
|
6971 |
|
6972 |
+
#: includes/class-payment-gateways.php:133
|
6973 |
msgctxt "payment-gateways"
|
6974 |
msgid "Please check the <link>payment settings</link>."
|
6975 |
msgstr ""
|
6976 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6977 |
#: includes/class-recaptcha.php:32
|
6978 |
msgctxt "recaptcha"
|
6979 |
msgid "The reCAPTCHA wasn't entered correctly."
|
7169 |
"site. If you didn't want that, click <a>here</a> to change the setting."
|
7170 |
msgstr ""
|
7171 |
|
7172 |
+
#: includes/controllers/pages/class-submit-listing.php:424
|
7173 |
msgctxt "templates"
|
7174 |
msgid ""
|
7175 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7176 |
"Submission?\" setting checked?"
|
7177 |
msgstr ""
|
7178 |
|
7179 |
+
#: includes/controllers/pages/class-submit-listing.php:426
|
7180 |
msgctxt "templates"
|
7181 |
msgid ""
|
7182 |
"Listing submission has been disabled. Contact the administrator for details."
|
7183 |
msgstr ""
|
7184 |
|
7185 |
+
#: includes/controllers/pages/class-submit-listing.php:824
|
7186 |
msgctxt "templates"
|
7187 |
msgid ""
|
7188 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7189 |
"submit a listing. %s to create a fee plan"
|
7190 |
msgstr ""
|
7191 |
|
7192 |
+
#: includes/controllers/pages/class-submit-listing.php:838
|
7193 |
msgctxt "templates"
|
7194 |
msgid ""
|
7195 |
"Listing submission is not available at the moment. Contact the administrator "
|
7196 |
"for details."
|
7197 |
msgstr ""
|
7198 |
|
7199 |
+
#: includes/controllers/pages/class-submit-listing.php:841
|
7200 |
msgctxt "templates"
|
7201 |
msgid ""
|
7202 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
7204 |
"an existing field"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
+
#: includes/controllers/pages/class-submit-listing.php:1286
|
7208 |
msgctxt "templates"
|
7209 |
msgid "Please agree to the Terms and Conditions."
|
7210 |
msgstr "Ga s.v.p. akkoord met de voorwaarden"
|
7211 |
|
7212 |
+
#: includes/controllers/pages/class-submit-listing.php:1300
|
7213 |
#, fuzzy
|
7214 |
msgctxt "templates"
|
7215 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7216 |
msgstr "Ik ben akkoord met de voorwaarden"
|
7217 |
|
7218 |
+
#: includes/helpers/functions/general.php:1362
|
7219 |
#, fuzzy
|
7220 |
msgctxt "templates"
|
7221 |
msgid "Return to results"
|
7549 |
msgid "You can't edit this listing."
|
7550 |
msgstr "Categorieën voor deze registratie"
|
7551 |
|
7552 |
+
#: includes/controllers/pages/class-submit-listing.php:168
|
7553 |
msgctxt "submit listing"
|
7554 |
msgid ""
|
7555 |
"This listing can't be edited at this time because it has no fee plan "
|
7557 |
"to a fee plan."
|
7558 |
msgstr ""
|
7559 |
|
7560 |
+
#: includes/controllers/pages/class-submit-listing.php:174
|
7561 |
msgctxt "submit listing"
|
7562 |
msgid ""
|
7563 |
"This listing can't be edited at this time. Please try again later or contact "
|
7564 |
"the admin if the problem persists."
|
7565 |
msgstr ""
|
7566 |
|
7567 |
+
#: includes/controllers/pages/class-submit-listing.php:198
|
7568 |
#, fuzzy
|
7569 |
msgctxt "submit listing"
|
7570 |
msgid "You're logged in as admin, payment will be skipped."
|
7572 |
"Je bent ingelogd als een beheerder (admin). De betaalstappen worden "
|
7573 |
"overgeslagen."
|
7574 |
|
7575 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7576 |
#, fuzzy
|
7577 |
msgctxt "submit listing"
|
7578 |
msgid "Category selection"
|
7579 |
msgstr "categorie selectie"
|
7580 |
|
7581 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7582 |
#, fuzzy
|
7583 |
msgctxt "submit listing"
|
7584 |
msgid "Category & plan selection"
|
7585 |
msgstr "categorie selectie"
|
7586 |
|
7587 |
+
#: includes/controllers/pages/class-submit-listing.php:821
|
7588 |
msgctxt "submit listing"
|
7589 |
msgid "Can not submit a listing at this moment. Please try again later."
|
7590 |
msgstr ""
|
7591 |
|
7592 |
+
#: includes/controllers/pages/class-submit-listing.php:870
|
7593 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
7594 |
msgctxt "submit listing"
|
7595 |
msgid "Please select a category."
|
7596 |
msgstr ""
|
7597 |
|
7598 |
+
#: includes/controllers/pages/class-submit-listing.php:893
|
7599 |
msgctxt "submit listing"
|
7600 |
msgid "Please choose a valid category for your plan."
|
7601 |
msgstr ""
|
7602 |
|
7603 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
7604 |
msgctxt "submit listing"
|
7605 |
msgid "Please choose a valid fee plan for your category selection."
|
7606 |
msgstr ""
|
7607 |
|
7608 |
+
#: includes/controllers/pages/class-submit-listing.php:1206
|
7609 |
msgctxt "submit listing"
|
7610 |
msgid "Please enter your desired username."
|
7611 |
msgstr ""
|
7612 |
|
7613 |
+
#: includes/controllers/pages/class-submit-listing.php:1211
|
7614 |
msgctxt "submit listing"
|
7615 |
msgid "Please enter the e-mail for your new account."
|
7616 |
msgstr ""
|
7617 |
|
7618 |
+
#: includes/controllers/pages/class-submit-listing.php:1216
|
7619 |
msgctxt "submit listing"
|
7620 |
msgid "The username you chose is already in use. Please use a different one."
|
7621 |
msgstr ""
|
7622 |
|
7623 |
+
#: includes/controllers/pages/class-submit-listing.php:1221
|
7624 |
msgctxt "submit listing"
|
7625 |
msgid "The e-mail address you chose for your account is already in use."
|
7626 |
msgstr ""
|
7630 |
msgid "Listing submitted by admin. Payment skipped."
|
7631 |
msgstr ""
|
7632 |
|
7633 |
+
#: includes/controllers/pages/class-submit-listing.php:1161
|
7634 |
msgctxt "listing submit"
|
7635 |
msgid ""
|
7636 |
"Image upload is required, please provide at least one image and submit again."
|
7944 |
msgid "General"
|
7945 |
msgstr "Algemeen"
|
7946 |
|
7947 |
+
#: includes/licensing.php:571
|
7948 |
msgctxt "licensing"
|
7949 |
msgid "Could not contact licensing server"
|
7950 |
msgstr ""
|
7951 |
|
7952 |
+
#: includes/licensing.php:584
|
7953 |
msgctxt "licensing"
|
7954 |
msgid ""
|
7955 |
"It was not possible to establish a connection with Business Directory's "
|
7956 |
"server. cURL was not found in your system"
|
7957 |
msgstr ""
|
7958 |
|
7959 |
+
#: includes/licensing.php:586 includes/licensing.php:616
|
7960 |
msgctxt "licensing"
|
7961 |
msgid ""
|
7962 |
"To ensure the security of our systems and adhere to industry best practices, "
|
7965 |
"1.0.1c)."
|
7966 |
msgstr ""
|
7967 |
|
7968 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
7969 |
msgctxt "licensing"
|
7970 |
msgid ""
|
7971 |
"Upgrading your system will not only allow you to communicate with Business "
|
7973 |
"services using the latest security standards."
|
7974 |
msgstr ""
|
7975 |
|
7976 |
+
#: includes/licensing.php:590
|
7977 |
msgctxt "licensing"
|
7978 |
msgid ""
|
7979 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7980 |
"Include this message if necessary"
|
7981 |
msgstr ""
|
7982 |
|
7983 |
+
#: includes/licensing.php:620
|
7984 |
msgctxt "licensing"
|
7985 |
msgid ""
|
7986 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7987 |
"Include this message if necessary."
|
7988 |
msgstr ""
|
7989 |
|
7990 |
+
#: includes/licensing.php:656
|
7991 |
msgctxt "licensing"
|
7992 |
msgid "The server returned a 403 Forbidden error."
|
7993 |
msgstr ""
|
7994 |
|
7995 |
+
#: includes/licensing.php:902
|
7996 |
msgctxt "licensing"
|
7997 |
msgid "Could not activate license: %s."
|
7998 |
msgstr ""
|
7999 |
|
8000 |
+
#: includes/licensing.php:907
|
8001 |
msgctxt "licensing"
|
8002 |
msgid "License activated"
|
8003 |
msgstr ""
|
8004 |
|
8005 |
+
#: includes/licensing.php:939
|
8006 |
msgctxt "licensing"
|
8007 |
msgid "Could not deactivate license: %s."
|
8008 |
msgstr ""
|
8009 |
|
8010 |
+
#: includes/licensing.php:941
|
8011 |
msgctxt "licensing"
|
8012 |
msgid "License deactivated"
|
8013 |
msgstr ""
|
8014 |
|
8015 |
#. translators: "<module-name>" version <version-number> is not...
|
8016 |
+
#: includes/licensing.php:1181
|
8017 |
msgctxt "deprecation"
|
8018 |
msgid ""
|
8019 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8033 |
msgstr[0] "%d beeld"
|
8034 |
msgstr[1] "%d beelden"
|
8035 |
|
8036 |
+
#: includes/models/class-fee-plan.php:387
|
8037 |
msgctxt "fees-api"
|
8038 |
msgid "Fee label is required."
|
8039 |
msgstr ""
|
8040 |
|
8041 |
+
#: includes/models/class-fee-plan.php:393
|
8042 |
msgctxt "fees-api"
|
8043 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8044 |
msgstr ""
|
8045 |
"Betaalde registratie vertoningstijd als nummer, minder dan 10 jaar (3650 "
|
8046 |
"dagen)."
|
8047 |
|
8048 |
+
#: includes/models/class-fee-plan.php:398
|
8049 |
msgctxt "fees-api"
|
8050 |
msgid ""
|
8051 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
8053 |
"<a>fee plan</a> appropriately."
|
8054 |
msgstr ""
|
8055 |
|
8056 |
+
#: includes/models/class-fee-plan.php:401
|
8057 |
msgctxt "fees-api"
|
8058 |
msgid ""
|
8059 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
8130 |
msgid "Unkown error while uploading file."
|
8131 |
msgstr ""
|
8132 |
|
8133 |
+
#: includes/utils.php:335
|
8134 |
msgctxt "utils"
|
8135 |
msgid "Error while uploading file"
|
8136 |
msgstr ""
|
8137 |
|
8138 |
+
#: includes/utils.php:359 includes/utils.php:366
|
8139 |
msgctxt "utils"
|
8140 |
msgid "File type \"%s\" is not allowed"
|
8141 |
msgstr ""
|
8142 |
|
8143 |
+
#: includes/utils.php:585
|
8144 |
msgctxt "utils"
|
8145 |
msgid ""
|
8146 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8246 |
msgid "required"
|
8247 |
msgstr "vereist"
|
8248 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8249 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8250 |
msgctxt "admin infometabox"
|
8251 |
msgid "Renewal url (copy & paste)"
|
8518 |
msgid "Continue"
|
8519 |
msgstr "Doorgaan"
|
8520 |
|
8521 |
+
#, fuzzy
|
8522 |
+
#~ msgid "Paid"
|
8523 |
+
#~ msgstr "Betaald"
|
8524 |
+
|
8525 |
+
#, fuzzy
|
8526 |
+
#~ msgid "Manage Options"
|
8527 |
+
#~ msgstr "Opties beheren"
|
8528 |
+
|
8529 |
+
#, fuzzy
|
8530 |
+
#~ msgctxt "settings"
|
8531 |
+
#~ msgid "Turn On payments?"
|
8532 |
+
#~ msgstr "Betalingen aanzetten?"
|
8533 |
+
|
8534 |
#~ msgctxt "admin settings"
|
8535 |
#~ msgid ""
|
8536 |
#~ "For paid listing images, configure that by adding or editing a <a>Fee "
|
languages/business-directory-plugin-pl_PL.mo
CHANGED
Binary file
|
languages/business-directory-plugin-pl_PL.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2022-
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: HomeSupport <admin@homesupport.pl>\n"
|
9 |
"Language-Team: HomeSupport\n"
|
@@ -103,19 +103,19 @@ msgstr "Katalog Firm Admin"
|
|
103 |
msgid "Directory"
|
104 |
msgstr "Katalog"
|
105 |
|
106 |
-
#: includes/admin/class-admin.php:312
|
107 |
msgid "Fee Plans"
|
108 |
msgstr ""
|
109 |
|
110 |
# @ WPBDM
|
111 |
-
#: includes/admin/class-admin.php:315
|
112 |
#, fuzzy
|
113 |
msgid "Form Fields"
|
114 |
msgstr "Pola formularza"
|
115 |
|
116 |
# @ WPBDM
|
117 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
118 |
-
#: includes/licensing.php:
|
119 |
#, fuzzy
|
120 |
msgid "Modules"
|
121 |
msgstr "Zainstalowane moduły"
|
@@ -264,7 +264,7 @@ msgstr "Kwota"
|
|
264 |
|
265 |
# @ WPBDM
|
266 |
#: includes/admin/controllers/class-admin-fees.php:49
|
267 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
268 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
269 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
270 |
#, fuzzy
|
@@ -308,7 +308,7 @@ msgstr "Abonament zaktualizowany"
|
|
308 |
|
309 |
# @ WPBDM
|
310 |
#: includes/admin/controllers/class-admin-listings.php:185
|
311 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
312 |
#: templates/email/listing-reported.tpl.php:7
|
313 |
msgid "Listing Information"
|
314 |
msgstr "Informacje o firmie"
|
@@ -370,14 +370,14 @@ msgstr ""
|
|
370 |
|
371 |
# @ WPBDM
|
372 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
373 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
374 |
#, fuzzy
|
375 |
msgid "Go to \"Form Fields\""
|
376 |
msgstr "Przejdź do \"Zarządzanie polami formularza\""
|
377 |
|
378 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
379 |
-
#: includes/helpers/functions/general.php:
|
380 |
-
#: includes/helpers/functions/general.php:
|
381 |
msgid "Go back"
|
382 |
msgstr ""
|
383 |
|
@@ -502,11 +502,11 @@ msgstr "Dla czego odinstalowujesz Katalog Firm?"
|
|
502 |
|
503 |
# @ WPBDM
|
504 |
#: includes/admin/controllers/class-settings-admin.php:536
|
505 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
506 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
507 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
508 |
#: templates/admin/payments-note.tpl.php:14
|
509 |
-
#: templates/admin/themes-item.tpl.php:
|
510 |
#: templates/parts/listing-buttons.tpl.php:31
|
511 |
#: templates/parts/listing-buttons.tpl.php:65
|
512 |
#, fuzzy
|
@@ -566,8 +566,8 @@ msgstr "Zainstalowane "
|
|
566 |
|
567 |
# @ WPBDM
|
568 |
#: includes/admin/helpers/class-modules-list.php:187
|
569 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
570 |
-
#: templates/admin/themes-item.tpl.php:
|
571 |
#, fuzzy
|
572 |
msgid "Active"
|
573 |
msgstr "Tylko aktywne"
|
@@ -581,14 +581,14 @@ msgstr "Nie zainstalowane"
|
|
581 |
# @ WPBDM
|
582 |
#: includes/admin/helpers/class-modules-list.php:225
|
583 |
#: includes/controllers/class-smtp.php:317
|
584 |
-
#: templates/admin/themes-item.tpl.php:
|
585 |
#, fuzzy
|
586 |
msgid "Activate"
|
587 |
msgstr "Aktywacja Licencji"
|
588 |
|
589 |
# @ WPBDM
|
590 |
#: includes/admin/helpers/class-modules-list.php:235
|
591 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
592 |
#, fuzzy
|
593 |
msgid "Upgrade Now"
|
594 |
msgstr "Podnieś status do %s"
|
@@ -607,17 +607,23 @@ msgstr ""
|
|
607 |
# @ WPBDM
|
608 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
609 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
|
|
610 |
msgid "Plan Details"
|
611 |
msgstr "Szczegóły Planu"
|
612 |
|
613 |
# @ WPBDM
|
614 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
615 |
#, fuzzy
|
616 |
msgid "Pricing"
|
617 |
msgstr "Cena"
|
618 |
|
619 |
# @ WPBDM
|
620 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
621 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
622 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
623 |
#: includes/helpers/class-app.php:92
|
@@ -625,47 +631,46 @@ msgstr "Cena"
|
|
625 |
msgid "Listings"
|
626 |
msgstr "Oferty"
|
627 |
|
628 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
629 |
msgid "Disable"
|
630 |
msgstr ""
|
631 |
|
632 |
# @ WPBDM
|
633 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
634 |
#, fuzzy
|
635 |
msgid "Enable"
|
636 |
msgstr "Włączyć pasek sortowania?"
|
637 |
|
638 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
639 |
msgid "ID: %s"
|
640 |
msgstr ""
|
641 |
|
642 |
# @ WPBDM
|
643 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
644 |
#, fuzzy
|
645 |
msgid "Paid Plan"
|
646 |
msgstr "Zapłacone"
|
647 |
|
648 |
# @ WPBDM
|
649 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
650 |
#, fuzzy
|
651 |
msgid "Free Plan"
|
652 |
msgstr "Przejdź do \"Zarządzanie polami formularza\""
|
653 |
|
654 |
# @ form-fields api
|
655 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
656 |
#, fuzzy
|
657 |
msgid "%1$s for %2$s"
|
658 |
msgstr "%s (bez %s)"
|
659 |
|
660 |
# @ WPBDM
|
661 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
662 |
-
#: includes/admin/helpers/tables/class-fees-table.php:293
|
663 |
#, fuzzy
|
664 |
msgid "Disabled"
|
665 |
msgstr "Abonament usunięty "
|
666 |
|
667 |
# @ WPBDM
|
668 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
669 |
#: includes/helpers/functions/templates-ui.php:431
|
670 |
#, fuzzy
|
671 |
msgid "Default"
|
@@ -715,7 +720,7 @@ msgstr "Oferty otagowane: %s"
|
|
715 |
|
716 |
# @ WPBDM
|
717 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
718 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
719 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
720 |
#: templates/listing-contactform.tpl.php:33
|
721 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -771,7 +776,7 @@ msgstr "Nazwisko jest wymagane."
|
|
771 |
# @ WPBDM
|
772 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
773 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
774 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
775 |
#, fuzzy
|
776 |
msgid "Terms and Conditions"
|
777 |
msgstr "Warunki i regulamin korzystania z serwisu."
|
@@ -1016,12 +1021,12 @@ msgid "URL"
|
|
1016 |
msgstr "URL"
|
1017 |
|
1018 |
# @ WPBDM
|
1019 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1020 |
#, fuzzy
|
1021 |
msgid "Thank you for your payment."
|
1022 |
msgstr "Wiadomość - Dziękujemy za płatność."
|
1023 |
|
1024 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1025 |
msgid ""
|
1026 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
1027 |
"collect payments in this currency."
|
@@ -1033,25 +1038,25 @@ msgstr[1] ""
|
|
1033 |
msgstr[2] ""
|
1034 |
|
1035 |
# @ WPBDM
|
1036 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1037 |
#, fuzzy
|
1038 |
msgid "Email Notifications"
|
1039 |
msgstr "Powiadomienia E-mail"
|
1040 |
|
1041 |
# @ WPBDM
|
1042 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1043 |
#, fuzzy
|
1044 |
msgid "Notify admin via email when..."
|
1045 |
msgstr "Powiadom Administratora przez e-mail, kiedy..."
|
1046 |
|
1047 |
# @ WPBDM
|
1048 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1049 |
#, fuzzy
|
1050 |
msgid "CC this email address too"
|
1051 |
msgstr "Prześlij także na ten adres e-mail"
|
1052 |
|
1053 |
# @ WPBDM
|
1054 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1055 |
#, fuzzy
|
1056 |
msgid ""
|
1057 |
"You can modify the text template used for most of these emails in the "
|
@@ -1059,43 +1064,43 @@ msgid ""
|
|
1059 |
msgstr "Możesz edytować szablony tekstowe dla poniższych wiadomości e-mail."
|
1060 |
|
1061 |
# @ WPBDM
|
1062 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1063 |
#, fuzzy
|
1064 |
msgid "Notify users via email when..."
|
1065 |
msgstr "Poinformuj użytkownika mailem gdy..."
|
1066 |
|
1067 |
# @ WPBDM
|
1068 |
#. translators: %s: email shortcode
|
1069 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1070 |
#, fuzzy
|
1071 |
msgid "Email: %s"
|
1072 |
msgstr "E-Mail: %s"
|
1073 |
|
1074 |
# @ WPBDM
|
1075 |
#. translators: %s: phone shortcode
|
1076 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1077 |
#, fuzzy
|
1078 |
msgid "Phone Number: %s"
|
1079 |
msgstr "Telefon"
|
1080 |
|
1081 |
# @ WPBDM
|
1082 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1083 |
#, fuzzy
|
1084 |
msgid "Sender's email address"
|
1085 |
msgstr "Nieprawidłowy adres e-mail"
|
1086 |
|
1087 |
# @ WPBDM
|
1088 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1089 |
#, fuzzy
|
1090 |
msgid "Sender's phone number"
|
1091 |
msgstr "Nazwisko Autora"
|
1092 |
|
1093 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1094 |
msgid "Renewal and expiration"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
# @ WPBDM
|
1098 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1099 |
#: templates/admin/uninstall-complete.tpl.php:4
|
1100 |
#, fuzzy
|
1101 |
msgid "Uninstall"
|
@@ -1218,7 +1223,7 @@ msgstr "Pokaż"
|
|
1218 |
# @ WPBDM
|
1219 |
#. translators: %s: Status name
|
1220 |
#: includes/admin/views/modules/list.php:63
|
1221 |
-
#: templates/admin/themes-item.tpl.php:
|
1222 |
#, fuzzy
|
1223 |
msgid "Status: %s"
|
1224 |
msgstr "Status"
|
@@ -1413,12 +1418,10 @@ msgstr "Dodaj Abonament oferty"
|
|
1413 |
msgid "View All Listings"
|
1414 |
msgstr "Zobacz wszystkie Firmy"
|
1415 |
|
1416 |
-
|
1417 |
-
#: includes/class-payment-gateways.php:165
|
1418 |
msgid ""
|
1419 |
-
"You have
|
1420 |
-
"
|
1421 |
-
"to %1$sFee Plans%2$s to add or edit your fee plan(s)."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
# @ WPBDM
|
@@ -1446,7 +1449,7 @@ msgid ""
|
|
1446 |
msgstr ""
|
1447 |
|
1448 |
# @ WPBDM
|
1449 |
-
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:
|
1450 |
#, fuzzy
|
1451 |
msgid "Could not find image ID"
|
1452 |
msgstr "Nie możemy deaktywować Licencji: %s."
|
@@ -1669,41 +1672,41 @@ msgid "This is just a preview. The listing has not been published yet."
|
|
1669 |
msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
|
1670 |
|
1671 |
# @ WPBDM
|
1672 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1673 |
#, fuzzy
|
1674 |
msgid "Listing Images"
|
1675 |
msgstr "Obrazy"
|
1676 |
|
1677 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1678 |
msgid "Account Creation"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
# @ WPBDM
|
1682 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1683 |
#, fuzzy
|
1684 |
msgid "Go to \"Fee Plans\""
|
1685 |
msgstr "Przejdź do \"Zarządzanie polami formularza\""
|
1686 |
|
1687 |
# @ WPBDM
|
1688 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1689 |
#, fuzzy
|
1690 |
msgid "Please choose a fee plan."
|
1691 |
msgstr "Wybierz abonament dla tegj kategori \"%s\"."
|
1692 |
|
1693 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1694 |
msgid "Please check the form for errors, correct them and submit again."
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1698 |
msgid "Create a user account on this site"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1702 |
msgid "Username"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
# @ WPBDM
|
1706 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1707 |
#, fuzzy
|
1708 |
msgid "Clear Form"
|
1709 |
msgstr "Wyczyść"
|
@@ -2070,8 +2073,7 @@ msgid ""
|
|
2070 |
msgstr ""
|
2071 |
|
2072 |
# @ WPBDM
|
2073 |
-
#: includes/helpers/functions/general.php:
|
2074 |
-
#: templates/admin/fees-index.tpl.php:67
|
2075 |
msgid "Free"
|
2076 |
msgstr "Tryb Bezpłatny"
|
2077 |
|
@@ -2088,82 +2090,82 @@ msgid "Manage Listings"
|
|
2088 |
msgstr "Zarządzaj ofertami płatnymi"
|
2089 |
|
2090 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
2091 |
-
#: includes/licensing.php:
|
2092 |
msgid ""
|
2093 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
2094 |
"get updates."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
# @ WPBDM
|
2098 |
-
#: includes/licensing.php:
|
2099 |
#, fuzzy
|
2100 |
msgid "Licenses"
|
2101 |
msgstr "Licencje"
|
2102 |
|
2103 |
-
#: includes/licensing.php:
|
2104 |
msgid "Build more powerful directories"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: includes/licensing.php:
|
2108 |
msgid ""
|
2109 |
"Add category images, maps, filter by location, payment gateways, and more."
|
2110 |
msgstr ""
|
2111 |
|
2112 |
# @ WPBDM
|
2113 |
-
#: includes/licensing.php:
|
2114 |
#, fuzzy
|
2115 |
msgid "Already purchased?"
|
2116 |
msgstr "Już zainstalowano."
|
2117 |
|
2118 |
#. translators: %s: item type.
|
2119 |
-
#: includes/licensing.php:
|
2120 |
msgid "%s will not get updates until license is reauthorized."
|
2121 |
msgstr ""
|
2122 |
|
2123 |
# @ WPBDM
|
2124 |
-
#: includes/licensing.php:
|
2125 |
#, fuzzy
|
2126 |
msgid "Enter License Key here"
|
2127 |
msgstr "Odśwież Klucz Licencji"
|
2128 |
|
2129 |
# @ authorize-net
|
2130 |
-
#: includes/licensing.php:
|
2131 |
#, fuzzy
|
2132 |
msgid "Authorize"
|
2133 |
msgstr "Aktywować Authorize.net?"
|
2134 |
|
2135 |
# @ WPBDM
|
2136 |
-
#: includes/licensing.php:
|
2137 |
#, fuzzy
|
2138 |
msgid "Invalid item ID"
|
2139 |
msgstr "Niewłaściwe ID Pola"
|
2140 |
|
2141 |
# @ WPBDM
|
2142 |
-
#: includes/licensing.php:
|
2143 |
#, fuzzy
|
2144 |
msgid "No license key provided"
|
2145 |
msgstr "Nie wprowadzono klucz licencji"
|
2146 |
|
2147 |
# @ WPBDM
|
2148 |
-
#: includes/licensing.php:
|
2149 |
#, fuzzy
|
2150 |
msgid "License key is invalid"
|
2151 |
msgstr "Niewłaściwy Klucz Licencji"
|
2152 |
|
2153 |
# @ WPBDM
|
2154 |
-
#: includes/licensing.php:
|
2155 |
#, fuzzy
|
2156 |
msgid "Deactivation failed"
|
2157 |
msgstr "Błąd Deaktywacji"
|
2158 |
|
2159 |
# @ WPBDM
|
2160 |
-
#: includes/licensing.php:
|
2161 |
#, fuzzy
|
2162 |
msgid "The license key was revoked."
|
2163 |
msgstr "Nie wprowadzono klucz licencji"
|
2164 |
|
2165 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
2166 |
-
#: includes/licensing.php:
|
2167 |
msgid ""
|
2168 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
2169 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -2171,19 +2173,19 @@ msgid ""
|
|
2171 |
"with your report."
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: includes/licensing.php:
|
2175 |
msgid ""
|
2176 |
"It was not possible to establish a connection with the Business Directory "
|
2177 |
"server. The connection failed with the following error:"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: includes/licensing.php:
|
2181 |
msgid ""
|
2182 |
"It was not possible to establish a connection with the Business Directory "
|
2183 |
"server. A problem occurred in the SSL/TSL handshake:"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: includes/licensing.php:
|
2187 |
msgid ""
|
2188 |
"It looks like your server is not authorized to make outgoing requests to "
|
2189 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
@@ -2191,35 +2193,35 @@ msgid ""
|
|
2191 |
msgstr ""
|
2192 |
|
2193 |
# @ WPBDM
|
2194 |
-
#: includes/licensing.php:
|
2195 |
#, fuzzy
|
2196 |
msgid "Business Directory license key is missing."
|
2197 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2198 |
|
2199 |
# @ WPBDM
|
2200 |
-
#: includes/licensing.php:
|
2201 |
#, fuzzy
|
2202 |
msgid "Business Directory license key has expired"
|
2203 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2204 |
|
2205 |
# @ WPBDM
|
2206 |
-
#: includes/licensing.php:
|
2207 |
#, fuzzy
|
2208 |
msgid "Could not verify Business Directory license."
|
2209 |
msgstr "Pomóż doskonalić Katalog Firm"
|
2210 |
|
2211 |
# @ WPBDM
|
2212 |
-
#: includes/licensing.php:
|
2213 |
#, fuzzy
|
2214 |
msgid "Review license keys"
|
2215 |
msgstr "Odśwież Klucz Licencji"
|
2216 |
|
2217 |
-
#: includes/licensing.php:
|
2218 |
msgid "Missing data. Please reload this page and try again."
|
2219 |
msgstr ""
|
2220 |
|
2221 |
# @ WPBDM
|
2222 |
-
#: includes/licensing.php:
|
2223 |
#, fuzzy
|
2224 |
msgid "Please enter a license key."
|
2225 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
@@ -2270,13 +2272,13 @@ msgid "ZIP file is not a valid Business Directory theme file."
|
|
2270 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
2271 |
|
2272 |
# @ WPBDM
|
2273 |
-
#: includes/utils.php:
|
2274 |
#, fuzzy
|
2275 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2276 |
msgstr "Rozmiar pliku (%s) przekracz maksymalny dozwolony rozmiar %s"
|
2277 |
|
2278 |
# @ WPBDM
|
2279 |
-
#: includes/utils.php:
|
2280 |
#, fuzzy
|
2281 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2282 |
msgstr "Rozmiar pliku (%s) jest mniejszyod wymaganego minimum: %s"
|
@@ -2682,80 +2684,53 @@ msgid "Add New Listing Fee"
|
|
2682 |
msgstr "Dodaj nowy abonament"
|
2683 |
|
2684 |
# @ WPBDM
|
2685 |
-
#: templates/admin/fees-index.tpl.php:
|
2686 |
-
#, fuzzy
|
2687 |
-
msgid "Payments are currently turned off."
|
2688 |
-
msgstr "Płatność jest aktualnie wyłączona."
|
2689 |
-
|
2690 |
-
# @ WPBDM
|
2691 |
-
#. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
|
2692 |
-
#: templates/admin/fees-index.tpl.php:21
|
2693 |
-
#, fuzzy
|
2694 |
-
msgid ""
|
2695 |
-
"To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
|
2696 |
-
"and check the box next to 'Turn On Payments' under 'Payment Settings'."
|
2697 |
-
msgstr ""
|
2698 |
-
"Aby zarządzać abonamentami musisz iść do <a> Opcje Zarządzania- Płatności </"
|
2699 |
-
"a> i zaznaczyć pole wyboru \"Włącz\" w \"Ustawienia płatności\"."
|
2700 |
-
|
2701 |
-
# @ WPBDM
|
2702 |
-
#: templates/admin/fees-index.tpl.php:34
|
2703 |
#, fuzzy
|
2704 |
msgid "Order fees on the frontend by:"
|
2705 |
msgstr "Sortuj abonamenty według:"
|
2706 |
|
2707 |
# @ WPBDM
|
2708 |
-
#: templates/admin/fees-index.tpl.php:
|
2709 |
#, fuzzy
|
2710 |
msgid "↑ Ascending"
|
2711 |
msgstr "↑ Rosnąco"
|
2712 |
|
2713 |
# @ WPBDM
|
2714 |
-
#: templates/admin/fees-index.tpl.php:
|
2715 |
#, fuzzy
|
2716 |
msgid "↓ Descending"
|
2717 |
msgstr "↓ Malejąco"
|
2718 |
|
2719 |
# @ WPBDM
|
2720 |
-
#: templates/admin/fees-index.tpl.php:
|
2721 |
#, fuzzy
|
2722 |
msgid "Drag and drop to re-order fees."
|
2723 |
msgstr "Złap i upuść aby uporządkować abonamenty"
|
2724 |
|
2725 |
-
#. translators: %1$s is directory payment mode (Free or Paid)
|
2726 |
-
#: templates/admin/fees-index.tpl.php:66
|
2727 |
-
msgid "All fee plans may not be available in \"%1$s\" mode."
|
2728 |
-
msgstr ""
|
2729 |
-
|
2730 |
-
# @ WPBDM
|
2731 |
#: templates/admin/fees-index.tpl.php:67
|
2732 |
-
msgid "Paid"
|
2733 |
-
msgstr "Zapłacone"
|
2734 |
-
|
2735 |
-
#: templates/admin/fees-index.tpl.php:92
|
2736 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: templates/admin/fees-index.tpl.php:
|
2740 |
msgid "Add a payment gateway to increase conversion rates"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
#. translators: %s: payment gateway name */
|
2744 |
-
#: templates/admin/fees-index.tpl.php:
|
2745 |
msgid "Add the %s gateway as a payment option."
|
2746 |
msgstr ""
|
2747 |
|
2748 |
# @ WPBDM
|
2749 |
-
#: templates/admin/fees-index.tpl.php:
|
2750 |
#, fuzzy
|
2751 |
msgid "Upgrade"
|
2752 |
msgstr "Podnieś status do %s"
|
2753 |
|
2754 |
-
#: templates/admin/fees-index.tpl.php:
|
2755 |
msgid "Set up Authorize.net as a payment option."
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: templates/admin/fees-index.tpl.php:
|
2759 |
msgid "Set Up"
|
2760 |
msgstr ""
|
2761 |
|
@@ -2795,17 +2770,6 @@ msgstr "Jesteś pewien, że chcesz usunąć pole \"%s\"?"
|
|
2795 |
msgid "Delete Field"
|
2796 |
msgstr "Usuń pole"
|
2797 |
|
2798 |
-
# @ WPBDM
|
2799 |
-
#: templates/admin/home.tpl.php:55
|
2800 |
-
#, fuzzy
|
2801 |
-
msgid "Manage Options"
|
2802 |
-
msgstr "Zarządzaj opcjami"
|
2803 |
-
|
2804 |
-
# @ WPBDM
|
2805 |
-
#: templates/admin/home.tpl.php:74
|
2806 |
-
msgid "Manage Paid Listings"
|
2807 |
-
msgstr "Zarządzaj ofertami płatnymi"
|
2808 |
-
|
2809 |
# @ WPBDM
|
2810 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2811 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
@@ -3167,7 +3131,7 @@ msgid "New version available. %1$sUpdate now.%2$s"
|
|
3167 |
msgstr ""
|
3168 |
|
3169 |
# @ WPBDM
|
3170 |
-
#: templates/admin/themes-item.tpl.php:
|
3171 |
#, fuzzy
|
3172 |
msgid "Inactive"
|
3173 |
msgstr "Tylko aktywne"
|
@@ -4337,7 +4301,14 @@ msgid "Fee \"%s\" deleted."
|
|
4337 |
msgstr "Abonament usunięty "
|
4338 |
|
4339 |
# @ WPBDM
|
4340 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4341 |
msgctxt "fees admin"
|
4342 |
msgid "Fee disabled."
|
4343 |
msgstr "Abonament usunięty "
|
@@ -4355,38 +4326,38 @@ msgid "fees"
|
|
4355 |
msgstr "Abonamenty"
|
4356 |
|
4357 |
# @ WPBDM
|
4358 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4359 |
#, fuzzy
|
4360 |
msgctxt "fees admin"
|
4361 |
msgid "Attributes"
|
4362 |
msgstr "Atrybuty pola"
|
4363 |
|
4364 |
# @ WPBDM
|
4365 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4366 |
msgctxt "fees admin"
|
4367 |
msgid "Edit"
|
4368 |
msgstr "Edytuj"
|
4369 |
|
4370 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4371 |
msgctxt "fees admin"
|
4372 |
msgid "Variable"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
# @ WPBDM
|
4376 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4377 |
#, fuzzy
|
4378 |
msgctxt "fees admin"
|
4379 |
msgid "%1$s + %2$s per category"
|
4380 |
msgstr "Abonament \"%s\" dla kategorii \"%s\""
|
4381 |
|
4382 |
# @ WPBDM
|
4383 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4384 |
msgctxt "fees admin"
|
4385 |
msgid "Forever"
|
4386 |
msgstr "Na zawsze"
|
4387 |
|
4388 |
# @ WPBDM
|
4389 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4390 |
msgctxt "fees admin"
|
4391 |
msgid "%d day"
|
4392 |
msgid_plural "%d days"
|
@@ -4395,25 +4366,25 @@ msgstr[1] "%d dni"
|
|
4395 |
msgstr[2] "%d dni"
|
4396 |
|
4397 |
# @ WPBDM
|
4398 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4399 |
msgctxt "fees admin"
|
4400 |
msgid "All categories"
|
4401 |
msgstr "Wszystkie Kategorie"
|
4402 |
|
4403 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4404 |
msgctxt "fees admin"
|
4405 |
msgid "Sticky"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
# @ WPBDM
|
4409 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4410 |
#, fuzzy
|
4411 |
msgctxt "fees admin"
|
4412 |
msgid "Recurring"
|
4413 |
msgstr "(powtarzające się)"
|
4414 |
|
4415 |
# @ WPBDM
|
4416 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4417 |
#, fuzzy
|
4418 |
msgctxt "fees admin"
|
4419 |
msgid "Private"
|
@@ -4618,60 +4589,60 @@ msgctxt "listing status"
|
|
4618 |
msgid "Reported"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
-
#: includes/models/class-listing.php:
|
4622 |
msgctxt "listing status"
|
4623 |
msgid "Unknown"
|
4624 |
msgstr ""
|
4625 |
|
4626 |
-
#: includes/models/class-listing.php:
|
4627 |
msgctxt "listing status"
|
4628 |
msgid "Legacy"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
# @ WPBDM
|
4632 |
-
#: includes/models/class-listing.php:
|
4633 |
#, fuzzy
|
4634 |
msgctxt "listing status"
|
4635 |
msgid "Incomplete"
|
4636 |
msgstr "Zakończona"
|
4637 |
|
4638 |
# @ WPBDM
|
4639 |
-
#: includes/models/class-listing.php:
|
4640 |
#, fuzzy
|
4641 |
msgctxt "listing status"
|
4642 |
msgid "Pending Payment"
|
4643 |
msgstr "Oczekujące na abonament"
|
4644 |
|
4645 |
# @ WPBDM
|
4646 |
-
#: includes/models/class-listing.php:
|
4647 |
#, fuzzy
|
4648 |
msgctxt "listing status"
|
4649 |
msgid "Complete"
|
4650 |
msgstr "Zakończona"
|
4651 |
|
4652 |
# @ WPBDM
|
4653 |
-
#: includes/models/class-listing.php:
|
4654 |
#, fuzzy
|
4655 |
msgctxt "listing status"
|
4656 |
msgid "Pending Upgrade"
|
4657 |
msgstr "Oferty oczekujące na zatwierdzenie"
|
4658 |
|
4659 |
# @ WPBDM
|
4660 |
-
#: includes/models/class-listing.php:
|
4661 |
#, fuzzy
|
4662 |
msgctxt "listing status"
|
4663 |
msgid "Expired"
|
4664 |
msgstr "Wygasłe"
|
4665 |
|
4666 |
# @ WPBDM
|
4667 |
-
#: includes/models/class-listing.php:
|
4668 |
#, fuzzy
|
4669 |
msgctxt "listing status"
|
4670 |
msgid "Pending Renewal"
|
4671 |
msgstr "Tylko aktywne i oczekujące na odświeżenie "
|
4672 |
|
4673 |
# @ WPBDM
|
4674 |
-
#: includes/models/class-listing.php:
|
4675 |
#, fuzzy
|
4676 |
msgctxt "listing status"
|
4677 |
msgid "Abandoned"
|
@@ -5422,14 +5393,14 @@ msgstr "Autor"
|
|
5422 |
|
5423 |
# @ WPBDM
|
5424 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
5425 |
-
#: includes/helpers/functions/general.php:
|
5426 |
msgctxt "admin settings"
|
5427 |
msgid "Date posted"
|
5428 |
msgstr "Data publikacji"
|
5429 |
|
5430 |
# @ WPBDM
|
5431 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
5432 |
-
#: includes/helpers/functions/general.php:
|
5433 |
msgctxt "admin settings"
|
5434 |
msgid "Date last modified"
|
5435 |
msgstr "Data ostatnij modyfikacji"
|
@@ -5631,30 +5602,30 @@ msgctxt "admin settings"
|
|
5631 |
msgid "U.S. Dollar (USD)"
|
5632 |
msgstr "Dolar Amerykański"
|
5633 |
|
5634 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5635 |
msgctxt "admin settings"
|
5636 |
msgid "Show currency symbol on the left"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5640 |
msgctxt "admin settings"
|
5641 |
msgid "Show currency symbol on the right"
|
5642 |
msgstr ""
|
5643 |
|
5644 |
# @ WPBDM
|
5645 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5646 |
msgctxt "admin settings"
|
5647 |
msgid "Do not show currency symbol"
|
5648 |
msgstr "Symbol Waluty"
|
5649 |
|
5650 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5651 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5652 |
msgctxt "admin settings"
|
5653 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
# @ WPBDM
|
5657 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5658 |
#, fuzzy
|
5659 |
msgctxt "admin settings"
|
5660 |
msgid ""
|
@@ -5665,138 +5636,138 @@ msgstr ""
|
|
5665 |
"tego czasu. Możesz także <a>wprowadzić zmiany w szablonie wiadomości e-mail</"
|
5666 |
"a> dostarczanym do użytkowników."
|
5667 |
|
5668 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5669 |
msgctxt "admin settings"
|
5670 |
msgid "Try listing's email field first, then author's email."
|
5671 |
msgstr ""
|
5672 |
|
5673 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5674 |
msgctxt "admin settings"
|
5675 |
msgid "Try author's email first and then listing's email field."
|
5676 |
msgstr ""
|
5677 |
|
5678 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5679 |
msgctxt "admin settings"
|
5680 |
msgid "Plain (text/plain)"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5684 |
msgctxt "admin settings"
|
5685 |
msgid "HTML (text/html)"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5689 |
msgctxt "admin settings"
|
5690 |
msgid "Both (multipart/alternative)"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
# @ WPBDM
|
5694 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5695 |
msgctxt "admin settings"
|
5696 |
msgid "A new listing is submitted."
|
5697 |
msgstr "Dodano nową ofertę."
|
5698 |
|
5699 |
# @ WPBDM
|
5700 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5701 |
msgctxt "admin settings"
|
5702 |
msgid "A listing is edited."
|
5703 |
msgstr "Edytowano ofertę."
|
5704 |
|
5705 |
# @ WPBDM
|
5706 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5707 |
msgctxt "admin settings"
|
5708 |
msgid "A listing expires."
|
5709 |
msgstr "Upłynął okres ważności oferty."
|
5710 |
|
5711 |
# @ WPBDM
|
5712 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5713 |
#, fuzzy
|
5714 |
msgctxt "admin settings"
|
5715 |
msgid "A listing is renewed."
|
5716 |
msgstr "Edytowano ofertę."
|
5717 |
|
5718 |
# @ WPBDM
|
5719 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5720 |
#, fuzzy
|
5721 |
msgctxt "admin settings"
|
5722 |
msgid "A listing payment is completed."
|
5723 |
msgstr "Edytowano ofertę."
|
5724 |
|
5725 |
# @ WPBDM
|
5726 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5727 |
#, fuzzy
|
5728 |
msgctxt "admin settings"
|
5729 |
msgid "A listing has been reported as inappropriate."
|
5730 |
msgstr "Podniesiono status oferty."
|
5731 |
|
5732 |
# @ WPBDM
|
5733 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5734 |
msgctxt "admin settings"
|
5735 |
msgid "A contact message is sent to a listing's owner."
|
5736 |
msgstr "Została wysłana wiadomość kontaktowa do właściciela oferty."
|
5737 |
|
5738 |
# @ WPBDM
|
5739 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5740 |
msgctxt "admin settings"
|
5741 |
msgid "Their listing is submitted."
|
5742 |
msgstr "Twoja oferta została przesłana."
|
5743 |
|
5744 |
# @ WPBDM
|
5745 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5746 |
msgctxt "admin settings"
|
5747 |
msgid "Their listing is approved/published."
|
5748 |
msgstr "Twoja oferta została zatwierdzona i opublikowana."
|
5749 |
|
5750 |
# @ WPBDM
|
5751 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5752 |
#, fuzzy
|
5753 |
msgctxt "admin settings"
|
5754 |
msgid "A payment for their listing is completed."
|
5755 |
msgstr "Twoja oferta została przesłana."
|
5756 |
|
5757 |
# @ WPBDM
|
5758 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5759 |
#, fuzzy
|
5760 |
msgctxt "admin settings"
|
5761 |
msgid "Their listing expired or is about to expire."
|
5762 |
msgstr "Twoja oferta została przesłana."
|
5763 |
|
5764 |
# @ WPBDM
|
5765 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5766 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5767 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5768 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5769 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5770 |
msgctxt "admin settings"
|
5771 |
msgid "Listing's title"
|
5772 |
msgstr "Tytuł oferty"
|
5773 |
|
5774 |
# @ WPBDM
|
5775 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5776 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5777 |
#, fuzzy
|
5778 |
msgctxt "admin settings"
|
5779 |
msgid "Listing's fee plan name"
|
5780 |
msgstr "Data zakończenia emisji oferty"
|
5781 |
|
5782 |
# @ WPBDM
|
5783 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5784 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5785 |
#, fuzzy
|
5786 |
msgctxt "admin settings"
|
5787 |
msgid "Listing's fee plan description"
|
5788 |
msgstr "Wybór Abonamentu"
|
5789 |
|
5790 |
# @ WPBDM
|
5791 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5792 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5793 |
#, fuzzy
|
5794 |
msgctxt "admin settings"
|
5795 |
msgid "Listing's fee plan details"
|
5796 |
msgstr "Data zakończenia emisji oferty"
|
5797 |
|
5798 |
# @ WPBDM
|
5799 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5800 |
msgctxt "admin settings"
|
5801 |
msgid ""
|
5802 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
@@ -5806,78 +5777,78 @@ msgstr ""
|
|
5806 |
"status oferty publicznej."
|
5807 |
|
5808 |
# @ WPBDM
|
5809 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5810 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5811 |
msgctxt "admin settings"
|
5812 |
msgid "Listing's URL"
|
5813 |
msgstr "URL oferty"
|
5814 |
|
5815 |
# @ WPBDM
|
5816 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5817 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5818 |
#, fuzzy
|
5819 |
msgctxt "admin settings"
|
5820 |
msgid "Listing's Access Key"
|
5821 |
msgstr "Pola/Obrazy"
|
5822 |
|
5823 |
# @ WPBDM
|
5824 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5825 |
#, fuzzy
|
5826 |
msgctxt "admin settings"
|
5827 |
msgid "Sender's name"
|
5828 |
msgstr "Nazwisko Autora"
|
5829 |
|
5830 |
# @ WPBDM
|
5831 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5832 |
#, fuzzy
|
5833 |
msgctxt "admin settings"
|
5834 |
msgid "Contact message"
|
5835 |
msgstr "Wiadomość do osoby kontaktowej z Oferty"
|
5836 |
|
5837 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5838 |
msgctxt "admin settings"
|
5839 |
msgid "Date and time the message was sent"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
# @ WPBDM
|
5843 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5844 |
#, fuzzy
|
5845 |
msgctxt "admin settings"
|
5846 |
msgid "Payment items details."
|
5847 |
msgstr "Szczegóły płatności"
|
5848 |
|
5849 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5850 |
msgctxt "admin settings"
|
5851 |
msgid "URL where user can review and print payment receipt."
|
5852 |
msgstr ""
|
5853 |
|
5854 |
# @ WPBDM
|
5855 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5856 |
#, fuzzy
|
5857 |
msgctxt "admin settings"
|
5858 |
msgid "Gateway used to process listing's payment."
|
5859 |
msgstr "Nie można kontynuować płatności."
|
5860 |
|
5861 |
# @ WPBDM
|
5862 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5863 |
msgctxt "admin settings"
|
5864 |
msgid "Checkout URL link"
|
5865 |
msgstr "Sprawdzanie link URL"
|
5866 |
|
5867 |
# @ WPBDM
|
5868 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5869 |
#, fuzzy
|
5870 |
msgctxt "admin settings"
|
5871 |
msgid "Uploaded Image (no resize)"
|
5872 |
msgstr "Załaduj obraz"
|
5873 |
|
5874 |
-
#: includes/helpers/functions/general.php:
|
5875 |
msgctxt "admin settings"
|
5876 |
msgid "User"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
# @ WPBDM
|
5880 |
-
#: includes/helpers/functions/general.php:
|
5881 |
msgctxt "admin settings"
|
5882 |
msgid "User registration date"
|
5883 |
msgstr "Data zakończenia emisji oferty"
|
@@ -6142,7 +6113,7 @@ msgstr "Oferty"
|
|
6142 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
6143 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
6144 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
6145 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6146 |
#: includes/admin/settings/class-settings.php:341
|
6147 |
#, fuzzy
|
6148 |
msgctxt "settings"
|
@@ -6888,21 +6859,14 @@ msgid "Use this to set Featured Badge image as a link to a defined URL."
|
|
6888 |
msgstr ""
|
6889 |
|
6890 |
# @ WPBDM
|
6891 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6892 |
#, fuzzy
|
6893 |
msgctxt "settings"
|
6894 |
msgid "Fee Order"
|
6895 |
msgstr "Sortowanie"
|
6896 |
|
6897 |
# @ WPBDM
|
6898 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6899 |
-
#, fuzzy
|
6900 |
-
msgctxt "settings"
|
6901 |
-
msgid "Turn On payments?"
|
6902 |
-
msgstr "Włączyć Płatność?"
|
6903 |
-
|
6904 |
-
# @ WPBDM
|
6905 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1144
|
6906 |
#, fuzzy
|
6907 |
msgctxt "settings"
|
6908 |
msgid "Put payment gateways in test mode?"
|
@@ -6916,54 +6880,54 @@ msgid "Currency Code"
|
|
6916 |
msgstr "Kod Waluty"
|
6917 |
|
6918 |
# @ WPBDM
|
6919 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6920 |
#, fuzzy
|
6921 |
msgctxt "settings"
|
6922 |
msgid "Currency Symbol"
|
6923 |
msgstr "Symbol Waluty"
|
6924 |
|
6925 |
# @ WPBDM
|
6926 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6927 |
#, fuzzy
|
6928 |
msgctxt "settings"
|
6929 |
msgid "Currency symbol display"
|
6930 |
msgstr "Symbol Waluty"
|
6931 |
|
6932 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6933 |
msgctxt "settings"
|
6934 |
msgid "Include fee description in receipt?"
|
6935 |
msgstr ""
|
6936 |
|
6937 |
# @ WPBDM
|
6938 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6939 |
#, fuzzy
|
6940 |
msgctxt "settings"
|
6941 |
msgid "Thank you for payment message"
|
6942 |
msgstr "Wiadomość - Dziękujemy za płatność."
|
6943 |
|
6944 |
# @ WPBDM
|
6945 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6946 |
#, fuzzy
|
6947 |
msgctxt "settings"
|
6948 |
msgid "Ask users to come back for abandoned payments?"
|
6949 |
msgstr "Pytać użytkowników o powrót do porzuconych płatności?"
|
6950 |
|
6951 |
# @ WPBDM
|
6952 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6953 |
#, fuzzy
|
6954 |
msgctxt "settings"
|
6955 |
msgid "Listing abandonment threshold (hours)"
|
6956 |
msgstr "Maksymalny Czas dla porzuconych płątności (godzin)"
|
6957 |
|
6958 |
# @ WPBDM
|
6959 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6960 |
#, fuzzy
|
6961 |
msgctxt "settings"
|
6962 |
msgid "Display email address fields publicly?"
|
6963 |
msgstr "Wyświetlać publicznie pole \"adres e-mail\"?"
|
6964 |
|
6965 |
# @ WPBDM
|
6966 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6967 |
#, fuzzy
|
6968 |
msgctxt "settings"
|
6969 |
msgid ""
|
@@ -6976,14 +6940,14 @@ msgstr ""
|
|
6976 |
"właściciela (spam)."
|
6977 |
|
6978 |
# @ WPBDM
|
6979 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6980 |
#, fuzzy
|
6981 |
msgctxt "settings"
|
6982 |
msgid "How to determine the listing's email address?"
|
6983 |
msgstr "Jak określić listę adresów e-mail?"
|
6984 |
|
6985 |
# @ WPBDM
|
6986 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6987 |
#, fuzzy
|
6988 |
msgctxt "settings"
|
6989 |
msgid ""
|
@@ -6993,12 +6957,12 @@ msgstr ""
|
|
6993 |
"Wpływa to na e-maile wysyłane do właścicieli ofert za pośrednictwem "
|
6994 |
"formularzy kontaktowych lub gdy ich oferta wygasa."
|
6995 |
|
6996 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6997 |
msgctxt "settings"
|
6998 |
msgid "Email Content-Type header"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7002 |
msgctxt "settings"
|
7003 |
msgid ""
|
7004 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -7008,35 +6972,35 @@ msgid ""
|
|
7008 |
msgstr ""
|
7009 |
|
7010 |
# @ WPBDM
|
7011 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7012 |
#, fuzzy
|
7013 |
msgctxt "settings"
|
7014 |
msgid "Templates"
|
7015 |
msgstr "Szablony wiadomości e-Mail"
|
7016 |
|
7017 |
# @ WPBDM
|
7018 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7019 |
#, fuzzy
|
7020 |
msgctxt "settings"
|
7021 |
msgid "Email confirmation message"
|
7022 |
msgstr "Wiadomość e-mail z potwierdzeniem odbioru"
|
7023 |
|
7024 |
# @ WPBDM
|
7025 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7026 |
#, fuzzy
|
7027 |
msgctxt "settings"
|
7028 |
msgid "Sent after a listing has been submitted."
|
7029 |
msgstr "Wysłane po zapisaniu oferty."
|
7030 |
|
7031 |
# @ WPBDM
|
7032 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7033 |
#, fuzzy
|
7034 |
msgctxt "settings"
|
7035 |
msgid "Listing published message"
|
7036 |
msgstr "Wiadomość o opublikowaniu oferty"
|
7037 |
|
7038 |
# @ WPBDM
|
7039 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7040 |
#, fuzzy
|
7041 |
msgctxt "settings"
|
7042 |
msgid "Sent when the listing has been published or approved by an admin."
|
@@ -7044,14 +7008,14 @@ msgstr ""
|
|
7044 |
"Wyślij gdy oferta została zatwierdzona lub opublikowana przez administratora."
|
7045 |
|
7046 |
# @ WPBDM
|
7047 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7048 |
#, fuzzy
|
7049 |
msgctxt "settings"
|
7050 |
msgid "Listing Contact Message"
|
7051 |
msgstr "Wiadomość do osoby kontaktowej z Oferty"
|
7052 |
|
7053 |
# @ WPBDM
|
7054 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7055 |
#, fuzzy
|
7056 |
msgctxt "settings"
|
7057 |
msgid ""
|
@@ -7062,14 +7026,14 @@ msgstr ""
|
|
7062 |
"jego oferty."
|
7063 |
|
7064 |
# @ WPBDM
|
7065 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7066 |
#, fuzzy
|
7067 |
msgctxt "settings"
|
7068 |
msgid "Payment completed message"
|
7069 |
msgstr "Wiadomość przypomnienia o porzuconej płatności "
|
7070 |
|
7071 |
# @ WPBDM
|
7072 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7073 |
#, fuzzy
|
7074 |
msgctxt "settings"
|
7075 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
@@ -7078,13 +7042,13 @@ msgstr ""
|
|
7078 |
"\"."
|
7079 |
|
7080 |
# @ WPBDM
|
7081 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7082 |
#, fuzzy
|
7083 |
msgctxt "settings"
|
7084 |
msgid "Payment abandoned reminder message"
|
7085 |
msgstr "Wiadomość przypomnienia o porzuconej płatności "
|
7086 |
|
7087 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7088 |
msgctxt "settings"
|
7089 |
msgid "Cropped"
|
7090 |
msgstr ""
|
@@ -7100,18 +7064,18 @@ msgctxt "settings"
|
|
7100 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
7101 |
msgstr ""
|
7102 |
|
7103 |
-
#: includes/licensing.php:
|
7104 |
msgctxt "settings"
|
7105 |
msgid "Themes"
|
7106 |
msgstr ""
|
7107 |
|
7108 |
-
#: includes/licensing.php:
|
7109 |
msgctxt "settings"
|
7110 |
msgid "Please wait..."
|
7111 |
msgstr ""
|
7112 |
|
7113 |
# @ authorize-net
|
7114 |
-
#: includes/licensing.php:
|
7115 |
#, fuzzy
|
7116 |
msgctxt "settings"
|
7117 |
msgid "Deauthorize"
|
@@ -7172,31 +7136,31 @@ msgid "Could not delete theme directory. Check permissions."
|
|
7172 |
msgstr ""
|
7173 |
|
7174 |
# @ WPBDM
|
7175 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
7176 |
msgctxt "themes"
|
7177 |
msgid "Please upload a valid theme file."
|
7178 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
7179 |
|
7180 |
# @ WPBDM
|
7181 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
7182 |
msgctxt "themes"
|
7183 |
msgid "Could not move \"%s\" to a temporary directory."
|
7184 |
msgstr "Nie można utworzyć katalogu wpbdp-csv-eksport."
|
7185 |
|
7186 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
7187 |
msgctxt "themes"
|
7188 |
msgid "Activate your <a>license key</a> to use this theme."
|
7189 |
msgstr ""
|
7190 |
|
7191 |
# @ WPBDM
|
7192 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
7193 |
#, fuzzy
|
7194 |
msgctxt "themes"
|
7195 |
msgid "Invalid theme ID"
|
7196 |
msgstr "Niewłaściwe ID Pola"
|
7197 |
|
7198 |
# @ WPBDM
|
7199 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
7200 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
7201 |
msgctxt "themes"
|
7202 |
msgid "Could not update theme: %s"
|
@@ -7694,27 +7658,27 @@ msgstr ""
|
|
7694 |
|
7695 |
# @ WPBDM
|
7696 |
#. translators: %s: url shortcode
|
7697 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7698 |
msgctxt "contact email"
|
7699 |
msgid "You have received a reply from your listing at %s."
|
7700 |
msgstr "Otrzymano wiadomość dotyczącą oferty %s."
|
7701 |
|
7702 |
# @ WPBDM
|
7703 |
#. translators: %s: name shortcode
|
7704 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7705 |
msgctxt "contact email"
|
7706 |
msgid "Name: %s"
|
7707 |
msgstr "Nazwa: %s"
|
7708 |
|
7709 |
# @ WPBDM
|
7710 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7711 |
msgctxt "contact email"
|
7712 |
msgid "Message:"
|
7713 |
msgstr "Wiadomość:"
|
7714 |
|
7715 |
# @ WPBDM
|
7716 |
#. translators: %s: date shortcode
|
7717 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
7718 |
msgctxt "contact email"
|
7719 |
msgid "Time: %s"
|
7720 |
msgstr "Czas: %s"
|
@@ -8050,41 +8014,41 @@ msgid "Add New Listing"
|
|
8050 |
msgstr "Dodaj nową ofertę"
|
8051 |
|
8052 |
# @ WPBDM
|
8053 |
-
#: includes/models/class-listing.php:
|
8054 |
#, fuzzy
|
8055 |
msgctxt "listing"
|
8056 |
msgid "Listing has no registered payments"
|
8057 |
msgstr "Data zakończenia emisji oferty"
|
8058 |
|
8059 |
# @ WPBDM
|
8060 |
-
#: includes/models/class-listing.php:
|
8061 |
#, fuzzy
|
8062 |
msgctxt "listing"
|
8063 |
msgid "Can't delete payment"
|
8064 |
msgstr "Odrzucenie płatności"
|
8065 |
|
8066 |
# @ WPBDM
|
8067 |
-
#: includes/models/class-listing.php:
|
8068 |
#, fuzzy
|
8069 |
msgctxt "listing"
|
8070 |
msgid "Listing expired"
|
8071 |
msgstr "Upłynął okres ważności oferty."
|
8072 |
|
8073 |
# @ WPBDM
|
8074 |
-
#: includes/models/class-listing.php:
|
8075 |
#, fuzzy
|
8076 |
msgctxt "listing"
|
8077 |
msgid "(Unavailable Plan)"
|
8078 |
msgstr "(Abonament niedostępny)"
|
8079 |
|
8080 |
# @ WPBDM
|
8081 |
-
#: includes/models/class-listing.php:
|
8082 |
#, fuzzy
|
8083 |
msgctxt "listing"
|
8084 |
msgid "Plan \"%s\" (recurring)"
|
8085 |
msgstr "(powtarzające się)"
|
8086 |
|
8087 |
-
#: includes/models/class-listing.php:
|
8088 |
msgctxt "listing"
|
8089 |
msgid "Plan \"%s\""
|
8090 |
msgstr ""
|
@@ -8241,7 +8205,7 @@ msgid "Enable %s?"
|
|
8241 |
msgstr "Włączyć pasek sortowania?"
|
8242 |
|
8243 |
# @ WPBDM
|
8244 |
-
#: includes/class-payment-gateways.php:
|
8245 |
#, fuzzy
|
8246 |
msgctxt "payment-gateways"
|
8247 |
msgid ""
|
@@ -8252,26 +8216,11 @@ msgstr ""
|
|
8252 |
"będzie dostępna do czasu usunięcia tych problemów: <b>%s</b>. Sprawdź <a "
|
8253 |
"href=\"%s\">Ustawienia Płatności</a>."
|
8254 |
|
8255 |
-
#: includes/class-payment-gateways.php:
|
8256 |
msgctxt "payment-gateways"
|
8257 |
msgid "Please check the <link>payment settings</link>."
|
8258 |
msgstr ""
|
8259 |
|
8260 |
-
# @ WPBDM
|
8261 |
-
#: includes/class-payment-gateways.php:142
|
8262 |
-
#, fuzzy
|
8263 |
-
msgctxt "payment-gateways"
|
8264 |
-
msgid ""
|
8265 |
-
"You have payments turned on but no gateway is active and properly "
|
8266 |
-
"configured. Go to <link>Manage Options - Payment</link> to change the "
|
8267 |
-
"payment settings. Until you change this, the directory will operate in "
|
8268 |
-
"<i>Free Mode</i>."
|
8269 |
-
msgstr ""
|
8270 |
-
"Masz włączone płatności, ale nie masz aktywnej i właściwie skonfigurowanej "
|
8271 |
-
"bramki. Przejdź do <a href=\"%s\">Zarządzaj Opcjami - Płatności</a> aby "
|
8272 |
-
"zmienić ustawienia. Do czasu wprowadzenia zmian, plugin będzie działał w "
|
8273 |
-
"<i>Trybie Bezpłatnym</i>."
|
8274 |
-
|
8275 |
# @ WPBDM
|
8276 |
#: includes/class-recaptcha.php:32
|
8277 |
msgctxt "recaptcha"
|
@@ -8524,34 +8473,34 @@ msgstr ""
|
|
8524 |
"zawierają ofert. To oznacza, że te kategorie nie będą wyświetlane na "
|
8525 |
"stornach Katalogu. Jeśli chcesz to zmienić kliknij <a>tutaj</a>."
|
8526 |
|
8527 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8528 |
msgctxt "templates"
|
8529 |
msgid ""
|
8530 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
8531 |
"Submission?\" setting checked?"
|
8532 |
msgstr ""
|
8533 |
|
8534 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8535 |
msgctxt "templates"
|
8536 |
msgid ""
|
8537 |
"Listing submission has been disabled. Contact the administrator for details."
|
8538 |
msgstr ""
|
8539 |
|
8540 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8541 |
msgctxt "templates"
|
8542 |
msgid ""
|
8543 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
8544 |
"submit a listing. %s to create a fee plan"
|
8545 |
msgstr ""
|
8546 |
|
8547 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8548 |
msgctxt "templates"
|
8549 |
msgid ""
|
8550 |
"Listing submission is not available at the moment. Contact the administrator "
|
8551 |
"for details."
|
8552 |
msgstr ""
|
8553 |
|
8554 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8555 |
msgctxt "templates"
|
8556 |
msgid ""
|
8557 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -8560,20 +8509,20 @@ msgid ""
|
|
8560 |
msgstr ""
|
8561 |
|
8562 |
# @ WPBDM
|
8563 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8564 |
msgctxt "templates"
|
8565 |
msgid "Please agree to the Terms and Conditions."
|
8566 |
msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
|
8567 |
|
8568 |
# @ WPBDM
|
8569 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8570 |
#, fuzzy
|
8571 |
msgctxt "templates"
|
8572 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
8573 |
msgstr "Akceptuję rwarunki i regulamin korzystania z witryny."
|
8574 |
|
8575 |
# @ WPBDM
|
8576 |
-
#: includes/helpers/functions/general.php:
|
8577 |
#, fuzzy
|
8578 |
msgctxt "templates"
|
8579 |
msgid "Return to results"
|
@@ -8972,7 +8921,7 @@ msgctxt "submit listing"
|
|
8972 |
msgid "You can't edit this listing."
|
8973 |
msgstr "Kategorie dla tej oferty"
|
8974 |
|
8975 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8976 |
msgctxt "submit listing"
|
8977 |
msgid ""
|
8978 |
"This listing can't be edited at this time because it has no fee plan "
|
@@ -8980,7 +8929,7 @@ msgid ""
|
|
8980 |
"to a fee plan."
|
8981 |
msgstr ""
|
8982 |
|
8983 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8984 |
msgctxt "submit listing"
|
8985 |
msgid ""
|
8986 |
"This listing can't be edited at this time. Please try again later or contact "
|
@@ -8988,7 +8937,7 @@ msgid ""
|
|
8988 |
msgstr ""
|
8989 |
|
8990 |
# @ WPBDM
|
8991 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8992 |
#, fuzzy
|
8993 |
msgctxt "submit listing"
|
8994 |
msgid "You're logged in as admin, payment will be skipped."
|
@@ -8997,21 +8946,21 @@ msgstr ""
|
|
8997 |
"pominięte."
|
8998 |
|
8999 |
# @ WPBDM
|
9000 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9001 |
#, fuzzy
|
9002 |
msgctxt "submit listing"
|
9003 |
msgid "Category selection"
|
9004 |
msgstr "Wybór Kategorii"
|
9005 |
|
9006 |
# @ WPBDM
|
9007 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9008 |
#, fuzzy
|
9009 |
msgctxt "submit listing"
|
9010 |
msgid "Category & plan selection"
|
9011 |
msgstr "Wybór Kategorii"
|
9012 |
|
9013 |
# @ WPBDM
|
9014 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9015 |
#, fuzzy
|
9016 |
msgctxt "submit listing"
|
9017 |
msgid "Can not submit a listing at this moment. Please try again later."
|
@@ -9020,45 +8969,45 @@ msgstr ""
|
|
9020 |
"później."
|
9021 |
|
9022 |
# @ WPBDM
|
9023 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9024 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9025 |
#, fuzzy
|
9026 |
msgctxt "submit listing"
|
9027 |
msgid "Please select a category."
|
9028 |
msgstr "Wybierz abonament dla tegj kategori \"%s\"."
|
9029 |
|
9030 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9031 |
msgctxt "submit listing"
|
9032 |
msgid "Please choose a valid category for your plan."
|
9033 |
msgstr ""
|
9034 |
|
9035 |
# @ WPBDM
|
9036 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9037 |
#, fuzzy
|
9038 |
msgctxt "submit listing"
|
9039 |
msgid "Please choose a valid fee plan for your category selection."
|
9040 |
msgstr "Wybierz abonament dla tegj kategori \"%s\"."
|
9041 |
|
9042 |
# @ WPBDM
|
9043 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9044 |
#, fuzzy
|
9045 |
msgctxt "submit listing"
|
9046 |
msgid "Please enter your desired username."
|
9047 |
msgstr "Proszę wprowadzić Imię"
|
9048 |
|
9049 |
# @ WPBDM
|
9050 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9051 |
#, fuzzy
|
9052 |
msgctxt "submit listing"
|
9053 |
msgid "Please enter the e-mail for your new account."
|
9054 |
msgstr "Proszę wprowadzić Imię"
|
9055 |
|
9056 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9057 |
msgctxt "submit listing"
|
9058 |
msgid "The username you chose is already in use. Please use a different one."
|
9059 |
msgstr ""
|
9060 |
|
9061 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9062 |
msgctxt "submit listing"
|
9063 |
msgid "The e-mail address you chose for your account is already in use."
|
9064 |
msgstr ""
|
@@ -9070,7 +9019,7 @@ msgctxt "submit listing"
|
|
9070 |
msgid "Listing submitted by admin. Payment skipped."
|
9071 |
msgstr "Prześlij ofertę"
|
9072 |
|
9073 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
9074 |
msgctxt "listing submit"
|
9075 |
msgid ""
|
9076 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -9437,19 +9386,19 @@ msgid "General"
|
|
9437 |
msgstr "Główna"
|
9438 |
|
9439 |
# @ WPBDM
|
9440 |
-
#: includes/licensing.php:
|
9441 |
msgctxt "licensing"
|
9442 |
msgid "Could not contact licensing server"
|
9443 |
msgstr "Nie można połączyć z serwerem danych licencji"
|
9444 |
|
9445 |
-
#: includes/licensing.php:
|
9446 |
msgctxt "licensing"
|
9447 |
msgid ""
|
9448 |
"It was not possible to establish a connection with Business Directory's "
|
9449 |
"server. cURL was not found in your system"
|
9450 |
msgstr ""
|
9451 |
|
9452 |
-
#: includes/licensing.php:
|
9453 |
msgctxt "licensing"
|
9454 |
msgid ""
|
9455 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -9458,7 +9407,7 @@ msgid ""
|
|
9458 |
"1.0.1c)."
|
9459 |
msgstr ""
|
9460 |
|
9461 |
-
#: includes/licensing.php:
|
9462 |
msgctxt "licensing"
|
9463 |
msgid ""
|
9464 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -9466,51 +9415,51 @@ msgid ""
|
|
9466 |
"services using the latest security standards."
|
9467 |
msgstr ""
|
9468 |
|
9469 |
-
#: includes/licensing.php:
|
9470 |
msgctxt "licensing"
|
9471 |
msgid ""
|
9472 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
9473 |
"Include this message if necessary"
|
9474 |
msgstr ""
|
9475 |
|
9476 |
-
#: includes/licensing.php:
|
9477 |
msgctxt "licensing"
|
9478 |
msgid ""
|
9479 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
9480 |
"Include this message if necessary."
|
9481 |
msgstr ""
|
9482 |
|
9483 |
-
#: includes/licensing.php:
|
9484 |
msgctxt "licensing"
|
9485 |
msgid "The server returned a 403 Forbidden error."
|
9486 |
msgstr ""
|
9487 |
|
9488 |
# @ WPBDM
|
9489 |
-
#: includes/licensing.php:
|
9490 |
msgctxt "licensing"
|
9491 |
msgid "Could not activate license: %s."
|
9492 |
msgstr "Nie możemy aktywować Licencji: %s."
|
9493 |
|
9494 |
# @ WPBDM
|
9495 |
-
#: includes/licensing.php:
|
9496 |
msgctxt "licensing"
|
9497 |
msgid "License activated"
|
9498 |
msgstr "Licencja została aktywowana"
|
9499 |
|
9500 |
# @ WPBDM
|
9501 |
-
#: includes/licensing.php:
|
9502 |
msgctxt "licensing"
|
9503 |
msgid "Could not deactivate license: %s."
|
9504 |
msgstr "Nie możemy deaktywować Licencji: %s."
|
9505 |
|
9506 |
# @ WPBDM
|
9507 |
-
#: includes/licensing.php:
|
9508 |
msgctxt "licensing"
|
9509 |
msgid "License deactivated"
|
9510 |
msgstr "Licencja deaktywowana"
|
9511 |
|
9512 |
#. translators: "<module-name>" version <version-number> is not...
|
9513 |
-
#: includes/licensing.php:
|
9514 |
msgctxt "deprecation"
|
9515 |
msgid ""
|
9516 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -9535,20 +9484,20 @@ msgstr[1] "Liczba dozwolonych obrazów"
|
|
9535 |
msgstr[2] "Liczba dozwolonych obrazów"
|
9536 |
|
9537 |
# @ WPBDM
|
9538 |
-
#: includes/models/class-fee-plan.php:
|
9539 |
msgctxt "fees-api"
|
9540 |
msgid "Fee label is required."
|
9541 |
msgstr "Etykieta abonamentu jest wymagana."
|
9542 |
|
9543 |
# @ WPBDM
|
9544 |
-
#: includes/models/class-fee-plan.php:
|
9545 |
msgctxt "fees-api"
|
9546 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
9547 |
msgstr ""
|
9548 |
"Abonament dla okresu ważności oferty musi zawierać się w liczbie dodatniej, "
|
9549 |
"całkowitej."
|
9550 |
|
9551 |
-
#: includes/models/class-fee-plan.php:
|
9552 |
msgctxt "fees-api"
|
9553 |
msgid ""
|
9554 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
@@ -9556,7 +9505,7 @@ msgid ""
|
|
9556 |
"<a>fee plan</a> appropriately."
|
9557 |
msgstr ""
|
9558 |
|
9559 |
-
#: includes/models/class-fee-plan.php:
|
9560 |
msgctxt "fees-api"
|
9561 |
msgid ""
|
9562 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
@@ -9644,19 +9593,19 @@ msgid "Unkown error while uploading file."
|
|
9644 |
msgstr "Nieznany błąd podczas przesyłania pliku."
|
9645 |
|
9646 |
# @ WPBDM
|
9647 |
-
#: includes/utils.php:
|
9648 |
msgctxt "utils"
|
9649 |
msgid "Error while uploading file"
|
9650 |
msgstr "Błąd podczas przesyłania pliku."
|
9651 |
|
9652 |
# @ WPBDM
|
9653 |
-
#: includes/utils.php:
|
9654 |
msgctxt "utils"
|
9655 |
msgid "File type \"%s\" is not allowed"
|
9656 |
msgstr "Pliki typu \"%s\" , nie są dozwolone"
|
9657 |
|
9658 |
# @ WPBDM
|
9659 |
-
#: includes/utils.php:
|
9660 |
msgctxt "utils"
|
9661 |
msgid ""
|
9662 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -9785,52 +9734,6 @@ msgctxt "admin forms"
|
|
9785 |
msgid "required"
|
9786 |
msgstr "Wymagane"
|
9787 |
|
9788 |
-
# @ WPBDM
|
9789 |
-
#: templates/admin/home.tpl.php:12
|
9790 |
-
msgctxt "admin home"
|
9791 |
-
msgid "Welcome to Business Directory Plugin. You are using %s."
|
9792 |
-
msgstr "Witamy w Katalogu Firm. Używasz %s."
|
9793 |
-
|
9794 |
-
# @ WPBDM
|
9795 |
-
#: templates/admin/home.tpl.php:15
|
9796 |
-
msgctxt "admin home"
|
9797 |
-
msgid ""
|
9798 |
-
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
9799 |
-
"let's jump right in!"
|
9800 |
-
msgstr ""
|
9801 |
-
"Dziękujemy, że nas wybrałeś. Jest tu wiele rzeczy, które prawdopodobnie "
|
9802 |
-
"chciałbyś zrobić. Poprostu zacznij zabawę."
|
9803 |
-
|
9804 |
-
# @ WPBDM
|
9805 |
-
#: templates/admin/home.tpl.php:28
|
9806 |
-
msgctxt "admin home"
|
9807 |
-
msgid ""
|
9808 |
-
"Our complete documentation is <a>here</a> which we encourage you to use "
|
9809 |
-
"while setting things up."
|
9810 |
-
msgstr ""
|
9811 |
-
"Pełną dokumentację znajdziesz <a>tutaj</a>. Korzystaj z niej, aby "
|
9812 |
-
"skonfirgurować nasz plugin."
|
9813 |
-
|
9814 |
-
# @ WPBDM
|
9815 |
-
#: templates/admin/home.tpl.php:36
|
9816 |
-
msgctxt "admin home"
|
9817 |
-
msgid ""
|
9818 |
-
"We have some quick-start scenarios that you will find useful regarding setup "
|
9819 |
-
"and configuration <a>here</a>."
|
9820 |
-
msgstr ""
|
9821 |
-
"Kilka scenariuszy szybkiego startu, w kótrych znajdziesz przydatne opcje i "
|
9822 |
-
"informacje na temat konfiguracji znajdziesz<a>tutaj</a>."
|
9823 |
-
|
9824 |
-
# @ WPBDM
|
9825 |
-
#: templates/admin/home.tpl.php:45
|
9826 |
-
msgctxt "admin home"
|
9827 |
-
msgid ""
|
9828 |
-
"If you have questions, please post a comment on <a>support forum</a> and "
|
9829 |
-
"we'll answer it within 24 hours most days."
|
9830 |
-
msgstr ""
|
9831 |
-
"Jeśli masz pytania, napisz komentarz na <a>forum wsparcia</a>, a my "
|
9832 |
-
"postaramy sie odpowiedzieć w ciągu 24 godzin."
|
9833 |
-
|
9834 |
# @ WPBDM
|
9835 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
9836 |
#, fuzzy
|
@@ -10164,6 +10067,54 @@ msgctxt "send-access-keys"
|
|
10164 |
msgid "Continue"
|
10165 |
msgstr "Kontynuacja"
|
10166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10167 |
# @ WPBDM
|
10168 |
#, fuzzy
|
10169 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2022-02-02 19:38:07+00:00\n"
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: HomeSupport <admin@homesupport.pl>\n"
|
9 |
"Language-Team: HomeSupport\n"
|
103 |
msgid "Directory"
|
104 |
msgstr "Katalog"
|
105 |
|
106 |
+
#: includes/admin/class-admin.php:312
|
107 |
msgid "Fee Plans"
|
108 |
msgstr ""
|
109 |
|
110 |
# @ WPBDM
|
111 |
+
#: includes/admin/class-admin.php:315
|
112 |
#, fuzzy
|
113 |
msgid "Form Fields"
|
114 |
msgstr "Pola formularza"
|
115 |
|
116 |
# @ WPBDM
|
117 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
118 |
+
#: includes/licensing.php:227
|
119 |
#, fuzzy
|
120 |
msgid "Modules"
|
121 |
msgstr "Zainstalowane moduły"
|
264 |
|
265 |
# @ WPBDM
|
266 |
#: includes/admin/controllers/class-admin-fees.php:49
|
267 |
+
#: includes/admin/helpers/tables/class-fees-table.php:65
|
268 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
269 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
270 |
#, fuzzy
|
308 |
|
309 |
# @ WPBDM
|
310 |
#: includes/admin/controllers/class-admin-listings.php:185
|
311 |
+
#: includes/controllers/pages/class-submit-listing.php:518
|
312 |
#: templates/email/listing-reported.tpl.php:7
|
313 |
msgid "Listing Information"
|
314 |
msgstr "Informacje o firmie"
|
370 |
|
371 |
# @ WPBDM
|
372 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
373 |
+
#: includes/controllers/pages/class-submit-listing.php:848
|
374 |
#, fuzzy
|
375 |
msgid "Go to \"Form Fields\""
|
376 |
msgstr "Przejdź do \"Zarządzanie polami formularza\""
|
377 |
|
378 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
379 |
+
#: includes/helpers/functions/general.php:1366
|
380 |
+
#: includes/helpers/functions/general.php:1371
|
381 |
msgid "Go back"
|
382 |
msgstr ""
|
383 |
|
502 |
|
503 |
# @ WPBDM
|
504 |
#: includes/admin/controllers/class-settings-admin.php:536
|
505 |
+
#: includes/admin/helpers/tables/class-fees-table.php:174
|
506 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
507 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
508 |
#: templates/admin/payments-note.tpl.php:14
|
509 |
+
#: templates/admin/themes-item.tpl.php:66
|
510 |
#: templates/parts/listing-buttons.tpl.php:31
|
511 |
#: templates/parts/listing-buttons.tpl.php:65
|
512 |
#, fuzzy
|
566 |
|
567 |
# @ WPBDM
|
568 |
#: includes/admin/helpers/class-modules-list.php:187
|
569 |
+
#: includes/admin/helpers/tables/class-fees-table.php:284
|
570 |
+
#: templates/admin/themes-item.tpl.php:41
|
571 |
#, fuzzy
|
572 |
msgid "Active"
|
573 |
msgstr "Tylko aktywne"
|
581 |
# @ WPBDM
|
582 |
#: includes/admin/helpers/class-modules-list.php:225
|
583 |
#: includes/controllers/class-smtp.php:317
|
584 |
+
#: templates/admin/themes-item.tpl.php:61
|
585 |
#, fuzzy
|
586 |
msgid "Activate"
|
587 |
msgstr "Aktywacja Licencji"
|
588 |
|
589 |
# @ WPBDM
|
590 |
#: includes/admin/helpers/class-modules-list.php:235
|
591 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:275
|
592 |
#, fuzzy
|
593 |
msgid "Upgrade Now"
|
594 |
msgstr "Podnieś status do %s"
|
607 |
# @ WPBDM
|
608 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
609 |
#, fuzzy
|
610 |
+
msgid "Order"
|
611 |
+
msgstr "Sortowanie"
|
612 |
+
|
613 |
+
# @ WPBDM
|
614 |
+
#: includes/admin/helpers/tables/class-fees-table.php:62
|
615 |
+
#, fuzzy
|
616 |
msgid "Plan Details"
|
617 |
msgstr "Szczegóły Planu"
|
618 |
|
619 |
# @ WPBDM
|
620 |
+
#: includes/admin/helpers/tables/class-fees-table.php:63
|
621 |
#, fuzzy
|
622 |
msgid "Pricing"
|
623 |
msgstr "Cena"
|
624 |
|
625 |
# @ WPBDM
|
626 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
627 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
628 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
629 |
#: includes/helpers/class-app.php:92
|
631 |
msgid "Listings"
|
632 |
msgstr "Oferty"
|
633 |
|
634 |
+
#: includes/admin/helpers/tables/class-fees-table.php:153
|
635 |
msgid "Disable"
|
636 |
msgstr ""
|
637 |
|
638 |
# @ WPBDM
|
639 |
+
#: includes/admin/helpers/tables/class-fees-table.php:159
|
640 |
#, fuzzy
|
641 |
msgid "Enable"
|
642 |
msgstr "Włączyć pasek sortowania?"
|
643 |
|
644 |
+
#: includes/admin/helpers/tables/class-fees-table.php:181
|
645 |
msgid "ID: %s"
|
646 |
msgstr ""
|
647 |
|
648 |
# @ WPBDM
|
649 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
650 |
#, fuzzy
|
651 |
msgid "Paid Plan"
|
652 |
msgstr "Zapłacone"
|
653 |
|
654 |
# @ WPBDM
|
655 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
656 |
#, fuzzy
|
657 |
msgid "Free Plan"
|
658 |
msgstr "Przejdź do \"Zarządzanie polami formularza\""
|
659 |
|
660 |
# @ form-fields api
|
661 |
+
#: includes/admin/helpers/tables/class-fees-table.php:219
|
662 |
#, fuzzy
|
663 |
msgid "%1$s for %2$s"
|
664 |
msgstr "%s (bez %s)"
|
665 |
|
666 |
# @ WPBDM
|
667 |
+
#: includes/admin/helpers/tables/class-fees-table.php:282
|
|
|
668 |
#, fuzzy
|
669 |
msgid "Disabled"
|
670 |
msgstr "Abonament usunięty "
|
671 |
|
672 |
# @ WPBDM
|
673 |
+
#: includes/admin/helpers/tables/class-fees-table.php:288
|
674 |
#: includes/helpers/functions/templates-ui.php:431
|
675 |
#, fuzzy
|
676 |
msgid "Default"
|
720 |
|
721 |
# @ WPBDM
|
722 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
723 |
+
#: includes/controllers/pages/class-submit-listing.php:1252
|
724 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
725 |
#: templates/listing-contactform.tpl.php:33
|
726 |
#: templates/listing-flagging-form.tpl.php:39
|
776 |
# @ WPBDM
|
777 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
778 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
779 |
+
#: includes/controllers/pages/class-submit-listing.php:531
|
780 |
#, fuzzy
|
781 |
msgid "Terms and Conditions"
|
782 |
msgstr "Warunki i regulamin korzystania z serwisu."
|
1021 |
msgstr "URL"
|
1022 |
|
1023 |
# @ WPBDM
|
1024 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1226
|
1025 |
#, fuzzy
|
1026 |
msgid "Thank you for your payment."
|
1027 |
msgstr "Wiadomość - Dziękujemy za płatność."
|
1028 |
|
1029 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1254
|
1030 |
msgid ""
|
1031 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
1032 |
"collect payments in this currency."
|
1038 |
msgstr[2] ""
|
1039 |
|
1040 |
# @ WPBDM
|
1041 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
1042 |
#, fuzzy
|
1043 |
msgid "Email Notifications"
|
1044 |
msgstr "Powiadomienia E-mail"
|
1045 |
|
1046 |
# @ WPBDM
|
1047 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1347
|
1048 |
#, fuzzy
|
1049 |
msgid "Notify admin via email when..."
|
1050 |
msgstr "Powiadom Administratora przez e-mail, kiedy..."
|
1051 |
|
1052 |
# @ WPBDM
|
1053 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1365
|
1054 |
#, fuzzy
|
1055 |
msgid "CC this email address too"
|
1056 |
msgstr "Prześlij także na ten adres e-mail"
|
1057 |
|
1058 |
# @ WPBDM
|
1059 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
1060 |
#, fuzzy
|
1061 |
msgid ""
|
1062 |
"You can modify the text template used for most of these emails in the "
|
1064 |
msgstr "Możesz edytować szablony tekstowe dla poniższych wiadomości e-mail."
|
1065 |
|
1066 |
# @ WPBDM
|
1067 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1379
|
1068 |
#, fuzzy
|
1069 |
msgid "Notify users via email when..."
|
1070 |
msgstr "Poinformuj użytkownika mailem gdy..."
|
1071 |
|
1072 |
# @ WPBDM
|
1073 |
#. translators: %s: email shortcode
|
1074 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1446
|
1075 |
#, fuzzy
|
1076 |
msgid "Email: %s"
|
1077 |
msgstr "E-Mail: %s"
|
1078 |
|
1079 |
# @ WPBDM
|
1080 |
#. translators: %s: phone shortcode
|
1081 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1449
|
1082 |
#, fuzzy
|
1083 |
msgid "Phone Number: %s"
|
1084 |
msgstr "Telefon"
|
1085 |
|
1086 |
# @ WPBDM
|
1087 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
1088 |
#, fuzzy
|
1089 |
msgid "Sender's email address"
|
1090 |
msgstr "Nieprawidłowy adres e-mail"
|
1091 |
|
1092 |
# @ WPBDM
|
1093 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1462
|
1094 |
#, fuzzy
|
1095 |
msgid "Sender's phone number"
|
1096 |
msgstr "Nazwisko Autora"
|
1097 |
|
1098 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1526
|
1099 |
msgid "Renewal and expiration"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
# @ WPBDM
|
1103 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1662
|
1104 |
#: templates/admin/uninstall-complete.tpl.php:4
|
1105 |
#, fuzzy
|
1106 |
msgid "Uninstall"
|
1223 |
# @ WPBDM
|
1224 |
#. translators: %s: Status name
|
1225 |
#: includes/admin/views/modules/list.php:63
|
1226 |
+
#: templates/admin/themes-item.tpl.php:50
|
1227 |
#, fuzzy
|
1228 |
msgid "Status: %s"
|
1229 |
msgstr "Status"
|
1418 |
msgid "View All Listings"
|
1419 |
msgstr "Zobacz wszystkie Firmy"
|
1420 |
|
1421 |
+
#: includes/class-payment-gateways.php:144
|
|
|
1422 |
msgid ""
|
1423 |
+
"You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s "
|
1424 |
+
"to set up a gateway. Until you do this, only free plans will be available."
|
|
|
1425 |
msgstr ""
|
1426 |
|
1427 |
# @ WPBDM
|
1449 |
msgstr ""
|
1450 |
|
1451 |
# @ WPBDM
|
1452 |
+
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:322
|
1453 |
#, fuzzy
|
1454 |
msgid "Could not find image ID"
|
1455 |
msgstr "Nie możemy deaktywować Licencji: %s."
|
1672 |
msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
|
1673 |
|
1674 |
# @ WPBDM
|
1675 |
+
#: includes/controllers/pages/class-submit-listing.php:564
|
1676 |
#, fuzzy
|
1677 |
msgid "Listing Images"
|
1678 |
msgstr "Obrazy"
|
1679 |
|
1680 |
+
#: includes/controllers/pages/class-submit-listing.php:632
|
1681 |
msgid "Account Creation"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
# @ WPBDM
|
1685 |
+
#: includes/controllers/pages/class-submit-listing.php:831
|
1686 |
#, fuzzy
|
1687 |
msgid "Go to \"Fee Plans\""
|
1688 |
msgstr "Przejdź do \"Zarządzanie polami formularza\""
|
1689 |
|
1690 |
# @ WPBDM
|
1691 |
+
#: includes/controllers/pages/class-submit-listing.php:887
|
1692 |
#, fuzzy
|
1693 |
msgid "Please choose a fee plan."
|
1694 |
msgstr "Wybierz abonament dla tegj kategori \"%s\"."
|
1695 |
|
1696 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1697 |
msgid "Please check the form for errors, correct them and submit again."
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: includes/controllers/pages/class-submit-listing.php:1236
|
1701 |
msgid "Create a user account on this site"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: includes/controllers/pages/class-submit-listing.php:1243
|
1705 |
msgid "Username"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
# @ WPBDM
|
1709 |
+
#: includes/controllers/pages/class-submit-listing.php:1265
|
1710 |
#, fuzzy
|
1711 |
msgid "Clear Form"
|
1712 |
msgstr "Wyczyść"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
# @ WPBDM
|
2076 |
+
#: includes/helpers/functions/general.php:568
|
|
|
2077 |
msgid "Free"
|
2078 |
msgstr "Tryb Bezpłatny"
|
2079 |
|
2090 |
msgstr "Zarządzaj ofertami płatnymi"
|
2091 |
|
2092 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
2093 |
+
#: includes/licensing.php:150
|
2094 |
msgid ""
|
2095 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
2096 |
"get updates."
|
2097 |
msgstr ""
|
2098 |
|
2099 |
# @ WPBDM
|
2100 |
+
#: includes/licensing.php:203 includes/licensing.php:206
|
2101 |
#, fuzzy
|
2102 |
msgid "Licenses"
|
2103 |
msgstr "Licencje"
|
2104 |
|
2105 |
+
#: includes/licensing.php:273
|
2106 |
msgid "Build more powerful directories"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: includes/licensing.php:274
|
2110 |
msgid ""
|
2111 |
"Add category images, maps, filter by location, payment gateways, and more."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
# @ WPBDM
|
2115 |
+
#: includes/licensing.php:276
|
2116 |
#, fuzzy
|
2117 |
msgid "Already purchased?"
|
2118 |
msgstr "Już zainstalowano."
|
2119 |
|
2120 |
#. translators: %s: item type.
|
2121 |
+
#: includes/licensing.php:294
|
2122 |
msgid "%s will not get updates until license is reauthorized."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
# @ WPBDM
|
2126 |
+
#: includes/licensing.php:315
|
2127 |
#, fuzzy
|
2128 |
msgid "Enter License Key here"
|
2129 |
msgstr "Odśwież Klucz Licencji"
|
2130 |
|
2131 |
# @ authorize-net
|
2132 |
+
#: includes/licensing.php:316
|
2133 |
#, fuzzy
|
2134 |
msgid "Authorize"
|
2135 |
msgstr "Aktywować Authorize.net?"
|
2136 |
|
2137 |
# @ WPBDM
|
2138 |
+
#: includes/licensing.php:420
|
2139 |
#, fuzzy
|
2140 |
msgid "Invalid item ID"
|
2141 |
msgstr "Niewłaściwe ID Pola"
|
2142 |
|
2143 |
# @ WPBDM
|
2144 |
+
#: includes/licensing.php:433
|
2145 |
#, fuzzy
|
2146 |
msgid "No license key provided"
|
2147 |
msgstr "Nie wprowadzono klucz licencji"
|
2148 |
|
2149 |
# @ WPBDM
|
2150 |
+
#: includes/licensing.php:482 includes/licensing.php:520
|
2151 |
#, fuzzy
|
2152 |
msgid "License key is invalid"
|
2153 |
msgstr "Niewłaściwy Klucz Licencji"
|
2154 |
|
2155 |
# @ WPBDM
|
2156 |
+
#: includes/licensing.php:486
|
2157 |
#, fuzzy
|
2158 |
msgid "Deactivation failed"
|
2159 |
msgstr "Błąd Deaktywacji"
|
2160 |
|
2161 |
# @ WPBDM
|
2162 |
+
#: includes/licensing.php:531
|
2163 |
#, fuzzy
|
2164 |
msgid "The license key was revoked."
|
2165 |
msgstr "Nie wprowadzono klucz licencji"
|
2166 |
|
2167 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
2168 |
+
#: includes/licensing.php:535
|
2169 |
msgid ""
|
2170 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
2171 |
"%2$s and let them know your license is being reported as revoked by the "
|
2173 |
"with your report."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: includes/licensing.php:598
|
2177 |
msgid ""
|
2178 |
"It was not possible to establish a connection with the Business Directory "
|
2179 |
"server. The connection failed with the following error:"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: includes/licensing.php:611
|
2183 |
msgid ""
|
2184 |
"It was not possible to establish a connection with the Business Directory "
|
2185 |
"server. A problem occurred in the SSL/TSL handshake:"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: includes/licensing.php:658
|
2189 |
msgid ""
|
2190 |
"It looks like your server is not authorized to make outgoing requests to "
|
2191 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
2193 |
msgstr ""
|
2194 |
|
2195 |
# @ WPBDM
|
2196 |
+
#: includes/licensing.php:752
|
2197 |
#, fuzzy
|
2198 |
msgid "Business Directory license key is missing."
|
2199 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2200 |
|
2201 |
# @ WPBDM
|
2202 |
+
#: includes/licensing.php:753
|
2203 |
#, fuzzy
|
2204 |
msgid "Business Directory license key has expired"
|
2205 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2206 |
|
2207 |
# @ WPBDM
|
2208 |
+
#: includes/licensing.php:754
|
2209 |
#, fuzzy
|
2210 |
msgid "Could not verify Business Directory license."
|
2211 |
msgstr "Pomóż doskonalić Katalog Firm"
|
2212 |
|
2213 |
# @ WPBDM
|
2214 |
+
#: includes/licensing.php:765
|
2215 |
#, fuzzy
|
2216 |
msgid "Review license keys"
|
2217 |
msgstr "Odśwież Klucz Licencji"
|
2218 |
|
2219 |
+
#: includes/licensing.php:880
|
2220 |
msgid "Missing data. Please reload this page and try again."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
# @ WPBDM
|
2224 |
+
#: includes/licensing.php:885
|
2225 |
#, fuzzy
|
2226 |
msgid "Please enter a license key."
|
2227 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
2272 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
2273 |
|
2274 |
# @ WPBDM
|
2275 |
+
#: includes/utils.php:341
|
2276 |
#, fuzzy
|
2277 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2278 |
msgstr "Rozmiar pliku (%s) przekracz maksymalny dozwolony rozmiar %s"
|
2279 |
|
2280 |
# @ WPBDM
|
2281 |
+
#: includes/utils.php:350
|
2282 |
#, fuzzy
|
2283 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2284 |
msgstr "Rozmiar pliku (%s) jest mniejszyod wymaganego minimum: %s"
|
2684 |
msgstr "Dodaj nowy abonament"
|
2685 |
|
2686 |
# @ WPBDM
|
2687 |
+
#: templates/admin/fees-index.tpl.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2688 |
#, fuzzy
|
2689 |
msgid "Order fees on the frontend by:"
|
2690 |
msgstr "Sortuj abonamenty według:"
|
2691 |
|
2692 |
# @ WPBDM
|
2693 |
+
#: templates/admin/fees-index.tpl.php:30
|
2694 |
#, fuzzy
|
2695 |
msgid "↑ Ascending"
|
2696 |
msgstr "↑ Rosnąco"
|
2697 |
|
2698 |
# @ WPBDM
|
2699 |
+
#: templates/admin/fees-index.tpl.php:31
|
2700 |
#, fuzzy
|
2701 |
msgid "↓ Descending"
|
2702 |
msgstr "↓ Malejąco"
|
2703 |
|
2704 |
# @ WPBDM
|
2705 |
+
#: templates/admin/fees-index.tpl.php:39
|
2706 |
#, fuzzy
|
2707 |
msgid "Drag and drop to re-order fees."
|
2708 |
msgstr "Złap i upuść aby uporządkować abonamenty"
|
2709 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2710 |
#: templates/admin/fees-index.tpl.php:67
|
|
|
|
|
|
|
|
|
2711 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: templates/admin/fees-index.tpl.php:69
|
2715 |
msgid "Add a payment gateway to increase conversion rates"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
#. translators: %s: payment gateway name */
|
2719 |
+
#: templates/admin/fees-index.tpl.php:88
|
2720 |
msgid "Add the %s gateway as a payment option."
|
2721 |
msgstr ""
|
2722 |
|
2723 |
# @ WPBDM
|
2724 |
+
#: templates/admin/fees-index.tpl.php:94
|
2725 |
#, fuzzy
|
2726 |
msgid "Upgrade"
|
2727 |
msgstr "Podnieś status do %s"
|
2728 |
|
2729 |
+
#: templates/admin/fees-index.tpl.php:102
|
2730 |
msgid "Set up Authorize.net as a payment option."
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: templates/admin/fees-index.tpl.php:105
|
2734 |
msgid "Set Up"
|
2735 |
msgstr ""
|
2736 |
|
2770 |
msgid "Delete Field"
|
2771 |
msgstr "Usuń pole"
|
2772 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2773 |
# @ WPBDM
|
2774 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2775 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
3131 |
msgstr ""
|
3132 |
|
3133 |
# @ WPBDM
|
3134 |
+
#: templates/admin/themes-item.tpl.php:45
|
3135 |
#, fuzzy
|
3136 |
msgid "Inactive"
|
3137 |
msgstr "Tylko aktywne"
|
4301 |
msgstr "Abonament usunięty "
|
4302 |
|
4303 |
# @ WPBDM
|
4304 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
4305 |
+
#, fuzzy
|
4306 |
+
msgctxt "fees admin"
|
4307 |
+
msgid "Fee enabled."
|
4308 |
+
msgstr "Abonament usunięty "
|
4309 |
+
|
4310 |
+
# @ WPBDM
|
4311 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
4312 |
msgctxt "fees admin"
|
4313 |
msgid "Fee disabled."
|
4314 |
msgstr "Abonament usunięty "
|
4326 |
msgstr "Abonamenty"
|
4327 |
|
4328 |
# @ WPBDM
|
4329 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
4330 |
#, fuzzy
|
4331 |
msgctxt "fees admin"
|
4332 |
msgid "Attributes"
|
4333 |
msgstr "Atrybuty pola"
|
4334 |
|
4335 |
# @ WPBDM
|
4336 |
+
#: includes/admin/helpers/tables/class-fees-table.php:137
|
4337 |
msgctxt "fees admin"
|
4338 |
msgid "Edit"
|
4339 |
msgstr "Edytuj"
|
4340 |
|
4341 |
+
#: includes/admin/helpers/tables/class-fees-table.php:207
|
4342 |
msgctxt "fees admin"
|
4343 |
msgid "Variable"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
# @ WPBDM
|
4347 |
+
#: includes/admin/helpers/tables/class-fees-table.php:212
|
4348 |
#, fuzzy
|
4349 |
msgctxt "fees admin"
|
4350 |
msgid "%1$s + %2$s per category"
|
4351 |
msgstr "Abonament \"%s\" dla kategorii \"%s\""
|
4352 |
|
4353 |
# @ WPBDM
|
4354 |
+
#: includes/admin/helpers/tables/class-fees-table.php:231
|
4355 |
msgctxt "fees admin"
|
4356 |
msgid "Forever"
|
4357 |
msgstr "Na zawsze"
|
4358 |
|
4359 |
# @ WPBDM
|
4360 |
+
#: includes/admin/helpers/tables/class-fees-table.php:233
|
4361 |
msgctxt "fees admin"
|
4362 |
msgid "%d day"
|
4363 |
msgid_plural "%d days"
|
4366 |
msgstr[2] "%d dni"
|
4367 |
|
4368 |
# @ WPBDM
|
4369 |
+
#: includes/admin/helpers/tables/class-fees-table.php:263
|
4370 |
msgctxt "fees admin"
|
4371 |
msgid "All categories"
|
4372 |
msgstr "Wszystkie Kategorie"
|
4373 |
|
4374 |
+
#: includes/admin/helpers/tables/class-fees-table.php:292
|
4375 |
msgctxt "fees admin"
|
4376 |
msgid "Sticky"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
# @ WPBDM
|
4380 |
+
#: includes/admin/helpers/tables/class-fees-table.php:296
|
4381 |
#, fuzzy
|
4382 |
msgctxt "fees admin"
|
4383 |
msgid "Recurring"
|
4384 |
msgstr "(powtarzające się)"
|
4385 |
|
4386 |
# @ WPBDM
|
4387 |
+
#: includes/admin/helpers/tables/class-fees-table.php:300
|
4388 |
#, fuzzy
|
4389 |
msgctxt "fees admin"
|
4390 |
msgid "Private"
|
4589 |
msgid "Reported"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: includes/models/class-listing.php:961
|
4593 |
msgctxt "listing status"
|
4594 |
msgid "Unknown"
|
4595 |
msgstr ""
|
4596 |
|
4597 |
+
#: includes/models/class-listing.php:962
|
4598 |
msgctxt "listing status"
|
4599 |
msgid "Legacy"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
# @ WPBDM
|
4603 |
+
#: includes/models/class-listing.php:963
|
4604 |
#, fuzzy
|
4605 |
msgctxt "listing status"
|
4606 |
msgid "Incomplete"
|
4607 |
msgstr "Zakończona"
|
4608 |
|
4609 |
# @ WPBDM
|
4610 |
+
#: includes/models/class-listing.php:964
|
4611 |
#, fuzzy
|
4612 |
msgctxt "listing status"
|
4613 |
msgid "Pending Payment"
|
4614 |
msgstr "Oczekujące na abonament"
|
4615 |
|
4616 |
# @ WPBDM
|
4617 |
+
#: includes/models/class-listing.php:965
|
4618 |
#, fuzzy
|
4619 |
msgctxt "listing status"
|
4620 |
msgid "Complete"
|
4621 |
msgstr "Zakończona"
|
4622 |
|
4623 |
# @ WPBDM
|
4624 |
+
#: includes/models/class-listing.php:966
|
4625 |
#, fuzzy
|
4626 |
msgctxt "listing status"
|
4627 |
msgid "Pending Upgrade"
|
4628 |
msgstr "Oferty oczekujące na zatwierdzenie"
|
4629 |
|
4630 |
# @ WPBDM
|
4631 |
+
#: includes/models/class-listing.php:967
|
4632 |
#, fuzzy
|
4633 |
msgctxt "listing status"
|
4634 |
msgid "Expired"
|
4635 |
msgstr "Wygasłe"
|
4636 |
|
4637 |
# @ WPBDM
|
4638 |
+
#: includes/models/class-listing.php:968
|
4639 |
#, fuzzy
|
4640 |
msgctxt "listing status"
|
4641 |
msgid "Pending Renewal"
|
4642 |
msgstr "Tylko aktywne i oczekujące na odświeżenie "
|
4643 |
|
4644 |
# @ WPBDM
|
4645 |
+
#: includes/models/class-listing.php:969
|
4646 |
#, fuzzy
|
4647 |
msgctxt "listing status"
|
4648 |
msgid "Abandoned"
|
5393 |
|
5394 |
# @ WPBDM
|
5395 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
5396 |
+
#: includes/helpers/functions/general.php:1281
|
5397 |
msgctxt "admin settings"
|
5398 |
msgid "Date posted"
|
5399 |
msgstr "Data publikacji"
|
5400 |
|
5401 |
# @ WPBDM
|
5402 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
5403 |
+
#: includes/helpers/functions/general.php:1282
|
5404 |
msgctxt "admin settings"
|
5405 |
msgid "Date last modified"
|
5406 |
msgstr "Data ostatnij modyfikacji"
|
5602 |
msgid "U.S. Dollar (USD)"
|
5603 |
msgstr "Dolar Amerykański"
|
5604 |
|
5605 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
5606 |
msgctxt "admin settings"
|
5607 |
msgid "Show currency symbol on the left"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
5611 |
msgctxt "admin settings"
|
5612 |
msgid "Show currency symbol on the right"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
# @ WPBDM
|
5616 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
5617 |
msgctxt "admin settings"
|
5618 |
msgid "Do not show currency symbol"
|
5619 |
msgstr "Symbol Waluty"
|
5620 |
|
5621 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5622 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
5623 |
msgctxt "admin settings"
|
5624 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
# @ WPBDM
|
5628 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
5629 |
#, fuzzy
|
5630 |
msgctxt "admin settings"
|
5631 |
msgid ""
|
5636 |
"tego czasu. Możesz także <a>wprowadzić zmiany w szablonie wiadomości e-mail</"
|
5637 |
"a> dostarczanym do użytkowników."
|
5638 |
|
5639 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1320
|
5640 |
msgctxt "admin settings"
|
5641 |
msgid "Try listing's email field first, then author's email."
|
5642 |
msgstr ""
|
5643 |
|
5644 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1321
|
5645 |
msgctxt "admin settings"
|
5646 |
msgid "Try author's email first and then listing's email field."
|
5647 |
msgstr ""
|
5648 |
|
5649 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1334
|
5650 |
msgctxt "admin settings"
|
5651 |
msgid "Plain (text/plain)"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1335
|
5655 |
msgctxt "admin settings"
|
5656 |
msgid "HTML (text/html)"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1336
|
5660 |
msgctxt "admin settings"
|
5661 |
msgid "Both (multipart/alternative)"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
# @ WPBDM
|
5665 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1350
|
5666 |
msgctxt "admin settings"
|
5667 |
msgid "A new listing is submitted."
|
5668 |
msgstr "Dodano nową ofertę."
|
5669 |
|
5670 |
# @ WPBDM
|
5671 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1351
|
5672 |
msgctxt "admin settings"
|
5673 |
msgid "A listing is edited."
|
5674 |
msgstr "Edytowano ofertę."
|
5675 |
|
5676 |
# @ WPBDM
|
5677 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
5678 |
msgctxt "admin settings"
|
5679 |
msgid "A listing expires."
|
5680 |
msgstr "Upłynął okres ważności oferty."
|
5681 |
|
5682 |
# @ WPBDM
|
5683 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
5684 |
#, fuzzy
|
5685 |
msgctxt "admin settings"
|
5686 |
msgid "A listing is renewed."
|
5687 |
msgstr "Edytowano ofertę."
|
5688 |
|
5689 |
# @ WPBDM
|
5690 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1354
|
5691 |
#, fuzzy
|
5692 |
msgctxt "admin settings"
|
5693 |
msgid "A listing payment is completed."
|
5694 |
msgstr "Edytowano ofertę."
|
5695 |
|
5696 |
# @ WPBDM
|
5697 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1355
|
5698 |
#, fuzzy
|
5699 |
msgctxt "admin settings"
|
5700 |
msgid "A listing has been reported as inappropriate."
|
5701 |
msgstr "Podniesiono status oferty."
|
5702 |
|
5703 |
# @ WPBDM
|
5704 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
5705 |
msgctxt "admin settings"
|
5706 |
msgid "A contact message is sent to a listing's owner."
|
5707 |
msgstr "Została wysłana wiadomość kontaktowa do właściciela oferty."
|
5708 |
|
5709 |
# @ WPBDM
|
5710 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
5711 |
msgctxt "admin settings"
|
5712 |
msgid "Their listing is submitted."
|
5713 |
msgstr "Twoja oferta została przesłana."
|
5714 |
|
5715 |
# @ WPBDM
|
5716 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1384
|
5717 |
msgctxt "admin settings"
|
5718 |
msgid "Their listing is approved/published."
|
5719 |
msgstr "Twoja oferta została zatwierdzona i opublikowana."
|
5720 |
|
5721 |
# @ WPBDM
|
5722 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1385
|
5723 |
#, fuzzy
|
5724 |
msgctxt "admin settings"
|
5725 |
msgid "A payment for their listing is completed."
|
5726 |
msgstr "Twoja oferta została przesłana."
|
5727 |
|
5728 |
# @ WPBDM
|
5729 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
5730 |
#, fuzzy
|
5731 |
msgctxt "admin settings"
|
5732 |
msgid "Their listing expired or is about to expire."
|
5733 |
msgstr "Twoja oferta została przesłana."
|
5734 |
|
5735 |
# @ WPBDM
|
5736 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1404
|
5737 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
5738 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
5739 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
5740 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1514
|
5741 |
msgctxt "admin settings"
|
5742 |
msgid "Listing's title"
|
5743 |
msgstr "Tytuł oferty"
|
5744 |
|
5745 |
# @ WPBDM
|
5746 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1405
|
5747 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
5748 |
#, fuzzy
|
5749 |
msgctxt "admin settings"
|
5750 |
msgid "Listing's fee plan name"
|
5751 |
msgstr "Data zakończenia emisji oferty"
|
5752 |
|
5753 |
# @ WPBDM
|
5754 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1406
|
5755 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
5756 |
#, fuzzy
|
5757 |
msgctxt "admin settings"
|
5758 |
msgid "Listing's fee plan description"
|
5759 |
msgstr "Wybór Abonamentu"
|
5760 |
|
5761 |
# @ WPBDM
|
5762 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
5763 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
5764 |
#, fuzzy
|
5765 |
msgctxt "admin settings"
|
5766 |
msgid "Listing's fee plan details"
|
5767 |
msgstr "Data zakończenia emisji oferty"
|
5768 |
|
5769 |
# @ WPBDM
|
5770 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
5771 |
msgctxt "admin settings"
|
5772 |
msgid ""
|
5773 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
5777 |
"status oferty publicznej."
|
5778 |
|
5779 |
# @ WPBDM
|
5780 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1424
|
5781 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1458
|
5782 |
msgctxt "admin settings"
|
5783 |
msgid "Listing's URL"
|
5784 |
msgstr "URL oferty"
|
5785 |
|
5786 |
# @ WPBDM
|
5787 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1425
|
5788 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1465
|
5789 |
#, fuzzy
|
5790 |
msgctxt "admin settings"
|
5791 |
msgid "Listing's Access Key"
|
5792 |
msgstr "Pola/Obrazy"
|
5793 |
|
5794 |
# @ WPBDM
|
5795 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
5796 |
#, fuzzy
|
5797 |
msgctxt "admin settings"
|
5798 |
msgid "Sender's name"
|
5799 |
msgstr "Nazwisko Autora"
|
5800 |
|
5801 |
# @ WPBDM
|
5802 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1463
|
5803 |
#, fuzzy
|
5804 |
msgctxt "admin settings"
|
5805 |
msgid "Contact message"
|
5806 |
msgstr "Wiadomość do osoby kontaktowej z Oferty"
|
5807 |
|
5808 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1464
|
5809 |
msgctxt "admin settings"
|
5810 |
msgid "Date and time the message was sent"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
# @ WPBDM
|
5814 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
5815 |
#, fuzzy
|
5816 |
msgctxt "admin settings"
|
5817 |
msgid "Payment items details."
|
5818 |
msgstr "Szczegóły płatności"
|
5819 |
|
5820 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
5821 |
msgctxt "admin settings"
|
5822 |
msgid "URL where user can review and print payment receipt."
|
5823 |
msgstr ""
|
5824 |
|
5825 |
# @ WPBDM
|
5826 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
5827 |
#, fuzzy
|
5828 |
msgctxt "admin settings"
|
5829 |
msgid "Gateway used to process listing's payment."
|
5830 |
msgstr "Nie można kontynuować płatności."
|
5831 |
|
5832 |
# @ WPBDM
|
5833 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1515
|
5834 |
msgctxt "admin settings"
|
5835 |
msgid "Checkout URL link"
|
5836 |
msgstr "Sprawdzanie link URL"
|
5837 |
|
5838 |
# @ WPBDM
|
5839 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1617
|
5840 |
#, fuzzy
|
5841 |
msgctxt "admin settings"
|
5842 |
msgid "Uploaded Image (no resize)"
|
5843 |
msgstr "Załaduj obraz"
|
5844 |
|
5845 |
+
#: includes/helpers/functions/general.php:1279
|
5846 |
msgctxt "admin settings"
|
5847 |
msgid "User"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
# @ WPBDM
|
5851 |
+
#: includes/helpers/functions/general.php:1280
|
5852 |
msgctxt "admin settings"
|
5853 |
msgid "User registration date"
|
5854 |
msgstr "Data zakończenia emisji oferty"
|
6113 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
6114 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
6115 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
6116 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1301
|
6117 |
#: includes/admin/settings/class-settings.php:341
|
6118 |
#, fuzzy
|
6119 |
msgctxt "settings"
|
6859 |
msgstr ""
|
6860 |
|
6861 |
# @ WPBDM
|
6862 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1132
|
6863 |
#, fuzzy
|
6864 |
msgctxt "settings"
|
6865 |
msgid "Fee Order"
|
6866 |
msgstr "Sortowanie"
|
6867 |
|
6868 |
# @ WPBDM
|
6869 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1145
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6870 |
#, fuzzy
|
6871 |
msgctxt "settings"
|
6872 |
msgid "Put payment gateways in test mode?"
|
6880 |
msgstr "Kod Waluty"
|
6881 |
|
6882 |
# @ WPBDM
|
6883 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
6884 |
#, fuzzy
|
6885 |
msgctxt "settings"
|
6886 |
msgid "Currency Symbol"
|
6887 |
msgstr "Symbol Waluty"
|
6888 |
|
6889 |
# @ WPBDM
|
6890 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
6891 |
#, fuzzy
|
6892 |
msgctxt "settings"
|
6893 |
msgid "Currency symbol display"
|
6894 |
msgstr "Symbol Waluty"
|
6895 |
|
6896 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
6897 |
msgctxt "settings"
|
6898 |
msgid "Include fee description in receipt?"
|
6899 |
msgstr ""
|
6900 |
|
6901 |
# @ WPBDM
|
6902 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1225
|
6903 |
#, fuzzy
|
6904 |
msgctxt "settings"
|
6905 |
msgid "Thank you for payment message"
|
6906 |
msgstr "Wiadomość - Dziękujemy za płatność."
|
6907 |
|
6908 |
# @ WPBDM
|
6909 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1278
|
6910 |
#, fuzzy
|
6911 |
msgctxt "settings"
|
6912 |
msgid "Ask users to come back for abandoned payments?"
|
6913 |
msgstr "Pytać użytkowników o powrót do porzuconych płatności?"
|
6914 |
|
6915 |
# @ WPBDM
|
6916 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1289
|
6917 |
#, fuzzy
|
6918 |
msgctxt "settings"
|
6919 |
msgid "Listing abandonment threshold (hours)"
|
6920 |
msgstr "Maksymalny Czas dla porzuconych płątności (godzin)"
|
6921 |
|
6922 |
# @ WPBDM
|
6923 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1306
|
6924 |
#, fuzzy
|
6925 |
msgctxt "settings"
|
6926 |
msgid "Display email address fields publicly?"
|
6927 |
msgstr "Wyświetlać publicznie pole \"adres e-mail\"?"
|
6928 |
|
6929 |
# @ WPBDM
|
6930 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1307
|
6931 |
#, fuzzy
|
6932 |
msgctxt "settings"
|
6933 |
msgid ""
|
6940 |
"właściciela (spam)."
|
6941 |
|
6942 |
# @ WPBDM
|
6943 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1316
|
6944 |
#, fuzzy
|
6945 |
msgctxt "settings"
|
6946 |
msgid "How to determine the listing's email address?"
|
6947 |
msgstr "Jak określić listę adresów e-mail?"
|
6948 |
|
6949 |
# @ WPBDM
|
6950 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1317
|
6951 |
#, fuzzy
|
6952 |
msgctxt "settings"
|
6953 |
msgid ""
|
6957 |
"Wpływa to na e-maile wysyłane do właścicieli ofert za pośrednictwem "
|
6958 |
"formularzy kontaktowych lub gdy ich oferta wygasa."
|
6959 |
|
6960 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1330
|
6961 |
msgctxt "settings"
|
6962 |
msgid "Email Content-Type header"
|
6963 |
msgstr ""
|
6964 |
|
6965 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1331
|
6966 |
msgctxt "settings"
|
6967 |
msgid ""
|
6968 |
"Use this setting to control the format of the emails explicitly. Some "
|
6972 |
msgstr ""
|
6973 |
|
6974 |
# @ WPBDM
|
6975 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
6976 |
#, fuzzy
|
6977 |
msgctxt "settings"
|
6978 |
msgid "Templates"
|
6979 |
msgstr "Szablony wiadomości e-Mail"
|
6980 |
|
6981 |
# @ WPBDM
|
6982 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1397
|
6983 |
#, fuzzy
|
6984 |
msgctxt "settings"
|
6985 |
msgid "Email confirmation message"
|
6986 |
msgstr "Wiadomość e-mail z potwierdzeniem odbioru"
|
6987 |
|
6988 |
# @ WPBDM
|
6989 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1398
|
6990 |
#, fuzzy
|
6991 |
msgctxt "settings"
|
6992 |
msgid "Sent after a listing has been submitted."
|
6993 |
msgstr "Wysłane po zapisaniu oferty."
|
6994 |
|
6995 |
# @ WPBDM
|
6996 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1416
|
6997 |
#, fuzzy
|
6998 |
msgctxt "settings"
|
6999 |
msgid "Listing published message"
|
7000 |
msgstr "Wiadomość o opublikowaniu oferty"
|
7001 |
|
7002 |
# @ WPBDM
|
7003 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1417
|
7004 |
#, fuzzy
|
7005 |
msgctxt "settings"
|
7006 |
msgid "Sent when the listing has been published or approved by an admin."
|
7008 |
"Wyślij gdy oferta została zatwierdzona lub opublikowana przez administratora."
|
7009 |
|
7010 |
# @ WPBDM
|
7011 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
7012 |
#, fuzzy
|
7013 |
msgctxt "settings"
|
7014 |
msgid "Listing Contact Message"
|
7015 |
msgstr "Wiadomość do osoby kontaktowej z Oferty"
|
7016 |
|
7017 |
# @ WPBDM
|
7018 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1435
|
7019 |
#, fuzzy
|
7020 |
msgctxt "settings"
|
7021 |
msgid ""
|
7026 |
"jego oferty."
|
7027 |
|
7028 |
# @ WPBDM
|
7029 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1475
|
7030 |
#, fuzzy
|
7031 |
msgctxt "settings"
|
7032 |
msgid "Payment completed message"
|
7033 |
msgstr "Wiadomość przypomnienia o porzuconej płatności "
|
7034 |
|
7035 |
# @ WPBDM
|
7036 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
7037 |
#, fuzzy
|
7038 |
msgctxt "settings"
|
7039 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
7042 |
"\"."
|
7043 |
|
7044 |
# @ WPBDM
|
7045 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
7046 |
#, fuzzy
|
7047 |
msgctxt "settings"
|
7048 |
msgid "Payment abandoned reminder message"
|
7049 |
msgstr "Wiadomość przypomnienia o porzuconej płatności "
|
7050 |
|
7051 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1638
|
7052 |
msgctxt "settings"
|
7053 |
msgid "Cropped"
|
7054 |
msgstr ""
|
7064 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
7065 |
msgstr ""
|
7066 |
|
7067 |
+
#: includes/licensing.php:245
|
7068 |
msgctxt "settings"
|
7069 |
msgid "Themes"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
+
#: includes/licensing.php:316 includes/licensing.php:317
|
7073 |
msgctxt "settings"
|
7074 |
msgid "Please wait..."
|
7075 |
msgstr ""
|
7076 |
|
7077 |
# @ authorize-net
|
7078 |
+
#: includes/licensing.php:317
|
7079 |
#, fuzzy
|
7080 |
msgctxt "settings"
|
7081 |
msgid "Deauthorize"
|
7136 |
msgstr ""
|
7137 |
|
7138 |
# @ WPBDM
|
7139 |
+
#: includes/admin/controllers/class-themes-admin.php:240
|
7140 |
msgctxt "themes"
|
7141 |
msgid "Please upload a valid theme file."
|
7142 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
7143 |
|
7144 |
# @ WPBDM
|
7145 |
+
#: includes/admin/controllers/class-themes-admin.php:249
|
7146 |
msgctxt "themes"
|
7147 |
msgid "Could not move \"%s\" to a temporary directory."
|
7148 |
msgstr "Nie można utworzyć katalogu wpbdp-csv-eksport."
|
7149 |
|
7150 |
+
#: includes/admin/controllers/class-themes-admin.php:335
|
7151 |
msgctxt "themes"
|
7152 |
msgid "Activate your <a>license key</a> to use this theme."
|
7153 |
msgstr ""
|
7154 |
|
7155 |
# @ WPBDM
|
7156 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
7157 |
#, fuzzy
|
7158 |
msgctxt "themes"
|
7159 |
msgid "Invalid theme ID"
|
7160 |
msgstr "Niewłaściwe ID Pola"
|
7161 |
|
7162 |
# @ WPBDM
|
7163 |
+
#: includes/admin/controllers/class-themes-admin.php:384
|
7164 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
7165 |
msgctxt "themes"
|
7166 |
msgid "Could not update theme: %s"
|
7658 |
|
7659 |
# @ WPBDM
|
7660 |
#. translators: %s: url shortcode
|
7661 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
7662 |
msgctxt "contact email"
|
7663 |
msgid "You have received a reply from your listing at %s."
|
7664 |
msgstr "Otrzymano wiadomość dotyczącą oferty %s."
|
7665 |
|
7666 |
# @ WPBDM
|
7667 |
#. translators: %s: name shortcode
|
7668 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
7669 |
msgctxt "contact email"
|
7670 |
msgid "Name: %s"
|
7671 |
msgstr "Nazwa: %s"
|
7672 |
|
7673 |
# @ WPBDM
|
7674 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1451
|
7675 |
msgctxt "contact email"
|
7676 |
msgid "Message:"
|
7677 |
msgstr "Wiadomość:"
|
7678 |
|
7679 |
# @ WPBDM
|
7680 |
#. translators: %s: date shortcode
|
7681 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1455
|
7682 |
msgctxt "contact email"
|
7683 |
msgid "Time: %s"
|
7684 |
msgstr "Czas: %s"
|
8014 |
msgstr "Dodaj nową ofertę"
|
8015 |
|
8016 |
# @ WPBDM
|
8017 |
+
#: includes/models/class-listing.php:421
|
8018 |
#, fuzzy
|
8019 |
msgctxt "listing"
|
8020 |
msgid "Listing has no registered payments"
|
8021 |
msgstr "Data zakończenia emisji oferty"
|
8022 |
|
8023 |
# @ WPBDM
|
8024 |
+
#: includes/models/class-listing.php:430
|
8025 |
#, fuzzy
|
8026 |
msgctxt "listing"
|
8027 |
msgid "Can't delete payment"
|
8028 |
msgstr "Odrzucenie płatności"
|
8029 |
|
8030 |
# @ WPBDM
|
8031 |
+
#: includes/models/class-listing.php:468
|
8032 |
#, fuzzy
|
8033 |
msgctxt "listing"
|
8034 |
msgid "Listing expired"
|
8035 |
msgstr "Upłynął okres ważności oferty."
|
8036 |
|
8037 |
# @ WPBDM
|
8038 |
+
#: includes/models/class-listing.php:668
|
8039 |
#, fuzzy
|
8040 |
msgctxt "listing"
|
8041 |
msgid "(Unavailable Plan)"
|
8042 |
msgstr "(Abonament niedostępny)"
|
8043 |
|
8044 |
# @ WPBDM
|
8045 |
+
#: includes/models/class-listing.php:858
|
8046 |
#, fuzzy
|
8047 |
msgctxt "listing"
|
8048 |
msgid "Plan \"%s\" (recurring)"
|
8049 |
msgstr "(powtarzające się)"
|
8050 |
|
8051 |
+
#: includes/models/class-listing.php:860
|
8052 |
msgctxt "listing"
|
8053 |
msgid "Plan \"%s\""
|
8054 |
msgstr ""
|
8205 |
msgstr "Włączyć pasek sortowania?"
|
8206 |
|
8207 |
# @ WPBDM
|
8208 |
+
#: includes/class-payment-gateways.php:131
|
8209 |
#, fuzzy
|
8210 |
msgctxt "payment-gateways"
|
8211 |
msgid ""
|
8216 |
"będzie dostępna do czasu usunięcia tych problemów: <b>%s</b>. Sprawdź <a "
|
8217 |
"href=\"%s\">Ustawienia Płatności</a>."
|
8218 |
|
8219 |
+
#: includes/class-payment-gateways.php:133
|
8220 |
msgctxt "payment-gateways"
|
8221 |
msgid "Please check the <link>payment settings</link>."
|
8222 |
msgstr ""
|
8223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8224 |
# @ WPBDM
|
8225 |
#: includes/class-recaptcha.php:32
|
8226 |
msgctxt "recaptcha"
|
8473 |
"zawierają ofert. To oznacza, że te kategorie nie będą wyświetlane na "
|
8474 |
"stornach Katalogu. Jeśli chcesz to zmienić kliknij <a>tutaj</a>."
|
8475 |
|
8476 |
+
#: includes/controllers/pages/class-submit-listing.php:424
|
8477 |
msgctxt "templates"
|
8478 |
msgid ""
|
8479 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
8480 |
"Submission?\" setting checked?"
|
8481 |
msgstr ""
|
8482 |
|
8483 |
+
#: includes/controllers/pages/class-submit-listing.php:426
|
8484 |
msgctxt "templates"
|
8485 |
msgid ""
|
8486 |
"Listing submission has been disabled. Contact the administrator for details."
|
8487 |
msgstr ""
|
8488 |
|
8489 |
+
#: includes/controllers/pages/class-submit-listing.php:824
|
8490 |
msgctxt "templates"
|
8491 |
msgid ""
|
8492 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
8493 |
"submit a listing. %s to create a fee plan"
|
8494 |
msgstr ""
|
8495 |
|
8496 |
+
#: includes/controllers/pages/class-submit-listing.php:838
|
8497 |
msgctxt "templates"
|
8498 |
msgid ""
|
8499 |
"Listing submission is not available at the moment. Contact the administrator "
|
8500 |
"for details."
|
8501 |
msgstr ""
|
8502 |
|
8503 |
+
#: includes/controllers/pages/class-submit-listing.php:841
|
8504 |
msgctxt "templates"
|
8505 |
msgid ""
|
8506 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
8509 |
msgstr ""
|
8510 |
|
8511 |
# @ WPBDM
|
8512 |
+
#: includes/controllers/pages/class-submit-listing.php:1286
|
8513 |
msgctxt "templates"
|
8514 |
msgid "Please agree to the Terms and Conditions."
|
8515 |
msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
|
8516 |
|
8517 |
# @ WPBDM
|
8518 |
+
#: includes/controllers/pages/class-submit-listing.php:1300
|
8519 |
#, fuzzy
|
8520 |
msgctxt "templates"
|
8521 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
8522 |
msgstr "Akceptuję rwarunki i regulamin korzystania z witryny."
|
8523 |
|
8524 |
# @ WPBDM
|
8525 |
+
#: includes/helpers/functions/general.php:1362
|
8526 |
#, fuzzy
|
8527 |
msgctxt "templates"
|
8528 |
msgid "Return to results"
|
8921 |
msgid "You can't edit this listing."
|
8922 |
msgstr "Kategorie dla tej oferty"
|
8923 |
|
8924 |
+
#: includes/controllers/pages/class-submit-listing.php:168
|
8925 |
msgctxt "submit listing"
|
8926 |
msgid ""
|
8927 |
"This listing can't be edited at this time because it has no fee plan "
|
8929 |
"to a fee plan."
|
8930 |
msgstr ""
|
8931 |
|
8932 |
+
#: includes/controllers/pages/class-submit-listing.php:174
|
8933 |
msgctxt "submit listing"
|
8934 |
msgid ""
|
8935 |
"This listing can't be edited at this time. Please try again later or contact "
|
8937 |
msgstr ""
|
8938 |
|
8939 |
# @ WPBDM
|
8940 |
+
#: includes/controllers/pages/class-submit-listing.php:198
|
8941 |
#, fuzzy
|
8942 |
msgctxt "submit listing"
|
8943 |
msgid "You're logged in as admin, payment will be skipped."
|
8946 |
"pominięte."
|
8947 |
|
8948 |
# @ WPBDM
|
8949 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
8950 |
#, fuzzy
|
8951 |
msgctxt "submit listing"
|
8952 |
msgid "Category selection"
|
8953 |
msgstr "Wybór Kategorii"
|
8954 |
|
8955 |
# @ WPBDM
|
8956 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
8957 |
#, fuzzy
|
8958 |
msgctxt "submit listing"
|
8959 |
msgid "Category & plan selection"
|
8960 |
msgstr "Wybór Kategorii"
|
8961 |
|
8962 |
# @ WPBDM
|
8963 |
+
#: includes/controllers/pages/class-submit-listing.php:821
|
8964 |
#, fuzzy
|
8965 |
msgctxt "submit listing"
|
8966 |
msgid "Can not submit a listing at this moment. Please try again later."
|
8969 |
"później."
|
8970 |
|
8971 |
# @ WPBDM
|
8972 |
+
#: includes/controllers/pages/class-submit-listing.php:870
|
8973 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
8974 |
#, fuzzy
|
8975 |
msgctxt "submit listing"
|
8976 |
msgid "Please select a category."
|
8977 |
msgstr "Wybierz abonament dla tegj kategori \"%s\"."
|
8978 |
|
8979 |
+
#: includes/controllers/pages/class-submit-listing.php:893
|
8980 |
msgctxt "submit listing"
|
8981 |
msgid "Please choose a valid category for your plan."
|
8982 |
msgstr ""
|
8983 |
|
8984 |
# @ WPBDM
|
8985 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
8986 |
#, fuzzy
|
8987 |
msgctxt "submit listing"
|
8988 |
msgid "Please choose a valid fee plan for your category selection."
|
8989 |
msgstr "Wybierz abonament dla tegj kategori \"%s\"."
|
8990 |
|
8991 |
# @ WPBDM
|
8992 |
+
#: includes/controllers/pages/class-submit-listing.php:1206
|
8993 |
#, fuzzy
|
8994 |
msgctxt "submit listing"
|
8995 |
msgid "Please enter your desired username."
|
8996 |
msgstr "Proszę wprowadzić Imię"
|
8997 |
|
8998 |
# @ WPBDM
|
8999 |
+
#: includes/controllers/pages/class-submit-listing.php:1211
|
9000 |
#, fuzzy
|
9001 |
msgctxt "submit listing"
|
9002 |
msgid "Please enter the e-mail for your new account."
|
9003 |
msgstr "Proszę wprowadzić Imię"
|
9004 |
|
9005 |
+
#: includes/controllers/pages/class-submit-listing.php:1216
|
9006 |
msgctxt "submit listing"
|
9007 |
msgid "The username you chose is already in use. Please use a different one."
|
9008 |
msgstr ""
|
9009 |
|
9010 |
+
#: includes/controllers/pages/class-submit-listing.php:1221
|
9011 |
msgctxt "submit listing"
|
9012 |
msgid "The e-mail address you chose for your account is already in use."
|
9013 |
msgstr ""
|
9019 |
msgid "Listing submitted by admin. Payment skipped."
|
9020 |
msgstr "Prześlij ofertę"
|
9021 |
|
9022 |
+
#: includes/controllers/pages/class-submit-listing.php:1161
|
9023 |
msgctxt "listing submit"
|
9024 |
msgid ""
|
9025 |
"Image upload is required, please provide at least one image and submit again."
|
9386 |
msgstr "Główna"
|
9387 |
|
9388 |
# @ WPBDM
|
9389 |
+
#: includes/licensing.php:571
|
9390 |
msgctxt "licensing"
|
9391 |
msgid "Could not contact licensing server"
|
9392 |
msgstr "Nie można połączyć z serwerem danych licencji"
|
9393 |
|
9394 |
+
#: includes/licensing.php:584
|
9395 |
msgctxt "licensing"
|
9396 |
msgid ""
|
9397 |
"It was not possible to establish a connection with Business Directory's "
|
9398 |
"server. cURL was not found in your system"
|
9399 |
msgstr ""
|
9400 |
|
9401 |
+
#: includes/licensing.php:586 includes/licensing.php:616
|
9402 |
msgctxt "licensing"
|
9403 |
msgid ""
|
9404 |
"To ensure the security of our systems and adhere to industry best practices, "
|
9407 |
"1.0.1c)."
|
9408 |
msgstr ""
|
9409 |
|
9410 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
9411 |
msgctxt "licensing"
|
9412 |
msgid ""
|
9413 |
"Upgrading your system will not only allow you to communicate with Business "
|
9415 |
"services using the latest security standards."
|
9416 |
msgstr ""
|
9417 |
|
9418 |
+
#: includes/licensing.php:590
|
9419 |
msgctxt "licensing"
|
9420 |
msgid ""
|
9421 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
9422 |
"Include this message if necessary"
|
9423 |
msgstr ""
|
9424 |
|
9425 |
+
#: includes/licensing.php:620
|
9426 |
msgctxt "licensing"
|
9427 |
msgid ""
|
9428 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
9429 |
"Include this message if necessary."
|
9430 |
msgstr ""
|
9431 |
|
9432 |
+
#: includes/licensing.php:656
|
9433 |
msgctxt "licensing"
|
9434 |
msgid "The server returned a 403 Forbidden error."
|
9435 |
msgstr ""
|
9436 |
|
9437 |
# @ WPBDM
|
9438 |
+
#: includes/licensing.php:902
|
9439 |
msgctxt "licensing"
|
9440 |
msgid "Could not activate license: %s."
|
9441 |
msgstr "Nie możemy aktywować Licencji: %s."
|
9442 |
|
9443 |
# @ WPBDM
|
9444 |
+
#: includes/licensing.php:907
|
9445 |
msgctxt "licensing"
|
9446 |
msgid "License activated"
|
9447 |
msgstr "Licencja została aktywowana"
|
9448 |
|
9449 |
# @ WPBDM
|
9450 |
+
#: includes/licensing.php:939
|
9451 |
msgctxt "licensing"
|
9452 |
msgid "Could not deactivate license: %s."
|
9453 |
msgstr "Nie możemy deaktywować Licencji: %s."
|
9454 |
|
9455 |
# @ WPBDM
|
9456 |
+
#: includes/licensing.php:941
|
9457 |
msgctxt "licensing"
|
9458 |
msgid "License deactivated"
|
9459 |
msgstr "Licencja deaktywowana"
|
9460 |
|
9461 |
#. translators: "<module-name>" version <version-number> is not...
|
9462 |
+
#: includes/licensing.php:1181
|
9463 |
msgctxt "deprecation"
|
9464 |
msgid ""
|
9465 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
9484 |
msgstr[2] "Liczba dozwolonych obrazów"
|
9485 |
|
9486 |
# @ WPBDM
|
9487 |
+
#: includes/models/class-fee-plan.php:387
|
9488 |
msgctxt "fees-api"
|
9489 |
msgid "Fee label is required."
|
9490 |
msgstr "Etykieta abonamentu jest wymagana."
|
9491 |
|
9492 |
# @ WPBDM
|
9493 |
+
#: includes/models/class-fee-plan.php:393
|
9494 |
msgctxt "fees-api"
|
9495 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
9496 |
msgstr ""
|
9497 |
"Abonament dla okresu ważności oferty musi zawierać się w liczbie dodatniej, "
|
9498 |
"całkowitej."
|
9499 |
|
9500 |
+
#: includes/models/class-fee-plan.php:398
|
9501 |
msgctxt "fees-api"
|
9502 |
msgid ""
|
9503 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
9505 |
"<a>fee plan</a> appropriately."
|
9506 |
msgstr ""
|
9507 |
|
9508 |
+
#: includes/models/class-fee-plan.php:401
|
9509 |
msgctxt "fees-api"
|
9510 |
msgid ""
|
9511 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
9593 |
msgstr "Nieznany błąd podczas przesyłania pliku."
|
9594 |
|
9595 |
# @ WPBDM
|
9596 |
+
#: includes/utils.php:335
|
9597 |
msgctxt "utils"
|
9598 |
msgid "Error while uploading file"
|
9599 |
msgstr "Błąd podczas przesyłania pliku."
|
9600 |
|
9601 |
# @ WPBDM
|
9602 |
+
#: includes/utils.php:359 includes/utils.php:366
|
9603 |
msgctxt "utils"
|
9604 |
msgid "File type \"%s\" is not allowed"
|
9605 |
msgstr "Pliki typu \"%s\" , nie są dozwolone"
|
9606 |
|
9607 |
# @ WPBDM
|
9608 |
+
#: includes/utils.php:585
|
9609 |
msgctxt "utils"
|
9610 |
msgid ""
|
9611 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
9734 |
msgid "required"
|
9735 |
msgstr "Wymagane"
|
9736 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9737 |
# @ WPBDM
|
9738 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
9739 |
#, fuzzy
|
10067 |
msgid "Continue"
|
10068 |
msgstr "Kontynuacja"
|
10069 |
|
10070 |
+
# @ WPBDM
|
10071 |
+
#, fuzzy
|
10072 |
+
#~ msgid "Payments are currently turned off."
|
10073 |
+
#~ msgstr "Płatność jest aktualnie wyłączona."
|
10074 |
+
|
10075 |
+
# @ WPBDM
|
10076 |
+
#, fuzzy
|
10077 |
+
#~ msgid ""
|
10078 |
+
#~ "To manage fees you need to go to the %1$sManage Options - Payment%2$s "
|
10079 |
+
#~ "page and check the box next to 'Turn On Payments' under 'Payment "
|
10080 |
+
#~ "Settings'."
|
10081 |
+
#~ msgstr ""
|
10082 |
+
#~ "Aby zarządzać abonamentami musisz iść do <a> Opcje Zarządzania- Płatności "
|
10083 |
+
#~ "</a> i zaznaczyć pole wyboru \"Włącz\" w \"Ustawienia płatności\"."
|
10084 |
+
|
10085 |
+
# @ WPBDM
|
10086 |
+
#~ msgid "Paid"
|
10087 |
+
#~ msgstr "Zapłacone"
|
10088 |
+
|
10089 |
+
# @ WPBDM
|
10090 |
+
#, fuzzy
|
10091 |
+
#~ msgid "Manage Options"
|
10092 |
+
#~ msgstr "Zarządzaj opcjami"
|
10093 |
+
|
10094 |
+
# @ WPBDM
|
10095 |
+
#~ msgid "Manage Paid Listings"
|
10096 |
+
#~ msgstr "Zarządzaj ofertami płatnymi"
|
10097 |
+
|
10098 |
+
# @ WPBDM
|
10099 |
+
#, fuzzy
|
10100 |
+
#~ msgctxt "settings"
|
10101 |
+
#~ msgid "Turn On payments?"
|
10102 |
+
#~ msgstr "Włączyć Płatność?"
|
10103 |
+
|
10104 |
+
# @ WPBDM
|
10105 |
+
#, fuzzy
|
10106 |
+
#~ msgctxt "payment-gateways"
|
10107 |
+
#~ msgid ""
|
10108 |
+
#~ "You have payments turned on but no gateway is active and properly "
|
10109 |
+
#~ "configured. Go to <link>Manage Options - Payment</link> to change the "
|
10110 |
+
#~ "payment settings. Until you change this, the directory will operate in "
|
10111 |
+
#~ "<i>Free Mode</i>."
|
10112 |
+
#~ msgstr ""
|
10113 |
+
#~ "Masz włączone płatności, ale nie masz aktywnej i właściwie "
|
10114 |
+
#~ "skonfigurowanej bramki. Przejdź do <a href=\"%s\">Zarządzaj Opcjami - "
|
10115 |
+
#~ "Płatności</a> aby zmienić ustawienia. Do czasu wprowadzenia zmian, plugin "
|
10116 |
+
#~ "będzie działał w <i>Trybie Bezpłatnym</i>."
|
10117 |
+
|
10118 |
# @ WPBDM
|
10119 |
#, fuzzy
|
10120 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
languages/business-directory-plugin-ru_RU.mo
CHANGED
Binary file
|
languages/business-directory-plugin-ru_RU.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2022-
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
|
9 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -98,17 +98,17 @@ msgstr "Управление справочником"
|
|
98 |
msgid "Directory"
|
99 |
msgstr "Все рубрики"
|
100 |
|
101 |
-
#: includes/admin/class-admin.php:312
|
102 |
msgid "Fee Plans"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: includes/admin/class-admin.php:315
|
106 |
#, fuzzy
|
107 |
msgid "Form Fields"
|
108 |
msgstr "поля формы"
|
109 |
|
110 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
111 |
-
#: includes/licensing.php:
|
112 |
#, fuzzy
|
113 |
msgid "Modules"
|
114 |
msgstr "Установленные модули:"
|
@@ -238,7 +238,7 @@ msgid "Amount"
|
|
238 |
msgstr "Стоимость"
|
239 |
|
240 |
#: includes/admin/controllers/class-admin-fees.php:49
|
241 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
242 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
243 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
244 |
#, fuzzy
|
@@ -276,7 +276,7 @@ msgid "Fee plan listings updated."
|
|
276 |
msgstr "Тариф сохранён."
|
277 |
|
278 |
#: includes/admin/controllers/class-admin-listings.php:185
|
279 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
280 |
#: templates/email/listing-reported.tpl.php:7
|
281 |
msgid "Listing Information"
|
282 |
msgstr "Информация о бизнесе"
|
@@ -329,14 +329,14 @@ msgstr ""
|
|
329 |
"позвольте плагину сделать это автоматически."
|
330 |
|
331 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
332 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
333 |
#, fuzzy
|
334 |
msgid "Go to \"Form Fields\""
|
335 |
msgstr "Перейти в раздел \"Управление / Форма\""
|
336 |
|
337 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
338 |
-
#: includes/helpers/functions/general.php:
|
339 |
-
#: includes/helpers/functions/general.php:
|
340 |
msgid "Go back"
|
341 |
msgstr ""
|
342 |
|
@@ -448,11 +448,11 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
448 |
msgstr "Вопрос: Почему Вы решили удалить плагин \"Справочник Услуг\"?"
|
449 |
|
450 |
#: includes/admin/controllers/class-settings-admin.php:536
|
451 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
452 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
453 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
454 |
#: templates/admin/payments-note.tpl.php:14
|
455 |
-
#: templates/admin/themes-item.tpl.php:
|
456 |
#: templates/parts/listing-buttons.tpl.php:31
|
457 |
#: templates/parts/listing-buttons.tpl.php:65
|
458 |
#, fuzzy
|
@@ -506,8 +506,8 @@ msgid "Installed"
|
|
506 |
msgstr "Установлен"
|
507 |
|
508 |
#: includes/admin/helpers/class-modules-list.php:187
|
509 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
510 |
-
#: templates/admin/themes-item.tpl.php:
|
511 |
#, fuzzy
|
512 |
msgid "Active"
|
513 |
msgstr "Активно:"
|
@@ -519,13 +519,13 @@ msgstr "Не установлен"
|
|
519 |
|
520 |
#: includes/admin/helpers/class-modules-list.php:225
|
521 |
#: includes/controllers/class-smtp.php:317
|
522 |
-
#: templates/admin/themes-item.tpl.php:
|
523 |
#, fuzzy
|
524 |
msgid "Activate"
|
525 |
msgstr "Активировать"
|
526 |
|
527 |
#: includes/admin/helpers/class-modules-list.php:235
|
528 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
529 |
#, fuzzy
|
530 |
msgid "Upgrade Now"
|
531 |
msgstr "Поднять статус до %s"
|
@@ -541,15 +541,20 @@ msgstr ""
|
|
541 |
|
542 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
543 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
544 |
msgid "Plan Details"
|
545 |
msgstr "Детали плана"
|
546 |
|
547 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
548 |
#, fuzzy
|
549 |
msgid "Pricing"
|
550 |
msgstr "Цена"
|
551 |
|
552 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
553 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
554 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
555 |
#: includes/helpers/class-app.php:92
|
@@ -557,41 +562,40 @@ msgstr "Цена"
|
|
557 |
msgid "Listings"
|
558 |
msgstr "Записи"
|
559 |
|
560 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
561 |
msgid "Disable"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
565 |
#, fuzzy
|
566 |
msgid "Enable"
|
567 |
msgstr "Показать строку сортировки?"
|
568 |
|
569 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
570 |
msgid "ID: %s"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
574 |
#, fuzzy
|
575 |
msgid "Paid Plan"
|
576 |
msgstr "Оплачено"
|
577 |
|
578 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
579 |
#, fuzzy
|
580 |
msgid "Free Plan"
|
581 |
msgstr "Перейти в раздел \"Управление / Форма\""
|
582 |
|
583 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
584 |
#, fuzzy
|
585 |
msgid "%1$s for %2$s"
|
586 |
msgstr "%s (например %s)"
|
587 |
|
588 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
589 |
-
#: includes/admin/helpers/tables/class-fees-table.php:293
|
590 |
#, fuzzy
|
591 |
msgid "Disabled"
|
592 |
msgstr "Тариф удалён."
|
593 |
|
594 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
595 |
#: includes/helpers/functions/templates-ui.php:431
|
596 |
#, fuzzy
|
597 |
msgid "Default"
|
@@ -634,7 +638,7 @@ msgid "Missing tables: %s"
|
|
634 |
msgstr "Отсутствующие таблицы: %s"
|
635 |
|
636 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
637 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
638 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
639 |
#: templates/listing-contactform.tpl.php:33
|
640 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -683,7 +687,7 @@ msgstr "Фамилия обязательна."
|
|
683 |
|
684 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
685 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
686 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
687 |
#, fuzzy
|
688 |
msgid "Terms and Conditions"
|
689 |
msgstr "Условия и положения"
|
@@ -907,12 +911,12 @@ msgstr ""
|
|
907 |
msgid "URL"
|
908 |
msgstr "Адрес URL"
|
909 |
|
910 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
911 |
#, fuzzy
|
912 |
msgid "Thank you for your payment."
|
913 |
msgstr "Сообщение \"спасибо за оплату\""
|
914 |
|
915 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
916 |
msgid ""
|
917 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
918 |
"collect payments in this currency."
|
@@ -923,60 +927,60 @@ msgstr[0] ""
|
|
923 |
msgstr[1] ""
|
924 |
msgstr[2] ""
|
925 |
|
926 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
927 |
#, fuzzy
|
928 |
msgid "Email Notifications"
|
929 |
msgstr "Оповещения по электронной почте"
|
930 |
|
931 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
932 |
#, fuzzy
|
933 |
msgid "Notify admin via email when..."
|
934 |
msgstr "Оповещать администрацию сайта по электронной почте в случаях:"
|
935 |
|
936 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
937 |
#, fuzzy
|
938 |
msgid "CC this email address too"
|
939 |
msgstr "Отправить копию (CC) на этот электронный адрес:"
|
940 |
|
941 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
942 |
#, fuzzy
|
943 |
msgid ""
|
944 |
"You can modify the text template used for most of these emails in the "
|
945 |
"<templates-link>Templates</templates-link> tab."
|
946 |
msgstr "Ниже Вы можете настроить текст шаблонов писем-оповещений."
|
947 |
|
948 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
949 |
#, fuzzy
|
950 |
msgid "Notify users via email when..."
|
951 |
msgstr "Оповещать авторов в случаях:"
|
952 |
|
953 |
#. translators: %s: email shortcode
|
954 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
955 |
#, fuzzy
|
956 |
msgid "Email: %s"
|
957 |
msgstr "Адрес: %s"
|
958 |
|
959 |
#. translators: %s: phone shortcode
|
960 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
961 |
#, fuzzy
|
962 |
msgid "Phone Number: %s"
|
963 |
msgstr "Номер телефона"
|
964 |
|
965 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
966 |
#, fuzzy
|
967 |
msgid "Sender's email address"
|
968 |
msgstr "Некорректный электронный адрес."
|
969 |
|
970 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
971 |
#, fuzzy
|
972 |
msgid "Sender's phone number"
|
973 |
msgstr "Имя автора"
|
974 |
|
975 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
976 |
msgid "Renewal and expiration"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
980 |
#: templates/admin/uninstall-complete.tpl.php:4
|
981 |
#, fuzzy
|
982 |
msgid "Uninstall"
|
@@ -1081,7 +1085,7 @@ msgstr "Открыть"
|
|
1081 |
|
1082 |
#. translators: %s: Status name
|
1083 |
#: includes/admin/views/modules/list.php:63
|
1084 |
-
#: templates/admin/themes-item.tpl.php:
|
1085 |
#, fuzzy
|
1086 |
msgid "Status: %s"
|
1087 |
msgstr "Новый статус:"
|
@@ -1255,12 +1259,10 @@ msgstr "Добавить тариф"
|
|
1255 |
msgid "View All Listings"
|
1256 |
msgstr "Показать все записи"
|
1257 |
|
1258 |
-
|
1259 |
-
#: includes/class-payment-gateways.php:165
|
1260 |
msgid ""
|
1261 |
-
"You have
|
1262 |
-
"
|
1263 |
-
"to %1$sFee Plans%2$s to add or edit your fee plan(s)."
|
1264 |
msgstr ""
|
1265 |
|
1266 |
#: includes/class-wpbdp.php:369
|
@@ -1284,7 +1286,7 @@ msgid ""
|
|
1284 |
"admin."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:
|
1288 |
#, fuzzy
|
1289 |
msgid "Could not find image ID"
|
1290 |
msgstr "Не удалось обновить тему: %s"
|
@@ -1489,38 +1491,38 @@ msgstr "Статус записи был поднят."
|
|
1489 |
msgid "This is just a preview. The listing has not been published yet."
|
1490 |
msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
|
1491 |
|
1492 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1493 |
#, fuzzy
|
1494 |
msgid "Listing Images"
|
1495 |
msgstr "Изображение записи"
|
1496 |
|
1497 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1498 |
msgid "Account Creation"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1502 |
#, fuzzy
|
1503 |
msgid "Go to \"Fee Plans\""
|
1504 |
msgstr "Перейти в раздел \"Управление / Форма\""
|
1505 |
|
1506 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1507 |
#, fuzzy
|
1508 |
msgid "Please choose a fee plan."
|
1509 |
msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
|
1510 |
|
1511 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1512 |
msgid "Please check the form for errors, correct them and submit again."
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1516 |
msgid "Create a user account on this site"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1520 |
msgid "Username"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1524 |
#, fuzzy
|
1525 |
msgid "Clear Form"
|
1526 |
msgstr "Очистить форму"
|
@@ -1840,8 +1842,7 @@ msgid ""
|
|
1840 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: includes/helpers/functions/general.php:
|
1844 |
-
#: templates/admin/fees-index.tpl.php:67
|
1845 |
msgid "Free"
|
1846 |
msgstr "Бесплатно"
|
1847 |
|
@@ -1856,73 +1857,73 @@ msgid "Manage Listings"
|
|
1856 |
msgstr "Платные записи"
|
1857 |
|
1858 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1859 |
-
#: includes/licensing.php:
|
1860 |
msgid ""
|
1861 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1862 |
"get updates."
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: includes/licensing.php:
|
1866 |
#, fuzzy
|
1867 |
msgid "Licenses"
|
1868 |
msgstr "Лицензии"
|
1869 |
|
1870 |
-
#: includes/licensing.php:
|
1871 |
msgid "Build more powerful directories"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: includes/licensing.php:
|
1875 |
msgid ""
|
1876 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: includes/licensing.php:
|
1880 |
#, fuzzy
|
1881 |
msgid "Already purchased?"
|
1882 |
msgstr "Уже устновлен."
|
1883 |
|
1884 |
#. translators: %s: item type.
|
1885 |
-
#: includes/licensing.php:
|
1886 |
msgid "%s will not get updates until license is reauthorized."
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: includes/licensing.php:
|
1890 |
#, fuzzy
|
1891 |
msgid "Enter License Key here"
|
1892 |
msgstr "Обновить лицензионный ключ"
|
1893 |
|
1894 |
-
#: includes/licensing.php:
|
1895 |
#, fuzzy
|
1896 |
msgid "Authorize"
|
1897 |
msgstr "Активировать шлюз Authorize.net?"
|
1898 |
|
1899 |
-
#: includes/licensing.php:
|
1900 |
#, fuzzy
|
1901 |
msgid "Invalid item ID"
|
1902 |
msgstr "Некорректный номер поля"
|
1903 |
|
1904 |
-
#: includes/licensing.php:
|
1905 |
#, fuzzy
|
1906 |
msgid "No license key provided"
|
1907 |
msgstr "Не указан лицензионный ключ"
|
1908 |
|
1909 |
-
#: includes/licensing.php:
|
1910 |
#, fuzzy
|
1911 |
msgid "License key is invalid"
|
1912 |
msgstr "Лицензионный ключ не правильный"
|
1913 |
|
1914 |
-
#: includes/licensing.php:
|
1915 |
#, fuzzy
|
1916 |
msgid "Deactivation failed"
|
1917 |
msgstr "Деактивация не удалась"
|
1918 |
|
1919 |
-
#: includes/licensing.php:
|
1920 |
#, fuzzy
|
1921 |
msgid "The license key was revoked."
|
1922 |
msgstr "Не указан лицензионный ключ"
|
1923 |
|
1924 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1925 |
-
#: includes/licensing.php:
|
1926 |
msgid ""
|
1927 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1928 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -1930,50 +1931,50 @@ msgid ""
|
|
1930 |
"with your report."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: includes/licensing.php:
|
1934 |
msgid ""
|
1935 |
"It was not possible to establish a connection with the Business Directory "
|
1936 |
"server. The connection failed with the following error:"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: includes/licensing.php:
|
1940 |
msgid ""
|
1941 |
"It was not possible to establish a connection with the Business Directory "
|
1942 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: includes/licensing.php:
|
1946 |
msgid ""
|
1947 |
"It looks like your server is not authorized to make outgoing requests to "
|
1948 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1949 |
"our IP address 52.0.78.177 to your allow list."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: includes/licensing.php:
|
1953 |
#, fuzzy
|
1954 |
msgid "Business Directory license key is missing."
|
1955 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
1956 |
|
1957 |
-
#: includes/licensing.php:
|
1958 |
#, fuzzy
|
1959 |
msgid "Business Directory license key has expired"
|
1960 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
1961 |
|
1962 |
-
#: includes/licensing.php:
|
1963 |
#, fuzzy
|
1964 |
msgid "Could not verify Business Directory license."
|
1965 |
msgstr "Помогите нам улучшить Справочник Услуг"
|
1966 |
|
1967 |
-
#: includes/licensing.php:
|
1968 |
#, fuzzy
|
1969 |
msgid "Review license keys"
|
1970 |
msgstr "Обновить лицензионный ключ"
|
1971 |
|
1972 |
-
#: includes/licensing.php:
|
1973 |
msgid "Missing data. Please reload this page and try again."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: includes/licensing.php:
|
1977 |
#, fuzzy
|
1978 |
msgid "Please enter a license key."
|
1979 |
msgstr "Пожалуйста введите правильный электронный адрес."
|
@@ -2019,12 +2020,12 @@ msgstr "Заброшено"
|
|
2019 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2020 |
msgstr "Файл ZIP - не является файлом темы плагина."
|
2021 |
|
2022 |
-
#: includes/utils.php:
|
2023 |
#, fuzzy
|
2024 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2025 |
msgstr "Размер файла (%s) превышает максимальный размер файла - %s"
|
2026 |
|
2027 |
-
#: includes/utils.php:
|
2028 |
#, fuzzy
|
2029 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2030 |
msgstr "Размер файла (%s) меньше, чем минимальный разрешённый размер - %s"
|
@@ -2381,73 +2382,49 @@ msgstr "Сохранить изменения"
|
|
2381 |
msgid "Add New Listing Fee"
|
2382 |
msgstr "Добавить тариф"
|
2383 |
|
2384 |
-
#: templates/admin/fees-index.tpl.php:
|
2385 |
-
#, fuzzy
|
2386 |
-
msgid "Payments are currently turned off."
|
2387 |
-
msgstr "Платежи на настоящее время отключены."
|
2388 |
-
|
2389 |
-
#. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
|
2390 |
-
#: templates/admin/fees-index.tpl.php:21
|
2391 |
-
#, fuzzy
|
2392 |
-
msgid ""
|
2393 |
-
"To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
|
2394 |
-
"and check the box next to 'Turn On Payments' under 'Payment Settings'."
|
2395 |
-
msgstr ""
|
2396 |
-
"Для управления тарифами Вам надо перейти в раздел <a>Настройки / Оплата</a> "
|
2397 |
-
"и включить параметр \"Включить поддержку платного режима\"."
|
2398 |
-
|
2399 |
-
#: templates/admin/fees-index.tpl.php:34
|
2400 |
#, fuzzy
|
2401 |
msgid "Order fees on the frontend by:"
|
2402 |
msgstr "Сортировать тарифы:"
|
2403 |
|
2404 |
-
#: templates/admin/fees-index.tpl.php:
|
2405 |
#, fuzzy
|
2406 |
msgid "↑ Ascending"
|
2407 |
msgstr "↑ По возрастанию"
|
2408 |
|
2409 |
-
#: templates/admin/fees-index.tpl.php:
|
2410 |
#, fuzzy
|
2411 |
msgid "↓ Descending"
|
2412 |
msgstr "↓ По убыванию"
|
2413 |
|
2414 |
-
#: templates/admin/fees-index.tpl.php:
|
2415 |
#, fuzzy
|
2416 |
msgid "Drag and drop to re-order fees."
|
2417 |
msgstr "Поменяйте порядок тарифов перетаскивая их здесь."
|
2418 |
|
2419 |
-
#. translators: %1$s is directory payment mode (Free or Paid)
|
2420 |
-
#: templates/admin/fees-index.tpl.php:66
|
2421 |
-
msgid "All fee plans may not be available in \"%1$s\" mode."
|
2422 |
-
msgstr ""
|
2423 |
-
|
2424 |
#: templates/admin/fees-index.tpl.php:67
|
2425 |
-
msgid "Paid"
|
2426 |
-
msgstr "Оплачено"
|
2427 |
-
|
2428 |
-
#: templates/admin/fees-index.tpl.php:92
|
2429 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: templates/admin/fees-index.tpl.php:
|
2433 |
msgid "Add a payment gateway to increase conversion rates"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
#. translators: %s: payment gateway name */
|
2437 |
-
#: templates/admin/fees-index.tpl.php:
|
2438 |
msgid "Add the %s gateway as a payment option."
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: templates/admin/fees-index.tpl.php:
|
2442 |
#, fuzzy
|
2443 |
msgid "Upgrade"
|
2444 |
msgstr "Поднять статус до %s"
|
2445 |
|
2446 |
-
#: templates/admin/fees-index.tpl.php:
|
2447 |
msgid "Set up Authorize.net as a payment option."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: templates/admin/fees-index.tpl.php:
|
2451 |
msgid "Set Up"
|
2452 |
msgstr ""
|
2453 |
|
@@ -2481,15 +2458,6 @@ msgstr "Вы уверены, что хотите удалить поле \"%s\"?
|
|
2481 |
msgid "Delete Field"
|
2482 |
msgstr "Удалить поле"
|
2483 |
|
2484 |
-
#: templates/admin/home.tpl.php:55
|
2485 |
-
#, fuzzy
|
2486 |
-
msgid "Manage Options"
|
2487 |
-
msgstr "Настройки"
|
2488 |
-
|
2489 |
-
#: templates/admin/home.tpl.php:74
|
2490 |
-
msgid "Manage Paid Listings"
|
2491 |
-
msgstr "Платные записи"
|
2492 |
-
|
2493 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2494 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2495 |
#: templates/login.tpl.php:71
|
@@ -2808,7 +2776,7 @@ msgstr "Тема обновлена."
|
|
2808 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2809 |
msgstr "Доступна новая версия - <b>%s</b>. <a>Обновите сейчас</a>."
|
2810 |
|
2811 |
-
#: templates/admin/themes-item.tpl.php:
|
2812 |
#, fuzzy
|
2813 |
msgid "Inactive"
|
2814 |
msgstr "Активно:"
|
@@ -3842,7 +3810,13 @@ msgctxt "fees admin"
|
|
3842 |
msgid "Fee \"%s\" deleted."
|
3843 |
msgstr "Тариф удалён."
|
3844 |
|
3845 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3846 |
msgctxt "fees admin"
|
3847 |
msgid "Fee disabled."
|
3848 |
msgstr "Тариф удалён."
|
@@ -3857,34 +3831,34 @@ msgctxt "fees admin"
|
|
3857 |
msgid "fees"
|
3858 |
msgstr "тарифы"
|
3859 |
|
3860 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3861 |
#, fuzzy
|
3862 |
msgctxt "fees admin"
|
3863 |
msgid "Attributes"
|
3864 |
msgstr "Атрибуты"
|
3865 |
|
3866 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3867 |
msgctxt "fees admin"
|
3868 |
msgid "Edit"
|
3869 |
msgstr "Изменить"
|
3870 |
|
3871 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3872 |
msgctxt "fees admin"
|
3873 |
msgid "Variable"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3877 |
#, fuzzy
|
3878 |
msgctxt "fees admin"
|
3879 |
msgid "%1$s + %2$s per category"
|
3880 |
msgstr "Тариф \"%s\" для рубрики \"%s\""
|
3881 |
|
3882 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3883 |
msgctxt "fees admin"
|
3884 |
msgid "Forever"
|
3885 |
msgstr "Вечно"
|
3886 |
|
3887 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3888 |
msgctxt "fees admin"
|
3889 |
msgid "%d day"
|
3890 |
msgid_plural "%d days"
|
@@ -3892,24 +3866,24 @@ msgstr[0] "%d день"
|
|
3892 |
msgstr[1] "%d дней"
|
3893 |
msgstr[2] ""
|
3894 |
|
3895 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3896 |
msgctxt "fees admin"
|
3897 |
msgid "All categories"
|
3898 |
msgstr "Все рубрики"
|
3899 |
|
3900 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3901 |
#, fuzzy
|
3902 |
msgctxt "fees admin"
|
3903 |
msgid "Sticky"
|
3904 |
msgstr "Специальная?"
|
3905 |
|
3906 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3907 |
#, fuzzy
|
3908 |
msgctxt "fees admin"
|
3909 |
msgid "Recurring"
|
3910 |
msgstr "(периодически)"
|
3911 |
|
3912 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3913 |
#, fuzzy
|
3914 |
msgctxt "fees admin"
|
3915 |
msgid "Private"
|
@@ -4094,53 +4068,53 @@ msgctxt "listing status"
|
|
4094 |
msgid "Reported"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#: includes/models/class-listing.php:
|
4098 |
msgctxt "listing status"
|
4099 |
msgid "Unknown"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: includes/models/class-listing.php:
|
4103 |
msgctxt "listing status"
|
4104 |
msgid "Legacy"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: includes/models/class-listing.php:
|
4108 |
#, fuzzy
|
4109 |
msgctxt "listing status"
|
4110 |
msgid "Incomplete"
|
4111 |
msgstr "Завершено"
|
4112 |
|
4113 |
-
#: includes/models/class-listing.php:
|
4114 |
#, fuzzy
|
4115 |
msgctxt "listing status"
|
4116 |
msgid "Pending Payment"
|
4117 |
msgstr "Платёж был заброшен."
|
4118 |
|
4119 |
-
#: includes/models/class-listing.php:
|
4120 |
#, fuzzy
|
4121 |
msgctxt "listing status"
|
4122 |
msgid "Complete"
|
4123 |
msgstr "Завершено"
|
4124 |
|
4125 |
-
#: includes/models/class-listing.php:
|
4126 |
#, fuzzy
|
4127 |
msgctxt "listing status"
|
4128 |
msgid "Pending Upgrade"
|
4129 |
msgstr "Ожидается подтверждение"
|
4130 |
|
4131 |
-
#: includes/models/class-listing.php:
|
4132 |
#, fuzzy
|
4133 |
msgctxt "listing status"
|
4134 |
msgid "Expired"
|
4135 |
msgstr "Истекло"
|
4136 |
|
4137 |
-
#: includes/models/class-listing.php:
|
4138 |
#, fuzzy
|
4139 |
msgctxt "listing status"
|
4140 |
msgid "Pending Renewal"
|
4141 |
msgstr "Активные + ожидающие продление"
|
4142 |
|
4143 |
-
#: includes/models/class-listing.php:
|
4144 |
#, fuzzy
|
4145 |
msgctxt "listing status"
|
4146 |
msgid "Abandoned"
|
@@ -4808,13 +4782,13 @@ msgid "Author"
|
|
4808 |
msgstr "По автору"
|
4809 |
|
4810 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4811 |
-
#: includes/helpers/functions/general.php:
|
4812 |
msgctxt "admin settings"
|
4813 |
msgid "Date posted"
|
4814 |
msgstr "По дате публикации"
|
4815 |
|
4816 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4817 |
-
#: includes/helpers/functions/general.php:
|
4818 |
msgctxt "admin settings"
|
4819 |
msgid "Date last modified"
|
4820 |
msgstr "По дате изменения"
|
@@ -4989,28 +4963,28 @@ msgctxt "admin settings"
|
|
4989 |
msgid "U.S. Dollar (USD)"
|
4990 |
msgstr "USD - Доллар США"
|
4991 |
|
4992 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4993 |
msgctxt "admin settings"
|
4994 |
msgid "Show currency symbol on the left"
|
4995 |
msgstr "Слева"
|
4996 |
|
4997 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4998 |
msgctxt "admin settings"
|
4999 |
msgid "Show currency symbol on the right"
|
5000 |
msgstr "Справа"
|
5001 |
|
5002 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5003 |
msgctxt "admin settings"
|
5004 |
msgid "Do not show currency symbol"
|
5005 |
msgstr "Не показывать"
|
5006 |
|
5007 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5008 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5009 |
msgctxt "admin settings"
|
5010 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5014 |
#, fuzzy
|
5015 |
msgctxt "admin settings"
|
5016 |
msgid ""
|
@@ -5021,122 +4995,122 @@ msgstr ""
|
|
5021 |
"помечаются как неоплаченные. В разделе <a>Оповещения об оплате</a> Вы можете "
|
5022 |
"настроить текст электронного письма, отправляемого автору как напоминание."
|
5023 |
|
5024 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5025 |
msgctxt "admin settings"
|
5026 |
msgid "Try listing's email field first, then author's email."
|
5027 |
msgstr ""
|
5028 |
|
5029 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5030 |
msgctxt "admin settings"
|
5031 |
msgid "Try author's email first and then listing's email field."
|
5032 |
msgstr ""
|
5033 |
|
5034 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5035 |
msgctxt "admin settings"
|
5036 |
msgid "Plain (text/plain)"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5040 |
msgctxt "admin settings"
|
5041 |
msgid "HTML (text/html)"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5045 |
msgctxt "admin settings"
|
5046 |
msgid "Both (multipart/alternative)"
|
5047 |
msgstr ""
|
5048 |
|
5049 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5050 |
msgctxt "admin settings"
|
5051 |
msgid "A new listing is submitted."
|
5052 |
msgstr "Добавлена новая запись"
|
5053 |
|
5054 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5055 |
msgctxt "admin settings"
|
5056 |
msgid "A listing is edited."
|
5057 |
msgstr "Запись была изменена"
|
5058 |
|
5059 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5060 |
msgctxt "admin settings"
|
5061 |
msgid "A listing expires."
|
5062 |
msgstr "Срок действия записи истёк"
|
5063 |
|
5064 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5065 |
#, fuzzy
|
5066 |
msgctxt "admin settings"
|
5067 |
msgid "A listing is renewed."
|
5068 |
msgstr "Запись была изменена"
|
5069 |
|
5070 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5071 |
#, fuzzy
|
5072 |
msgctxt "admin settings"
|
5073 |
msgid "A listing payment is completed."
|
5074 |
msgstr "Запись была изменена"
|
5075 |
|
5076 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5077 |
#, fuzzy
|
5078 |
msgctxt "admin settings"
|
5079 |
msgid "A listing has been reported as inappropriate."
|
5080 |
msgstr "Статус записи был поднят."
|
5081 |
|
5082 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5083 |
msgctxt "admin settings"
|
5084 |
msgid "A contact message is sent to a listing's owner."
|
5085 |
msgstr "Автору было отправлено сообщение через контактную форму"
|
5086 |
|
5087 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5088 |
msgctxt "admin settings"
|
5089 |
msgid "Their listing is submitted."
|
5090 |
msgstr "Их запись попала в базу данных"
|
5091 |
|
5092 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5093 |
msgctxt "admin settings"
|
5094 |
msgid "Their listing is approved/published."
|
5095 |
msgstr "Их запись была утверждена или опубликована"
|
5096 |
|
5097 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5098 |
#, fuzzy
|
5099 |
msgctxt "admin settings"
|
5100 |
msgid "A payment for their listing is completed."
|
5101 |
msgstr "Их запись попала в базу данных"
|
5102 |
|
5103 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5104 |
#, fuzzy
|
5105 |
msgctxt "admin settings"
|
5106 |
msgid "Their listing expired or is about to expire."
|
5107 |
msgstr "Их запись попала в базу данных"
|
5108 |
|
5109 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5110 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5111 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5112 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5113 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5114 |
msgctxt "admin settings"
|
5115 |
msgid "Listing's title"
|
5116 |
msgstr "Название записи"
|
5117 |
|
5118 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5119 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5120 |
#, fuzzy
|
5121 |
msgctxt "admin settings"
|
5122 |
msgid "Listing's fee plan name"
|
5123 |
msgstr "Дата окончания срока действия"
|
5124 |
|
5125 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5126 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5127 |
#, fuzzy
|
5128 |
msgctxt "admin settings"
|
5129 |
msgid "Listing's fee plan description"
|
5130 |
msgstr "Выбрать тариф для записи"
|
5131 |
|
5132 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5133 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5134 |
#, fuzzy
|
5135 |
msgctxt "admin settings"
|
5136 |
msgid "Listing's fee plan details"
|
5137 |
msgstr "Дата окончания срока действия"
|
5138 |
|
5139 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5140 |
msgctxt "admin settings"
|
5141 |
msgid ""
|
5142 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
@@ -5145,70 +5119,70 @@ msgstr ""
|
|
5145 |
"Ваша запись \"[listing]\" была опубликована по адресу [listing-url], и стала "
|
5146 |
"доступна всем посетителям сайта."
|
5147 |
|
5148 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5149 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5150 |
msgctxt "admin settings"
|
5151 |
msgid "Listing's URL"
|
5152 |
msgstr "Адрес URL записи"
|
5153 |
|
5154 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5155 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5156 |
#, fuzzy
|
5157 |
msgctxt "admin settings"
|
5158 |
msgid "Listing's Access Key"
|
5159 |
msgstr "Поля и Изображения записи"
|
5160 |
|
5161 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5162 |
#, fuzzy
|
5163 |
msgctxt "admin settings"
|
5164 |
msgid "Sender's name"
|
5165 |
msgstr "Имя автора"
|
5166 |
|
5167 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5168 |
#, fuzzy
|
5169 |
msgctxt "admin settings"
|
5170 |
msgid "Contact message"
|
5171 |
msgstr "Получено сообщение через контактную форму"
|
5172 |
|
5173 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5174 |
msgctxt "admin settings"
|
5175 |
msgid "Date and time the message was sent"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5179 |
#, fuzzy
|
5180 |
msgctxt "admin settings"
|
5181 |
msgid "Payment items details."
|
5182 |
msgstr "Детали платежа"
|
5183 |
|
5184 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5185 |
msgctxt "admin settings"
|
5186 |
msgid "URL where user can review and print payment receipt."
|
5187 |
msgstr ""
|
5188 |
|
5189 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5190 |
#, fuzzy
|
5191 |
msgctxt "admin settings"
|
5192 |
msgid "Gateway used to process listing's payment."
|
5193 |
msgstr "Не удалось провести платёж."
|
5194 |
|
5195 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5196 |
msgctxt "admin settings"
|
5197 |
msgid "Checkout URL link"
|
5198 |
msgstr "Адрес URL страницы оплаты"
|
5199 |
|
5200 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5201 |
#, fuzzy
|
5202 |
msgctxt "admin settings"
|
5203 |
msgid "Uploaded Image (no resize)"
|
5204 |
msgstr "Загрузить изображение"
|
5205 |
|
5206 |
-
#: includes/helpers/functions/general.php:
|
5207 |
msgctxt "admin settings"
|
5208 |
msgid "User"
|
5209 |
msgstr ""
|
5210 |
|
5211 |
-
#: includes/helpers/functions/general.php:
|
5212 |
msgctxt "admin settings"
|
5213 |
msgid "User registration date"
|
5214 |
msgstr "Дата окончания срока действия"
|
@@ -5452,7 +5426,7 @@ msgstr "Записи"
|
|
5452 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5453 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5454 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5455 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5456 |
#: includes/admin/settings/class-settings.php:341
|
5457 |
#, fuzzy
|
5458 |
msgctxt "settings"
|
@@ -6138,19 +6112,13 @@ msgctxt "settings"
|
|
6138 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6142 |
#, fuzzy
|
6143 |
msgctxt "settings"
|
6144 |
msgid "Fee Order"
|
6145 |
msgstr "Порядок"
|
6146 |
|
6147 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6148 |
-
#, fuzzy
|
6149 |
-
msgctxt "settings"
|
6150 |
-
msgid "Turn On payments?"
|
6151 |
-
msgstr "Включить поддержку платного режима?"
|
6152 |
-
|
6153 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1144
|
6154 |
#, fuzzy
|
6155 |
msgctxt "settings"
|
6156 |
msgid "Put payment gateways in test mode?"
|
@@ -6162,48 +6130,48 @@ msgctxt "settings"
|
|
6162 |
msgid "Currency Code"
|
6163 |
msgstr "Код валюты"
|
6164 |
|
6165 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6166 |
#, fuzzy
|
6167 |
msgctxt "settings"
|
6168 |
msgid "Currency Symbol"
|
6169 |
msgstr "Символ валюты"
|
6170 |
|
6171 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6172 |
#, fuzzy
|
6173 |
msgctxt "settings"
|
6174 |
msgid "Currency symbol display"
|
6175 |
msgstr "Показывать символ валюты"
|
6176 |
|
6177 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6178 |
msgctxt "settings"
|
6179 |
msgid "Include fee description in receipt?"
|
6180 |
msgstr ""
|
6181 |
|
6182 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6183 |
#, fuzzy
|
6184 |
msgctxt "settings"
|
6185 |
msgid "Thank you for payment message"
|
6186 |
msgstr "Сообщение \"спасибо за оплату\""
|
6187 |
|
6188 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6189 |
#, fuzzy
|
6190 |
msgctxt "settings"
|
6191 |
msgid "Ask users to come back for abandoned payments?"
|
6192 |
msgstr "Просить авторов вернуться к неоплаченным записям?"
|
6193 |
|
6194 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6195 |
#, fuzzy
|
6196 |
msgctxt "settings"
|
6197 |
msgid "Listing abandonment threshold (hours)"
|
6198 |
msgstr "Когда запись помечается как неоплаченная (в часах)"
|
6199 |
|
6200 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6201 |
#, fuzzy
|
6202 |
msgctxt "settings"
|
6203 |
msgid "Display email address fields publicly?"
|
6204 |
msgstr "Показывать адреса электронной почты на сайте?"
|
6205 |
|
6206 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6207 |
#, fuzzy
|
6208 |
msgctxt "settings"
|
6209 |
msgid ""
|
@@ -6215,13 +6183,13 @@ msgstr ""
|
|
6215 |
"РЕКОМЕНДУЕТСЯ ДЕЛАТЬ, так как может вызвать поток спама в почтовые ящики "
|
6216 |
"авторов."
|
6217 |
|
6218 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6219 |
#, fuzzy
|
6220 |
msgctxt "settings"
|
6221 |
msgid "How to determine the listing's email address?"
|
6222 |
msgstr "Нахождение адреса электронной почты автора"
|
6223 |
|
6224 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6225 |
#, fuzzy
|
6226 |
msgctxt "settings"
|
6227 |
msgid ""
|
@@ -6232,12 +6200,12 @@ msgstr ""
|
|
6232 |
"отправке сообщений, полученных через контактную форму, или оповещений об "
|
6233 |
"окончании срока действия."
|
6234 |
|
6235 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6236 |
msgctxt "settings"
|
6237 |
msgid "Email Content-Type header"
|
6238 |
msgstr ""
|
6239 |
|
6240 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6241 |
msgctxt "settings"
|
6242 |
msgid ""
|
6243 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -6246,31 +6214,31 @@ msgid ""
|
|
6246 |
"then \"Both\"."
|
6247 |
msgstr ""
|
6248 |
|
6249 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6250 |
#, fuzzy
|
6251 |
msgctxt "settings"
|
6252 |
msgid "Templates"
|
6253 |
msgstr "Шаблоны электронных писем"
|
6254 |
|
6255 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6256 |
#, fuzzy
|
6257 |
msgctxt "settings"
|
6258 |
msgid "Email confirmation message"
|
6259 |
msgstr "Подтверждение получения записи"
|
6260 |
|
6261 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6262 |
#, fuzzy
|
6263 |
msgctxt "settings"
|
6264 |
msgid "Sent after a listing has been submitted."
|
6265 |
msgstr "Посылается как только новая запись была помещена в базу данных."
|
6266 |
|
6267 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6268 |
#, fuzzy
|
6269 |
msgctxt "settings"
|
6270 |
msgid "Listing published message"
|
6271 |
msgstr "Подтверждение опубликования записи"
|
6272 |
|
6273 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6274 |
#, fuzzy
|
6275 |
msgctxt "settings"
|
6276 |
msgid "Sent when the listing has been published or approved by an admin."
|
@@ -6278,13 +6246,13 @@ msgstr ""
|
|
6278 |
"Посылается как только новая запись была утверждена администрацией и/или "
|
6279 |
"опубликована."
|
6280 |
|
6281 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6282 |
#, fuzzy
|
6283 |
msgctxt "settings"
|
6284 |
msgid "Listing Contact Message"
|
6285 |
msgstr "Получено сообщение через контактную форму"
|
6286 |
|
6287 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6288 |
#, fuzzy
|
6289 |
msgctxt "settings"
|
6290 |
msgid ""
|
@@ -6294,13 +6262,13 @@ msgstr ""
|
|
6294 |
"Посылается когда кто-нибудь использовал контактную форму для отправки "
|
6295 |
"сообщения автору записи."
|
6296 |
|
6297 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6298 |
#, fuzzy
|
6299 |
msgctxt "settings"
|
6300 |
msgid "Payment completed message"
|
6301 |
msgstr "Напоминание о пропущенном платеже"
|
6302 |
|
6303 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6304 |
#, fuzzy
|
6305 |
msgctxt "settings"
|
6306 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
@@ -6308,13 +6276,13 @@ msgstr ""
|
|
6308 |
"Отправляется через некоторое время после того, как оплата за продление "
|
6309 |
"записи не была получена от автора."
|
6310 |
|
6311 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6312 |
#, fuzzy
|
6313 |
msgctxt "settings"
|
6314 |
msgid "Payment abandoned reminder message"
|
6315 |
msgstr "Напоминание о пропущенном платеже"
|
6316 |
|
6317 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6318 |
msgctxt "settings"
|
6319 |
msgid "Cropped"
|
6320 |
msgstr ""
|
@@ -6330,18 +6298,18 @@ msgctxt "settings"
|
|
6330 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6331 |
msgstr ""
|
6332 |
|
6333 |
-
#: includes/licensing.php:
|
6334 |
#, fuzzy
|
6335 |
msgctxt "settings"
|
6336 |
msgid "Themes"
|
6337 |
msgstr "Темы"
|
6338 |
|
6339 |
-
#: includes/licensing.php:
|
6340 |
msgctxt "settings"
|
6341 |
msgid "Please wait..."
|
6342 |
msgstr ""
|
6343 |
|
6344 |
-
#: includes/licensing.php:
|
6345 |
#, fuzzy
|
6346 |
msgctxt "settings"
|
6347 |
msgid "Deauthorize"
|
@@ -6395,28 +6363,28 @@ msgctxt "themes"
|
|
6395 |
msgid "Could not delete theme directory. Check permissions."
|
6396 |
msgstr "Не удалось удалить директорию темы - проверьте права доступа к файлам."
|
6397 |
|
6398 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6399 |
msgctxt "themes"
|
6400 |
msgid "Please upload a valid theme file."
|
6401 |
msgstr "Пожалуйста загрузите корректный файл темы."
|
6402 |
|
6403 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6404 |
msgctxt "themes"
|
6405 |
msgid "Could not move \"%s\" to a temporary directory."
|
6406 |
msgstr "Не удалось перемести \"%s\" во временную директорию."
|
6407 |
|
6408 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6409 |
msgctxt "themes"
|
6410 |
msgid "Activate your <a>license key</a> to use this theme."
|
6411 |
msgstr ""
|
6412 |
|
6413 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6414 |
#, fuzzy
|
6415 |
msgctxt "themes"
|
6416 |
msgid "Invalid theme ID"
|
6417 |
msgstr "Некорректный номер поля"
|
6418 |
|
6419 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6420 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6421 |
msgctxt "themes"
|
6422 |
msgid "Could not update theme: %s"
|
@@ -6858,24 +6826,24 @@ msgid "Trash"
|
|
6858 |
msgstr ""
|
6859 |
|
6860 |
#. translators: %s: url shortcode
|
6861 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6862 |
msgctxt "contact email"
|
6863 |
msgid "You have received a reply from your listing at %s."
|
6864 |
msgstr "Вы получили сообщение для вашего бизнеса через Справочник Услуг (%s)."
|
6865 |
|
6866 |
#. translators: %s: name shortcode
|
6867 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6868 |
msgctxt "contact email"
|
6869 |
msgid "Name: %s"
|
6870 |
msgstr "Имя: %s"
|
6871 |
|
6872 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6873 |
msgctxt "contact email"
|
6874 |
msgid "Message:"
|
6875 |
msgstr "Сообщение:"
|
6876 |
|
6877 |
#. translators: %s: date shortcode
|
6878 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6879 |
msgctxt "contact email"
|
6880 |
msgid "Time: %s"
|
6881 |
msgstr "Время: %s"
|
@@ -7180,37 +7148,37 @@ msgctxt "listing"
|
|
7180 |
msgid "Add New Listing"
|
7181 |
msgstr "Добавить запись"
|
7182 |
|
7183 |
-
#: includes/models/class-listing.php:
|
7184 |
#, fuzzy
|
7185 |
msgctxt "listing"
|
7186 |
msgid "Listing has no registered payments"
|
7187 |
msgstr "Дата окончания срока действия"
|
7188 |
|
7189 |
-
#: includes/models/class-listing.php:
|
7190 |
#, fuzzy
|
7191 |
msgctxt "listing"
|
7192 |
msgid "Can't delete payment"
|
7193 |
msgstr "Отказать в платеже"
|
7194 |
|
7195 |
-
#: includes/models/class-listing.php:
|
7196 |
#, fuzzy
|
7197 |
msgctxt "listing"
|
7198 |
msgid "Listing expired"
|
7199 |
msgstr "Срок действия записи истёк"
|
7200 |
|
7201 |
-
#: includes/models/class-listing.php:
|
7202 |
#, fuzzy
|
7203 |
msgctxt "listing"
|
7204 |
msgid "(Unavailable Plan)"
|
7205 |
msgstr "(Тариф недоступен)"
|
7206 |
|
7207 |
-
#: includes/models/class-listing.php:
|
7208 |
#, fuzzy
|
7209 |
msgctxt "listing"
|
7210 |
msgid "Plan \"%s\" (recurring)"
|
7211 |
msgstr "(периодически)"
|
7212 |
|
7213 |
-
#: includes/models/class-listing.php:
|
7214 |
msgctxt "listing"
|
7215 |
msgid "Plan \"%s\""
|
7216 |
msgstr ""
|
@@ -7348,7 +7316,7 @@ msgctxt "payment-gateways"
|
|
7348 |
msgid "Enable %s?"
|
7349 |
msgstr "Показать строку сортировки?"
|
7350 |
|
7351 |
-
#: includes/class-payment-gateways.php:
|
7352 |
#, fuzzy
|
7353 |
msgctxt "payment-gateways"
|
7354 |
msgid ""
|
@@ -7359,26 +7327,11 @@ msgstr ""
|
|
7359 |
"воспользоваться пока не будет устранена следующие проблемы: <b>%s</b>. <br/> "
|
7360 |
"Проверьте <a href=\"%s\">настройки платежей</a>."
|
7361 |
|
7362 |
-
#: includes/class-payment-gateways.php:
|
7363 |
msgctxt "payment-gateways"
|
7364 |
msgid "Please check the <link>payment settings</link>."
|
7365 |
msgstr ""
|
7366 |
|
7367 |
-
#: includes/class-payment-gateways.php:142
|
7368 |
-
#, fuzzy
|
7369 |
-
msgctxt "payment-gateways"
|
7370 |
-
msgid ""
|
7371 |
-
"You have payments turned on but no gateway is active and properly "
|
7372 |
-
"configured. Go to <link>Manage Options - Payment</link> to change the "
|
7373 |
-
"payment settings. Until you change this, the directory will operate in "
|
7374 |
-
"<i>Free Mode</i>."
|
7375 |
-
msgstr ""
|
7376 |
-
"В настройках включен платный режим, но платёжные шлюзы не активированы, или "
|
7377 |
-
"настроены не правильно. Перейдите в раздел <a href=\"%s\">Управление "
|
7378 |
-
"Справочником - Тарифы</a> и настройте параметры платежей. Пока настройки не "
|
7379 |
-
"будут правильно сделаны, этот плагин будет работать в <i>Бесплатном Режиме</"
|
7380 |
-
"i>."
|
7381 |
-
|
7382 |
#: includes/class-recaptcha.php:32
|
7383 |
msgctxt "recaptcha"
|
7384 |
msgid "The reCAPTCHA wasn't entered correctly."
|
@@ -7605,34 +7558,34 @@ msgstr ""
|
|
7605 |
"показаны посетителям сайта. Если Вы хотите изменить такое поведение, "
|
7606 |
"перейдите в <a>Настройки</a> и отключите этот параметр."
|
7607 |
|
7608 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7609 |
msgctxt "templates"
|
7610 |
msgid ""
|
7611 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7612 |
"Submission?\" setting checked?"
|
7613 |
msgstr ""
|
7614 |
|
7615 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7616 |
msgctxt "templates"
|
7617 |
msgid ""
|
7618 |
"Listing submission has been disabled. Contact the administrator for details."
|
7619 |
msgstr ""
|
7620 |
|
7621 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7622 |
msgctxt "templates"
|
7623 |
msgid ""
|
7624 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7625 |
"submit a listing. %s to create a fee plan"
|
7626 |
msgstr ""
|
7627 |
|
7628 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7629 |
msgctxt "templates"
|
7630 |
msgid ""
|
7631 |
"Listing submission is not available at the moment. Contact the administrator "
|
7632 |
"for details."
|
7633 |
msgstr ""
|
7634 |
|
7635 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7636 |
msgctxt "templates"
|
7637 |
msgid ""
|
7638 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -7640,18 +7593,18 @@ msgid ""
|
|
7640 |
"an existing field"
|
7641 |
msgstr ""
|
7642 |
|
7643 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7644 |
msgctxt "templates"
|
7645 |
msgid "Please agree to the Terms and Conditions."
|
7646 |
msgstr "Пожалуйста примите наши Условия и Положения."
|
7647 |
|
7648 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7649 |
#, fuzzy
|
7650 |
msgctxt "templates"
|
7651 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7652 |
msgstr "Я согласен с Условиями и Положениями"
|
7653 |
|
7654 |
-
#: includes/helpers/functions/general.php:
|
7655 |
#, fuzzy
|
7656 |
msgctxt "templates"
|
7657 |
msgid "Return to results"
|
@@ -8001,7 +7954,7 @@ msgctxt "submit listing"
|
|
8001 |
msgid "You can't edit this listing."
|
8002 |
msgstr "Рубрики этой записи"
|
8003 |
|
8004 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8005 |
msgctxt "submit listing"
|
8006 |
msgid ""
|
8007 |
"This listing can't be edited at this time because it has no fee plan "
|
@@ -8009,32 +7962,32 @@ msgid ""
|
|
8009 |
"to a fee plan."
|
8010 |
msgstr ""
|
8011 |
|
8012 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8013 |
msgctxt "submit listing"
|
8014 |
msgid ""
|
8015 |
"This listing can't be edited at this time. Please try again later or contact "
|
8016 |
"the admin if the problem persists."
|
8017 |
msgstr ""
|
8018 |
|
8019 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8020 |
#, fuzzy
|
8021 |
msgctxt "submit listing"
|
8022 |
msgid "You're logged in as admin, payment will be skipped."
|
8023 |
msgstr "Вы вошли на сайт как Администратор. Все шаги оплаты будут пропущены."
|
8024 |
|
8025 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8026 |
#, fuzzy
|
8027 |
msgctxt "submit listing"
|
8028 |
msgid "Category selection"
|
8029 |
msgstr "Выбор рубрики"
|
8030 |
|
8031 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8032 |
#, fuzzy
|
8033 |
msgctxt "submit listing"
|
8034 |
msgid "Category & plan selection"
|
8035 |
msgstr "Выбор рубрики"
|
8036 |
|
8037 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8038 |
#, fuzzy
|
8039 |
msgctxt "submit listing"
|
8040 |
msgid "Can not submit a listing at this moment. Please try again later."
|
@@ -8042,42 +7995,42 @@ msgstr ""
|
|
8042 |
"В настоящее время вы не можем провести Вашу оплату. Попробуйте позже "
|
8043 |
"пожалуйста."
|
8044 |
|
8045 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8046 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8047 |
#, fuzzy
|
8048 |
msgctxt "submit listing"
|
8049 |
msgid "Please select a category."
|
8050 |
msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
|
8051 |
|
8052 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8053 |
msgctxt "submit listing"
|
8054 |
msgid "Please choose a valid category for your plan."
|
8055 |
msgstr ""
|
8056 |
|
8057 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8058 |
#, fuzzy
|
8059 |
msgctxt "submit listing"
|
8060 |
msgid "Please choose a valid fee plan for your category selection."
|
8061 |
msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
|
8062 |
|
8063 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8064 |
#, fuzzy
|
8065 |
msgctxt "submit listing"
|
8066 |
msgid "Please enter your desired username."
|
8067 |
msgstr "Пожалуйста введите Ваше имя."
|
8068 |
|
8069 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8070 |
#, fuzzy
|
8071 |
msgctxt "submit listing"
|
8072 |
msgid "Please enter the e-mail for your new account."
|
8073 |
msgstr "Пожалуйста введите Ваше имя."
|
8074 |
|
8075 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8076 |
msgctxt "submit listing"
|
8077 |
msgid "The username you chose is already in use. Please use a different one."
|
8078 |
msgstr ""
|
8079 |
|
8080 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8081 |
msgctxt "submit listing"
|
8082 |
msgid "The e-mail address you chose for your account is already in use."
|
8083 |
msgstr ""
|
@@ -8087,7 +8040,7 @@ msgctxt "submit listing"
|
|
8087 |
msgid "Listing submitted by admin. Payment skipped."
|
8088 |
msgstr ""
|
8089 |
|
8090 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8091 |
msgctxt "listing submit"
|
8092 |
msgid ""
|
8093 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8410,19 +8363,19 @@ msgctxt "default category name"
|
|
8410 |
msgid "General"
|
8411 |
msgstr "Основное"
|
8412 |
|
8413 |
-
#: includes/licensing.php:
|
8414 |
msgctxt "licensing"
|
8415 |
msgid "Could not contact licensing server"
|
8416 |
msgstr "Не удалось связаться с сервером лицензий"
|
8417 |
|
8418 |
-
#: includes/licensing.php:
|
8419 |
msgctxt "licensing"
|
8420 |
msgid ""
|
8421 |
"It was not possible to establish a connection with Business Directory's "
|
8422 |
"server. cURL was not found in your system"
|
8423 |
msgstr ""
|
8424 |
|
8425 |
-
#: includes/licensing.php:
|
8426 |
msgctxt "licensing"
|
8427 |
msgid ""
|
8428 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8431,7 +8384,7 @@ msgid ""
|
|
8431 |
"1.0.1c)."
|
8432 |
msgstr ""
|
8433 |
|
8434 |
-
#: includes/licensing.php:
|
8435 |
msgctxt "licensing"
|
8436 |
msgid ""
|
8437 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8439,47 +8392,47 @@ msgid ""
|
|
8439 |
"services using the latest security standards."
|
8440 |
msgstr ""
|
8441 |
|
8442 |
-
#: includes/licensing.php:
|
8443 |
msgctxt "licensing"
|
8444 |
msgid ""
|
8445 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8446 |
"Include this message if necessary"
|
8447 |
msgstr ""
|
8448 |
|
8449 |
-
#: includes/licensing.php:
|
8450 |
msgctxt "licensing"
|
8451 |
msgid ""
|
8452 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8453 |
"Include this message if necessary."
|
8454 |
msgstr ""
|
8455 |
|
8456 |
-
#: includes/licensing.php:
|
8457 |
msgctxt "licensing"
|
8458 |
msgid "The server returned a 403 Forbidden error."
|
8459 |
msgstr ""
|
8460 |
|
8461 |
-
#: includes/licensing.php:
|
8462 |
msgctxt "licensing"
|
8463 |
msgid "Could not activate license: %s."
|
8464 |
msgstr "Не удалось активировать лицензию: %s."
|
8465 |
|
8466 |
-
#: includes/licensing.php:
|
8467 |
msgctxt "licensing"
|
8468 |
msgid "License activated"
|
8469 |
msgstr "Лицензия активирована"
|
8470 |
|
8471 |
-
#: includes/licensing.php:
|
8472 |
msgctxt "licensing"
|
8473 |
msgid "Could not deactivate license: %s."
|
8474 |
msgstr "Не удалось деактивировать лицензию: %s."
|
8475 |
|
8476 |
-
#: includes/licensing.php:
|
8477 |
msgctxt "licensing"
|
8478 |
msgid "License deactivated"
|
8479 |
msgstr "Лицензия была деактивирована."
|
8480 |
|
8481 |
#. translators: "<module-name>" version <version-number> is not...
|
8482 |
-
#: includes/licensing.php:
|
8483 |
msgctxt "deprecation"
|
8484 |
msgid ""
|
8485 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8501,17 +8454,17 @@ msgstr[0] "Разрешено изображений"
|
|
8501 |
msgstr[1] "Разрешено изображений"
|
8502 |
msgstr[2] "Разрешено изображений"
|
8503 |
|
8504 |
-
#: includes/models/class-fee-plan.php:
|
8505 |
msgctxt "fees-api"
|
8506 |
msgid "Fee label is required."
|
8507 |
msgstr "Название тарифа обязательна."
|
8508 |
|
8509 |
-
#: includes/models/class-fee-plan.php:
|
8510 |
msgctxt "fees-api"
|
8511 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8512 |
msgstr "Срок действия тарифа должен быть меньше 10 лет (3650 дней)."
|
8513 |
|
8514 |
-
#: includes/models/class-fee-plan.php:
|
8515 |
msgctxt "fees-api"
|
8516 |
msgid ""
|
8517 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
@@ -8519,7 +8472,7 @@ msgid ""
|
|
8519 |
"<a>fee plan</a> appropriately."
|
8520 |
msgstr ""
|
8521 |
|
8522 |
-
#: includes/models/class-fee-plan.php:
|
8523 |
msgctxt "fees-api"
|
8524 |
msgid ""
|
8525 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
@@ -8598,17 +8551,17 @@ msgctxt "utils"
|
|
8598 |
msgid "Unkown error while uploading file."
|
8599 |
msgstr "Неизвестная ошибка при загрузке файла."
|
8600 |
|
8601 |
-
#: includes/utils.php:
|
8602 |
msgctxt "utils"
|
8603 |
msgid "Error while uploading file"
|
8604 |
msgstr "Ошибка при загрузке файла"
|
8605 |
|
8606 |
-
#: includes/utils.php:
|
8607 |
msgctxt "utils"
|
8608 |
msgid "File type \"%s\" is not allowed"
|
8609 |
msgstr "Файл типа \"%s\" не допускается к загрузке"
|
8610 |
|
8611 |
-
#: includes/utils.php:
|
8612 |
msgctxt "utils"
|
8613 |
msgid ""
|
8614 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8716,49 +8669,6 @@ msgctxt "admin forms"
|
|
8716 |
msgid "required"
|
8717 |
msgstr "обязательно"
|
8718 |
|
8719 |
-
#: templates/admin/home.tpl.php:12
|
8720 |
-
msgctxt "admin home"
|
8721 |
-
msgid "Welcome to Business Directory Plugin. You are using %s."
|
8722 |
-
msgstr ""
|
8723 |
-
"Добро пожаловать в Справочник Услуг. На Вашем сайте установлена версия %s."
|
8724 |
-
|
8725 |
-
#: templates/admin/home.tpl.php:15
|
8726 |
-
msgctxt "admin home"
|
8727 |
-
msgid ""
|
8728 |
-
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
8729 |
-
"let's jump right in!"
|
8730 |
-
msgstr ""
|
8731 |
-
"Спасибо за то, что Вы выбрали наш плагин. Скорее всего есть много вещей, "
|
8732 |
-
"которые Вы хотите сделать с этим плагином, и потому - давайте приступим к "
|
8733 |
-
"делам прямо сейчас!"
|
8734 |
-
|
8735 |
-
#: templates/admin/home.tpl.php:28
|
8736 |
-
msgctxt "admin home"
|
8737 |
-
msgid ""
|
8738 |
-
"Our complete documentation is <a>here</a> which we encourage you to use "
|
8739 |
-
"while setting things up."
|
8740 |
-
msgstr ""
|
8741 |
-
"Полна документация по плагину доступна на <a>этой странице</a>, и мы "
|
8742 |
-
"рекомендуем Вам держать её открытой пока Вы всё настраиваете."
|
8743 |
-
|
8744 |
-
#: templates/admin/home.tpl.php:36
|
8745 |
-
msgctxt "admin home"
|
8746 |
-
msgid ""
|
8747 |
-
"We have some quick-start scenarios that you will find useful regarding setup "
|
8748 |
-
"and configuration <a>here</a>."
|
8749 |
-
msgstr ""
|
8750 |
-
"Также у нас есть <a>несколько примеров сценариев</a>, которым могут "
|
8751 |
-
"оказаться Вам полезными с точки зрения настроек."
|
8752 |
-
|
8753 |
-
#: templates/admin/home.tpl.php:45
|
8754 |
-
msgctxt "admin home"
|
8755 |
-
msgid ""
|
8756 |
-
"If you have questions, please post a comment on <a>support forum</a> and "
|
8757 |
-
"we'll answer it within 24 hours most days."
|
8758 |
-
msgstr ""
|
8759 |
-
"А если у Вас появятся вопросы, то Вы можете задать из на нашем <a>форуме "
|
8760 |
-
"поддержки</a>, и мы обычно отвечаем на них в течение суток."
|
8761 |
-
|
8762 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8763 |
#, fuzzy
|
8764 |
msgctxt "admin infometabox"
|
@@ -9048,6 +8958,48 @@ msgctxt "send-access-keys"
|
|
9048 |
msgid "Continue"
|
9049 |
msgstr "Далее"
|
9050 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9051 |
#, fuzzy
|
9052 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
9053 |
#~ msgstr ""
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2022-02-02 19:38:07+00:00\n"
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
|
9 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
98 |
msgid "Directory"
|
99 |
msgstr "Все рубрики"
|
100 |
|
101 |
+
#: includes/admin/class-admin.php:312
|
102 |
msgid "Fee Plans"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: includes/admin/class-admin.php:315
|
106 |
#, fuzzy
|
107 |
msgid "Form Fields"
|
108 |
msgstr "поля формы"
|
109 |
|
110 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
111 |
+
#: includes/licensing.php:227
|
112 |
#, fuzzy
|
113 |
msgid "Modules"
|
114 |
msgstr "Установленные модули:"
|
238 |
msgstr "Стоимость"
|
239 |
|
240 |
#: includes/admin/controllers/class-admin-fees.php:49
|
241 |
+
#: includes/admin/helpers/tables/class-fees-table.php:65
|
242 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
243 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
244 |
#, fuzzy
|
276 |
msgstr "Тариф сохранён."
|
277 |
|
278 |
#: includes/admin/controllers/class-admin-listings.php:185
|
279 |
+
#: includes/controllers/pages/class-submit-listing.php:518
|
280 |
#: templates/email/listing-reported.tpl.php:7
|
281 |
msgid "Listing Information"
|
282 |
msgstr "Информация о бизнесе"
|
329 |
"позвольте плагину сделать это автоматически."
|
330 |
|
331 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
332 |
+
#: includes/controllers/pages/class-submit-listing.php:848
|
333 |
#, fuzzy
|
334 |
msgid "Go to \"Form Fields\""
|
335 |
msgstr "Перейти в раздел \"Управление / Форма\""
|
336 |
|
337 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
338 |
+
#: includes/helpers/functions/general.php:1366
|
339 |
+
#: includes/helpers/functions/general.php:1371
|
340 |
msgid "Go back"
|
341 |
msgstr ""
|
342 |
|
448 |
msgstr "Вопрос: Почему Вы решили удалить плагин \"Справочник Услуг\"?"
|
449 |
|
450 |
#: includes/admin/controllers/class-settings-admin.php:536
|
451 |
+
#: includes/admin/helpers/tables/class-fees-table.php:174
|
452 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
453 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
454 |
#: templates/admin/payments-note.tpl.php:14
|
455 |
+
#: templates/admin/themes-item.tpl.php:66
|
456 |
#: templates/parts/listing-buttons.tpl.php:31
|
457 |
#: templates/parts/listing-buttons.tpl.php:65
|
458 |
#, fuzzy
|
506 |
msgstr "Установлен"
|
507 |
|
508 |
#: includes/admin/helpers/class-modules-list.php:187
|
509 |
+
#: includes/admin/helpers/tables/class-fees-table.php:284
|
510 |
+
#: templates/admin/themes-item.tpl.php:41
|
511 |
#, fuzzy
|
512 |
msgid "Active"
|
513 |
msgstr "Активно:"
|
519 |
|
520 |
#: includes/admin/helpers/class-modules-list.php:225
|
521 |
#: includes/controllers/class-smtp.php:317
|
522 |
+
#: templates/admin/themes-item.tpl.php:61
|
523 |
#, fuzzy
|
524 |
msgid "Activate"
|
525 |
msgstr "Активировать"
|
526 |
|
527 |
#: includes/admin/helpers/class-modules-list.php:235
|
528 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:275
|
529 |
#, fuzzy
|
530 |
msgid "Upgrade Now"
|
531 |
msgstr "Поднять статус до %s"
|
541 |
|
542 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
543 |
#, fuzzy
|
544 |
+
msgid "Order"
|
545 |
+
msgstr "Порядок"
|
546 |
+
|
547 |
+
#: includes/admin/helpers/tables/class-fees-table.php:62
|
548 |
+
#, fuzzy
|
549 |
msgid "Plan Details"
|
550 |
msgstr "Детали плана"
|
551 |
|
552 |
+
#: includes/admin/helpers/tables/class-fees-table.php:63
|
553 |
#, fuzzy
|
554 |
msgid "Pricing"
|
555 |
msgstr "Цена"
|
556 |
|
557 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
558 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
559 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
560 |
#: includes/helpers/class-app.php:92
|
562 |
msgid "Listings"
|
563 |
msgstr "Записи"
|
564 |
|
565 |
+
#: includes/admin/helpers/tables/class-fees-table.php:153
|
566 |
msgid "Disable"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: includes/admin/helpers/tables/class-fees-table.php:159
|
570 |
#, fuzzy
|
571 |
msgid "Enable"
|
572 |
msgstr "Показать строку сортировки?"
|
573 |
|
574 |
+
#: includes/admin/helpers/tables/class-fees-table.php:181
|
575 |
msgid "ID: %s"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
579 |
#, fuzzy
|
580 |
msgid "Paid Plan"
|
581 |
msgstr "Оплачено"
|
582 |
|
583 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
584 |
#, fuzzy
|
585 |
msgid "Free Plan"
|
586 |
msgstr "Перейти в раздел \"Управление / Форма\""
|
587 |
|
588 |
+
#: includes/admin/helpers/tables/class-fees-table.php:219
|
589 |
#, fuzzy
|
590 |
msgid "%1$s for %2$s"
|
591 |
msgstr "%s (например %s)"
|
592 |
|
593 |
+
#: includes/admin/helpers/tables/class-fees-table.php:282
|
|
|
594 |
#, fuzzy
|
595 |
msgid "Disabled"
|
596 |
msgstr "Тариф удалён."
|
597 |
|
598 |
+
#: includes/admin/helpers/tables/class-fees-table.php:288
|
599 |
#: includes/helpers/functions/templates-ui.php:431
|
600 |
#, fuzzy
|
601 |
msgid "Default"
|
638 |
msgstr "Отсутствующие таблицы: %s"
|
639 |
|
640 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
641 |
+
#: includes/controllers/pages/class-submit-listing.php:1252
|
642 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
643 |
#: templates/listing-contactform.tpl.php:33
|
644 |
#: templates/listing-flagging-form.tpl.php:39
|
687 |
|
688 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
689 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
690 |
+
#: includes/controllers/pages/class-submit-listing.php:531
|
691 |
#, fuzzy
|
692 |
msgid "Terms and Conditions"
|
693 |
msgstr "Условия и положения"
|
911 |
msgid "URL"
|
912 |
msgstr "Адрес URL"
|
913 |
|
914 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1226
|
915 |
#, fuzzy
|
916 |
msgid "Thank you for your payment."
|
917 |
msgstr "Сообщение \"спасибо за оплату\""
|
918 |
|
919 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1254
|
920 |
msgid ""
|
921 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
922 |
"collect payments in this currency."
|
927 |
msgstr[1] ""
|
928 |
msgstr[2] ""
|
929 |
|
930 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
931 |
#, fuzzy
|
932 |
msgid "Email Notifications"
|
933 |
msgstr "Оповещения по электронной почте"
|
934 |
|
935 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1347
|
936 |
#, fuzzy
|
937 |
msgid "Notify admin via email when..."
|
938 |
msgstr "Оповещать администрацию сайта по электронной почте в случаях:"
|
939 |
|
940 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1365
|
941 |
#, fuzzy
|
942 |
msgid "CC this email address too"
|
943 |
msgstr "Отправить копию (CC) на этот электронный адрес:"
|
944 |
|
945 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
946 |
#, fuzzy
|
947 |
msgid ""
|
948 |
"You can modify the text template used for most of these emails in the "
|
949 |
"<templates-link>Templates</templates-link> tab."
|
950 |
msgstr "Ниже Вы можете настроить текст шаблонов писем-оповещений."
|
951 |
|
952 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1379
|
953 |
#, fuzzy
|
954 |
msgid "Notify users via email when..."
|
955 |
msgstr "Оповещать авторов в случаях:"
|
956 |
|
957 |
#. translators: %s: email shortcode
|
958 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1446
|
959 |
#, fuzzy
|
960 |
msgid "Email: %s"
|
961 |
msgstr "Адрес: %s"
|
962 |
|
963 |
#. translators: %s: phone shortcode
|
964 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1449
|
965 |
#, fuzzy
|
966 |
msgid "Phone Number: %s"
|
967 |
msgstr "Номер телефона"
|
968 |
|
969 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
970 |
#, fuzzy
|
971 |
msgid "Sender's email address"
|
972 |
msgstr "Некорректный электронный адрес."
|
973 |
|
974 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1462
|
975 |
#, fuzzy
|
976 |
msgid "Sender's phone number"
|
977 |
msgstr "Имя автора"
|
978 |
|
979 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1526
|
980 |
msgid "Renewal and expiration"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1662
|
984 |
#: templates/admin/uninstall-complete.tpl.php:4
|
985 |
#, fuzzy
|
986 |
msgid "Uninstall"
|
1085 |
|
1086 |
#. translators: %s: Status name
|
1087 |
#: includes/admin/views/modules/list.php:63
|
1088 |
+
#: templates/admin/themes-item.tpl.php:50
|
1089 |
#, fuzzy
|
1090 |
msgid "Status: %s"
|
1091 |
msgstr "Новый статус:"
|
1259 |
msgid "View All Listings"
|
1260 |
msgstr "Показать все записи"
|
1261 |
|
1262 |
+
#: includes/class-payment-gateways.php:144
|
|
|
1263 |
msgid ""
|
1264 |
+
"You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s "
|
1265 |
+
"to set up a gateway. Until you do this, only free plans will be available."
|
|
|
1266 |
msgstr ""
|
1267 |
|
1268 |
#: includes/class-wpbdp.php:369
|
1286 |
"admin."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:322
|
1290 |
#, fuzzy
|
1291 |
msgid "Could not find image ID"
|
1292 |
msgstr "Не удалось обновить тему: %s"
|
1491 |
msgid "This is just a preview. The listing has not been published yet."
|
1492 |
msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
|
1493 |
|
1494 |
+
#: includes/controllers/pages/class-submit-listing.php:564
|
1495 |
#, fuzzy
|
1496 |
msgid "Listing Images"
|
1497 |
msgstr "Изображение записи"
|
1498 |
|
1499 |
+
#: includes/controllers/pages/class-submit-listing.php:632
|
1500 |
msgid "Account Creation"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: includes/controllers/pages/class-submit-listing.php:831
|
1504 |
#, fuzzy
|
1505 |
msgid "Go to \"Fee Plans\""
|
1506 |
msgstr "Перейти в раздел \"Управление / Форма\""
|
1507 |
|
1508 |
+
#: includes/controllers/pages/class-submit-listing.php:887
|
1509 |
#, fuzzy
|
1510 |
msgid "Please choose a fee plan."
|
1511 |
msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
|
1512 |
|
1513 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1514 |
msgid "Please check the form for errors, correct them and submit again."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: includes/controllers/pages/class-submit-listing.php:1236
|
1518 |
msgid "Create a user account on this site"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: includes/controllers/pages/class-submit-listing.php:1243
|
1522 |
msgid "Username"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: includes/controllers/pages/class-submit-listing.php:1265
|
1526 |
#, fuzzy
|
1527 |
msgid "Clear Form"
|
1528 |
msgstr "Очистить форму"
|
1842 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: includes/helpers/functions/general.php:568
|
|
|
1846 |
msgid "Free"
|
1847 |
msgstr "Бесплатно"
|
1848 |
|
1857 |
msgstr "Платные записи"
|
1858 |
|
1859 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1860 |
+
#: includes/licensing.php:150
|
1861 |
msgid ""
|
1862 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1863 |
"get updates."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: includes/licensing.php:203 includes/licensing.php:206
|
1867 |
#, fuzzy
|
1868 |
msgid "Licenses"
|
1869 |
msgstr "Лицензии"
|
1870 |
|
1871 |
+
#: includes/licensing.php:273
|
1872 |
msgid "Build more powerful directories"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: includes/licensing.php:274
|
1876 |
msgid ""
|
1877 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: includes/licensing.php:276
|
1881 |
#, fuzzy
|
1882 |
msgid "Already purchased?"
|
1883 |
msgstr "Уже устновлен."
|
1884 |
|
1885 |
#. translators: %s: item type.
|
1886 |
+
#: includes/licensing.php:294
|
1887 |
msgid "%s will not get updates until license is reauthorized."
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: includes/licensing.php:315
|
1891 |
#, fuzzy
|
1892 |
msgid "Enter License Key here"
|
1893 |
msgstr "Обновить лицензионный ключ"
|
1894 |
|
1895 |
+
#: includes/licensing.php:316
|
1896 |
#, fuzzy
|
1897 |
msgid "Authorize"
|
1898 |
msgstr "Активировать шлюз Authorize.net?"
|
1899 |
|
1900 |
+
#: includes/licensing.php:420
|
1901 |
#, fuzzy
|
1902 |
msgid "Invalid item ID"
|
1903 |
msgstr "Некорректный номер поля"
|
1904 |
|
1905 |
+
#: includes/licensing.php:433
|
1906 |
#, fuzzy
|
1907 |
msgid "No license key provided"
|
1908 |
msgstr "Не указан лицензионный ключ"
|
1909 |
|
1910 |
+
#: includes/licensing.php:482 includes/licensing.php:520
|
1911 |
#, fuzzy
|
1912 |
msgid "License key is invalid"
|
1913 |
msgstr "Лицензионный ключ не правильный"
|
1914 |
|
1915 |
+
#: includes/licensing.php:486
|
1916 |
#, fuzzy
|
1917 |
msgid "Deactivation failed"
|
1918 |
msgstr "Деактивация не удалась"
|
1919 |
|
1920 |
+
#: includes/licensing.php:531
|
1921 |
#, fuzzy
|
1922 |
msgid "The license key was revoked."
|
1923 |
msgstr "Не указан лицензионный ключ"
|
1924 |
|
1925 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1926 |
+
#: includes/licensing.php:535
|
1927 |
msgid ""
|
1928 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1929 |
"%2$s and let them know your license is being reported as revoked by the "
|
1931 |
"with your report."
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: includes/licensing.php:598
|
1935 |
msgid ""
|
1936 |
"It was not possible to establish a connection with the Business Directory "
|
1937 |
"server. The connection failed with the following error:"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: includes/licensing.php:611
|
1941 |
msgid ""
|
1942 |
"It was not possible to establish a connection with the Business Directory "
|
1943 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: includes/licensing.php:658
|
1947 |
msgid ""
|
1948 |
"It looks like your server is not authorized to make outgoing requests to "
|
1949 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1950 |
"our IP address 52.0.78.177 to your allow list."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: includes/licensing.php:752
|
1954 |
#, fuzzy
|
1955 |
msgid "Business Directory license key is missing."
|
1956 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
1957 |
|
1958 |
+
#: includes/licensing.php:753
|
1959 |
#, fuzzy
|
1960 |
msgid "Business Directory license key has expired"
|
1961 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
1962 |
|
1963 |
+
#: includes/licensing.php:754
|
1964 |
#, fuzzy
|
1965 |
msgid "Could not verify Business Directory license."
|
1966 |
msgstr "Помогите нам улучшить Справочник Услуг"
|
1967 |
|
1968 |
+
#: includes/licensing.php:765
|
1969 |
#, fuzzy
|
1970 |
msgid "Review license keys"
|
1971 |
msgstr "Обновить лицензионный ключ"
|
1972 |
|
1973 |
+
#: includes/licensing.php:880
|
1974 |
msgid "Missing data. Please reload this page and try again."
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: includes/licensing.php:885
|
1978 |
#, fuzzy
|
1979 |
msgid "Please enter a license key."
|
1980 |
msgstr "Пожалуйста введите правильный электронный адрес."
|
2020 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2021 |
msgstr "Файл ZIP - не является файлом темы плагина."
|
2022 |
|
2023 |
+
#: includes/utils.php:341
|
2024 |
#, fuzzy
|
2025 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2026 |
msgstr "Размер файла (%s) превышает максимальный размер файла - %s"
|
2027 |
|
2028 |
+
#: includes/utils.php:350
|
2029 |
#, fuzzy
|
2030 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2031 |
msgstr "Размер файла (%s) меньше, чем минимальный разрешённый размер - %s"
|
2382 |
msgid "Add New Listing Fee"
|
2383 |
msgstr "Добавить тариф"
|
2384 |
|
2385 |
+
#: templates/admin/fees-index.tpl.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2386 |
#, fuzzy
|
2387 |
msgid "Order fees on the frontend by:"
|
2388 |
msgstr "Сортировать тарифы:"
|
2389 |
|
2390 |
+
#: templates/admin/fees-index.tpl.php:30
|
2391 |
#, fuzzy
|
2392 |
msgid "↑ Ascending"
|
2393 |
msgstr "↑ По возрастанию"
|
2394 |
|
2395 |
+
#: templates/admin/fees-index.tpl.php:31
|
2396 |
#, fuzzy
|
2397 |
msgid "↓ Descending"
|
2398 |
msgstr "↓ По убыванию"
|
2399 |
|
2400 |
+
#: templates/admin/fees-index.tpl.php:39
|
2401 |
#, fuzzy
|
2402 |
msgid "Drag and drop to re-order fees."
|
2403 |
msgstr "Поменяйте порядок тарифов перетаскивая их здесь."
|
2404 |
|
|
|
|
|
|
|
|
|
|
|
2405 |
#: templates/admin/fees-index.tpl.php:67
|
|
|
|
|
|
|
|
|
2406 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: templates/admin/fees-index.tpl.php:69
|
2410 |
msgid "Add a payment gateway to increase conversion rates"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
#. translators: %s: payment gateway name */
|
2414 |
+
#: templates/admin/fees-index.tpl.php:88
|
2415 |
msgid "Add the %s gateway as a payment option."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: templates/admin/fees-index.tpl.php:94
|
2419 |
#, fuzzy
|
2420 |
msgid "Upgrade"
|
2421 |
msgstr "Поднять статус до %s"
|
2422 |
|
2423 |
+
#: templates/admin/fees-index.tpl.php:102
|
2424 |
msgid "Set up Authorize.net as a payment option."
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: templates/admin/fees-index.tpl.php:105
|
2428 |
msgid "Set Up"
|
2429 |
msgstr ""
|
2430 |
|
2458 |
msgid "Delete Field"
|
2459 |
msgstr "Удалить поле"
|
2460 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2461 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2462 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2463 |
#: templates/login.tpl.php:71
|
2776 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2777 |
msgstr "Доступна новая версия - <b>%s</b>. <a>Обновите сейчас</a>."
|
2778 |
|
2779 |
+
#: templates/admin/themes-item.tpl.php:45
|
2780 |
#, fuzzy
|
2781 |
msgid "Inactive"
|
2782 |
msgstr "Активно:"
|
3810 |
msgid "Fee \"%s\" deleted."
|
3811 |
msgstr "Тариф удалён."
|
3812 |
|
3813 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3814 |
+
#, fuzzy
|
3815 |
+
msgctxt "fees admin"
|
3816 |
+
msgid "Fee enabled."
|
3817 |
+
msgstr "Тариф удалён."
|
3818 |
+
|
3819 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3820 |
msgctxt "fees admin"
|
3821 |
msgid "Fee disabled."
|
3822 |
msgstr "Тариф удалён."
|
3831 |
msgid "fees"
|
3832 |
msgstr "тарифы"
|
3833 |
|
3834 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3835 |
#, fuzzy
|
3836 |
msgctxt "fees admin"
|
3837 |
msgid "Attributes"
|
3838 |
msgstr "Атрибуты"
|
3839 |
|
3840 |
+
#: includes/admin/helpers/tables/class-fees-table.php:137
|
3841 |
msgctxt "fees admin"
|
3842 |
msgid "Edit"
|
3843 |
msgstr "Изменить"
|
3844 |
|
3845 |
+
#: includes/admin/helpers/tables/class-fees-table.php:207
|
3846 |
msgctxt "fees admin"
|
3847 |
msgid "Variable"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: includes/admin/helpers/tables/class-fees-table.php:212
|
3851 |
#, fuzzy
|
3852 |
msgctxt "fees admin"
|
3853 |
msgid "%1$s + %2$s per category"
|
3854 |
msgstr "Тариф \"%s\" для рубрики \"%s\""
|
3855 |
|
3856 |
+
#: includes/admin/helpers/tables/class-fees-table.php:231
|
3857 |
msgctxt "fees admin"
|
3858 |
msgid "Forever"
|
3859 |
msgstr "Вечно"
|
3860 |
|
3861 |
+
#: includes/admin/helpers/tables/class-fees-table.php:233
|
3862 |
msgctxt "fees admin"
|
3863 |
msgid "%d day"
|
3864 |
msgid_plural "%d days"
|
3866 |
msgstr[1] "%d дней"
|
3867 |
msgstr[2] ""
|
3868 |
|
3869 |
+
#: includes/admin/helpers/tables/class-fees-table.php:263
|
3870 |
msgctxt "fees admin"
|
3871 |
msgid "All categories"
|
3872 |
msgstr "Все рубрики"
|
3873 |
|
3874 |
+
#: includes/admin/helpers/tables/class-fees-table.php:292
|
3875 |
#, fuzzy
|
3876 |
msgctxt "fees admin"
|
3877 |
msgid "Sticky"
|
3878 |
msgstr "Специальная?"
|
3879 |
|
3880 |
+
#: includes/admin/helpers/tables/class-fees-table.php:296
|
3881 |
#, fuzzy
|
3882 |
msgctxt "fees admin"
|
3883 |
msgid "Recurring"
|
3884 |
msgstr "(периодически)"
|
3885 |
|
3886 |
+
#: includes/admin/helpers/tables/class-fees-table.php:300
|
3887 |
#, fuzzy
|
3888 |
msgctxt "fees admin"
|
3889 |
msgid "Private"
|
4068 |
msgid "Reported"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
+
#: includes/models/class-listing.php:961
|
4072 |
msgctxt "listing status"
|
4073 |
msgid "Unknown"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: includes/models/class-listing.php:962
|
4077 |
msgctxt "listing status"
|
4078 |
msgid "Legacy"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: includes/models/class-listing.php:963
|
4082 |
#, fuzzy
|
4083 |
msgctxt "listing status"
|
4084 |
msgid "Incomplete"
|
4085 |
msgstr "Завершено"
|
4086 |
|
4087 |
+
#: includes/models/class-listing.php:964
|
4088 |
#, fuzzy
|
4089 |
msgctxt "listing status"
|
4090 |
msgid "Pending Payment"
|
4091 |
msgstr "Платёж был заброшен."
|
4092 |
|
4093 |
+
#: includes/models/class-listing.php:965
|
4094 |
#, fuzzy
|
4095 |
msgctxt "listing status"
|
4096 |
msgid "Complete"
|
4097 |
msgstr "Завершено"
|
4098 |
|
4099 |
+
#: includes/models/class-listing.php:966
|
4100 |
#, fuzzy
|
4101 |
msgctxt "listing status"
|
4102 |
msgid "Pending Upgrade"
|
4103 |
msgstr "Ожидается подтверждение"
|
4104 |
|
4105 |
+
#: includes/models/class-listing.php:967
|
4106 |
#, fuzzy
|
4107 |
msgctxt "listing status"
|
4108 |
msgid "Expired"
|
4109 |
msgstr "Истекло"
|
4110 |
|
4111 |
+
#: includes/models/class-listing.php:968
|
4112 |
#, fuzzy
|
4113 |
msgctxt "listing status"
|
4114 |
msgid "Pending Renewal"
|
4115 |
msgstr "Активные + ожидающие продление"
|
4116 |
|
4117 |
+
#: includes/models/class-listing.php:969
|
4118 |
#, fuzzy
|
4119 |
msgctxt "listing status"
|
4120 |
msgid "Abandoned"
|
4782 |
msgstr "По автору"
|
4783 |
|
4784 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4785 |
+
#: includes/helpers/functions/general.php:1281
|
4786 |
msgctxt "admin settings"
|
4787 |
msgid "Date posted"
|
4788 |
msgstr "По дате публикации"
|
4789 |
|
4790 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4791 |
+
#: includes/helpers/functions/general.php:1282
|
4792 |
msgctxt "admin settings"
|
4793 |
msgid "Date last modified"
|
4794 |
msgstr "По дате изменения"
|
4963 |
msgid "U.S. Dollar (USD)"
|
4964 |
msgstr "USD - Доллар США"
|
4965 |
|
4966 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
4967 |
msgctxt "admin settings"
|
4968 |
msgid "Show currency symbol on the left"
|
4969 |
msgstr "Слева"
|
4970 |
|
4971 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
4972 |
msgctxt "admin settings"
|
4973 |
msgid "Show currency symbol on the right"
|
4974 |
msgstr "Справа"
|
4975 |
|
4976 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
4977 |
msgctxt "admin settings"
|
4978 |
msgid "Do not show currency symbol"
|
4979 |
msgstr "Не показывать"
|
4980 |
|
4981 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4982 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
4983 |
msgctxt "admin settings"
|
4984 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
4988 |
#, fuzzy
|
4989 |
msgctxt "admin settings"
|
4990 |
msgid ""
|
4995 |
"помечаются как неоплаченные. В разделе <a>Оповещения об оплате</a> Вы можете "
|
4996 |
"настроить текст электронного письма, отправляемого автору как напоминание."
|
4997 |
|
4998 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1320
|
4999 |
msgctxt "admin settings"
|
5000 |
msgid "Try listing's email field first, then author's email."
|
5001 |
msgstr ""
|
5002 |
|
5003 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1321
|
5004 |
msgctxt "admin settings"
|
5005 |
msgid "Try author's email first and then listing's email field."
|
5006 |
msgstr ""
|
5007 |
|
5008 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1334
|
5009 |
msgctxt "admin settings"
|
5010 |
msgid "Plain (text/plain)"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1335
|
5014 |
msgctxt "admin settings"
|
5015 |
msgid "HTML (text/html)"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1336
|
5019 |
msgctxt "admin settings"
|
5020 |
msgid "Both (multipart/alternative)"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1350
|
5024 |
msgctxt "admin settings"
|
5025 |
msgid "A new listing is submitted."
|
5026 |
msgstr "Добавлена новая запись"
|
5027 |
|
5028 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1351
|
5029 |
msgctxt "admin settings"
|
5030 |
msgid "A listing is edited."
|
5031 |
msgstr "Запись была изменена"
|
5032 |
|
5033 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
5034 |
msgctxt "admin settings"
|
5035 |
msgid "A listing expires."
|
5036 |
msgstr "Срок действия записи истёк"
|
5037 |
|
5038 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
5039 |
#, fuzzy
|
5040 |
msgctxt "admin settings"
|
5041 |
msgid "A listing is renewed."
|
5042 |
msgstr "Запись была изменена"
|
5043 |
|
5044 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1354
|
5045 |
#, fuzzy
|
5046 |
msgctxt "admin settings"
|
5047 |
msgid "A listing payment is completed."
|
5048 |
msgstr "Запись была изменена"
|
5049 |
|
5050 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1355
|
5051 |
#, fuzzy
|
5052 |
msgctxt "admin settings"
|
5053 |
msgid "A listing has been reported as inappropriate."
|
5054 |
msgstr "Статус записи был поднят."
|
5055 |
|
5056 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
5057 |
msgctxt "admin settings"
|
5058 |
msgid "A contact message is sent to a listing's owner."
|
5059 |
msgstr "Автору было отправлено сообщение через контактную форму"
|
5060 |
|
5061 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
5062 |
msgctxt "admin settings"
|
5063 |
msgid "Their listing is submitted."
|
5064 |
msgstr "Их запись попала в базу данных"
|
5065 |
|
5066 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1384
|
5067 |
msgctxt "admin settings"
|
5068 |
msgid "Their listing is approved/published."
|
5069 |
msgstr "Их запись была утверждена или опубликована"
|
5070 |
|
5071 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1385
|
5072 |
#, fuzzy
|
5073 |
msgctxt "admin settings"
|
5074 |
msgid "A payment for their listing is completed."
|
5075 |
msgstr "Их запись попала в базу данных"
|
5076 |
|
5077 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
5078 |
#, fuzzy
|
5079 |
msgctxt "admin settings"
|
5080 |
msgid "Their listing expired or is about to expire."
|
5081 |
msgstr "Их запись попала в базу данных"
|
5082 |
|
5083 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1404
|
5084 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
5085 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
5086 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
5087 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1514
|
5088 |
msgctxt "admin settings"
|
5089 |
msgid "Listing's title"
|
5090 |
msgstr "Название записи"
|
5091 |
|
5092 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1405
|
5093 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
5094 |
#, fuzzy
|
5095 |
msgctxt "admin settings"
|
5096 |
msgid "Listing's fee plan name"
|
5097 |
msgstr "Дата окончания срока действия"
|
5098 |
|
5099 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1406
|
5100 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
5101 |
#, fuzzy
|
5102 |
msgctxt "admin settings"
|
5103 |
msgid "Listing's fee plan description"
|
5104 |
msgstr "Выбрать тариф для записи"
|
5105 |
|
5106 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
5107 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
5108 |
#, fuzzy
|
5109 |
msgctxt "admin settings"
|
5110 |
msgid "Listing's fee plan details"
|
5111 |
msgstr "Дата окончания срока действия"
|
5112 |
|
5113 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
5114 |
msgctxt "admin settings"
|
5115 |
msgid ""
|
5116 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
5119 |
"Ваша запись \"[listing]\" была опубликована по адресу [listing-url], и стала "
|
5120 |
"доступна всем посетителям сайта."
|
5121 |
|
5122 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1424
|
5123 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1458
|
5124 |
msgctxt "admin settings"
|
5125 |
msgid "Listing's URL"
|
5126 |
msgstr "Адрес URL записи"
|
5127 |
|
5128 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1425
|
5129 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1465
|
5130 |
#, fuzzy
|
5131 |
msgctxt "admin settings"
|
5132 |
msgid "Listing's Access Key"
|
5133 |
msgstr "Поля и Изображения записи"
|
5134 |
|
5135 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
5136 |
#, fuzzy
|
5137 |
msgctxt "admin settings"
|
5138 |
msgid "Sender's name"
|
5139 |
msgstr "Имя автора"
|
5140 |
|
5141 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1463
|
5142 |
#, fuzzy
|
5143 |
msgctxt "admin settings"
|
5144 |
msgid "Contact message"
|
5145 |
msgstr "Получено сообщение через контактную форму"
|
5146 |
|
5147 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1464
|
5148 |
msgctxt "admin settings"
|
5149 |
msgid "Date and time the message was sent"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
5153 |
#, fuzzy
|
5154 |
msgctxt "admin settings"
|
5155 |
msgid "Payment items details."
|
5156 |
msgstr "Детали платежа"
|
5157 |
|
5158 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
5159 |
msgctxt "admin settings"
|
5160 |
msgid "URL where user can review and print payment receipt."
|
5161 |
msgstr ""
|
5162 |
|
5163 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
5164 |
#, fuzzy
|
5165 |
msgctxt "admin settings"
|
5166 |
msgid "Gateway used to process listing's payment."
|
5167 |
msgstr "Не удалось провести платёж."
|
5168 |
|
5169 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1515
|
5170 |
msgctxt "admin settings"
|
5171 |
msgid "Checkout URL link"
|
5172 |
msgstr "Адрес URL страницы оплаты"
|
5173 |
|
5174 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1617
|
5175 |
#, fuzzy
|
5176 |
msgctxt "admin settings"
|
5177 |
msgid "Uploaded Image (no resize)"
|
5178 |
msgstr "Загрузить изображение"
|
5179 |
|
5180 |
+
#: includes/helpers/functions/general.php:1279
|
5181 |
msgctxt "admin settings"
|
5182 |
msgid "User"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
+
#: includes/helpers/functions/general.php:1280
|
5186 |
msgctxt "admin settings"
|
5187 |
msgid "User registration date"
|
5188 |
msgstr "Дата окончания срока действия"
|
5426 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5427 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5428 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5429 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1301
|
5430 |
#: includes/admin/settings/class-settings.php:341
|
5431 |
#, fuzzy
|
5432 |
msgctxt "settings"
|
6112 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6113 |
msgstr ""
|
6114 |
|
6115 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1132
|
6116 |
#, fuzzy
|
6117 |
msgctxt "settings"
|
6118 |
msgid "Fee Order"
|
6119 |
msgstr "Порядок"
|
6120 |
|
6121 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1145
|
|
|
|
|
|
|
|
|
|
|
|
|
6122 |
#, fuzzy
|
6123 |
msgctxt "settings"
|
6124 |
msgid "Put payment gateways in test mode?"
|
6130 |
msgid "Currency Code"
|
6131 |
msgstr "Код валюты"
|
6132 |
|
6133 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
6134 |
#, fuzzy
|
6135 |
msgctxt "settings"
|
6136 |
msgid "Currency Symbol"
|
6137 |
msgstr "Символ валюты"
|
6138 |
|
6139 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
6140 |
#, fuzzy
|
6141 |
msgctxt "settings"
|
6142 |
msgid "Currency symbol display"
|
6143 |
msgstr "Показывать символ валюты"
|
6144 |
|
6145 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
6146 |
msgctxt "settings"
|
6147 |
msgid "Include fee description in receipt?"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1225
|
6151 |
#, fuzzy
|
6152 |
msgctxt "settings"
|
6153 |
msgid "Thank you for payment message"
|
6154 |
msgstr "Сообщение \"спасибо за оплату\""
|
6155 |
|
6156 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1278
|
6157 |
#, fuzzy
|
6158 |
msgctxt "settings"
|
6159 |
msgid "Ask users to come back for abandoned payments?"
|
6160 |
msgstr "Просить авторов вернуться к неоплаченным записям?"
|
6161 |
|
6162 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1289
|
6163 |
#, fuzzy
|
6164 |
msgctxt "settings"
|
6165 |
msgid "Listing abandonment threshold (hours)"
|
6166 |
msgstr "Когда запись помечается как неоплаченная (в часах)"
|
6167 |
|
6168 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1306
|
6169 |
#, fuzzy
|
6170 |
msgctxt "settings"
|
6171 |
msgid "Display email address fields publicly?"
|
6172 |
msgstr "Показывать адреса электронной почты на сайте?"
|
6173 |
|
6174 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1307
|
6175 |
#, fuzzy
|
6176 |
msgctxt "settings"
|
6177 |
msgid ""
|
6183 |
"РЕКОМЕНДУЕТСЯ ДЕЛАТЬ, так как может вызвать поток спама в почтовые ящики "
|
6184 |
"авторов."
|
6185 |
|
6186 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1316
|
6187 |
#, fuzzy
|
6188 |
msgctxt "settings"
|
6189 |
msgid "How to determine the listing's email address?"
|
6190 |
msgstr "Нахождение адреса электронной почты автора"
|
6191 |
|
6192 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1317
|
6193 |
#, fuzzy
|
6194 |
msgctxt "settings"
|
6195 |
msgid ""
|
6200 |
"отправке сообщений, полученных через контактную форму, или оповещений об "
|
6201 |
"окончании срока действия."
|
6202 |
|
6203 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1330
|
6204 |
msgctxt "settings"
|
6205 |
msgid "Email Content-Type header"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1331
|
6209 |
msgctxt "settings"
|
6210 |
msgid ""
|
6211 |
"Use this setting to control the format of the emails explicitly. Some "
|
6214 |
"then \"Both\"."
|
6215 |
msgstr ""
|
6216 |
|
6217 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
6218 |
#, fuzzy
|
6219 |
msgctxt "settings"
|
6220 |
msgid "Templates"
|
6221 |
msgstr "Шаблоны электронных писем"
|
6222 |
|
6223 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1397
|
6224 |
#, fuzzy
|
6225 |
msgctxt "settings"
|
6226 |
msgid "Email confirmation message"
|
6227 |
msgstr "Подтверждение получения записи"
|
6228 |
|
6229 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1398
|
6230 |
#, fuzzy
|
6231 |
msgctxt "settings"
|
6232 |
msgid "Sent after a listing has been submitted."
|
6233 |
msgstr "Посылается как только новая запись была помещена в базу данных."
|
6234 |
|
6235 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1416
|
6236 |
#, fuzzy
|
6237 |
msgctxt "settings"
|
6238 |
msgid "Listing published message"
|
6239 |
msgstr "Подтверждение опубликования записи"
|
6240 |
|
6241 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1417
|
6242 |
#, fuzzy
|
6243 |
msgctxt "settings"
|
6244 |
msgid "Sent when the listing has been published or approved by an admin."
|
6246 |
"Посылается как только новая запись была утверждена администрацией и/или "
|
6247 |
"опубликована."
|
6248 |
|
6249 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
6250 |
#, fuzzy
|
6251 |
msgctxt "settings"
|
6252 |
msgid "Listing Contact Message"
|
6253 |
msgstr "Получено сообщение через контактную форму"
|
6254 |
|
6255 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1435
|
6256 |
#, fuzzy
|
6257 |
msgctxt "settings"
|
6258 |
msgid ""
|
6262 |
"Посылается когда кто-нибудь использовал контактную форму для отправки "
|
6263 |
"сообщения автору записи."
|
6264 |
|
6265 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1475
|
6266 |
#, fuzzy
|
6267 |
msgctxt "settings"
|
6268 |
msgid "Payment completed message"
|
6269 |
msgstr "Напоминание о пропущенном платеже"
|
6270 |
|
6271 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
6272 |
#, fuzzy
|
6273 |
msgctxt "settings"
|
6274 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6276 |
"Отправляется через некоторое время после того, как оплата за продление "
|
6277 |
"записи не была получена от автора."
|
6278 |
|
6279 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
6280 |
#, fuzzy
|
6281 |
msgctxt "settings"
|
6282 |
msgid "Payment abandoned reminder message"
|
6283 |
msgstr "Напоминание о пропущенном платеже"
|
6284 |
|
6285 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1638
|
6286 |
msgctxt "settings"
|
6287 |
msgid "Cropped"
|
6288 |
msgstr ""
|
6298 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6299 |
msgstr ""
|
6300 |
|
6301 |
+
#: includes/licensing.php:245
|
6302 |
#, fuzzy
|
6303 |
msgctxt "settings"
|
6304 |
msgid "Themes"
|
6305 |
msgstr "Темы"
|
6306 |
|
6307 |
+
#: includes/licensing.php:316 includes/licensing.php:317
|
6308 |
msgctxt "settings"
|
6309 |
msgid "Please wait..."
|
6310 |
msgstr ""
|
6311 |
|
6312 |
+
#: includes/licensing.php:317
|
6313 |
#, fuzzy
|
6314 |
msgctxt "settings"
|
6315 |
msgid "Deauthorize"
|
6363 |
msgid "Could not delete theme directory. Check permissions."
|
6364 |
msgstr "Не удалось удалить директорию темы - проверьте права доступа к файлам."
|
6365 |
|
6366 |
+
#: includes/admin/controllers/class-themes-admin.php:240
|
6367 |
msgctxt "themes"
|
6368 |
msgid "Please upload a valid theme file."
|
6369 |
msgstr "Пожалуйста загрузите корректный файл темы."
|
6370 |
|
6371 |
+
#: includes/admin/controllers/class-themes-admin.php:249
|
6372 |
msgctxt "themes"
|
6373 |
msgid "Could not move \"%s\" to a temporary directory."
|
6374 |
msgstr "Не удалось перемести \"%s\" во временную директорию."
|
6375 |
|
6376 |
+
#: includes/admin/controllers/class-themes-admin.php:335
|
6377 |
msgctxt "themes"
|
6378 |
msgid "Activate your <a>license key</a> to use this theme."
|
6379 |
msgstr ""
|
6380 |
|
6381 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
6382 |
#, fuzzy
|
6383 |
msgctxt "themes"
|
6384 |
msgid "Invalid theme ID"
|
6385 |
msgstr "Некорректный номер поля"
|
6386 |
|
6387 |
+
#: includes/admin/controllers/class-themes-admin.php:384
|
6388 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6389 |
msgctxt "themes"
|
6390 |
msgid "Could not update theme: %s"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
#. translators: %s: url shortcode
|
6829 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
6830 |
msgctxt "contact email"
|
6831 |
msgid "You have received a reply from your listing at %s."
|
6832 |
msgstr "Вы получили сообщение для вашего бизнеса через Справочник Услуг (%s)."
|
6833 |
|
6834 |
#. translators: %s: name shortcode
|
6835 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
6836 |
msgctxt "contact email"
|
6837 |
msgid "Name: %s"
|
6838 |
msgstr "Имя: %s"
|
6839 |
|
6840 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1451
|
6841 |
msgctxt "contact email"
|
6842 |
msgid "Message:"
|
6843 |
msgstr "Сообщение:"
|
6844 |
|
6845 |
#. translators: %s: date shortcode
|
6846 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1455
|
6847 |
msgctxt "contact email"
|
6848 |
msgid "Time: %s"
|
6849 |
msgstr "Время: %s"
|
7148 |
msgid "Add New Listing"
|
7149 |
msgstr "Добавить запись"
|
7150 |
|
7151 |
+
#: includes/models/class-listing.php:421
|
7152 |
#, fuzzy
|
7153 |
msgctxt "listing"
|
7154 |
msgid "Listing has no registered payments"
|
7155 |
msgstr "Дата окончания срока действия"
|
7156 |
|
7157 |
+
#: includes/models/class-listing.php:430
|
7158 |
#, fuzzy
|
7159 |
msgctxt "listing"
|
7160 |
msgid "Can't delete payment"
|
7161 |
msgstr "Отказать в платеже"
|
7162 |
|
7163 |
+
#: includes/models/class-listing.php:468
|
7164 |
#, fuzzy
|
7165 |
msgctxt "listing"
|
7166 |
msgid "Listing expired"
|
7167 |
msgstr "Срок действия записи истёк"
|
7168 |
|
7169 |
+
#: includes/models/class-listing.php:668
|
7170 |
#, fuzzy
|
7171 |
msgctxt "listing"
|
7172 |
msgid "(Unavailable Plan)"
|
7173 |
msgstr "(Тариф недоступен)"
|
7174 |
|
7175 |
+
#: includes/models/class-listing.php:858
|
7176 |
#, fuzzy
|
7177 |
msgctxt "listing"
|
7178 |
msgid "Plan \"%s\" (recurring)"
|
7179 |
msgstr "(периодически)"
|
7180 |
|
7181 |
+
#: includes/models/class-listing.php:860
|
7182 |
msgctxt "listing"
|
7183 |
msgid "Plan \"%s\""
|
7184 |
msgstr ""
|
7316 |
msgid "Enable %s?"
|
7317 |
msgstr "Показать строку сортировки?"
|
7318 |
|
7319 |
+
#: includes/class-payment-gateways.php:131
|
7320 |
#, fuzzy
|
7321 |
msgctxt "payment-gateways"
|
7322 |
msgid ""
|
7327 |
"воспользоваться пока не будет устранена следующие проблемы: <b>%s</b>. <br/> "
|
7328 |
"Проверьте <a href=\"%s\">настройки платежей</a>."
|
7329 |
|
7330 |
+
#: includes/class-payment-gateways.php:133
|
7331 |
msgctxt "payment-gateways"
|
7332 |
msgid "Please check the <link>payment settings</link>."
|
7333 |
msgstr ""
|
7334 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7335 |
#: includes/class-recaptcha.php:32
|
7336 |
msgctxt "recaptcha"
|
7337 |
msgid "The reCAPTCHA wasn't entered correctly."
|
7558 |
"показаны посетителям сайта. Если Вы хотите изменить такое поведение, "
|
7559 |
"перейдите в <a>Настройки</a> и отключите этот параметр."
|
7560 |
|
7561 |
+
#: includes/controllers/pages/class-submit-listing.php:424
|
7562 |
msgctxt "templates"
|
7563 |
msgid ""
|
7564 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7565 |
"Submission?\" setting checked?"
|
7566 |
msgstr ""
|
7567 |
|
7568 |
+
#: includes/controllers/pages/class-submit-listing.php:426
|
7569 |
msgctxt "templates"
|
7570 |
msgid ""
|
7571 |
"Listing submission has been disabled. Contact the administrator for details."
|
7572 |
msgstr ""
|
7573 |
|
7574 |
+
#: includes/controllers/pages/class-submit-listing.php:824
|
7575 |
msgctxt "templates"
|
7576 |
msgid ""
|
7577 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7578 |
"submit a listing. %s to create a fee plan"
|
7579 |
msgstr ""
|
7580 |
|
7581 |
+
#: includes/controllers/pages/class-submit-listing.php:838
|
7582 |
msgctxt "templates"
|
7583 |
msgid ""
|
7584 |
"Listing submission is not available at the moment. Contact the administrator "
|
7585 |
"for details."
|
7586 |
msgstr ""
|
7587 |
|
7588 |
+
#: includes/controllers/pages/class-submit-listing.php:841
|
7589 |
msgctxt "templates"
|
7590 |
msgid ""
|
7591 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
7593 |
"an existing field"
|
7594 |
msgstr ""
|
7595 |
|
7596 |
+
#: includes/controllers/pages/class-submit-listing.php:1286
|
7597 |
msgctxt "templates"
|
7598 |
msgid "Please agree to the Terms and Conditions."
|
7599 |
msgstr "Пожалуйста примите наши Условия и Положения."
|
7600 |
|
7601 |
+
#: includes/controllers/pages/class-submit-listing.php:1300
|
7602 |
#, fuzzy
|
7603 |
msgctxt "templates"
|
7604 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7605 |
msgstr "Я согласен с Условиями и Положениями"
|
7606 |
|
7607 |
+
#: includes/helpers/functions/general.php:1362
|
7608 |
#, fuzzy
|
7609 |
msgctxt "templates"
|
7610 |
msgid "Return to results"
|
7954 |
msgid "You can't edit this listing."
|
7955 |
msgstr "Рубрики этой записи"
|
7956 |
|
7957 |
+
#: includes/controllers/pages/class-submit-listing.php:168
|
7958 |
msgctxt "submit listing"
|
7959 |
msgid ""
|
7960 |
"This listing can't be edited at this time because it has no fee plan "
|
7962 |
"to a fee plan."
|
7963 |
msgstr ""
|
7964 |
|
7965 |
+
#: includes/controllers/pages/class-submit-listing.php:174
|
7966 |
msgctxt "submit listing"
|
7967 |
msgid ""
|
7968 |
"This listing can't be edited at this time. Please try again later or contact "
|
7969 |
"the admin if the problem persists."
|
7970 |
msgstr ""
|
7971 |
|
7972 |
+
#: includes/controllers/pages/class-submit-listing.php:198
|
7973 |
#, fuzzy
|
7974 |
msgctxt "submit listing"
|
7975 |
msgid "You're logged in as admin, payment will be skipped."
|
7976 |
msgstr "Вы вошли на сайт как Администратор. Все шаги оплаты будут пропущены."
|
7977 |
|
7978 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7979 |
#, fuzzy
|
7980 |
msgctxt "submit listing"
|
7981 |
msgid "Category selection"
|
7982 |
msgstr "Выбор рубрики"
|
7983 |
|
7984 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7985 |
#, fuzzy
|
7986 |
msgctxt "submit listing"
|
7987 |
msgid "Category & plan selection"
|
7988 |
msgstr "Выбор рубрики"
|
7989 |
|
7990 |
+
#: includes/controllers/pages/class-submit-listing.php:821
|
7991 |
#, fuzzy
|
7992 |
msgctxt "submit listing"
|
7993 |
msgid "Can not submit a listing at this moment. Please try again later."
|
7995 |
"В настоящее время вы не можем провести Вашу оплату. Попробуйте позже "
|
7996 |
"пожалуйста."
|
7997 |
|
7998 |
+
#: includes/controllers/pages/class-submit-listing.php:870
|
7999 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
8000 |
#, fuzzy
|
8001 |
msgctxt "submit listing"
|
8002 |
msgid "Please select a category."
|
8003 |
msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
|
8004 |
|
8005 |
+
#: includes/controllers/pages/class-submit-listing.php:893
|
8006 |
msgctxt "submit listing"
|
8007 |
msgid "Please choose a valid category for your plan."
|
8008 |
msgstr ""
|
8009 |
|
8010 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
8011 |
#, fuzzy
|
8012 |
msgctxt "submit listing"
|
8013 |
msgid "Please choose a valid fee plan for your category selection."
|
8014 |
msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
|
8015 |
|
8016 |
+
#: includes/controllers/pages/class-submit-listing.php:1206
|
8017 |
#, fuzzy
|
8018 |
msgctxt "submit listing"
|
8019 |
msgid "Please enter your desired username."
|
8020 |
msgstr "Пожалуйста введите Ваше имя."
|
8021 |
|
8022 |
+
#: includes/controllers/pages/class-submit-listing.php:1211
|
8023 |
#, fuzzy
|
8024 |
msgctxt "submit listing"
|
8025 |
msgid "Please enter the e-mail for your new account."
|
8026 |
msgstr "Пожалуйста введите Ваше имя."
|
8027 |
|
8028 |
+
#: includes/controllers/pages/class-submit-listing.php:1216
|
8029 |
msgctxt "submit listing"
|
8030 |
msgid "The username you chose is already in use. Please use a different one."
|
8031 |
msgstr ""
|
8032 |
|
8033 |
+
#: includes/controllers/pages/class-submit-listing.php:1221
|
8034 |
msgctxt "submit listing"
|
8035 |
msgid "The e-mail address you chose for your account is already in use."
|
8036 |
msgstr ""
|
8040 |
msgid "Listing submitted by admin. Payment skipped."
|
8041 |
msgstr ""
|
8042 |
|
8043 |
+
#: includes/controllers/pages/class-submit-listing.php:1161
|
8044 |
msgctxt "listing submit"
|
8045 |
msgid ""
|
8046 |
"Image upload is required, please provide at least one image and submit again."
|
8363 |
msgid "General"
|
8364 |
msgstr "Основное"
|
8365 |
|
8366 |
+
#: includes/licensing.php:571
|
8367 |
msgctxt "licensing"
|
8368 |
msgid "Could not contact licensing server"
|
8369 |
msgstr "Не удалось связаться с сервером лицензий"
|
8370 |
|
8371 |
+
#: includes/licensing.php:584
|
8372 |
msgctxt "licensing"
|
8373 |
msgid ""
|
8374 |
"It was not possible to establish a connection with Business Directory's "
|
8375 |
"server. cURL was not found in your system"
|
8376 |
msgstr ""
|
8377 |
|
8378 |
+
#: includes/licensing.php:586 includes/licensing.php:616
|
8379 |
msgctxt "licensing"
|
8380 |
msgid ""
|
8381 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8384 |
"1.0.1c)."
|
8385 |
msgstr ""
|
8386 |
|
8387 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8388 |
msgctxt "licensing"
|
8389 |
msgid ""
|
8390 |
"Upgrading your system will not only allow you to communicate with Business "
|
8392 |
"services using the latest security standards."
|
8393 |
msgstr ""
|
8394 |
|
8395 |
+
#: includes/licensing.php:590
|
8396 |
msgctxt "licensing"
|
8397 |
msgid ""
|
8398 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8399 |
"Include this message if necessary"
|
8400 |
msgstr ""
|
8401 |
|
8402 |
+
#: includes/licensing.php:620
|
8403 |
msgctxt "licensing"
|
8404 |
msgid ""
|
8405 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8406 |
"Include this message if necessary."
|
8407 |
msgstr ""
|
8408 |
|
8409 |
+
#: includes/licensing.php:656
|
8410 |
msgctxt "licensing"
|
8411 |
msgid "The server returned a 403 Forbidden error."
|
8412 |
msgstr ""
|
8413 |
|
8414 |
+
#: includes/licensing.php:902
|
8415 |
msgctxt "licensing"
|
8416 |
msgid "Could not activate license: %s."
|
8417 |
msgstr "Не удалось активировать лицензию: %s."
|
8418 |
|
8419 |
+
#: includes/licensing.php:907
|
8420 |
msgctxt "licensing"
|
8421 |
msgid "License activated"
|
8422 |
msgstr "Лицензия активирована"
|
8423 |
|
8424 |
+
#: includes/licensing.php:939
|
8425 |
msgctxt "licensing"
|
8426 |
msgid "Could not deactivate license: %s."
|
8427 |
msgstr "Не удалось деактивировать лицензию: %s."
|
8428 |
|
8429 |
+
#: includes/licensing.php:941
|
8430 |
msgctxt "licensing"
|
8431 |
msgid "License deactivated"
|
8432 |
msgstr "Лицензия была деактивирована."
|
8433 |
|
8434 |
#. translators: "<module-name>" version <version-number> is not...
|
8435 |
+
#: includes/licensing.php:1181
|
8436 |
msgctxt "deprecation"
|
8437 |
msgid ""
|
8438 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8454 |
msgstr[1] "Разрешено изображений"
|
8455 |
msgstr[2] "Разрешено изображений"
|
8456 |
|
8457 |
+
#: includes/models/class-fee-plan.php:387
|
8458 |
msgctxt "fees-api"
|
8459 |
msgid "Fee label is required."
|
8460 |
msgstr "Название тарифа обязательна."
|
8461 |
|
8462 |
+
#: includes/models/class-fee-plan.php:393
|
8463 |
msgctxt "fees-api"
|
8464 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8465 |
msgstr "Срок действия тарифа должен быть меньше 10 лет (3650 дней)."
|
8466 |
|
8467 |
+
#: includes/models/class-fee-plan.php:398
|
8468 |
msgctxt "fees-api"
|
8469 |
msgid ""
|
8470 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
8472 |
"<a>fee plan</a> appropriately."
|
8473 |
msgstr ""
|
8474 |
|
8475 |
+
#: includes/models/class-fee-plan.php:401
|
8476 |
msgctxt "fees-api"
|
8477 |
msgid ""
|
8478 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
8551 |
msgid "Unkown error while uploading file."
|
8552 |
msgstr "Неизвестная ошибка при загрузке файла."
|
8553 |
|
8554 |
+
#: includes/utils.php:335
|
8555 |
msgctxt "utils"
|
8556 |
msgid "Error while uploading file"
|
8557 |
msgstr "Ошибка при загрузке файла"
|
8558 |
|
8559 |
+
#: includes/utils.php:359 includes/utils.php:366
|
8560 |
msgctxt "utils"
|
8561 |
msgid "File type \"%s\" is not allowed"
|
8562 |
msgstr "Файл типа \"%s\" не допускается к загрузке"
|
8563 |
|
8564 |
+
#: includes/utils.php:585
|
8565 |
msgctxt "utils"
|
8566 |
msgid ""
|
8567 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8669 |
msgid "required"
|
8670 |
msgstr "обязательно"
|
8671 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8672 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8673 |
#, fuzzy
|
8674 |
msgctxt "admin infometabox"
|
8958 |
msgid "Continue"
|
8959 |
msgstr "Далее"
|
8960 |
|
8961 |
+
#, fuzzy
|
8962 |
+
#~ msgid "Payments are currently turned off."
|
8963 |
+
#~ msgstr "Платежи на настоящее время отключены."
|
8964 |
+
|
8965 |
+
#, fuzzy
|
8966 |
+
#~ msgid ""
|
8967 |
+
#~ "To manage fees you need to go to the %1$sManage Options - Payment%2$s "
|
8968 |
+
#~ "page and check the box next to 'Turn On Payments' under 'Payment "
|
8969 |
+
#~ "Settings'."
|
8970 |
+
#~ msgstr ""
|
8971 |
+
#~ "Для управления тарифами Вам надо перейти в раздел <a>Настройки / Оплата</"
|
8972 |
+
#~ "a> и включить параметр \"Включить поддержку платного режима\"."
|
8973 |
+
|
8974 |
+
#~ msgid "Paid"
|
8975 |
+
#~ msgstr "Оплачено"
|
8976 |
+
|
8977 |
+
#, fuzzy
|
8978 |
+
#~ msgid "Manage Options"
|
8979 |
+
#~ msgstr "Настройки"
|
8980 |
+
|
8981 |
+
#~ msgid "Manage Paid Listings"
|
8982 |
+
#~ msgstr "Платные записи"
|
8983 |
+
|
8984 |
+
#, fuzzy
|
8985 |
+
#~ msgctxt "settings"
|
8986 |
+
#~ msgid "Turn On payments?"
|
8987 |
+
#~ msgstr "Включить поддержку платного режима?"
|
8988 |
+
|
8989 |
+
#, fuzzy
|
8990 |
+
#~ msgctxt "payment-gateways"
|
8991 |
+
#~ msgid ""
|
8992 |
+
#~ "You have payments turned on but no gateway is active and properly "
|
8993 |
+
#~ "configured. Go to <link>Manage Options - Payment</link> to change the "
|
8994 |
+
#~ "payment settings. Until you change this, the directory will operate in "
|
8995 |
+
#~ "<i>Free Mode</i>."
|
8996 |
+
#~ msgstr ""
|
8997 |
+
#~ "В настройках включен платный режим, но платёжные шлюзы не активированы, "
|
8998 |
+
#~ "или настроены не правильно. Перейдите в раздел <a href=\"%s\">Управление "
|
8999 |
+
#~ "Справочником - Тарифы</a> и настройте параметры платежей. Пока настройки "
|
9000 |
+
#~ "не будут правильно сделаны, этот плагин будет работать в <i>Бесплатном "
|
9001 |
+
#~ "Режиме</i>."
|
9002 |
+
|
9003 |
#, fuzzy
|
9004 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
9005 |
#~ msgstr ""
|
languages/business-directory-plugin-sv_SE.mo
CHANGED
Binary file
|
languages/business-directory-plugin-sv_SE.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-
|
9 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
@@ -88,18 +88,18 @@ msgstr "Business Directory admin"
|
|
88 |
msgid "Directory"
|
89 |
msgstr "Katalog"
|
90 |
|
91 |
-
#: includes/admin/class-admin.php:312
|
92 |
#, fuzzy
|
93 |
msgid "Fee Plans"
|
94 |
msgstr "Avgiftsplan"
|
95 |
|
96 |
-
#: includes/admin/class-admin.php:315
|
97 |
#, fuzzy
|
98 |
msgid "Form Fields"
|
99 |
msgstr "Formulärfält"
|
100 |
|
101 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
102 |
-
#: includes/licensing.php:
|
103 |
#, fuzzy
|
104 |
msgid "Modules"
|
105 |
msgstr "(Alla moduler)"
|
@@ -227,7 +227,7 @@ msgid "Amount"
|
|
227 |
msgstr "Belopp"
|
228 |
|
229 |
#: includes/admin/controllers/class-admin-fees.php:49
|
230 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
231 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
232 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
233 |
#, fuzzy
|
@@ -265,7 +265,7 @@ msgid "Fee plan listings updated."
|
|
265 |
msgstr "Avgiftsplan uppdaterad."
|
266 |
|
267 |
#: includes/admin/controllers/class-admin-listings.php:185
|
268 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
269 |
#: templates/email/listing-reported.tpl.php:7
|
270 |
msgid "Listing Information"
|
271 |
msgstr "Information om annons"
|
@@ -315,14 +315,14 @@ msgstr ""
|
|
315 |
"låta Business Directory göra det åt dig automatiskt."
|
316 |
|
317 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
318 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
319 |
#, fuzzy
|
320 |
msgid "Go to \"Form Fields\""
|
321 |
msgstr "Gå till \"Hantera formulärfält\""
|
322 |
|
323 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
324 |
-
#: includes/helpers/functions/general.php:
|
325 |
-
#: includes/helpers/functions/general.php:
|
326 |
#, fuzzy
|
327 |
msgid "Go back"
|
328 |
msgstr "Nej, gå tillbaka"
|
@@ -435,11 +435,11 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
435 |
msgstr "Varför avinstallerar du Business Directory Plugin?"
|
436 |
|
437 |
#: includes/admin/controllers/class-settings-admin.php:536
|
438 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
439 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
440 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
441 |
#: templates/admin/payments-note.tpl.php:14
|
442 |
-
#: templates/admin/themes-item.tpl.php:
|
443 |
#: templates/parts/listing-buttons.tpl.php:31
|
444 |
#: templates/parts/listing-buttons.tpl.php:65
|
445 |
#, fuzzy
|
@@ -493,8 +493,8 @@ msgid "Installed"
|
|
493 |
msgstr "Installerat"
|
494 |
|
495 |
#: includes/admin/helpers/class-modules-list.php:187
|
496 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
497 |
-
#: templates/admin/themes-item.tpl.php:
|
498 |
#, fuzzy
|
499 |
msgid "Active"
|
500 |
msgstr "Aktiv"
|
@@ -506,13 +506,13 @@ msgstr "Ej installerad"
|
|
506 |
|
507 |
#: includes/admin/helpers/class-modules-list.php:225
|
508 |
#: includes/controllers/class-smtp.php:317
|
509 |
-
#: templates/admin/themes-item.tpl.php:
|
510 |
#, fuzzy
|
511 |
msgid "Activate"
|
512 |
msgstr "Aktivera:"
|
513 |
|
514 |
#: includes/admin/helpers/class-modules-list.php:235
|
515 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
516 |
#, fuzzy
|
517 |
msgid "Upgrade Now"
|
518 |
msgstr "Uppgradera till %s"
|
@@ -530,15 +530,20 @@ msgstr "Det finns inga avgifter just nu. Du kan <a>skapa ett</a> , om du vill."
|
|
530 |
|
531 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
532 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
533 |
msgid "Plan Details"
|
534 |
msgstr "Detaljer för plan"
|
535 |
|
536 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
537 |
#, fuzzy
|
538 |
msgid "Pricing"
|
539 |
msgstr "Prissättning"
|
540 |
|
541 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
542 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
543 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
544 |
#: includes/helpers/class-app.php:92
|
@@ -546,42 +551,41 @@ msgstr "Prissättning"
|
|
546 |
msgid "Listings"
|
547 |
msgstr "Annonser"
|
548 |
|
549 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
550 |
#, fuzzy
|
551 |
msgid "Disable"
|
552 |
msgstr "Koppla ur"
|
553 |
|
554 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
555 |
#, fuzzy
|
556 |
msgid "Enable"
|
557 |
msgstr "Aktivera"
|
558 |
|
559 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
560 |
msgid "ID: %s"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
564 |
#, fuzzy
|
565 |
msgid "Paid Plan"
|
566 |
msgstr "Betald"
|
567 |
|
568 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
569 |
#, fuzzy
|
570 |
msgid "Free Plan"
|
571 |
msgstr "Avgiftsplan"
|
572 |
|
573 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
574 |
#, fuzzy
|
575 |
msgid "%1$s for %2$s"
|
576 |
msgstr "%s (ex.%s)"
|
577 |
|
578 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
579 |
-
#: includes/admin/helpers/tables/class-fees-table.php:293
|
580 |
#, fuzzy
|
581 |
msgid "Disabled"
|
582 |
msgstr "Inaktiverad"
|
583 |
|
584 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
585 |
#: includes/helpers/functions/templates-ui.php:431
|
586 |
#, fuzzy
|
587 |
msgid "Default"
|
@@ -625,7 +629,7 @@ msgid "Missing tables: %s"
|
|
625 |
msgstr "Saknade tabeller:%s"
|
626 |
|
627 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
628 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
629 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
630 |
#: templates/listing-contactform.tpl.php:33
|
631 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -674,7 +678,7 @@ msgstr "Ja, och att det krävs"
|
|
674 |
|
675 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
676 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
677 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
678 |
#, fuzzy
|
679 |
msgid "Terms and Conditions"
|
680 |
msgstr "Villkor"
|
@@ -909,12 +913,12 @@ msgstr ""
|
|
909 |
msgid "URL"
|
910 |
msgstr "URL"
|
911 |
|
912 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
913 |
#, fuzzy
|
914 |
msgid "Thank you for your payment."
|
915 |
msgstr "Tack för din betalning-meddelande"
|
916 |
|
917 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
918 |
msgid ""
|
919 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
920 |
"collect payments in this currency."
|
@@ -924,22 +928,22 @@ msgid_plural ""
|
|
924 |
msgstr[0] ""
|
925 |
msgstr[1] ""
|
926 |
|
927 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
928 |
#, fuzzy
|
929 |
msgid "Email Notifications"
|
930 |
msgstr "E-postnotifikationer"
|
931 |
|
932 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
933 |
#, fuzzy
|
934 |
msgid "Notify admin via email when..."
|
935 |
msgstr "Meddela administratören via e-post när..."
|
936 |
|
937 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
938 |
#, fuzzy
|
939 |
msgid "CC this email address too"
|
940 |
msgstr "Kopia till denna e-postadress också."
|
941 |
|
942 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
943 |
#, fuzzy
|
944 |
msgid ""
|
945 |
"You can modify the text template used for most of these emails in the "
|
@@ -949,39 +953,39 @@ msgstr ""
|
|
949 |
"link>mallfliken\n"
|
950 |
"</templates-link>."
|
951 |
|
952 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
953 |
#, fuzzy
|
954 |
msgid "Notify users via email when..."
|
955 |
msgstr "Meddela användare via e-post när..."
|
956 |
|
957 |
#. translators: %s: email shortcode
|
958 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
959 |
#, fuzzy
|
960 |
msgid "Email: %s"
|
961 |
msgstr "E-postadress: %s"
|
962 |
|
963 |
#. translators: %s: phone shortcode
|
964 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
965 |
#, fuzzy
|
966 |
msgid "Phone Number: %s"
|
967 |
msgstr "Telefonnummer"
|
968 |
|
969 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
970 |
#, fuzzy
|
971 |
msgid "Sender's email address"
|
972 |
msgstr "Skriv in din e-postadress"
|
973 |
|
974 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
975 |
#, fuzzy
|
976 |
msgid "Sender's phone number"
|
977 |
msgstr "Författarens namn"
|
978 |
|
979 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
980 |
#, fuzzy
|
981 |
msgid "Renewal and expiration"
|
982 |
msgstr "%d vecka efter förfallodatum"
|
983 |
|
984 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
985 |
#: templates/admin/uninstall-complete.tpl.php:4
|
986 |
msgid "Uninstall"
|
987 |
msgstr "Avinstallera"
|
@@ -1086,7 +1090,7 @@ msgstr "Visa"
|
|
1086 |
|
1087 |
#. translators: %s: Status name
|
1088 |
#: includes/admin/views/modules/list.php:63
|
1089 |
-
#: templates/admin/themes-item.tpl.php:
|
1090 |
#, fuzzy
|
1091 |
msgid "Status: %s"
|
1092 |
msgstr "Status:"
|
@@ -1259,12 +1263,10 @@ msgstr "Lägg till annonsavgift"
|
|
1259 |
msgid "View All Listings"
|
1260 |
msgstr "Visa alla annonser"
|
1261 |
|
1262 |
-
|
1263 |
-
#: includes/class-payment-gateways.php:165
|
1264 |
msgid ""
|
1265 |
-
"You have
|
1266 |
-
"
|
1267 |
-
"to %1$sFee Plans%2$s to add or edit your fee plan(s)."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
#: includes/class-wpbdp.php:369
|
@@ -1291,7 +1293,7 @@ msgstr ""
|
|
1291 |
"Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
|
1292 |
"skicka igen."
|
1293 |
|
1294 |
-
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:
|
1295 |
#, fuzzy
|
1296 |
msgid "Could not find image ID"
|
1297 |
msgstr "Det gick inte att uppdatera tema:%s"
|
@@ -1499,44 +1501,44 @@ msgid "This is just a preview. The listing has not been published yet."
|
|
1499 |
msgstr ""
|
1500 |
"Detta är enbart en förhandsgranskning, annonsen har inte publicerats ännu."
|
1501 |
|
1502 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1503 |
#, fuzzy
|
1504 |
msgid "Listing Images"
|
1505 |
msgstr "Annonsbilder"
|
1506 |
|
1507 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1508 |
#, fuzzy
|
1509 |
msgid "Account Creation"
|
1510 |
msgstr "Konto skapas"
|
1511 |
|
1512 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1513 |
#, fuzzy
|
1514 |
msgid "Go to \"Fee Plans\""
|
1515 |
msgstr "Avgiftsplan"
|
1516 |
|
1517 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1518 |
#, fuzzy
|
1519 |
msgid "Please choose a fee plan."
|
1520 |
msgstr "(Vänligen välj en avgiftsplan ovan)"
|
1521 |
|
1522 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1523 |
#, fuzzy
|
1524 |
msgid "Please check the form for errors, correct them and submit again."
|
1525 |
msgstr ""
|
1526 |
"Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
|
1527 |
"skicka igen."
|
1528 |
|
1529 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1530 |
#, fuzzy
|
1531 |
msgid "Create a user account on this site"
|
1532 |
msgstr "Skapa ett användarkonto på denna webbplats"
|
1533 |
|
1534 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1535 |
#, fuzzy
|
1536 |
msgid "Username"
|
1537 |
msgstr "Användarnamn:"
|
1538 |
|
1539 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1540 |
#, fuzzy
|
1541 |
msgid "Clear Form"
|
1542 |
msgstr "Rensa"
|
@@ -1857,8 +1859,7 @@ msgid ""
|
|
1857 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: includes/helpers/functions/general.php:
|
1861 |
-
#: templates/admin/fees-index.tpl.php:67
|
1862 |
msgid "Free"
|
1863 |
msgstr "Gratis"
|
1864 |
|
@@ -1873,72 +1874,72 @@ msgid "Manage Listings"
|
|
1873 |
msgstr "Hantera betalda annonser"
|
1874 |
|
1875 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1876 |
-
#: includes/licensing.php:
|
1877 |
msgid ""
|
1878 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1879 |
"get updates."
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: includes/licensing.php:
|
1883 |
msgid "Licenses"
|
1884 |
msgstr "Licenser"
|
1885 |
|
1886 |
-
#: includes/licensing.php:
|
1887 |
msgid "Build more powerful directories"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: includes/licensing.php:
|
1891 |
msgid ""
|
1892 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: includes/licensing.php:
|
1896 |
#, fuzzy
|
1897 |
msgid "Already purchased?"
|
1898 |
msgstr "Redan installerad."
|
1899 |
|
1900 |
#. translators: %s: item type.
|
1901 |
-
#: includes/licensing.php:
|
1902 |
msgid "%s will not get updates until license is reauthorized."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: includes/licensing.php:
|
1906 |
#, fuzzy
|
1907 |
msgid "Enter License Key here"
|
1908 |
msgstr "Ange licensnyckel här"
|
1909 |
|
1910 |
-
#: includes/licensing.php:
|
1911 |
#, fuzzy
|
1912 |
msgid "Authorize"
|
1913 |
msgstr "Authorize.net"
|
1914 |
|
1915 |
-
#: includes/licensing.php:
|
1916 |
#, fuzzy
|
1917 |
msgid "Invalid item ID"
|
1918 |
msgstr "Ogiltigt objekt-ID"
|
1919 |
|
1920 |
-
#: includes/licensing.php:
|
1921 |
#, fuzzy
|
1922 |
msgid "No license key provided"
|
1923 |
msgstr "Ingen licensnyckel angiven"
|
1924 |
|
1925 |
-
#: includes/licensing.php:
|
1926 |
#, fuzzy
|
1927 |
msgid "License key is invalid"
|
1928 |
msgstr "Licensnyckel är ogiltig"
|
1929 |
|
1930 |
-
#: includes/licensing.php:
|
1931 |
#, fuzzy
|
1932 |
msgid "Deactivation failed"
|
1933 |
msgstr "Deaktivering misslyckades"
|
1934 |
|
1935 |
-
#: includes/licensing.php:
|
1936 |
#, fuzzy
|
1937 |
msgid "The license key was revoked."
|
1938 |
msgstr "Ingen licensnyckel angiven"
|
1939 |
|
1940 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1941 |
-
#: includes/licensing.php:
|
1942 |
#, fuzzy
|
1943 |
msgid ""
|
1944 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
@@ -1950,7 +1951,7 @@ msgstr ""
|
|
1950 |
"Business Directorys servers. Vänligen kontakta <support-link>Business "
|
1951 |
"Directory support</support-link> och be dem vitlista din IP-adress."
|
1952 |
|
1953 |
-
#: includes/licensing.php:
|
1954 |
#, fuzzy
|
1955 |
msgid ""
|
1956 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1959,7 +1960,7 @@ msgstr ""
|
|
1959 |
"Det var inte möjligt att upprätta en anslutning med Business Directory "
|
1960 |
"server. Anslutningen misslyckades med följande fel:"
|
1961 |
|
1962 |
-
#: includes/licensing.php:
|
1963 |
#, fuzzy
|
1964 |
msgid ""
|
1965 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1968,7 +1969,7 @@ msgstr ""
|
|
1968 |
"Det var inte möjligt att etablera en kontakt med Business Directorys server. "
|
1969 |
"Ett problem inträffade i SSL/TSL handskakning:"
|
1970 |
|
1971 |
-
#: includes/licensing.php:
|
1972 |
#, fuzzy
|
1973 |
msgid ""
|
1974 |
"It looks like your server is not authorized to make outgoing requests to "
|
@@ -1979,31 +1980,31 @@ msgstr ""
|
|
1979 |
"Business Directorys servers. Vänligen kontakta <support-link>Business "
|
1980 |
"Directory support</support-link> och be dem vitlista din IP-adress."
|
1981 |
|
1982 |
-
#: includes/licensing.php:
|
1983 |
#, fuzzy
|
1984 |
msgid "Business Directory license key is missing."
|
1985 |
msgstr "Business Directory - Licensnyckel har upphört"
|
1986 |
|
1987 |
-
#: includes/licensing.php:
|
1988 |
#, fuzzy
|
1989 |
msgid "Business Directory license key has expired"
|
1990 |
msgstr "Business Directory - Licensnyckel har upphört"
|
1991 |
|
1992 |
-
#: includes/licensing.php:
|
1993 |
#, fuzzy
|
1994 |
msgid "Could not verify Business Directory license."
|
1995 |
msgstr "Hjälp oss förbättra Business Directory"
|
1996 |
|
1997 |
-
#: includes/licensing.php:
|
1998 |
#, fuzzy
|
1999 |
msgid "Review license keys"
|
2000 |
msgstr "Granska mina licensnycklar"
|
2001 |
|
2002 |
-
#: includes/licensing.php:
|
2003 |
msgid "Missing data. Please reload this page and try again."
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: includes/licensing.php:
|
2007 |
#, fuzzy
|
2008 |
msgid "Please enter a license key."
|
2009 |
msgstr "Skriv in licensnyckel"
|
@@ -2051,12 +2052,12 @@ msgstr "Övergiven"
|
|
2051 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2052 |
msgstr "ZIP-filen är inte en giltig BD temafil."
|
2053 |
|
2054 |
-
#: includes/utils.php:
|
2055 |
#, fuzzy
|
2056 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2057 |
msgstr "Filstorlek (%s) överskrider maximal filstorlek på %s"
|
2058 |
|
2059 |
-
#: includes/utils.php:
|
2060 |
#, fuzzy
|
2061 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2062 |
msgstr "Filstorlek (%s) är sämre än den minifilstiorleken på%s"
|
@@ -2419,74 +2420,49 @@ msgstr "Spara ändringar"
|
|
2419 |
msgid "Add New Listing Fee"
|
2420 |
msgstr "Lägg till ny avgift"
|
2421 |
|
2422 |
-
#: templates/admin/fees-index.tpl.php:
|
2423 |
-
#, fuzzy
|
2424 |
-
msgid "Payments are currently turned off."
|
2425 |
-
msgstr "Betalningar för närvarande avstängt."
|
2426 |
-
|
2427 |
-
#. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
|
2428 |
-
#: templates/admin/fees-index.tpl.php:21
|
2429 |
-
#, fuzzy
|
2430 |
-
msgid ""
|
2431 |
-
"To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
|
2432 |
-
"and check the box next to 'Turn On Payments' under 'Payment Settings'."
|
2433 |
-
msgstr ""
|
2434 |
-
"För att hantera avgifter du behöver för att gå till <a>Hantera Alternativ - "
|
2435 |
-
"Betalning</a> sida och markera rutan bredvid \"Aktivera betalningar\" under "
|
2436 |
-
"\"Betalningsinställningar\"."
|
2437 |
-
|
2438 |
-
#: templates/admin/fees-index.tpl.php:34
|
2439 |
#, fuzzy
|
2440 |
msgid "Order fees on the frontend by:"
|
2441 |
msgstr "Order avgifter på frontend efter:"
|
2442 |
|
2443 |
-
#: templates/admin/fees-index.tpl.php:
|
2444 |
#, fuzzy
|
2445 |
msgid "↑ Ascending"
|
2446 |
msgstr "↑ Stigande"
|
2447 |
|
2448 |
-
#: templates/admin/fees-index.tpl.php:
|
2449 |
#, fuzzy
|
2450 |
msgid "↓ Descending"
|
2451 |
msgstr "↓ Fallande"
|
2452 |
|
2453 |
-
#: templates/admin/fees-index.tpl.php:
|
2454 |
#, fuzzy
|
2455 |
msgid "Drag and drop to re-order fees."
|
2456 |
msgstr "Dra och släpp för att ändra ordning på avgifter"
|
2457 |
|
2458 |
-
#. translators: %1$s is directory payment mode (Free or Paid)
|
2459 |
-
#: templates/admin/fees-index.tpl.php:66
|
2460 |
-
msgid "All fee plans may not be available in \"%1$s\" mode."
|
2461 |
-
msgstr ""
|
2462 |
-
|
2463 |
#: templates/admin/fees-index.tpl.php:67
|
2464 |
-
msgid "Paid"
|
2465 |
-
msgstr "Betald"
|
2466 |
-
|
2467 |
-
#: templates/admin/fees-index.tpl.php:92
|
2468 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: templates/admin/fees-index.tpl.php:
|
2472 |
msgid "Add a payment gateway to increase conversion rates"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
#. translators: %s: payment gateway name */
|
2476 |
-
#: templates/admin/fees-index.tpl.php:
|
2477 |
msgid "Add the %s gateway as a payment option."
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: templates/admin/fees-index.tpl.php:
|
2481 |
#, fuzzy
|
2482 |
msgid "Upgrade"
|
2483 |
msgstr "Uppgradera till %s"
|
2484 |
|
2485 |
-
#: templates/admin/fees-index.tpl.php:
|
2486 |
msgid "Set up Authorize.net as a payment option."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: templates/admin/fees-index.tpl.php:
|
2490 |
msgid "Set Up"
|
2491 |
msgstr ""
|
2492 |
|
@@ -2520,14 +2496,6 @@ msgstr "Är du säker på att du vill ta bort \"%s\" fält?"
|
|
2520 |
msgid "Delete Field"
|
2521 |
msgstr "Radera fält"
|
2522 |
|
2523 |
-
#: templates/admin/home.tpl.php:55
|
2524 |
-
msgid "Manage Options"
|
2525 |
-
msgstr "Hantera alternativ"
|
2526 |
-
|
2527 |
-
#: templates/admin/home.tpl.php:74
|
2528 |
-
msgid "Manage Paid Listings"
|
2529 |
-
msgstr "Hantera betalda annonser"
|
2530 |
-
|
2531 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2532 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2533 |
#: templates/login.tpl.php:71
|
@@ -2849,7 +2817,7 @@ msgstr "Tema uppdateras."
|
|
2849 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2850 |
msgstr "Ny version tillgänglig <b>(%s).</b> <a>Uppdatera nu.</a>"
|
2851 |
|
2852 |
-
#: templates/admin/themes-item.tpl.php:
|
2853 |
#, fuzzy
|
2854 |
msgid "Inactive"
|
2855 |
msgstr "Aktiv"
|
@@ -3904,7 +3872,13 @@ msgctxt "fees admin"
|
|
3904 |
msgid "Fee \"%s\" deleted."
|
3905 |
msgstr "Avgift \"%s\" borttagen."
|
3906 |
|
3907 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3908 |
msgctxt "fees admin"
|
3909 |
msgid "Fee disabled."
|
3910 |
msgstr "Avgift inaktiverad."
|
@@ -3919,55 +3893,55 @@ msgctxt "fees admin"
|
|
3919 |
msgid "fees"
|
3920 |
msgstr "avgifter"
|
3921 |
|
3922 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3923 |
msgctxt "fees admin"
|
3924 |
msgid "Attributes"
|
3925 |
msgstr "Attribut"
|
3926 |
|
3927 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3928 |
msgctxt "fees admin"
|
3929 |
msgid "Edit"
|
3930 |
msgstr "Redigera"
|
3931 |
|
3932 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3933 |
msgctxt "fees admin"
|
3934 |
msgid "Variable"
|
3935 |
msgstr "Variabel"
|
3936 |
|
3937 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3938 |
#, fuzzy
|
3939 |
msgctxt "fees admin"
|
3940 |
msgid "%1$s + %2$s per category"
|
3941 |
msgstr "%s + %s per kategori"
|
3942 |
|
3943 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3944 |
msgctxt "fees admin"
|
3945 |
msgid "Forever"
|
3946 |
msgstr "För alltid"
|
3947 |
|
3948 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3949 |
msgctxt "fees admin"
|
3950 |
msgid "%d day"
|
3951 |
msgid_plural "%d days"
|
3952 |
msgstr[0] "%d dag"
|
3953 |
msgstr[1] "%d dagar"
|
3954 |
|
3955 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3956 |
msgctxt "fees admin"
|
3957 |
msgid "All categories"
|
3958 |
msgstr "Alla kategorier"
|
3959 |
|
3960 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3961 |
msgctxt "fees admin"
|
3962 |
msgid "Sticky"
|
3963 |
msgstr "Klistrad"
|
3964 |
|
3965 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3966 |
msgctxt "fees admin"
|
3967 |
msgid "Recurring"
|
3968 |
msgstr "Återkommande"
|
3969 |
|
3970 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3971 |
#, fuzzy
|
3972 |
msgctxt "fees admin"
|
3973 |
msgid "Private"
|
@@ -4146,47 +4120,47 @@ msgctxt "listing status"
|
|
4146 |
msgid "Reported"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
-
#: includes/models/class-listing.php:
|
4150 |
msgctxt "listing status"
|
4151 |
msgid "Unknown"
|
4152 |
msgstr "Okänd"
|
4153 |
|
4154 |
-
#: includes/models/class-listing.php:
|
4155 |
msgctxt "listing status"
|
4156 |
msgid "Legacy"
|
4157 |
msgstr "Legat"
|
4158 |
|
4159 |
-
#: includes/models/class-listing.php:
|
4160 |
msgctxt "listing status"
|
4161 |
msgid "Incomplete"
|
4162 |
msgstr "Ofullständig"
|
4163 |
|
4164 |
-
#: includes/models/class-listing.php:
|
4165 |
msgctxt "listing status"
|
4166 |
msgid "Pending Payment"
|
4167 |
msgstr "Väntar på betalning."
|
4168 |
|
4169 |
-
#: includes/models/class-listing.php:
|
4170 |
msgctxt "listing status"
|
4171 |
msgid "Complete"
|
4172 |
msgstr "Genomförd"
|
4173 |
|
4174 |
-
#: includes/models/class-listing.php:
|
4175 |
msgctxt "listing status"
|
4176 |
msgid "Pending Upgrade"
|
4177 |
msgstr "Väntar på uppgradering"
|
4178 |
|
4179 |
-
#: includes/models/class-listing.php:
|
4180 |
msgctxt "listing status"
|
4181 |
msgid "Expired"
|
4182 |
msgstr "Utgången"
|
4183 |
|
4184 |
-
#: includes/models/class-listing.php:
|
4185 |
msgctxt "listing status"
|
4186 |
msgid "Pending Renewal"
|
4187 |
msgstr "Inväntar förnyelse"
|
4188 |
|
4189 |
-
#: includes/models/class-listing.php:
|
4190 |
msgctxt "listing status"
|
4191 |
msgid "Abandoned"
|
4192 |
msgstr "Övergiven"
|
@@ -4849,13 +4823,13 @@ msgid "Author"
|
|
4849 |
msgstr "Författare"
|
4850 |
|
4851 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4852 |
-
#: includes/helpers/functions/general.php:
|
4853 |
msgctxt "admin settings"
|
4854 |
msgid "Date posted"
|
4855 |
msgstr "Datum inlagd"
|
4856 |
|
4857 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4858 |
-
#: includes/helpers/functions/general.php:
|
4859 |
msgctxt "admin settings"
|
4860 |
msgid "Date last modified"
|
4861 |
msgstr "Senast ändrad"
|
@@ -5030,28 +5004,28 @@ msgctxt "admin settings"
|
|
5030 |
msgid "U.S. Dollar (USD)"
|
5031 |
msgstr "US-dollar (USD)"
|
5032 |
|
5033 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5034 |
msgctxt "admin settings"
|
5035 |
msgid "Show currency symbol on the left"
|
5036 |
msgstr "Visa valutasymbol till vänster"
|
5037 |
|
5038 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5039 |
msgctxt "admin settings"
|
5040 |
msgid "Show currency symbol on the right"
|
5041 |
msgstr "Visa valutasymbol till höger"
|
5042 |
|
5043 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5044 |
msgctxt "admin settings"
|
5045 |
msgid "Do not show currency symbol"
|
5046 |
msgstr "Visa inte valutasymbol"
|
5047 |
|
5048 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5049 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5050 |
msgctxt "admin settings"
|
5051 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5055 |
#, fuzzy
|
5056 |
msgctxt "admin settings"
|
5057 |
msgid ""
|
@@ -5061,122 +5035,122 @@ msgstr ""
|
|
5061 |
"Annonser med avvaktande betalningar är markerade som övergivna efter denna "
|
5062 |
"tid. Du kan också <a>anpassa e-mejlet</a> användaren får."
|
5063 |
|
5064 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5065 |
msgctxt "admin settings"
|
5066 |
msgid "Try listing's email field first, then author's email."
|
5067 |
msgstr "Försök med annonsens e-postfält först, därefter författarens e-post."
|
5068 |
|
5069 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5070 |
msgctxt "admin settings"
|
5071 |
msgid "Try author's email first and then listing's email field."
|
5072 |
msgstr ""
|
5073 |
"Försök med författarens e-post först och därefter annonsens e-postfält."
|
5074 |
|
5075 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5076 |
msgctxt "admin settings"
|
5077 |
msgid "Plain (text/plain)"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5081 |
msgctxt "admin settings"
|
5082 |
msgid "HTML (text/html)"
|
5083 |
msgstr ""
|
5084 |
|
5085 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5086 |
msgctxt "admin settings"
|
5087 |
msgid "Both (multipart/alternative)"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5091 |
msgctxt "admin settings"
|
5092 |
msgid "A new listing is submitted."
|
5093 |
msgstr "En ny annons lagts in."
|
5094 |
|
5095 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5096 |
msgctxt "admin settings"
|
5097 |
msgid "A listing is edited."
|
5098 |
msgstr "En annons är redigerad."
|
5099 |
|
5100 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5101 |
msgctxt "admin settings"
|
5102 |
msgid "A listing expires."
|
5103 |
msgstr "En annons förfaller."
|
5104 |
|
5105 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5106 |
msgctxt "admin settings"
|
5107 |
msgid "A listing is renewed."
|
5108 |
msgstr "En annons är förnyad."
|
5109 |
|
5110 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5111 |
#, fuzzy
|
5112 |
msgctxt "admin settings"
|
5113 |
msgid "A listing payment is completed."
|
5114 |
msgstr "En annons är redigerad."
|
5115 |
|
5116 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5117 |
#, fuzzy
|
5118 |
msgctxt "admin settings"
|
5119 |
msgid "A listing has been reported as inappropriate."
|
5120 |
msgstr "Annonsen har uppgraderats."
|
5121 |
|
5122 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5123 |
msgctxt "admin settings"
|
5124 |
msgid "A contact message is sent to a listing's owner."
|
5125 |
msgstr "Ett kontaktsmeddelande skickas till annonsens ägare."
|
5126 |
|
5127 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5128 |
msgctxt "admin settings"
|
5129 |
msgid "Their listing is submitted."
|
5130 |
msgstr "Deras annons lagts in."
|
5131 |
|
5132 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5133 |
msgctxt "admin settings"
|
5134 |
msgid "Their listing is approved/published."
|
5135 |
msgstr "Deras annons är godkänd / publicerad."
|
5136 |
|
5137 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5138 |
#, fuzzy
|
5139 |
msgctxt "admin settings"
|
5140 |
msgid "A payment for their listing is completed."
|
5141 |
msgstr "Deras annons lagts in."
|
5142 |
|
5143 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5144 |
#, fuzzy
|
5145 |
msgctxt "admin settings"
|
5146 |
msgid "Their listing expired or is about to expire."
|
5147 |
msgstr "Deras annons lagts in."
|
5148 |
|
5149 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5150 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5151 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5152 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5153 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5154 |
msgctxt "admin settings"
|
5155 |
msgid "Listing's title"
|
5156 |
msgstr "Annonsens titel"
|
5157 |
|
5158 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5159 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5160 |
#, fuzzy
|
5161 |
msgctxt "admin settings"
|
5162 |
msgid "Listing's fee plan name"
|
5163 |
msgstr "Utgångsdatum för annons"
|
5164 |
|
5165 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5166 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5167 |
#, fuzzy
|
5168 |
msgctxt "admin settings"
|
5169 |
msgid "Listing's fee plan description"
|
5170 |
msgstr "Urval av annonsavgifter"
|
5171 |
|
5172 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5173 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5174 |
#, fuzzy
|
5175 |
msgctxt "admin settings"
|
5176 |
msgid "Listing's fee plan details"
|
5177 |
msgstr "Utgångsdatum för annons"
|
5178 |
|
5179 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5180 |
msgctxt "admin settings"
|
5181 |
msgid ""
|
5182 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
@@ -5185,70 +5159,70 @@ msgstr ""
|
|
5185 |
"Din annons \"[listing]\" är nu tillgänglig på [listing-url] och kan ses av "
|
5186 |
"allmänheten."
|
5187 |
|
5188 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5189 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5190 |
msgctxt "admin settings"
|
5191 |
msgid "Listing's URL"
|
5192 |
msgstr "Annons-URL"
|
5193 |
|
5194 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5195 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5196 |
#, fuzzy
|
5197 |
msgctxt "admin settings"
|
5198 |
msgid "Listing's Access Key"
|
5199 |
msgstr "Åtkomstnycklar till annons"
|
5200 |
|
5201 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5202 |
#, fuzzy
|
5203 |
msgctxt "admin settings"
|
5204 |
msgid "Sender's name"
|
5205 |
msgstr "Författarens namn"
|
5206 |
|
5207 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5208 |
#, fuzzy
|
5209 |
msgctxt "admin settings"
|
5210 |
msgid "Contact message"
|
5211 |
msgstr "Annonskontaktsmeddelande"
|
5212 |
|
5213 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5214 |
msgctxt "admin settings"
|
5215 |
msgid "Date and time the message was sent"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5219 |
#, fuzzy
|
5220 |
msgctxt "admin settings"
|
5221 |
msgid "Payment items details."
|
5222 |
msgstr "Betalningsdetaljer"
|
5223 |
|
5224 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5225 |
msgctxt "admin settings"
|
5226 |
msgid "URL where user can review and print payment receipt."
|
5227 |
msgstr ""
|
5228 |
|
5229 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5230 |
#, fuzzy
|
5231 |
msgctxt "admin settings"
|
5232 |
msgid "Gateway used to process listing's payment."
|
5233 |
msgstr "Det gick inte att bearbeta betalningen."
|
5234 |
|
5235 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5236 |
msgctxt "admin settings"
|
5237 |
msgid "Checkout URL link"
|
5238 |
msgstr "Kassan URL"
|
5239 |
|
5240 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5241 |
#, fuzzy
|
5242 |
msgctxt "admin settings"
|
5243 |
msgid "Uploaded Image (no resize)"
|
5244 |
msgstr "Ladda upp bilder"
|
5245 |
|
5246 |
-
#: includes/helpers/functions/general.php:
|
5247 |
msgctxt "admin settings"
|
5248 |
msgid "User"
|
5249 |
msgstr "Användare"
|
5250 |
|
5251 |
-
#: includes/helpers/functions/general.php:
|
5252 |
msgctxt "admin settings"
|
5253 |
msgid "User registration date"
|
5254 |
msgstr "Användarens registreringsdatum"
|
@@ -5471,7 +5445,7 @@ msgstr "Annonser"
|
|
5471 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5472 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5473 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5474 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5475 |
#: includes/admin/settings/class-settings.php:341
|
5476 |
msgctxt "settings"
|
5477 |
msgid "General Settings"
|
@@ -6074,17 +6048,12 @@ msgctxt "settings"
|
|
6074 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6075 |
msgstr ""
|
6076 |
|
6077 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6078 |
msgctxt "settings"
|
6079 |
msgid "Fee Order"
|
6080 |
msgstr "Avgiftsordning"
|
6081 |
|
6082 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6083 |
-
msgctxt "settings"
|
6084 |
-
msgid "Turn On payments?"
|
6085 |
-
msgstr "Slå på betalningar?"
|
6086 |
-
|
6087 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1144
|
6088 |
msgctxt "settings"
|
6089 |
msgid "Put payment gateways in test mode?"
|
6090 |
msgstr "Sätta betalningsmodulen i testläge?"
|
@@ -6094,42 +6063,42 @@ msgctxt "settings"
|
|
6094 |
msgid "Currency Code"
|
6095 |
msgstr "Valutakod"
|
6096 |
|
6097 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6098 |
msgctxt "settings"
|
6099 |
msgid "Currency Symbol"
|
6100 |
msgstr "Valutasymbol"
|
6101 |
|
6102 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6103 |
msgctxt "settings"
|
6104 |
msgid "Currency symbol display"
|
6105 |
msgstr "Visa valutasymbol"
|
6106 |
|
6107 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6108 |
msgctxt "settings"
|
6109 |
msgid "Include fee description in receipt?"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6113 |
msgctxt "settings"
|
6114 |
msgid "Thank you for payment message"
|
6115 |
msgstr "Tack för din betalning-meddelande"
|
6116 |
|
6117 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6118 |
msgctxt "settings"
|
6119 |
msgid "Ask users to come back for abandoned payments?"
|
6120 |
msgstr "Fråga användare om de vill komma tillbaka och genomföra sin betalning?"
|
6121 |
|
6122 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6123 |
msgctxt "settings"
|
6124 |
msgid "Listing abandonment threshold (hours)"
|
6125 |
msgstr "Tröskel för övergivning (timmar)"
|
6126 |
|
6127 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6128 |
msgctxt "settings"
|
6129 |
msgid "Display email address fields publicly?"
|
6130 |
msgstr "Visa e-postadress-fälten offentligt?"
|
6131 |
|
6132 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6133 |
msgctxt "settings"
|
6134 |
msgid ""
|
6135 |
"Shows the email address of the listing owner to all web users. NOT "
|
@@ -6140,12 +6109,12 @@ msgstr ""
|
|
6140 |
"eftersom detta ökar spam-mejlen och tillåter spam-bottar att inhämta "
|
6141 |
"mejladressen för framtida bruk."
|
6142 |
|
6143 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6144 |
msgctxt "settings"
|
6145 |
msgid "How to determine the listing's email address?"
|
6146 |
msgstr "Hur fastställa annonsens e-postadress?"
|
6147 |
|
6148 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6149 |
msgctxt "settings"
|
6150 |
msgid ""
|
6151 |
"This affects emails sent to listing owners via contact forms or when their "
|
@@ -6154,12 +6123,12 @@ msgstr ""
|
|
6154 |
"Detta påverkar e-postmeddelanden som skickas till annonsägaren via "
|
6155 |
"kontaktformuläret eller när deras annons löper ut."
|
6156 |
|
6157 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6158 |
msgctxt "settings"
|
6159 |
msgid "Email Content-Type header"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6163 |
msgctxt "settings"
|
6164 |
msgid ""
|
6165 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -6168,37 +6137,37 @@ msgid ""
|
|
6168 |
"then \"Both\"."
|
6169 |
msgstr ""
|
6170 |
|
6171 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6172 |
msgctxt "settings"
|
6173 |
msgid "Templates"
|
6174 |
msgstr "E-postmallar"
|
6175 |
|
6176 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6177 |
msgctxt "settings"
|
6178 |
msgid "Email confirmation message"
|
6179 |
msgstr "E-post bekräftelsemeddelande"
|
6180 |
|
6181 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6182 |
msgctxt "settings"
|
6183 |
msgid "Sent after a listing has been submitted."
|
6184 |
msgstr "Skickas efter en annons har skickats in."
|
6185 |
|
6186 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6187 |
msgctxt "settings"
|
6188 |
msgid "Listing published message"
|
6189 |
msgstr "Meddelande för publicerad annons"
|
6190 |
|
6191 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6192 |
msgctxt "settings"
|
6193 |
msgid "Sent when the listing has been published or approved by an admin."
|
6194 |
msgstr "Skickas när annonsen har publicerats eller godkänts av administratör."
|
6195 |
|
6196 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6197 |
msgctxt "settings"
|
6198 |
msgid "Listing Contact Message"
|
6199 |
msgstr "Annonskontaktsmeddelande"
|
6200 |
|
6201 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6202 |
msgctxt "settings"
|
6203 |
msgid ""
|
6204 |
"Sent to listing owners when someone uses the contact form on their listing "
|
@@ -6207,24 +6176,24 @@ msgstr ""
|
|
6207 |
"Skickas till annonsägare när någon använder kontaktformuläret på deras "
|
6208 |
"annonssida."
|
6209 |
|
6210 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6211 |
#, fuzzy
|
6212 |
msgctxt "settings"
|
6213 |
msgid "Payment completed message"
|
6214 |
msgstr "Påminnelse för övergivna betalningar"
|
6215 |
|
6216 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6217 |
#, fuzzy
|
6218 |
msgctxt "settings"
|
6219 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6220 |
msgstr "Skickas en tid efter att en betalning övergivits av användaren."
|
6221 |
|
6222 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6223 |
msgctxt "settings"
|
6224 |
msgid "Payment abandoned reminder message"
|
6225 |
msgstr "Påminnelse för övergivna betalningar"
|
6226 |
|
6227 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6228 |
msgctxt "settings"
|
6229 |
msgid "Cropped"
|
6230 |
msgstr ""
|
@@ -6240,17 +6209,17 @@ msgctxt "settings"
|
|
6240 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6241 |
msgstr "Sluggen “%s” används redan för en annan taxonomi."
|
6242 |
|
6243 |
-
#: includes/licensing.php:
|
6244 |
msgctxt "settings"
|
6245 |
msgid "Themes"
|
6246 |
msgstr "Teman"
|
6247 |
|
6248 |
-
#: includes/licensing.php:
|
6249 |
msgctxt "settings"
|
6250 |
msgid "Please wait..."
|
6251 |
msgstr "Vänligen vänta..."
|
6252 |
|
6253 |
-
#: includes/licensing.php:
|
6254 |
#, fuzzy
|
6255 |
msgctxt "settings"
|
6256 |
msgid "Deauthorize"
|
@@ -6305,28 +6274,28 @@ msgctxt "themes"
|
|
6305 |
msgid "Could not delete theme directory. Check permissions."
|
6306 |
msgstr "Det gick inte att ta bort tema katalog. Kontrollera behörigheterna."
|
6307 |
|
6308 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6309 |
msgctxt "themes"
|
6310 |
msgid "Please upload a valid theme file."
|
6311 |
msgstr "Vänligen ladda upp en giltig temafil."
|
6312 |
|
6313 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6314 |
msgctxt "themes"
|
6315 |
msgid "Could not move \"%s\" to a temporary directory."
|
6316 |
msgstr "Det gick inte att flytta \"%s\" till en tillfällig katalog."
|
6317 |
|
6318 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6319 |
msgctxt "themes"
|
6320 |
msgid "Activate your <a>license key</a> to use this theme."
|
6321 |
msgstr "Aktivera din <a>licensnyckel</a> för att använda detta tema."
|
6322 |
|
6323 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6324 |
#, fuzzy
|
6325 |
msgctxt "themes"
|
6326 |
msgid "Invalid theme ID"
|
6327 |
msgstr "Ogiltigt objekt-ID"
|
6328 |
|
6329 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6330 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6331 |
msgctxt "themes"
|
6332 |
msgid "Could not update theme: %s"
|
@@ -6751,24 +6720,24 @@ msgid "Trash"
|
|
6751 |
msgstr "Papperskorg"
|
6752 |
|
6753 |
#. translators: %s: url shortcode
|
6754 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6755 |
msgctxt "contact email"
|
6756 |
msgid "You have received a reply from your listing at %s."
|
6757 |
msgstr "Du har mottagit ett svar på din annons på %s."
|
6758 |
|
6759 |
#. translators: %s: name shortcode
|
6760 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6761 |
msgctxt "contact email"
|
6762 |
msgid "Name: %s"
|
6763 |
msgstr "Namn: %s"
|
6764 |
|
6765 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6766 |
msgctxt "contact email"
|
6767 |
msgid "Message:"
|
6768 |
msgstr "Meddelande:"
|
6769 |
|
6770 |
#. translators: %s: date shortcode
|
6771 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6772 |
msgctxt "contact email"
|
6773 |
msgid "Time: %s"
|
6774 |
msgstr "Tid: %s"
|
@@ -7069,35 +7038,35 @@ msgctxt "listing"
|
|
7069 |
msgid "Add New Listing"
|
7070 |
msgstr "Lägg till ny annons"
|
7071 |
|
7072 |
-
#: includes/models/class-listing.php:
|
7073 |
#, fuzzy
|
7074 |
msgctxt "listing"
|
7075 |
msgid "Listing has no registered payments"
|
7076 |
msgstr "Utgångsdatum för annons"
|
7077 |
|
7078 |
-
#: includes/models/class-listing.php:
|
7079 |
#, fuzzy
|
7080 |
msgctxt "listing"
|
7081 |
msgid "Can't delete payment"
|
7082 |
msgstr "Ta bort betalning"
|
7083 |
|
7084 |
-
#: includes/models/class-listing.php:
|
7085 |
msgctxt "listing"
|
7086 |
msgid "Listing expired"
|
7087 |
msgstr "Annonsen förfallit."
|
7088 |
|
7089 |
-
#: includes/models/class-listing.php:
|
7090 |
msgctxt "listing"
|
7091 |
msgid "(Unavailable Plan)"
|
7092 |
msgstr "(Avgiftsplan inte tillgänglig)"
|
7093 |
|
7094 |
-
#: includes/models/class-listing.php:
|
7095 |
#, fuzzy
|
7096 |
msgctxt "listing"
|
7097 |
msgid "Plan \"%s\" (recurring)"
|
7098 |
msgstr "(återkommande)"
|
7099 |
|
7100 |
-
#: includes/models/class-listing.php:
|
7101 |
msgctxt "listing"
|
7102 |
msgid "Plan \"%s\""
|
7103 |
msgstr "Plan ”%s”"
|
@@ -7235,7 +7204,7 @@ msgctxt "payment-gateways"
|
|
7235 |
msgid "Enable %s?"
|
7236 |
msgstr "Aktivera %s?"
|
7237 |
|
7238 |
-
#: includes/class-payment-gateways.php:
|
7239 |
msgctxt "payment-gateways"
|
7240 |
msgid ""
|
7241 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
@@ -7244,24 +7213,11 @@ msgstr ""
|
|
7244 |
"<b>%S</b> modulen är aktiv men inte korrekt konfigurerad. Modulen kommer "
|
7245 |
"inte att vara tillgänglig förrän följande problem åtgärdats: <b>%s</b>."
|
7246 |
|
7247 |
-
#: includes/class-payment-gateways.php:
|
7248 |
msgctxt "payment-gateways"
|
7249 |
msgid "Please check the <link>payment settings</link>."
|
7250 |
msgstr "Vänligen kontrollera <link> betalningsinställningar</link>."
|
7251 |
|
7252 |
-
#: includes/class-payment-gateways.php:142
|
7253 |
-
msgctxt "payment-gateways"
|
7254 |
-
msgid ""
|
7255 |
-
"You have payments turned on but no gateway is active and properly "
|
7256 |
-
"configured. Go to <link>Manage Options - Payment</link> to change the "
|
7257 |
-
"payment settings. Until you change this, the directory will operate in "
|
7258 |
-
"<i>Free Mode</i>."
|
7259 |
-
msgstr ""
|
7260 |
-
"Du har betalningar påslagna men ingen modul är aktiv och korrekt "
|
7261 |
-
"konfigurerad. Gå till <a href=\"%s\">Hantera Alternativ - Betalning</a> för "
|
7262 |
-
"att ändra betalningsinställningarna. Innan du ändrat detta kommer katalogen "
|
7263 |
-
"fungera <i>i gratisläget</i>."
|
7264 |
-
|
7265 |
#: includes/class-recaptcha.php:32
|
7266 |
msgctxt "recaptcha"
|
7267 |
msgid "The reCAPTCHA wasn't entered correctly."
|
@@ -7485,7 +7441,7 @@ msgstr ""
|
|
7485 |
"av din webbplats. Om du inte vill det, klicka <a>här för</a> att ändra "
|
7486 |
"inställningen."
|
7487 |
|
7488 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7489 |
msgctxt "templates"
|
7490 |
msgid ""
|
7491 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
@@ -7494,27 +7450,27 @@ msgstr ""
|
|
7494 |
"<b>Vyn inte tillgänglig.</b> Har du \"Inaktivera inlämning av annons på "
|
7495 |
"framsidan?\"-inställningen markerad?"
|
7496 |
|
7497 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7498 |
msgctxt "templates"
|
7499 |
msgid ""
|
7500 |
"Listing submission has been disabled. Contact the administrator for details."
|
7501 |
msgstr ""
|
7502 |
|
7503 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7504 |
msgctxt "templates"
|
7505 |
msgid ""
|
7506 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7507 |
"submit a listing. %s to create a fee plan"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7511 |
msgctxt "templates"
|
7512 |
msgid ""
|
7513 |
"Listing submission is not available at the moment. Contact the administrator "
|
7514 |
"for details."
|
7515 |
msgstr ""
|
7516 |
|
7517 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7518 |
msgctxt "templates"
|
7519 |
msgid ""
|
7520 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -7522,17 +7478,17 @@ msgid ""
|
|
7522 |
"an existing field"
|
7523 |
msgstr ""
|
7524 |
|
7525 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7526 |
msgctxt "templates"
|
7527 |
msgid "Please agree to the Terms and Conditions."
|
7528 |
msgstr "Vänligen godkänn villkoren"
|
7529 |
|
7530 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7531 |
msgctxt "templates"
|
7532 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7533 |
msgstr "Jag godtar <a>villkoren</a>."
|
7534 |
|
7535 |
-
#: includes/helpers/functions/general.php:
|
7536 |
#, fuzzy
|
7537 |
msgctxt "templates"
|
7538 |
msgid "Return to results"
|
@@ -7874,7 +7830,7 @@ msgctxt "submit listing"
|
|
7874 |
msgid "You can't edit this listing."
|
7875 |
msgstr "Kategorier för denna annons"
|
7876 |
|
7877 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7878 |
msgctxt "submit listing"
|
7879 |
msgid ""
|
7880 |
"This listing can't be edited at this time because it has no fee plan "
|
@@ -7885,7 +7841,7 @@ msgstr ""
|
|
7885 |
"avgiftsplan kopplad. Vänligen <a>Redigera annonsen</a> på backend och koppla "
|
7886 |
"den till en avgift plan."
|
7887 |
|
7888 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7889 |
msgctxt "submit listing"
|
7890 |
msgid ""
|
7891 |
"This listing can't be edited at this time. Please try again later or contact "
|
@@ -7894,58 +7850,58 @@ msgstr ""
|
|
7894 |
"Denna annons kan inte redigeras just nu. Vänligen försök igen om en lite "
|
7895 |
"stund eller kontakta administratören om problemet kvarstår."
|
7896 |
|
7897 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7898 |
msgctxt "submit listing"
|
7899 |
msgid "You're logged in as admin, payment will be skipped."
|
7900 |
msgstr "Du är inloggad som administratör, alla betalningssteg hoppas över."
|
7901 |
|
7902 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7903 |
msgctxt "submit listing"
|
7904 |
msgid "Category selection"
|
7905 |
msgstr "Val av kategori"
|
7906 |
|
7907 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7908 |
msgctxt "submit listing"
|
7909 |
msgid "Category & plan selection"
|
7910 |
msgstr "Val av kategori och avgiftsplan"
|
7911 |
|
7912 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7913 |
msgctxt "submit listing"
|
7914 |
msgid "Can not submit a listing at this moment. Please try again later."
|
7915 |
msgstr "Det går inte att registrera en annons just nu. Försök igen senare."
|
7916 |
|
7917 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7918 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7919 |
msgctxt "submit listing"
|
7920 |
msgid "Please select a category."
|
7921 |
msgstr "Välj en kategori."
|
7922 |
|
7923 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7924 |
msgctxt "submit listing"
|
7925 |
msgid "Please choose a valid category for your plan."
|
7926 |
msgstr "Välj en giltig kategori för din plan."
|
7927 |
|
7928 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7929 |
msgctxt "submit listing"
|
7930 |
msgid "Please choose a valid fee plan for your category selection."
|
7931 |
msgstr "Välj en avgiftsplan för ditt kategorival."
|
7932 |
|
7933 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7934 |
msgctxt "submit listing"
|
7935 |
msgid "Please enter your desired username."
|
7936 |
msgstr "Fyll i ditt önskade användarnamn."
|
7937 |
|
7938 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7939 |
msgctxt "submit listing"
|
7940 |
msgid "Please enter the e-mail for your new account."
|
7941 |
msgstr "Fyll i e-postadressen för ditt nya konto."
|
7942 |
|
7943 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7944 |
msgctxt "submit listing"
|
7945 |
msgid "The username you chose is already in use. Please use a different one."
|
7946 |
msgstr "Användarnamnet upptaget, var vänlig försök med ett annat."
|
7947 |
|
7948 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7949 |
msgctxt "submit listing"
|
7950 |
msgid "The e-mail address you chose for your account is already in use."
|
7951 |
msgstr "E-postadressen du valt för ditt konto används redan."
|
@@ -7955,7 +7911,7 @@ msgctxt "submit listing"
|
|
7955 |
msgid "Listing submitted by admin. Payment skipped."
|
7956 |
msgstr "Notering skickas in av admin. Betalning hoppas över."
|
7957 |
|
7958 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7959 |
msgctxt "listing submit"
|
7960 |
msgid ""
|
7961 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8284,12 +8240,12 @@ msgctxt "default category name"
|
|
8284 |
msgid "General"
|
8285 |
msgstr "Allmän"
|
8286 |
|
8287 |
-
#: includes/licensing.php:
|
8288 |
msgctxt "licensing"
|
8289 |
msgid "Could not contact licensing server"
|
8290 |
msgstr "Det gick inte att kontakta licensservern"
|
8291 |
|
8292 |
-
#: includes/licensing.php:
|
8293 |
#, fuzzy
|
8294 |
msgctxt "licensing"
|
8295 |
msgid ""
|
@@ -8299,7 +8255,7 @@ msgstr ""
|
|
8299 |
"Det var inte möjligt att etablera en kontakt med Business Directorys server. "
|
8300 |
"Ett problem inträffade i SSL/TSL handskakning:"
|
8301 |
|
8302 |
-
#: includes/licensing.php:
|
8303 |
msgctxt "licensing"
|
8304 |
msgid ""
|
8305 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8312,7 +8268,7 @@ msgstr ""
|
|
8312 |
"version av OpenSSL som stöder TLSv1.2 (minsta version med support är OpenSSL "
|
8313 |
"1.0.1c)."
|
8314 |
|
8315 |
-
#: includes/licensing.php:
|
8316 |
msgctxt "licensing"
|
8317 |
msgid ""
|
8318 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8324,7 +8280,7 @@ msgstr ""
|
|
8324 |
"webbplats för att interagera med tjänster som använder de senaste "
|
8325 |
"säkerhetsstandarderna."
|
8326 |
|
8327 |
-
#: includes/licensing.php:
|
8328 |
#, fuzzy
|
8329 |
msgctxt "licensing"
|
8330 |
msgid ""
|
@@ -8334,7 +8290,7 @@ msgstr ""
|
|
8334 |
"Kontakta ditt webbhotell och be dem att uppgradera ditt system. Inkludera "
|
8335 |
"detta meddelande om nödvändigt."
|
8336 |
|
8337 |
-
#: includes/licensing.php:
|
8338 |
#, fuzzy
|
8339 |
msgctxt "licensing"
|
8340 |
msgid ""
|
@@ -8344,33 +8300,33 @@ msgstr ""
|
|
8344 |
"Kontakta ditt webbhotell och be dem att uppgradera ditt system. Inkludera "
|
8345 |
"detta meddelande om nödvändigt."
|
8346 |
|
8347 |
-
#: includes/licensing.php:
|
8348 |
msgctxt "licensing"
|
8349 |
msgid "The server returned a 403 Forbidden error."
|
8350 |
msgstr "Servern returnerade ett 403 Forbidden fel."
|
8351 |
|
8352 |
-
#: includes/licensing.php:
|
8353 |
msgctxt "licensing"
|
8354 |
msgid "Could not activate license: %s."
|
8355 |
msgstr "Det gick inte att aktivera licens:%s."
|
8356 |
|
8357 |
-
#: includes/licensing.php:
|
8358 |
msgctxt "licensing"
|
8359 |
msgid "License activated"
|
8360 |
msgstr "Licens aktiverad"
|
8361 |
|
8362 |
-
#: includes/licensing.php:
|
8363 |
msgctxt "licensing"
|
8364 |
msgid "Could not deactivate license: %s."
|
8365 |
msgstr "Det gick inte att inaktivera licens:%s."
|
8366 |
|
8367 |
-
#: includes/licensing.php:
|
8368 |
msgctxt "licensing"
|
8369 |
msgid "License deactivated"
|
8370 |
msgstr "Licensnyckel avaktiverad"
|
8371 |
|
8372 |
#. translators: "<module-name>" version <version-number> is not...
|
8373 |
-
#: includes/licensing.php:
|
8374 |
#, fuzzy
|
8375 |
msgctxt "deprecation"
|
8376 |
msgid ""
|
@@ -8392,17 +8348,17 @@ msgid_plural "%d images allowed."
|
|
8392 |
msgstr[0] "%d bild tillåten."
|
8393 |
msgstr[1] "%d bilder tillåtna."
|
8394 |
|
8395 |
-
#: includes/models/class-fee-plan.php:
|
8396 |
msgctxt "fees-api"
|
8397 |
msgid "Fee label is required."
|
8398 |
msgstr "Avgiftsetikett är obligatoriskt."
|
8399 |
|
8400 |
-
#: includes/models/class-fee-plan.php:
|
8401 |
msgctxt "fees-api"
|
8402 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8403 |
msgstr "Avgiftens varaktighet måste vara ett tal mindre än 10 år (3650 dagar)."
|
8404 |
|
8405 |
-
#: includes/models/class-fee-plan.php:
|
8406 |
msgctxt "fees-api"
|
8407 |
msgid ""
|
8408 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
@@ -8410,7 +8366,7 @@ msgid ""
|
|
8410 |
"<a>fee plan</a> appropriately."
|
8411 |
msgstr ""
|
8412 |
|
8413 |
-
#: includes/models/class-fee-plan.php:
|
8414 |
msgctxt "fees-api"
|
8415 |
msgid ""
|
8416 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
@@ -8484,17 +8440,17 @@ msgctxt "utils"
|
|
8484 |
msgid "Unkown error while uploading file."
|
8485 |
msgstr "Okänt fel uppstod när filen laddades upp."
|
8486 |
|
8487 |
-
#: includes/utils.php:
|
8488 |
msgctxt "utils"
|
8489 |
msgid "Error while uploading file"
|
8490 |
msgstr "Okänt fel uppstod när filen laddades upp."
|
8491 |
|
8492 |
-
#: includes/utils.php:
|
8493 |
msgctxt "utils"
|
8494 |
msgid "File type \"%s\" is not allowed"
|
8495 |
msgstr "Filtyp \"%s\" är inte tillåten"
|
8496 |
|
8497 |
-
#: includes/utils.php:
|
8498 |
msgctxt "utils"
|
8499 |
msgid ""
|
8500 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8602,47 +8558,6 @@ msgctxt "admin forms"
|
|
8602 |
msgid "required"
|
8603 |
msgstr "obligatoriskt"
|
8604 |
|
8605 |
-
#: templates/admin/home.tpl.php:12
|
8606 |
-
msgctxt "admin home"
|
8607 |
-
msgid "Welcome to Business Directory Plugin. You are using %s."
|
8608 |
-
msgstr "Välkommen till Business Directory Plugin. Du använder %s."
|
8609 |
-
|
8610 |
-
#: templates/admin/home.tpl.php:15
|
8611 |
-
msgctxt "admin home"
|
8612 |
-
msgid ""
|
8613 |
-
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
8614 |
-
"let's jump right in!"
|
8615 |
-
msgstr ""
|
8616 |
-
"Tack för att du valt oss. Det finns förmodligen massor du vill ha gjort, så "
|
8617 |
-
"låt oss sätta igång!"
|
8618 |
-
|
8619 |
-
#: templates/admin/home.tpl.php:28
|
8620 |
-
msgctxt "admin home"
|
8621 |
-
msgid ""
|
8622 |
-
"Our complete documentation is <a>here</a> which we encourage you to use "
|
8623 |
-
"while setting things up."
|
8624 |
-
msgstr ""
|
8625 |
-
"Fullständig dokumentation hittar du <a>här</a> och vi rekommenderar att du "
|
8626 |
-
"använder den när du gör inställningarna."
|
8627 |
-
|
8628 |
-
#: templates/admin/home.tpl.php:36
|
8629 |
-
msgctxt "admin home"
|
8630 |
-
msgid ""
|
8631 |
-
"We have some quick-start scenarios that you will find useful regarding setup "
|
8632 |
-
"and configuration <a>here</a>."
|
8633 |
-
msgstr ""
|
8634 |
-
"Vi har några snabbstartscenarier som du kommer att ha nytta av när det "
|
8635 |
-
"gäller installation och konfiguration <a>här</a> ."
|
8636 |
-
|
8637 |
-
#: templates/admin/home.tpl.php:45
|
8638 |
-
msgctxt "admin home"
|
8639 |
-
msgid ""
|
8640 |
-
"If you have questions, please post a comment on <a>support forum</a> and "
|
8641 |
-
"we'll answer it within 24 hours most days."
|
8642 |
-
msgstr ""
|
8643 |
-
"Om du har frågor, vänligen skicka en kommentar på <a>supportforumet</a> och "
|
8644 |
-
"vi kommer att svara inom 24 timmar de flesta dagar."
|
8645 |
-
|
8646 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8647 |
msgctxt "admin infometabox"
|
8648 |
msgid "Renewal url (copy & paste)"
|
@@ -8922,6 +8837,45 @@ msgctxt "send-access-keys"
|
|
8922 |
msgid "Continue"
|
8923 |
msgstr "Fortsätt "
|
8924 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8925 |
#, fuzzy
|
8926 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
8927 |
#~ msgstr "Bildbredden (%s px) är större än högsta tillåtna bredd%s px."
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-02 19:38:07+00:00\n"
|
9 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
88 |
msgid "Directory"
|
89 |
msgstr "Katalog"
|
90 |
|
91 |
+
#: includes/admin/class-admin.php:312
|
92 |
#, fuzzy
|
93 |
msgid "Fee Plans"
|
94 |
msgstr "Avgiftsplan"
|
95 |
|
96 |
+
#: includes/admin/class-admin.php:315
|
97 |
#, fuzzy
|
98 |
msgid "Form Fields"
|
99 |
msgstr "Formulärfält"
|
100 |
|
101 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
102 |
+
#: includes/licensing.php:227
|
103 |
#, fuzzy
|
104 |
msgid "Modules"
|
105 |
msgstr "(Alla moduler)"
|
227 |
msgstr "Belopp"
|
228 |
|
229 |
#: includes/admin/controllers/class-admin-fees.php:49
|
230 |
+
#: includes/admin/helpers/tables/class-fees-table.php:65
|
231 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
232 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
233 |
#, fuzzy
|
265 |
msgstr "Avgiftsplan uppdaterad."
|
266 |
|
267 |
#: includes/admin/controllers/class-admin-listings.php:185
|
268 |
+
#: includes/controllers/pages/class-submit-listing.php:518
|
269 |
#: templates/email/listing-reported.tpl.php:7
|
270 |
msgid "Listing Information"
|
271 |
msgstr "Information om annons"
|
315 |
"låta Business Directory göra det åt dig automatiskt."
|
316 |
|
317 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
318 |
+
#: includes/controllers/pages/class-submit-listing.php:848
|
319 |
#, fuzzy
|
320 |
msgid "Go to \"Form Fields\""
|
321 |
msgstr "Gå till \"Hantera formulärfält\""
|
322 |
|
323 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
324 |
+
#: includes/helpers/functions/general.php:1366
|
325 |
+
#: includes/helpers/functions/general.php:1371
|
326 |
#, fuzzy
|
327 |
msgid "Go back"
|
328 |
msgstr "Nej, gå tillbaka"
|
435 |
msgstr "Varför avinstallerar du Business Directory Plugin?"
|
436 |
|
437 |
#: includes/admin/controllers/class-settings-admin.php:536
|
438 |
+
#: includes/admin/helpers/tables/class-fees-table.php:174
|
439 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
440 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
441 |
#: templates/admin/payments-note.tpl.php:14
|
442 |
+
#: templates/admin/themes-item.tpl.php:66
|
443 |
#: templates/parts/listing-buttons.tpl.php:31
|
444 |
#: templates/parts/listing-buttons.tpl.php:65
|
445 |
#, fuzzy
|
493 |
msgstr "Installerat"
|
494 |
|
495 |
#: includes/admin/helpers/class-modules-list.php:187
|
496 |
+
#: includes/admin/helpers/tables/class-fees-table.php:284
|
497 |
+
#: templates/admin/themes-item.tpl.php:41
|
498 |
#, fuzzy
|
499 |
msgid "Active"
|
500 |
msgstr "Aktiv"
|
506 |
|
507 |
#: includes/admin/helpers/class-modules-list.php:225
|
508 |
#: includes/controllers/class-smtp.php:317
|
509 |
+
#: templates/admin/themes-item.tpl.php:61
|
510 |
#, fuzzy
|
511 |
msgid "Activate"
|
512 |
msgstr "Aktivera:"
|
513 |
|
514 |
#: includes/admin/helpers/class-modules-list.php:235
|
515 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:275
|
516 |
#, fuzzy
|
517 |
msgid "Upgrade Now"
|
518 |
msgstr "Uppgradera till %s"
|
530 |
|
531 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
532 |
#, fuzzy
|
533 |
+
msgid "Order"
|
534 |
+
msgstr "Ordning"
|
535 |
+
|
536 |
+
#: includes/admin/helpers/tables/class-fees-table.php:62
|
537 |
+
#, fuzzy
|
538 |
msgid "Plan Details"
|
539 |
msgstr "Detaljer för plan"
|
540 |
|
541 |
+
#: includes/admin/helpers/tables/class-fees-table.php:63
|
542 |
#, fuzzy
|
543 |
msgid "Pricing"
|
544 |
msgstr "Prissättning"
|
545 |
|
546 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
547 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
548 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
549 |
#: includes/helpers/class-app.php:92
|
551 |
msgid "Listings"
|
552 |
msgstr "Annonser"
|
553 |
|
554 |
+
#: includes/admin/helpers/tables/class-fees-table.php:153
|
555 |
#, fuzzy
|
556 |
msgid "Disable"
|
557 |
msgstr "Koppla ur"
|
558 |
|
559 |
+
#: includes/admin/helpers/tables/class-fees-table.php:159
|
560 |
#, fuzzy
|
561 |
msgid "Enable"
|
562 |
msgstr "Aktivera"
|
563 |
|
564 |
+
#: includes/admin/helpers/tables/class-fees-table.php:181
|
565 |
msgid "ID: %s"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
569 |
#, fuzzy
|
570 |
msgid "Paid Plan"
|
571 |
msgstr "Betald"
|
572 |
|
573 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
574 |
#, fuzzy
|
575 |
msgid "Free Plan"
|
576 |
msgstr "Avgiftsplan"
|
577 |
|
578 |
+
#: includes/admin/helpers/tables/class-fees-table.php:219
|
579 |
#, fuzzy
|
580 |
msgid "%1$s for %2$s"
|
581 |
msgstr "%s (ex.%s)"
|
582 |
|
583 |
+
#: includes/admin/helpers/tables/class-fees-table.php:282
|
|
|
584 |
#, fuzzy
|
585 |
msgid "Disabled"
|
586 |
msgstr "Inaktiverad"
|
587 |
|
588 |
+
#: includes/admin/helpers/tables/class-fees-table.php:288
|
589 |
#: includes/helpers/functions/templates-ui.php:431
|
590 |
#, fuzzy
|
591 |
msgid "Default"
|
629 |
msgstr "Saknade tabeller:%s"
|
630 |
|
631 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
632 |
+
#: includes/controllers/pages/class-submit-listing.php:1252
|
633 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
634 |
#: templates/listing-contactform.tpl.php:33
|
635 |
#: templates/listing-flagging-form.tpl.php:39
|
678 |
|
679 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
680 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
681 |
+
#: includes/controllers/pages/class-submit-listing.php:531
|
682 |
#, fuzzy
|
683 |
msgid "Terms and Conditions"
|
684 |
msgstr "Villkor"
|
913 |
msgid "URL"
|
914 |
msgstr "URL"
|
915 |
|
916 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1226
|
917 |
#, fuzzy
|
918 |
msgid "Thank you for your payment."
|
919 |
msgstr "Tack för din betalning-meddelande"
|
920 |
|
921 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1254
|
922 |
msgid ""
|
923 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
924 |
"collect payments in this currency."
|
928 |
msgstr[0] ""
|
929 |
msgstr[1] ""
|
930 |
|
931 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
932 |
#, fuzzy
|
933 |
msgid "Email Notifications"
|
934 |
msgstr "E-postnotifikationer"
|
935 |
|
936 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1347
|
937 |
#, fuzzy
|
938 |
msgid "Notify admin via email when..."
|
939 |
msgstr "Meddela administratören via e-post när..."
|
940 |
|
941 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1365
|
942 |
#, fuzzy
|
943 |
msgid "CC this email address too"
|
944 |
msgstr "Kopia till denna e-postadress också."
|
945 |
|
946 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
947 |
#, fuzzy
|
948 |
msgid ""
|
949 |
"You can modify the text template used for most of these emails in the "
|
953 |
"link>mallfliken\n"
|
954 |
"</templates-link>."
|
955 |
|
956 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1379
|
957 |
#, fuzzy
|
958 |
msgid "Notify users via email when..."
|
959 |
msgstr "Meddela användare via e-post när..."
|
960 |
|
961 |
#. translators: %s: email shortcode
|
962 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1446
|
963 |
#, fuzzy
|
964 |
msgid "Email: %s"
|
965 |
msgstr "E-postadress: %s"
|
966 |
|
967 |
#. translators: %s: phone shortcode
|
968 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1449
|
969 |
#, fuzzy
|
970 |
msgid "Phone Number: %s"
|
971 |
msgstr "Telefonnummer"
|
972 |
|
973 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
974 |
#, fuzzy
|
975 |
msgid "Sender's email address"
|
976 |
msgstr "Skriv in din e-postadress"
|
977 |
|
978 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1462
|
979 |
#, fuzzy
|
980 |
msgid "Sender's phone number"
|
981 |
msgstr "Författarens namn"
|
982 |
|
983 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1526
|
984 |
#, fuzzy
|
985 |
msgid "Renewal and expiration"
|
986 |
msgstr "%d vecka efter förfallodatum"
|
987 |
|
988 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1662
|
989 |
#: templates/admin/uninstall-complete.tpl.php:4
|
990 |
msgid "Uninstall"
|
991 |
msgstr "Avinstallera"
|
1090 |
|
1091 |
#. translators: %s: Status name
|
1092 |
#: includes/admin/views/modules/list.php:63
|
1093 |
+
#: templates/admin/themes-item.tpl.php:50
|
1094 |
#, fuzzy
|
1095 |
msgid "Status: %s"
|
1096 |
msgstr "Status:"
|
1263 |
msgid "View All Listings"
|
1264 |
msgstr "Visa alla annonser"
|
1265 |
|
1266 |
+
#: includes/class-payment-gateways.php:144
|
|
|
1267 |
msgid ""
|
1268 |
+
"You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s "
|
1269 |
+
"to set up a gateway. Until you do this, only free plans will be available."
|
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/class-wpbdp.php:369
|
1293 |
"Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
|
1294 |
"skicka igen."
|
1295 |
|
1296 |
+
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:322
|
1297 |
#, fuzzy
|
1298 |
msgid "Could not find image ID"
|
1299 |
msgstr "Det gick inte att uppdatera tema:%s"
|
1501 |
msgstr ""
|
1502 |
"Detta är enbart en förhandsgranskning, annonsen har inte publicerats ännu."
|
1503 |
|
1504 |
+
#: includes/controllers/pages/class-submit-listing.php:564
|
1505 |
#, fuzzy
|
1506 |
msgid "Listing Images"
|
1507 |
msgstr "Annonsbilder"
|
1508 |
|
1509 |
+
#: includes/controllers/pages/class-submit-listing.php:632
|
1510 |
#, fuzzy
|
1511 |
msgid "Account Creation"
|
1512 |
msgstr "Konto skapas"
|
1513 |
|
1514 |
+
#: includes/controllers/pages/class-submit-listing.php:831
|
1515 |
#, fuzzy
|
1516 |
msgid "Go to \"Fee Plans\""
|
1517 |
msgstr "Avgiftsplan"
|
1518 |
|
1519 |
+
#: includes/controllers/pages/class-submit-listing.php:887
|
1520 |
#, fuzzy
|
1521 |
msgid "Please choose a fee plan."
|
1522 |
msgstr "(Vänligen välj en avgiftsplan ovan)"
|
1523 |
|
1524 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1525 |
#, fuzzy
|
1526 |
msgid "Please check the form for errors, correct them and submit again."
|
1527 |
msgstr ""
|
1528 |
"Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
|
1529 |
"skicka igen."
|
1530 |
|
1531 |
+
#: includes/controllers/pages/class-submit-listing.php:1236
|
1532 |
#, fuzzy
|
1533 |
msgid "Create a user account on this site"
|
1534 |
msgstr "Skapa ett användarkonto på denna webbplats"
|
1535 |
|
1536 |
+
#: includes/controllers/pages/class-submit-listing.php:1243
|
1537 |
#, fuzzy
|
1538 |
msgid "Username"
|
1539 |
msgstr "Användarnamn:"
|
1540 |
|
1541 |
+
#: includes/controllers/pages/class-submit-listing.php:1265
|
1542 |
#, fuzzy
|
1543 |
msgid "Clear Form"
|
1544 |
msgstr "Rensa"
|
1859 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: includes/helpers/functions/general.php:568
|
|
|
1863 |
msgid "Free"
|
1864 |
msgstr "Gratis"
|
1865 |
|
1874 |
msgstr "Hantera betalda annonser"
|
1875 |
|
1876 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1877 |
+
#: includes/licensing.php:150
|
1878 |
msgid ""
|
1879 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1880 |
"get updates."
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: includes/licensing.php:203 includes/licensing.php:206
|
1884 |
msgid "Licenses"
|
1885 |
msgstr "Licenser"
|
1886 |
|
1887 |
+
#: includes/licensing.php:273
|
1888 |
msgid "Build more powerful directories"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: includes/licensing.php:274
|
1892 |
msgid ""
|
1893 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: includes/licensing.php:276
|
1897 |
#, fuzzy
|
1898 |
msgid "Already purchased?"
|
1899 |
msgstr "Redan installerad."
|
1900 |
|
1901 |
#. translators: %s: item type.
|
1902 |
+
#: includes/licensing.php:294
|
1903 |
msgid "%s will not get updates until license is reauthorized."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: includes/licensing.php:315
|
1907 |
#, fuzzy
|
1908 |
msgid "Enter License Key here"
|
1909 |
msgstr "Ange licensnyckel här"
|
1910 |
|
1911 |
+
#: includes/licensing.php:316
|
1912 |
#, fuzzy
|
1913 |
msgid "Authorize"
|
1914 |
msgstr "Authorize.net"
|
1915 |
|
1916 |
+
#: includes/licensing.php:420
|
1917 |
#, fuzzy
|
1918 |
msgid "Invalid item ID"
|
1919 |
msgstr "Ogiltigt objekt-ID"
|
1920 |
|
1921 |
+
#: includes/licensing.php:433
|
1922 |
#, fuzzy
|
1923 |
msgid "No license key provided"
|
1924 |
msgstr "Ingen licensnyckel angiven"
|
1925 |
|
1926 |
+
#: includes/licensing.php:482 includes/licensing.php:520
|
1927 |
#, fuzzy
|
1928 |
msgid "License key is invalid"
|
1929 |
msgstr "Licensnyckel är ogiltig"
|
1930 |
|
1931 |
+
#: includes/licensing.php:486
|
1932 |
#, fuzzy
|
1933 |
msgid "Deactivation failed"
|
1934 |
msgstr "Deaktivering misslyckades"
|
1935 |
|
1936 |
+
#: includes/licensing.php:531
|
1937 |
#, fuzzy
|
1938 |
msgid "The license key was revoked."
|
1939 |
msgstr "Ingen licensnyckel angiven"
|
1940 |
|
1941 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1942 |
+
#: includes/licensing.php:535
|
1943 |
#, fuzzy
|
1944 |
msgid ""
|
1945 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1951 |
"Business Directorys servers. Vänligen kontakta <support-link>Business "
|
1952 |
"Directory support</support-link> och be dem vitlista din IP-adress."
|
1953 |
|
1954 |
+
#: includes/licensing.php:598
|
1955 |
#, fuzzy
|
1956 |
msgid ""
|
1957 |
"It was not possible to establish a connection with the Business Directory "
|
1960 |
"Det var inte möjligt att upprätta en anslutning med Business Directory "
|
1961 |
"server. Anslutningen misslyckades med följande fel:"
|
1962 |
|
1963 |
+
#: includes/licensing.php:611
|
1964 |
#, fuzzy
|
1965 |
msgid ""
|
1966 |
"It was not possible to establish a connection with the Business Directory "
|
1969 |
"Det var inte möjligt att etablera en kontakt med Business Directorys server. "
|
1970 |
"Ett problem inträffade i SSL/TSL handskakning:"
|
1971 |
|
1972 |
+
#: includes/licensing.php:658
|
1973 |
#, fuzzy
|
1974 |
msgid ""
|
1975 |
"It looks like your server is not authorized to make outgoing requests to "
|
1980 |
"Business Directorys servers. Vänligen kontakta <support-link>Business "
|
1981 |
"Directory support</support-link> och be dem vitlista din IP-adress."
|
1982 |
|
1983 |
+
#: includes/licensing.php:752
|
1984 |
#, fuzzy
|
1985 |
msgid "Business Directory license key is missing."
|
1986 |
msgstr "Business Directory - Licensnyckel har upphört"
|
1987 |
|
1988 |
+
#: includes/licensing.php:753
|
1989 |
#, fuzzy
|
1990 |
msgid "Business Directory license key has expired"
|
1991 |
msgstr "Business Directory - Licensnyckel har upphört"
|
1992 |
|
1993 |
+
#: includes/licensing.php:754
|
1994 |
#, fuzzy
|
1995 |
msgid "Could not verify Business Directory license."
|
1996 |
msgstr "Hjälp oss förbättra Business Directory"
|
1997 |
|
1998 |
+
#: includes/licensing.php:765
|
1999 |
#, fuzzy
|
2000 |
msgid "Review license keys"
|
2001 |
msgstr "Granska mina licensnycklar"
|
2002 |
|
2003 |
+
#: includes/licensing.php:880
|
2004 |
msgid "Missing data. Please reload this page and try again."
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: includes/licensing.php:885
|
2008 |
#, fuzzy
|
2009 |
msgid "Please enter a license key."
|
2010 |
msgstr "Skriv in licensnyckel"
|
2052 |
msgid "ZIP file is not a valid Business Directory theme file."
|
2053 |
msgstr "ZIP-filen är inte en giltig BD temafil."
|
2054 |
|
2055 |
+
#: includes/utils.php:341
|
2056 |
#, fuzzy
|
2057 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
2058 |
msgstr "Filstorlek (%s) överskrider maximal filstorlek på %s"
|
2059 |
|
2060 |
+
#: includes/utils.php:350
|
2061 |
#, fuzzy
|
2062 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
2063 |
msgstr "Filstorlek (%s) är sämre än den minifilstiorleken på%s"
|
2420 |
msgid "Add New Listing Fee"
|
2421 |
msgstr "Lägg till ny avgift"
|
2422 |
|
2423 |
+
#: templates/admin/fees-index.tpl.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2424 |
#, fuzzy
|
2425 |
msgid "Order fees on the frontend by:"
|
2426 |
msgstr "Order avgifter på frontend efter:"
|
2427 |
|
2428 |
+
#: templates/admin/fees-index.tpl.php:30
|
2429 |
#, fuzzy
|
2430 |
msgid "↑ Ascending"
|
2431 |
msgstr "↑ Stigande"
|
2432 |
|
2433 |
+
#: templates/admin/fees-index.tpl.php:31
|
2434 |
#, fuzzy
|
2435 |
msgid "↓ Descending"
|
2436 |
msgstr "↓ Fallande"
|
2437 |
|
2438 |
+
#: templates/admin/fees-index.tpl.php:39
|
2439 |
#, fuzzy
|
2440 |
msgid "Drag and drop to re-order fees."
|
2441 |
msgstr "Dra och släpp för att ändra ordning på avgifter"
|
2442 |
|
|
|
|
|
|
|
|
|
|
|
2443 |
#: templates/admin/fees-index.tpl.php:67
|
|
|
|
|
|
|
|
|
2444 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: templates/admin/fees-index.tpl.php:69
|
2448 |
msgid "Add a payment gateway to increase conversion rates"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
#. translators: %s: payment gateway name */
|
2452 |
+
#: templates/admin/fees-index.tpl.php:88
|
2453 |
msgid "Add the %s gateway as a payment option."
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: templates/admin/fees-index.tpl.php:94
|
2457 |
#, fuzzy
|
2458 |
msgid "Upgrade"
|
2459 |
msgstr "Uppgradera till %s"
|
2460 |
|
2461 |
+
#: templates/admin/fees-index.tpl.php:102
|
2462 |
msgid "Set up Authorize.net as a payment option."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: templates/admin/fees-index.tpl.php:105
|
2466 |
msgid "Set Up"
|
2467 |
msgstr ""
|
2468 |
|
2496 |
msgid "Delete Field"
|
2497 |
msgstr "Radera fält"
|
2498 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2499 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2500 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2501 |
#: templates/login.tpl.php:71
|
2817 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2818 |
msgstr "Ny version tillgänglig <b>(%s).</b> <a>Uppdatera nu.</a>"
|
2819 |
|
2820 |
+
#: templates/admin/themes-item.tpl.php:45
|
2821 |
#, fuzzy
|
2822 |
msgid "Inactive"
|
2823 |
msgstr "Aktiv"
|
3872 |
msgid "Fee \"%s\" deleted."
|
3873 |
msgstr "Avgift \"%s\" borttagen."
|
3874 |
|
3875 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3876 |
+
#, fuzzy
|
3877 |
+
msgctxt "fees admin"
|
3878 |
+
msgid "Fee enabled."
|
3879 |
+
msgstr "Avgift inaktiverad."
|
3880 |
+
|
3881 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3882 |
msgctxt "fees admin"
|
3883 |
msgid "Fee disabled."
|
3884 |
msgstr "Avgift inaktiverad."
|
3893 |
msgid "fees"
|
3894 |
msgstr "avgifter"
|
3895 |
|
3896 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3897 |
msgctxt "fees admin"
|
3898 |
msgid "Attributes"
|
3899 |
msgstr "Attribut"
|
3900 |
|
3901 |
+
#: includes/admin/helpers/tables/class-fees-table.php:137
|
3902 |
msgctxt "fees admin"
|
3903 |
msgid "Edit"
|
3904 |
msgstr "Redigera"
|
3905 |
|
3906 |
+
#: includes/admin/helpers/tables/class-fees-table.php:207
|
3907 |
msgctxt "fees admin"
|
3908 |
msgid "Variable"
|
3909 |
msgstr "Variabel"
|
3910 |
|
3911 |
+
#: includes/admin/helpers/tables/class-fees-table.php:212
|
3912 |
#, fuzzy
|
3913 |
msgctxt "fees admin"
|
3914 |
msgid "%1$s + %2$s per category"
|
3915 |
msgstr "%s + %s per kategori"
|
3916 |
|
3917 |
+
#: includes/admin/helpers/tables/class-fees-table.php:231
|
3918 |
msgctxt "fees admin"
|
3919 |
msgid "Forever"
|
3920 |
msgstr "För alltid"
|
3921 |
|
3922 |
+
#: includes/admin/helpers/tables/class-fees-table.php:233
|
3923 |
msgctxt "fees admin"
|
3924 |
msgid "%d day"
|
3925 |
msgid_plural "%d days"
|
3926 |
msgstr[0] "%d dag"
|
3927 |
msgstr[1] "%d dagar"
|
3928 |
|
3929 |
+
#: includes/admin/helpers/tables/class-fees-table.php:263
|
3930 |
msgctxt "fees admin"
|
3931 |
msgid "All categories"
|
3932 |
msgstr "Alla kategorier"
|
3933 |
|
3934 |
+
#: includes/admin/helpers/tables/class-fees-table.php:292
|
3935 |
msgctxt "fees admin"
|
3936 |
msgid "Sticky"
|
3937 |
msgstr "Klistrad"
|
3938 |
|
3939 |
+
#: includes/admin/helpers/tables/class-fees-table.php:296
|
3940 |
msgctxt "fees admin"
|
3941 |
msgid "Recurring"
|
3942 |
msgstr "Återkommande"
|
3943 |
|
3944 |
+
#: includes/admin/helpers/tables/class-fees-table.php:300
|
3945 |
#, fuzzy
|
3946 |
msgctxt "fees admin"
|
3947 |
msgid "Private"
|
4120 |
msgid "Reported"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
+
#: includes/models/class-listing.php:961
|
4124 |
msgctxt "listing status"
|
4125 |
msgid "Unknown"
|
4126 |
msgstr "Okänd"
|
4127 |
|
4128 |
+
#: includes/models/class-listing.php:962
|
4129 |
msgctxt "listing status"
|
4130 |
msgid "Legacy"
|
4131 |
msgstr "Legat"
|
4132 |
|
4133 |
+
#: includes/models/class-listing.php:963
|
4134 |
msgctxt "listing status"
|
4135 |
msgid "Incomplete"
|
4136 |
msgstr "Ofullständig"
|
4137 |
|
4138 |
+
#: includes/models/class-listing.php:964
|
4139 |
msgctxt "listing status"
|
4140 |
msgid "Pending Payment"
|
4141 |
msgstr "Väntar på betalning."
|
4142 |
|
4143 |
+
#: includes/models/class-listing.php:965
|
4144 |
msgctxt "listing status"
|
4145 |
msgid "Complete"
|
4146 |
msgstr "Genomförd"
|
4147 |
|
4148 |
+
#: includes/models/class-listing.php:966
|
4149 |
msgctxt "listing status"
|
4150 |
msgid "Pending Upgrade"
|
4151 |
msgstr "Väntar på uppgradering"
|
4152 |
|
4153 |
+
#: includes/models/class-listing.php:967
|
4154 |
msgctxt "listing status"
|
4155 |
msgid "Expired"
|
4156 |
msgstr "Utgången"
|
4157 |
|
4158 |
+
#: includes/models/class-listing.php:968
|
4159 |
msgctxt "listing status"
|
4160 |
msgid "Pending Renewal"
|
4161 |
msgstr "Inväntar förnyelse"
|
4162 |
|
4163 |
+
#: includes/models/class-listing.php:969
|
4164 |
msgctxt "listing status"
|
4165 |
msgid "Abandoned"
|
4166 |
msgstr "Övergiven"
|
4823 |
msgstr "Författare"
|
4824 |
|
4825 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4826 |
+
#: includes/helpers/functions/general.php:1281
|
4827 |
msgctxt "admin settings"
|
4828 |
msgid "Date posted"
|
4829 |
msgstr "Datum inlagd"
|
4830 |
|
4831 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4832 |
+
#: includes/helpers/functions/general.php:1282
|
4833 |
msgctxt "admin settings"
|
4834 |
msgid "Date last modified"
|
4835 |
msgstr "Senast ändrad"
|
5004 |
msgid "U.S. Dollar (USD)"
|
5005 |
msgstr "US-dollar (USD)"
|
5006 |
|
5007 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
5008 |
msgctxt "admin settings"
|
5009 |
msgid "Show currency symbol on the left"
|
5010 |
msgstr "Visa valutasymbol till vänster"
|
5011 |
|
5012 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
5013 |
msgctxt "admin settings"
|
5014 |
msgid "Show currency symbol on the right"
|
5015 |
msgstr "Visa valutasymbol till höger"
|
5016 |
|
5017 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
5018 |
msgctxt "admin settings"
|
5019 |
msgid "Do not show currency symbol"
|
5020 |
msgstr "Visa inte valutasymbol"
|
5021 |
|
5022 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5023 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
5024 |
msgctxt "admin settings"
|
5025 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
5029 |
#, fuzzy
|
5030 |
msgctxt "admin settings"
|
5031 |
msgid ""
|
5035 |
"Annonser med avvaktande betalningar är markerade som övergivna efter denna "
|
5036 |
"tid. Du kan också <a>anpassa e-mejlet</a> användaren får."
|
5037 |
|
5038 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1320
|
5039 |
msgctxt "admin settings"
|
5040 |
msgid "Try listing's email field first, then author's email."
|
5041 |
msgstr "Försök med annonsens e-postfält först, därefter författarens e-post."
|
5042 |
|
5043 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1321
|
5044 |
msgctxt "admin settings"
|
5045 |
msgid "Try author's email first and then listing's email field."
|
5046 |
msgstr ""
|
5047 |
"Försök med författarens e-post först och därefter annonsens e-postfält."
|
5048 |
|
5049 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1334
|
5050 |
msgctxt "admin settings"
|
5051 |
msgid "Plain (text/plain)"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1335
|
5055 |
msgctxt "admin settings"
|
5056 |
msgid "HTML (text/html)"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1336
|
5060 |
msgctxt "admin settings"
|
5061 |
msgid "Both (multipart/alternative)"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1350
|
5065 |
msgctxt "admin settings"
|
5066 |
msgid "A new listing is submitted."
|
5067 |
msgstr "En ny annons lagts in."
|
5068 |
|
5069 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1351
|
5070 |
msgctxt "admin settings"
|
5071 |
msgid "A listing is edited."
|
5072 |
msgstr "En annons är redigerad."
|
5073 |
|
5074 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
5075 |
msgctxt "admin settings"
|
5076 |
msgid "A listing expires."
|
5077 |
msgstr "En annons förfaller."
|
5078 |
|
5079 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
5080 |
msgctxt "admin settings"
|
5081 |
msgid "A listing is renewed."
|
5082 |
msgstr "En annons är förnyad."
|
5083 |
|
5084 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1354
|
5085 |
#, fuzzy
|
5086 |
msgctxt "admin settings"
|
5087 |
msgid "A listing payment is completed."
|
5088 |
msgstr "En annons är redigerad."
|
5089 |
|
5090 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1355
|
5091 |
#, fuzzy
|
5092 |
msgctxt "admin settings"
|
5093 |
msgid "A listing has been reported as inappropriate."
|
5094 |
msgstr "Annonsen har uppgraderats."
|
5095 |
|
5096 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
5097 |
msgctxt "admin settings"
|
5098 |
msgid "A contact message is sent to a listing's owner."
|
5099 |
msgstr "Ett kontaktsmeddelande skickas till annonsens ägare."
|
5100 |
|
5101 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
5102 |
msgctxt "admin settings"
|
5103 |
msgid "Their listing is submitted."
|
5104 |
msgstr "Deras annons lagts in."
|
5105 |
|
5106 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1384
|
5107 |
msgctxt "admin settings"
|
5108 |
msgid "Their listing is approved/published."
|
5109 |
msgstr "Deras annons är godkänd / publicerad."
|
5110 |
|
5111 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1385
|
5112 |
#, fuzzy
|
5113 |
msgctxt "admin settings"
|
5114 |
msgid "A payment for their listing is completed."
|
5115 |
msgstr "Deras annons lagts in."
|
5116 |
|
5117 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
5118 |
#, fuzzy
|
5119 |
msgctxt "admin settings"
|
5120 |
msgid "Their listing expired or is about to expire."
|
5121 |
msgstr "Deras annons lagts in."
|
5122 |
|
5123 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1404
|
5124 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
5125 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
5126 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
5127 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1514
|
5128 |
msgctxt "admin settings"
|
5129 |
msgid "Listing's title"
|
5130 |
msgstr "Annonsens titel"
|
5131 |
|
5132 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1405
|
5133 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
5134 |
#, fuzzy
|
5135 |
msgctxt "admin settings"
|
5136 |
msgid "Listing's fee plan name"
|
5137 |
msgstr "Utgångsdatum för annons"
|
5138 |
|
5139 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1406
|
5140 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
5141 |
#, fuzzy
|
5142 |
msgctxt "admin settings"
|
5143 |
msgid "Listing's fee plan description"
|
5144 |
msgstr "Urval av annonsavgifter"
|
5145 |
|
5146 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
5147 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
5148 |
#, fuzzy
|
5149 |
msgctxt "admin settings"
|
5150 |
msgid "Listing's fee plan details"
|
5151 |
msgstr "Utgångsdatum för annons"
|
5152 |
|
5153 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
5154 |
msgctxt "admin settings"
|
5155 |
msgid ""
|
5156 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
5159 |
"Din annons \"[listing]\" är nu tillgänglig på [listing-url] och kan ses av "
|
5160 |
"allmänheten."
|
5161 |
|
5162 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1424
|
5163 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1458
|
5164 |
msgctxt "admin settings"
|
5165 |
msgid "Listing's URL"
|
5166 |
msgstr "Annons-URL"
|
5167 |
|
5168 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1425
|
5169 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1465
|
5170 |
#, fuzzy
|
5171 |
msgctxt "admin settings"
|
5172 |
msgid "Listing's Access Key"
|
5173 |
msgstr "Åtkomstnycklar till annons"
|
5174 |
|
5175 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
5176 |
#, fuzzy
|
5177 |
msgctxt "admin settings"
|
5178 |
msgid "Sender's name"
|
5179 |
msgstr "Författarens namn"
|
5180 |
|
5181 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1463
|
5182 |
#, fuzzy
|
5183 |
msgctxt "admin settings"
|
5184 |
msgid "Contact message"
|
5185 |
msgstr "Annonskontaktsmeddelande"
|
5186 |
|
5187 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1464
|
5188 |
msgctxt "admin settings"
|
5189 |
msgid "Date and time the message was sent"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
5193 |
#, fuzzy
|
5194 |
msgctxt "admin settings"
|
5195 |
msgid "Payment items details."
|
5196 |
msgstr "Betalningsdetaljer"
|
5197 |
|
5198 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
5199 |
msgctxt "admin settings"
|
5200 |
msgid "URL where user can review and print payment receipt."
|
5201 |
msgstr ""
|
5202 |
|
5203 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
5204 |
#, fuzzy
|
5205 |
msgctxt "admin settings"
|
5206 |
msgid "Gateway used to process listing's payment."
|
5207 |
msgstr "Det gick inte att bearbeta betalningen."
|
5208 |
|
5209 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1515
|
5210 |
msgctxt "admin settings"
|
5211 |
msgid "Checkout URL link"
|
5212 |
msgstr "Kassan URL"
|
5213 |
|
5214 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1617
|
5215 |
#, fuzzy
|
5216 |
msgctxt "admin settings"
|
5217 |
msgid "Uploaded Image (no resize)"
|
5218 |
msgstr "Ladda upp bilder"
|
5219 |
|
5220 |
+
#: includes/helpers/functions/general.php:1279
|
5221 |
msgctxt "admin settings"
|
5222 |
msgid "User"
|
5223 |
msgstr "Användare"
|
5224 |
|
5225 |
+
#: includes/helpers/functions/general.php:1280
|
5226 |
msgctxt "admin settings"
|
5227 |
msgid "User registration date"
|
5228 |
msgstr "Användarens registreringsdatum"
|
5445 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
5446 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
5447 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
5448 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1301
|
5449 |
#: includes/admin/settings/class-settings.php:341
|
5450 |
msgctxt "settings"
|
5451 |
msgid "General Settings"
|
6048 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6049 |
msgstr ""
|
6050 |
|
6051 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1132
|
6052 |
msgctxt "settings"
|
6053 |
msgid "Fee Order"
|
6054 |
msgstr "Avgiftsordning"
|
6055 |
|
6056 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1145
|
|
|
|
|
|
|
|
|
|
|
6057 |
msgctxt "settings"
|
6058 |
msgid "Put payment gateways in test mode?"
|
6059 |
msgstr "Sätta betalningsmodulen i testläge?"
|
6063 |
msgid "Currency Code"
|
6064 |
msgstr "Valutakod"
|
6065 |
|
6066 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
6067 |
msgctxt "settings"
|
6068 |
msgid "Currency Symbol"
|
6069 |
msgstr "Valutasymbol"
|
6070 |
|
6071 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
6072 |
msgctxt "settings"
|
6073 |
msgid "Currency symbol display"
|
6074 |
msgstr "Visa valutasymbol"
|
6075 |
|
6076 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
6077 |
msgctxt "settings"
|
6078 |
msgid "Include fee description in receipt?"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1225
|
6082 |
msgctxt "settings"
|
6083 |
msgid "Thank you for payment message"
|
6084 |
msgstr "Tack för din betalning-meddelande"
|
6085 |
|
6086 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1278
|
6087 |
msgctxt "settings"
|
6088 |
msgid "Ask users to come back for abandoned payments?"
|
6089 |
msgstr "Fråga användare om de vill komma tillbaka och genomföra sin betalning?"
|
6090 |
|
6091 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1289
|
6092 |
msgctxt "settings"
|
6093 |
msgid "Listing abandonment threshold (hours)"
|
6094 |
msgstr "Tröskel för övergivning (timmar)"
|
6095 |
|
6096 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1306
|
6097 |
msgctxt "settings"
|
6098 |
msgid "Display email address fields publicly?"
|
6099 |
msgstr "Visa e-postadress-fälten offentligt?"
|
6100 |
|
6101 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1307
|
6102 |
msgctxt "settings"
|
6103 |
msgid ""
|
6104 |
"Shows the email address of the listing owner to all web users. NOT "
|
6109 |
"eftersom detta ökar spam-mejlen och tillåter spam-bottar att inhämta "
|
6110 |
"mejladressen för framtida bruk."
|
6111 |
|
6112 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1316
|
6113 |
msgctxt "settings"
|
6114 |
msgid "How to determine the listing's email address?"
|
6115 |
msgstr "Hur fastställa annonsens e-postadress?"
|
6116 |
|
6117 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1317
|
6118 |
msgctxt "settings"
|
6119 |
msgid ""
|
6120 |
"This affects emails sent to listing owners via contact forms or when their "
|
6123 |
"Detta påverkar e-postmeddelanden som skickas till annonsägaren via "
|
6124 |
"kontaktformuläret eller när deras annons löper ut."
|
6125 |
|
6126 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1330
|
6127 |
msgctxt "settings"
|
6128 |
msgid "Email Content-Type header"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1331
|
6132 |
msgctxt "settings"
|
6133 |
msgid ""
|
6134 |
"Use this setting to control the format of the emails explicitly. Some "
|
6137 |
"then \"Both\"."
|
6138 |
msgstr ""
|
6139 |
|
6140 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
6141 |
msgctxt "settings"
|
6142 |
msgid "Templates"
|
6143 |
msgstr "E-postmallar"
|
6144 |
|
6145 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1397
|
6146 |
msgctxt "settings"
|
6147 |
msgid "Email confirmation message"
|
6148 |
msgstr "E-post bekräftelsemeddelande"
|
6149 |
|
6150 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1398
|
6151 |
msgctxt "settings"
|
6152 |
msgid "Sent after a listing has been submitted."
|
6153 |
msgstr "Skickas efter en annons har skickats in."
|
6154 |
|
6155 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1416
|
6156 |
msgctxt "settings"
|
6157 |
msgid "Listing published message"
|
6158 |
msgstr "Meddelande för publicerad annons"
|
6159 |
|
6160 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1417
|
6161 |
msgctxt "settings"
|
6162 |
msgid "Sent when the listing has been published or approved by an admin."
|
6163 |
msgstr "Skickas när annonsen har publicerats eller godkänts av administratör."
|
6164 |
|
6165 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
6166 |
msgctxt "settings"
|
6167 |
msgid "Listing Contact Message"
|
6168 |
msgstr "Annonskontaktsmeddelande"
|
6169 |
|
6170 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1435
|
6171 |
msgctxt "settings"
|
6172 |
msgid ""
|
6173 |
"Sent to listing owners when someone uses the contact form on their listing "
|
6176 |
"Skickas till annonsägare när någon använder kontaktformuläret på deras "
|
6177 |
"annonssida."
|
6178 |
|
6179 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1475
|
6180 |
#, fuzzy
|
6181 |
msgctxt "settings"
|
6182 |
msgid "Payment completed message"
|
6183 |
msgstr "Påminnelse för övergivna betalningar"
|
6184 |
|
6185 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
6186 |
#, fuzzy
|
6187 |
msgctxt "settings"
|
6188 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6189 |
msgstr "Skickas en tid efter att en betalning övergivits av användaren."
|
6190 |
|
6191 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
6192 |
msgctxt "settings"
|
6193 |
msgid "Payment abandoned reminder message"
|
6194 |
msgstr "Påminnelse för övergivna betalningar"
|
6195 |
|
6196 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1638
|
6197 |
msgctxt "settings"
|
6198 |
msgid "Cropped"
|
6199 |
msgstr ""
|
6209 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6210 |
msgstr "Sluggen “%s” används redan för en annan taxonomi."
|
6211 |
|
6212 |
+
#: includes/licensing.php:245
|
6213 |
msgctxt "settings"
|
6214 |
msgid "Themes"
|
6215 |
msgstr "Teman"
|
6216 |
|
6217 |
+
#: includes/licensing.php:316 includes/licensing.php:317
|
6218 |
msgctxt "settings"
|
6219 |
msgid "Please wait..."
|
6220 |
msgstr "Vänligen vänta..."
|
6221 |
|
6222 |
+
#: includes/licensing.php:317
|
6223 |
#, fuzzy
|
6224 |
msgctxt "settings"
|
6225 |
msgid "Deauthorize"
|
6274 |
msgid "Could not delete theme directory. Check permissions."
|
6275 |
msgstr "Det gick inte att ta bort tema katalog. Kontrollera behörigheterna."
|
6276 |
|
6277 |
+
#: includes/admin/controllers/class-themes-admin.php:240
|
6278 |
msgctxt "themes"
|
6279 |
msgid "Please upload a valid theme file."
|
6280 |
msgstr "Vänligen ladda upp en giltig temafil."
|
6281 |
|
6282 |
+
#: includes/admin/controllers/class-themes-admin.php:249
|
6283 |
msgctxt "themes"
|
6284 |
msgid "Could not move \"%s\" to a temporary directory."
|
6285 |
msgstr "Det gick inte att flytta \"%s\" till en tillfällig katalog."
|
6286 |
|
6287 |
+
#: includes/admin/controllers/class-themes-admin.php:335
|
6288 |
msgctxt "themes"
|
6289 |
msgid "Activate your <a>license key</a> to use this theme."
|
6290 |
msgstr "Aktivera din <a>licensnyckel</a> för att använda detta tema."
|
6291 |
|
6292 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
6293 |
#, fuzzy
|
6294 |
msgctxt "themes"
|
6295 |
msgid "Invalid theme ID"
|
6296 |
msgstr "Ogiltigt objekt-ID"
|
6297 |
|
6298 |
+
#: includes/admin/controllers/class-themes-admin.php:384
|
6299 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6300 |
msgctxt "themes"
|
6301 |
msgid "Could not update theme: %s"
|
6720 |
msgstr "Papperskorg"
|
6721 |
|
6722 |
#. translators: %s: url shortcode
|
6723 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
6724 |
msgctxt "contact email"
|
6725 |
msgid "You have received a reply from your listing at %s."
|
6726 |
msgstr "Du har mottagit ett svar på din annons på %s."
|
6727 |
|
6728 |
#. translators: %s: name shortcode
|
6729 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
6730 |
msgctxt "contact email"
|
6731 |
msgid "Name: %s"
|
6732 |
msgstr "Namn: %s"
|
6733 |
|
6734 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1451
|
6735 |
msgctxt "contact email"
|
6736 |
msgid "Message:"
|
6737 |
msgstr "Meddelande:"
|
6738 |
|
6739 |
#. translators: %s: date shortcode
|
6740 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1455
|
6741 |
msgctxt "contact email"
|
6742 |
msgid "Time: %s"
|
6743 |
msgstr "Tid: %s"
|
7038 |
msgid "Add New Listing"
|
7039 |
msgstr "Lägg till ny annons"
|
7040 |
|
7041 |
+
#: includes/models/class-listing.php:421
|
7042 |
#, fuzzy
|
7043 |
msgctxt "listing"
|
7044 |
msgid "Listing has no registered payments"
|
7045 |
msgstr "Utgångsdatum för annons"
|
7046 |
|
7047 |
+
#: includes/models/class-listing.php:430
|
7048 |
#, fuzzy
|
7049 |
msgctxt "listing"
|
7050 |
msgid "Can't delete payment"
|
7051 |
msgstr "Ta bort betalning"
|
7052 |
|
7053 |
+
#: includes/models/class-listing.php:468
|
7054 |
msgctxt "listing"
|
7055 |
msgid "Listing expired"
|
7056 |
msgstr "Annonsen förfallit."
|
7057 |
|
7058 |
+
#: includes/models/class-listing.php:668
|
7059 |
msgctxt "listing"
|
7060 |
msgid "(Unavailable Plan)"
|
7061 |
msgstr "(Avgiftsplan inte tillgänglig)"
|
7062 |
|
7063 |
+
#: includes/models/class-listing.php:858
|
7064 |
#, fuzzy
|
7065 |
msgctxt "listing"
|
7066 |
msgid "Plan \"%s\" (recurring)"
|
7067 |
msgstr "(återkommande)"
|
7068 |
|
7069 |
+
#: includes/models/class-listing.php:860
|
7070 |
msgctxt "listing"
|
7071 |
msgid "Plan \"%s\""
|
7072 |
msgstr "Plan ”%s”"
|
7204 |
msgid "Enable %s?"
|
7205 |
msgstr "Aktivera %s?"
|
7206 |
|
7207 |
+
#: includes/class-payment-gateways.php:131
|
7208 |
msgctxt "payment-gateways"
|
7209 |
msgid ""
|
7210 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
7213 |
"<b>%S</b> modulen är aktiv men inte korrekt konfigurerad. Modulen kommer "
|
7214 |
"inte att vara tillgänglig förrän följande problem åtgärdats: <b>%s</b>."
|
7215 |
|
7216 |
+
#: includes/class-payment-gateways.php:133
|
7217 |
msgctxt "payment-gateways"
|
7218 |
msgid "Please check the <link>payment settings</link>."
|
7219 |
msgstr "Vänligen kontrollera <link> betalningsinställningar</link>."
|
7220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7221 |
#: includes/class-recaptcha.php:32
|
7222 |
msgctxt "recaptcha"
|
7223 |
msgid "The reCAPTCHA wasn't entered correctly."
|
7441 |
"av din webbplats. Om du inte vill det, klicka <a>här för</a> att ändra "
|
7442 |
"inställningen."
|
7443 |
|
7444 |
+
#: includes/controllers/pages/class-submit-listing.php:424
|
7445 |
msgctxt "templates"
|
7446 |
msgid ""
|
7447 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7450 |
"<b>Vyn inte tillgänglig.</b> Har du \"Inaktivera inlämning av annons på "
|
7451 |
"framsidan?\"-inställningen markerad?"
|
7452 |
|
7453 |
+
#: includes/controllers/pages/class-submit-listing.php:426
|
7454 |
msgctxt "templates"
|
7455 |
msgid ""
|
7456 |
"Listing submission has been disabled. Contact the administrator for details."
|
7457 |
msgstr ""
|
7458 |
|
7459 |
+
#: includes/controllers/pages/class-submit-listing.php:824
|
7460 |
msgctxt "templates"
|
7461 |
msgid ""
|
7462 |
"<b>There are no Fee Plans available</b>, without a fee plan site users can't "
|
7463 |
"submit a listing. %s to create a fee plan"
|
7464 |
msgstr ""
|
7465 |
|
7466 |
+
#: includes/controllers/pages/class-submit-listing.php:838
|
7467 |
msgctxt "templates"
|
7468 |
msgid ""
|
7469 |
"Listing submission is not available at the moment. Contact the administrator "
|
7470 |
"for details."
|
7471 |
msgstr ""
|
7472 |
|
7473 |
+
#: includes/controllers/pages/class-submit-listing.php:841
|
7474 |
msgctxt "templates"
|
7475 |
msgid ""
|
7476 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
7478 |
"an existing field"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
+
#: includes/controllers/pages/class-submit-listing.php:1286
|
7482 |
msgctxt "templates"
|
7483 |
msgid "Please agree to the Terms and Conditions."
|
7484 |
msgstr "Vänligen godkänn villkoren"
|
7485 |
|
7486 |
+
#: includes/controllers/pages/class-submit-listing.php:1300
|
7487 |
msgctxt "templates"
|
7488 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7489 |
msgstr "Jag godtar <a>villkoren</a>."
|
7490 |
|
7491 |
+
#: includes/helpers/functions/general.php:1362
|
7492 |
#, fuzzy
|
7493 |
msgctxt "templates"
|
7494 |
msgid "Return to results"
|
7830 |
msgid "You can't edit this listing."
|
7831 |
msgstr "Kategorier för denna annons"
|
7832 |
|
7833 |
+
#: includes/controllers/pages/class-submit-listing.php:168
|
7834 |
msgctxt "submit listing"
|
7835 |
msgid ""
|
7836 |
"This listing can't be edited at this time because it has no fee plan "
|
7841 |
"avgiftsplan kopplad. Vänligen <a>Redigera annonsen</a> på backend och koppla "
|
7842 |
"den till en avgift plan."
|
7843 |
|
7844 |
+
#: includes/controllers/pages/class-submit-listing.php:174
|
7845 |
msgctxt "submit listing"
|
7846 |
msgid ""
|
7847 |
"This listing can't be edited at this time. Please try again later or contact "
|
7850 |
"Denna annons kan inte redigeras just nu. Vänligen försök igen om en lite "
|
7851 |
"stund eller kontakta administratören om problemet kvarstår."
|
7852 |
|
7853 |
+
#: includes/controllers/pages/class-submit-listing.php:198
|
7854 |
msgctxt "submit listing"
|
7855 |
msgid "You're logged in as admin, payment will be skipped."
|
7856 |
msgstr "Du är inloggad som administratör, alla betalningssteg hoppas över."
|
7857 |
|
7858 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7859 |
msgctxt "submit listing"
|
7860 |
msgid "Category selection"
|
7861 |
msgstr "Val av kategori"
|
7862 |
|
7863 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
7864 |
msgctxt "submit listing"
|
7865 |
msgid "Category & plan selection"
|
7866 |
msgstr "Val av kategori och avgiftsplan"
|
7867 |
|
7868 |
+
#: includes/controllers/pages/class-submit-listing.php:821
|
7869 |
msgctxt "submit listing"
|
7870 |
msgid "Can not submit a listing at this moment. Please try again later."
|
7871 |
msgstr "Det går inte att registrera en annons just nu. Försök igen senare."
|
7872 |
|
7873 |
+
#: includes/controllers/pages/class-submit-listing.php:870
|
7874 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
7875 |
msgctxt "submit listing"
|
7876 |
msgid "Please select a category."
|
7877 |
msgstr "Välj en kategori."
|
7878 |
|
7879 |
+
#: includes/controllers/pages/class-submit-listing.php:893
|
7880 |
msgctxt "submit listing"
|
7881 |
msgid "Please choose a valid category for your plan."
|
7882 |
msgstr "Välj en giltig kategori för din plan."
|
7883 |
|
7884 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
7885 |
msgctxt "submit listing"
|
7886 |
msgid "Please choose a valid fee plan for your category selection."
|
7887 |
msgstr "Välj en avgiftsplan för ditt kategorival."
|
7888 |
|
7889 |
+
#: includes/controllers/pages/class-submit-listing.php:1206
|
7890 |
msgctxt "submit listing"
|
7891 |
msgid "Please enter your desired username."
|
7892 |
msgstr "Fyll i ditt önskade användarnamn."
|
7893 |
|
7894 |
+
#: includes/controllers/pages/class-submit-listing.php:1211
|
7895 |
msgctxt "submit listing"
|
7896 |
msgid "Please enter the e-mail for your new account."
|
7897 |
msgstr "Fyll i e-postadressen för ditt nya konto."
|
7898 |
|
7899 |
+
#: includes/controllers/pages/class-submit-listing.php:1216
|
7900 |
msgctxt "submit listing"
|
7901 |
msgid "The username you chose is already in use. Please use a different one."
|
7902 |
msgstr "Användarnamnet upptaget, var vänlig försök med ett annat."
|
7903 |
|
7904 |
+
#: includes/controllers/pages/class-submit-listing.php:1221
|
7905 |
msgctxt "submit listing"
|
7906 |
msgid "The e-mail address you chose for your account is already in use."
|
7907 |
msgstr "E-postadressen du valt för ditt konto används redan."
|
7911 |
msgid "Listing submitted by admin. Payment skipped."
|
7912 |
msgstr "Notering skickas in av admin. Betalning hoppas över."
|
7913 |
|
7914 |
+
#: includes/controllers/pages/class-submit-listing.php:1161
|
7915 |
msgctxt "listing submit"
|
7916 |
msgid ""
|
7917 |
"Image upload is required, please provide at least one image and submit again."
|
8240 |
msgid "General"
|
8241 |
msgstr "Allmän"
|
8242 |
|
8243 |
+
#: includes/licensing.php:571
|
8244 |
msgctxt "licensing"
|
8245 |
msgid "Could not contact licensing server"
|
8246 |
msgstr "Det gick inte att kontakta licensservern"
|
8247 |
|
8248 |
+
#: includes/licensing.php:584
|
8249 |
#, fuzzy
|
8250 |
msgctxt "licensing"
|
8251 |
msgid ""
|
8255 |
"Det var inte möjligt att etablera en kontakt med Business Directorys server. "
|
8256 |
"Ett problem inträffade i SSL/TSL handskakning:"
|
8257 |
|
8258 |
+
#: includes/licensing.php:586 includes/licensing.php:616
|
8259 |
msgctxt "licensing"
|
8260 |
msgid ""
|
8261 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8268 |
"version av OpenSSL som stöder TLSv1.2 (minsta version med support är OpenSSL "
|
8269 |
"1.0.1c)."
|
8270 |
|
8271 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8272 |
msgctxt "licensing"
|
8273 |
msgid ""
|
8274 |
"Upgrading your system will not only allow you to communicate with Business "
|
8280 |
"webbplats för att interagera med tjänster som använder de senaste "
|
8281 |
"säkerhetsstandarderna."
|
8282 |
|
8283 |
+
#: includes/licensing.php:590
|
8284 |
#, fuzzy
|
8285 |
msgctxt "licensing"
|
8286 |
msgid ""
|
8290 |
"Kontakta ditt webbhotell och be dem att uppgradera ditt system. Inkludera "
|
8291 |
"detta meddelande om nödvändigt."
|
8292 |
|
8293 |
+
#: includes/licensing.php:620
|
8294 |
#, fuzzy
|
8295 |
msgctxt "licensing"
|
8296 |
msgid ""
|
8300 |
"Kontakta ditt webbhotell och be dem att uppgradera ditt system. Inkludera "
|
8301 |
"detta meddelande om nödvändigt."
|
8302 |
|
8303 |
+
#: includes/licensing.php:656
|
8304 |
msgctxt "licensing"
|
8305 |
msgid "The server returned a 403 Forbidden error."
|
8306 |
msgstr "Servern returnerade ett 403 Forbidden fel."
|
8307 |
|
8308 |
+
#: includes/licensing.php:902
|
8309 |
msgctxt "licensing"
|
8310 |
msgid "Could not activate license: %s."
|
8311 |
msgstr "Det gick inte att aktivera licens:%s."
|
8312 |
|
8313 |
+
#: includes/licensing.php:907
|
8314 |
msgctxt "licensing"
|
8315 |
msgid "License activated"
|
8316 |
msgstr "Licens aktiverad"
|
8317 |
|
8318 |
+
#: includes/licensing.php:939
|
8319 |
msgctxt "licensing"
|
8320 |
msgid "Could not deactivate license: %s."
|
8321 |
msgstr "Det gick inte att inaktivera licens:%s."
|
8322 |
|
8323 |
+
#: includes/licensing.php:941
|
8324 |
msgctxt "licensing"
|
8325 |
msgid "License deactivated"
|
8326 |
msgstr "Licensnyckel avaktiverad"
|
8327 |
|
8328 |
#. translators: "<module-name>" version <version-number> is not...
|
8329 |
+
#: includes/licensing.php:1181
|
8330 |
#, fuzzy
|
8331 |
msgctxt "deprecation"
|
8332 |
msgid ""
|
8348 |
msgstr[0] "%d bild tillåten."
|
8349 |
msgstr[1] "%d bilder tillåtna."
|
8350 |
|
8351 |
+
#: includes/models/class-fee-plan.php:387
|
8352 |
msgctxt "fees-api"
|
8353 |
msgid "Fee label is required."
|
8354 |
msgstr "Avgiftsetikett är obligatoriskt."
|
8355 |
|
8356 |
+
#: includes/models/class-fee-plan.php:393
|
8357 |
msgctxt "fees-api"
|
8358 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8359 |
msgstr "Avgiftens varaktighet måste vara ett tal mindre än 10 år (3650 dagar)."
|
8360 |
|
8361 |
+
#: includes/models/class-fee-plan.php:398
|
8362 |
msgctxt "fees-api"
|
8363 |
msgid ""
|
8364 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
8366 |
"<a>fee plan</a> appropriately."
|
8367 |
msgstr ""
|
8368 |
|
8369 |
+
#: includes/models/class-fee-plan.php:401
|
8370 |
msgctxt "fees-api"
|
8371 |
msgid ""
|
8372 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
8440 |
msgid "Unkown error while uploading file."
|
8441 |
msgstr "Okänt fel uppstod när filen laddades upp."
|
8442 |
|
8443 |
+
#: includes/utils.php:335
|
8444 |
msgctxt "utils"
|
8445 |
msgid "Error while uploading file"
|
8446 |
msgstr "Okänt fel uppstod när filen laddades upp."
|
8447 |
|
8448 |
+
#: includes/utils.php:359 includes/utils.php:366
|
8449 |
msgctxt "utils"
|
8450 |
msgid "File type \"%s\" is not allowed"
|
8451 |
msgstr "Filtyp \"%s\" är inte tillåten"
|
8452 |
|
8453 |
+
#: includes/utils.php:585
|
8454 |
msgctxt "utils"
|
8455 |
msgid ""
|
8456 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8558 |
msgid "required"
|
8559 |
msgstr "obligatoriskt"
|
8560 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8561 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
8562 |
msgctxt "admin infometabox"
|
8563 |
msgid "Renewal url (copy & paste)"
|
8837 |
msgid "Continue"
|
8838 |
msgstr "Fortsätt "
|
8839 |
|
8840 |
+
#, fuzzy
|
8841 |
+
#~ msgid "Payments are currently turned off."
|
8842 |
+
#~ msgstr "Betalningar för närvarande avstängt."
|
8843 |
+
|
8844 |
+
#, fuzzy
|
8845 |
+
#~ msgid ""
|
8846 |
+
#~ "To manage fees you need to go to the %1$sManage Options - Payment%2$s "
|
8847 |
+
#~ "page and check the box next to 'Turn On Payments' under 'Payment "
|
8848 |
+
#~ "Settings'."
|
8849 |
+
#~ msgstr ""
|
8850 |
+
#~ "För att hantera avgifter du behöver för att gå till <a>Hantera Alternativ "
|
8851 |
+
#~ "- Betalning</a> sida och markera rutan bredvid \"Aktivera betalningar\" "
|
8852 |
+
#~ "under \"Betalningsinställningar\"."
|
8853 |
+
|
8854 |
+
#~ msgid "Paid"
|
8855 |
+
#~ msgstr "Betald"
|
8856 |
+
|
8857 |
+
#~ msgid "Manage Options"
|
8858 |
+
#~ msgstr "Hantera alternativ"
|
8859 |
+
|
8860 |
+
#~ msgid "Manage Paid Listings"
|
8861 |
+
#~ msgstr "Hantera betalda annonser"
|
8862 |
+
|
8863 |
+
#~ msgctxt "settings"
|
8864 |
+
#~ msgid "Turn On payments?"
|
8865 |
+
#~ msgstr "Slå på betalningar?"
|
8866 |
+
|
8867 |
+
#~ msgctxt "payment-gateways"
|
8868 |
+
#~ msgid ""
|
8869 |
+
#~ "You have payments turned on but no gateway is active and properly "
|
8870 |
+
#~ "configured. Go to <link>Manage Options - Payment</link> to change the "
|
8871 |
+
#~ "payment settings. Until you change this, the directory will operate in "
|
8872 |
+
#~ "<i>Free Mode</i>."
|
8873 |
+
#~ msgstr ""
|
8874 |
+
#~ "Du har betalningar påslagna men ingen modul är aktiv och korrekt "
|
8875 |
+
#~ "konfigurerad. Gå till <a href=\"%s\">Hantera Alternativ - Betalning</a> "
|
8876 |
+
#~ "för att ändra betalningsinställningarna. Innan du ändrat detta kommer "
|
8877 |
+
#~ "katalogen fungera <i>i gratisläget</i>."
|
8878 |
+
|
8879 |
#, fuzzy
|
8880 |
#~ msgid "Image width (%1$s px) is smaller than the minimum width of %2$s px."
|
8881 |
#~ msgstr "Bildbredden (%s px) är större än högsta tillåtna bredd%s px."
|
languages/business-directory-plugin.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
# This file is distributed under the GPLv2 or any later version.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Business Directory Plugin 5.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/business-directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -73,16 +73,16 @@ msgstr ""
|
|
73 |
msgid "Directory"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: includes/admin/class-admin.php:312
|
77 |
msgid "Fee Plans"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: includes/admin/class-admin.php:315
|
81 |
msgid "Form Fields"
|
82 |
msgstr ""
|
83 |
|
84 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
85 |
-
#: includes/licensing.php:
|
86 |
msgid "Modules"
|
87 |
msgstr ""
|
88 |
|
@@ -187,7 +187,7 @@ msgid "Amount"
|
|
187 |
msgstr ""
|
188 |
|
189 |
#: includes/admin/controllers/class-admin-fees.php:49
|
190 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
191 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
192 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
193 |
msgid "Images"
|
@@ -219,7 +219,7 @@ msgid "Fee plan listings updated."
|
|
219 |
msgstr ""
|
220 |
|
221 |
#: includes/admin/controllers/class-admin-listings.php:185
|
222 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
223 |
#: templates/email/listing-reported.tpl.php:7
|
224 |
msgid "Listing Information"
|
225 |
msgstr ""
|
@@ -264,13 +264,13 @@ msgid ""
|
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
267 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
268 |
msgid "Go to \"Form Fields\""
|
269 |
msgstr ""
|
270 |
|
271 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
272 |
-
#: includes/helpers/functions/general.php:
|
273 |
-
#: includes/helpers/functions/general.php:
|
274 |
msgid "Go back"
|
275 |
msgstr ""
|
276 |
|
@@ -366,11 +366,11 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
366 |
msgstr ""
|
367 |
|
368 |
#: includes/admin/controllers/class-settings-admin.php:536
|
369 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
370 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
371 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
372 |
#: templates/admin/payments-note.tpl.php:14
|
373 |
-
#: templates/admin/themes-item.tpl.php:
|
374 |
#: templates/parts/listing-buttons.tpl.php:31
|
375 |
#: templates/parts/listing-buttons.tpl.php:65
|
376 |
msgid "Delete"
|
@@ -416,8 +416,8 @@ msgid "Installed"
|
|
416 |
msgstr ""
|
417 |
|
418 |
#: includes/admin/helpers/class-modules-list.php:187
|
419 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
420 |
-
#: templates/admin/themes-item.tpl.php:
|
421 |
msgid "Active"
|
422 |
msgstr ""
|
423 |
|
@@ -427,12 +427,12 @@ msgstr ""
|
|
427 |
|
428 |
#: includes/admin/helpers/class-modules-list.php:225
|
429 |
#: includes/controllers/class-smtp.php:317
|
430 |
-
#: templates/admin/themes-item.tpl.php:
|
431 |
msgid "Activate"
|
432 |
msgstr ""
|
433 |
|
434 |
#: includes/admin/helpers/class-modules-list.php:235
|
435 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
436 |
msgid "Upgrade Now"
|
437 |
msgstr ""
|
438 |
|
@@ -446,50 +446,53 @@ msgid "There are no fees right now. %1$sCreate one%2$s."
|
|
446 |
msgstr ""
|
447 |
|
448 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
449 |
-
msgid "
|
450 |
msgstr ""
|
451 |
|
452 |
#: includes/admin/helpers/tables/class-fees-table.php:62
|
453 |
-
msgid "
|
454 |
msgstr ""
|
455 |
|
456 |
#: includes/admin/helpers/tables/class-fees-table.php:63
|
|
|
|
|
|
|
|
|
457 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
458 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
459 |
#: includes/helpers/class-app.php:92
|
460 |
msgid "Listings"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
464 |
msgid "Disable"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
468 |
msgid "Enable"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
472 |
msgid "ID: %s"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
476 |
msgid "Paid Plan"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
480 |
msgid "Free Plan"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
484 |
msgid "%1$s for %2$s"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
488 |
-
#: includes/admin/helpers/tables/class-fees-table.php:293
|
489 |
msgid "Disabled"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
493 |
#: includes/helpers/functions/templates-ui.php:431
|
494 |
msgid "Default"
|
495 |
msgstr ""
|
@@ -527,7 +530,7 @@ msgid "Missing tables: %s"
|
|
527 |
msgstr ""
|
528 |
|
529 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
530 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
531 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
532 |
#: templates/listing-contactform.tpl.php:33
|
533 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -569,7 +572,7 @@ msgstr ""
|
|
569 |
|
570 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
571 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
572 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
573 |
msgid "Terms and Conditions"
|
574 |
msgstr ""
|
575 |
|
@@ -759,11 +762,11 @@ msgstr ""
|
|
759 |
msgid "URL"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
763 |
msgid "Thank you for your payment."
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
767 |
msgid ""
|
768 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
769 |
"collect payments in this currency."
|
@@ -773,51 +776,51 @@ msgid_plural ""
|
|
773 |
msgstr[0] ""
|
774 |
msgstr[1] ""
|
775 |
|
776 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
777 |
msgid "Email Notifications"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
781 |
msgid "Notify admin via email when..."
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
785 |
msgid "CC this email address too"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
789 |
msgid ""
|
790 |
"You can modify the text template used for most of these emails in the "
|
791 |
"<templates-link>Templates</templates-link> tab."
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
795 |
msgid "Notify users via email when..."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
799 |
#. translators: %s: email shortcode
|
800 |
msgid "Email: %s"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
804 |
#. translators: %s: phone shortcode
|
805 |
msgid "Phone Number: %s"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
809 |
msgid "Sender's email address"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
813 |
msgid "Sender's phone number"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
817 |
msgid "Renewal and expiration"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
821 |
#: templates/admin/uninstall-complete.tpl.php:4
|
822 |
msgid "Uninstall"
|
823 |
msgstr ""
|
@@ -908,7 +911,7 @@ msgid "View Docs"
|
|
908 |
msgstr ""
|
909 |
|
910 |
#: includes/admin/views/modules/list.php:63
|
911 |
-
#: templates/admin/themes-item.tpl.php:
|
912 |
#. translators: %s: Status name
|
913 |
msgid "Status: %s"
|
914 |
msgstr ""
|
@@ -1066,12 +1069,11 @@ msgstr ""
|
|
1066 |
msgid "View All Listings"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/class-payment-gateways.php:
|
1070 |
-
#. translators: %1$s: open link html, %2$s close link
|
1071 |
msgid ""
|
1072 |
-
"You have
|
1073 |
-
"
|
1074 |
-
"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
#: includes/class-wpbdp.php:369
|
@@ -1092,7 +1094,7 @@ msgid ""
|
|
1092 |
"admin."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:
|
1096 |
msgid "Could not find image ID"
|
1097 |
msgstr ""
|
1098 |
|
@@ -1276,35 +1278,35 @@ msgstr ""
|
|
1276 |
msgid "This is just a preview. The listing has not been published yet."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1280 |
msgid "Listing Images"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1284 |
msgid "Account Creation"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1288 |
msgid "Go to \"Fee Plans\""
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1292 |
msgid "Please choose a fee plan."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1296 |
msgid "Please check the form for errors, correct them and submit again."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1300 |
msgid "Create a user account on this site"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1304 |
msgid "Username"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1308 |
msgid "Clear Form"
|
1309 |
msgstr ""
|
1310 |
|
@@ -1568,8 +1570,7 @@ msgid ""
|
|
1568 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: includes/helpers/functions/general.php:
|
1572 |
-
#: templates/admin/fees-index.tpl.php:67
|
1573 |
msgid "Free"
|
1574 |
msgstr ""
|
1575 |
|
@@ -1581,63 +1582,63 @@ msgstr ""
|
|
1581 |
msgid "Manage Listings"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: includes/licensing.php:
|
1585 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1586 |
msgid ""
|
1587 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1588 |
"get updates."
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: includes/licensing.php:
|
1592 |
msgid "Licenses"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: includes/licensing.php:
|
1596 |
msgid "Build more powerful directories"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: includes/licensing.php:
|
1600 |
msgid "Add category images, maps, filter by location, payment gateways, and more."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: includes/licensing.php:
|
1604 |
msgid "Already purchased?"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: includes/licensing.php:
|
1608 |
#. translators: %s: item type.
|
1609 |
msgid "%s will not get updates until license is reauthorized."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: includes/licensing.php:
|
1613 |
msgid "Enter License Key here"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: includes/licensing.php:
|
1617 |
msgid "Authorize"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: includes/licensing.php:
|
1621 |
msgid "Invalid item ID"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: includes/licensing.php:
|
1625 |
msgid "No license key provided"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: includes/licensing.php:
|
1629 |
msgid "License key is invalid"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: includes/licensing.php:
|
1633 |
msgid "Deactivation failed"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: includes/licensing.php:
|
1637 |
msgid "The license key was revoked."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: includes/licensing.php:
|
1641 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1642 |
msgid ""
|
1643 |
"If you think this is a mistake, please contact %1$sBusiness Directory "
|
@@ -1646,46 +1647,46 @@ msgid ""
|
|
1646 |
"purchase with your report."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: includes/licensing.php:
|
1650 |
msgid ""
|
1651 |
"It was not possible to establish a connection with the Business Directory "
|
1652 |
"server. The connection failed with the following error:"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: includes/licensing.php:
|
1656 |
msgid ""
|
1657 |
"It was not possible to establish a connection with the Business Directory "
|
1658 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: includes/licensing.php:
|
1662 |
msgid ""
|
1663 |
"It looks like your server is not authorized to make outgoing requests to "
|
1664 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1665 |
"our IP address 52.0.78.177 to your allow list."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: includes/licensing.php:
|
1669 |
msgid "Business Directory license key is missing."
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: includes/licensing.php:
|
1673 |
msgid "Business Directory license key has expired"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: includes/licensing.php:
|
1677 |
msgid "Could not verify Business Directory license."
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: includes/licensing.php:
|
1681 |
msgid "Review license keys"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: includes/licensing.php:
|
1685 |
msgid "Missing data. Please reload this page and try again."
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: includes/licensing.php:
|
1689 |
msgid "Please enter a license key."
|
1690 |
msgstr ""
|
1691 |
|
@@ -1726,11 +1727,11 @@ msgstr ""
|
|
1726 |
msgid "ZIP file is not a valid Business Directory theme file."
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: includes/utils.php:
|
1730 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: includes/utils.php:
|
1734 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
1735 |
msgstr ""
|
1736 |
|
@@ -2021,64 +2022,44 @@ msgstr ""
|
|
2021 |
msgid "Add New Listing Fee"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: templates/admin/fees-index.tpl.php:
|
2025 |
-
msgid "Payments are currently turned off."
|
2026 |
-
msgstr ""
|
2027 |
-
|
2028 |
-
#: templates/admin/fees-index.tpl.php:21
|
2029 |
-
#. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
|
2030 |
-
msgid ""
|
2031 |
-
"To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
|
2032 |
-
"and check the box next to 'Turn On Payments' under 'Payment Settings'."
|
2033 |
-
msgstr ""
|
2034 |
-
|
2035 |
-
#: templates/admin/fees-index.tpl.php:34
|
2036 |
msgid "Order fees on the frontend by:"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: templates/admin/fees-index.tpl.php:
|
2040 |
msgid "↑ Ascending"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: templates/admin/fees-index.tpl.php:
|
2044 |
msgid "↓ Descending"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: templates/admin/fees-index.tpl.php:
|
2048 |
msgid "Drag and drop to re-order fees."
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: templates/admin/fees-index.tpl.php:66
|
2052 |
-
#. translators: %1$s is directory payment mode (Free or Paid)
|
2053 |
-
msgid "All fee plans may not be available in \"%1$s\" mode."
|
2054 |
-
msgstr ""
|
2055 |
-
|
2056 |
#: templates/admin/fees-index.tpl.php:67
|
2057 |
-
msgid "Paid"
|
2058 |
-
msgstr ""
|
2059 |
-
|
2060 |
-
#: templates/admin/fees-index.tpl.php:92
|
2061 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: templates/admin/fees-index.tpl.php:
|
2065 |
msgid "Add a payment gateway to increase conversion rates"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: templates/admin/fees-index.tpl.php:
|
2069 |
#. translators: %s: payment gateway name */
|
2070 |
msgid "Add the %s gateway as a payment option."
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: templates/admin/fees-index.tpl.php:
|
2074 |
msgid "Upgrade"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: templates/admin/fees-index.tpl.php:
|
2078 |
msgid "Set up Authorize.net as a payment option."
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: templates/admin/fees-index.tpl.php:
|
2082 |
msgid "Set Up"
|
2083 |
msgstr ""
|
2084 |
|
@@ -2106,14 +2087,6 @@ msgstr ""
|
|
2106 |
msgid "Delete Field"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: templates/admin/home.tpl.php:55
|
2110 |
-
msgid "Manage Options"
|
2111 |
-
msgstr ""
|
2112 |
-
|
2113 |
-
#: templates/admin/home.tpl.php:74
|
2114 |
-
msgid "Manage Paid Listings"
|
2115 |
-
msgstr ""
|
2116 |
-
|
2117 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2118 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2119 |
#: templates/login.tpl.php:71
|
@@ -2383,7 +2356,7 @@ msgstr ""
|
|
2383 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: templates/admin/themes-item.tpl.php:
|
2387 |
msgid "Inactive"
|
2388 |
msgstr ""
|
2389 |
|
@@ -3287,7 +3260,12 @@ msgctxt "fees admin"
|
|
3287 |
msgid "Fee \"%s\" deleted."
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
3291 |
msgctxt "fees admin"
|
3292 |
msgid "Fee disabled."
|
3293 |
msgstr ""
|
@@ -3302,54 +3280,54 @@ msgctxt "fees admin"
|
|
3302 |
msgid "fees"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3306 |
msgctxt "fees admin"
|
3307 |
msgid "Attributes"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3311 |
msgctxt "fees admin"
|
3312 |
msgid "Edit"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3316 |
msgctxt "fees admin"
|
3317 |
msgid "Variable"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3321 |
msgctxt "fees admin"
|
3322 |
msgid "%1$s + %2$s per category"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3326 |
msgctxt "fees admin"
|
3327 |
msgid "Forever"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3331 |
msgctxt "fees admin"
|
3332 |
msgid "%d day"
|
3333 |
msgid_plural "%d days"
|
3334 |
msgstr[0] ""
|
3335 |
msgstr[1] ""
|
3336 |
|
3337 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3338 |
msgctxt "fees admin"
|
3339 |
msgid "All categories"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3343 |
msgctxt "fees admin"
|
3344 |
msgid "Sticky"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3348 |
msgctxt "fees admin"
|
3349 |
msgid "Recurring"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3353 |
msgctxt "fees admin"
|
3354 |
msgid "Private"
|
3355 |
msgstr ""
|
@@ -3517,47 +3495,47 @@ msgctxt "listing status"
|
|
3517 |
msgid "Reported"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#: includes/models/class-listing.php:
|
3521 |
msgctxt "listing status"
|
3522 |
msgid "Unknown"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#: includes/models/class-listing.php:
|
3526 |
msgctxt "listing status"
|
3527 |
msgid "Legacy"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: includes/models/class-listing.php:
|
3531 |
msgctxt "listing status"
|
3532 |
msgid "Incomplete"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
-
#: includes/models/class-listing.php:
|
3536 |
msgctxt "listing status"
|
3537 |
msgid "Pending Payment"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: includes/models/class-listing.php:
|
3541 |
msgctxt "listing status"
|
3542 |
msgid "Complete"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
-
#: includes/models/class-listing.php:
|
3546 |
msgctxt "listing status"
|
3547 |
msgid "Pending Upgrade"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: includes/models/class-listing.php:
|
3551 |
msgctxt "listing status"
|
3552 |
msgid "Expired"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
-
#: includes/models/class-listing.php:
|
3556 |
msgctxt "listing status"
|
3557 |
msgid "Pending Renewal"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#: includes/models/class-listing.php:
|
3561 |
msgctxt "listing status"
|
3562 |
msgid "Abandoned"
|
3563 |
msgstr ""
|
@@ -4176,13 +4154,13 @@ msgid "Author"
|
|
4176 |
msgstr ""
|
4177 |
|
4178 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4179 |
-
#: includes/helpers/functions/general.php:
|
4180 |
msgctxt "admin settings"
|
4181 |
msgid "Date posted"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4185 |
-
#: includes/helpers/functions/general.php:
|
4186 |
msgctxt "admin settings"
|
4187 |
msgid "Date last modified"
|
4188 |
msgstr ""
|
@@ -4355,206 +4333,206 @@ msgctxt "admin settings"
|
|
4355 |
msgid "U.S. Dollar (USD)"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4359 |
msgctxt "admin settings"
|
4360 |
msgid "Show currency symbol on the left"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4364 |
msgctxt "admin settings"
|
4365 |
msgid "Show currency symbol on the right"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4369 |
msgctxt "admin settings"
|
4370 |
msgid "Do not show currency symbol"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4374 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4375 |
msgctxt "admin settings"
|
4376 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4380 |
msgctxt "admin settings"
|
4381 |
msgid ""
|
4382 |
"Listings with pending payments are marked as abandoned after this time. You "
|
4383 |
"can also <a>customize the email</a> users receive."
|
4384 |
msgstr ""
|
4385 |
|
4386 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4387 |
msgctxt "admin settings"
|
4388 |
msgid "Try listing's email field first, then author's email."
|
4389 |
msgstr ""
|
4390 |
|
4391 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4392 |
msgctxt "admin settings"
|
4393 |
msgid "Try author's email first and then listing's email field."
|
4394 |
msgstr ""
|
4395 |
|
4396 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4397 |
msgctxt "admin settings"
|
4398 |
msgid "Plain (text/plain)"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4402 |
msgctxt "admin settings"
|
4403 |
msgid "HTML (text/html)"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4407 |
msgctxt "admin settings"
|
4408 |
msgid "Both (multipart/alternative)"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4412 |
msgctxt "admin settings"
|
4413 |
msgid "A new listing is submitted."
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4417 |
msgctxt "admin settings"
|
4418 |
msgid "A listing is edited."
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4422 |
msgctxt "admin settings"
|
4423 |
msgid "A listing expires."
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4427 |
msgctxt "admin settings"
|
4428 |
msgid "A listing is renewed."
|
4429 |
msgstr ""
|
4430 |
|
4431 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4432 |
msgctxt "admin settings"
|
4433 |
msgid "A listing payment is completed."
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4437 |
msgctxt "admin settings"
|
4438 |
msgid "A listing has been reported as inappropriate."
|
4439 |
msgstr ""
|
4440 |
|
4441 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4442 |
msgctxt "admin settings"
|
4443 |
msgid "A contact message is sent to a listing's owner."
|
4444 |
msgstr ""
|
4445 |
|
4446 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4447 |
msgctxt "admin settings"
|
4448 |
msgid "Their listing is submitted."
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4452 |
msgctxt "admin settings"
|
4453 |
msgid "Their listing is approved/published."
|
4454 |
msgstr ""
|
4455 |
|
4456 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4457 |
msgctxt "admin settings"
|
4458 |
msgid "A payment for their listing is completed."
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4462 |
msgctxt "admin settings"
|
4463 |
msgid "Their listing expired or is about to expire."
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4467 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4468 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4469 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4470 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4471 |
msgctxt "admin settings"
|
4472 |
msgid "Listing's title"
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4476 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4477 |
msgctxt "admin settings"
|
4478 |
msgid "Listing's fee plan name"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4482 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4483 |
msgctxt "admin settings"
|
4484 |
msgid "Listing's fee plan description"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4488 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4489 |
msgctxt "admin settings"
|
4490 |
msgid "Listing's fee plan details"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4494 |
msgctxt "admin settings"
|
4495 |
msgid ""
|
4496 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
4497 |
"viewed by the public."
|
4498 |
msgstr ""
|
4499 |
|
4500 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4501 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4502 |
msgctxt "admin settings"
|
4503 |
msgid "Listing's URL"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4507 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4508 |
msgctxt "admin settings"
|
4509 |
msgid "Listing's Access Key"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4513 |
msgctxt "admin settings"
|
4514 |
msgid "Sender's name"
|
4515 |
msgstr ""
|
4516 |
|
4517 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4518 |
msgctxt "admin settings"
|
4519 |
msgid "Contact message"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4523 |
msgctxt "admin settings"
|
4524 |
msgid "Date and time the message was sent"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4528 |
msgctxt "admin settings"
|
4529 |
msgid "Payment items details."
|
4530 |
msgstr ""
|
4531 |
|
4532 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4533 |
msgctxt "admin settings"
|
4534 |
msgid "URL where user can review and print payment receipt."
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4538 |
msgctxt "admin settings"
|
4539 |
msgid "Gateway used to process listing's payment."
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4543 |
msgctxt "admin settings"
|
4544 |
msgid "Checkout URL link"
|
4545 |
msgstr ""
|
4546 |
|
4547 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4548 |
msgctxt "admin settings"
|
4549 |
msgid "Uploaded Image (no resize)"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
-
#: includes/helpers/functions/general.php:
|
4553 |
msgctxt "admin settings"
|
4554 |
msgid "User"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
-
#: includes/helpers/functions/general.php:
|
4558 |
msgctxt "admin settings"
|
4559 |
msgid "User registration date"
|
4560 |
msgstr ""
|
@@ -4771,7 +4749,7 @@ msgstr ""
|
|
4771 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
4772 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
4773 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
4774 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4775 |
#: includes/admin/settings/class-settings.php:341
|
4776 |
msgctxt "settings"
|
4777 |
msgid "General Settings"
|
@@ -5330,17 +5308,12 @@ msgctxt "settings"
|
|
5330 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5334 |
msgctxt "settings"
|
5335 |
msgid "Fee Order"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5339 |
-
msgctxt "settings"
|
5340 |
-
msgid "Turn On payments?"
|
5341 |
-
msgstr ""
|
5342 |
-
|
5343 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1144
|
5344 |
msgctxt "settings"
|
5345 |
msgid "Put payment gateways in test mode?"
|
5346 |
msgstr ""
|
@@ -5350,42 +5323,42 @@ msgctxt "settings"
|
|
5350 |
msgid "Currency Code"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5354 |
msgctxt "settings"
|
5355 |
msgid "Currency Symbol"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5359 |
msgctxt "settings"
|
5360 |
msgid "Currency symbol display"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5364 |
msgctxt "settings"
|
5365 |
msgid "Include fee description in receipt?"
|
5366 |
msgstr ""
|
5367 |
|
5368 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5369 |
msgctxt "settings"
|
5370 |
msgid "Thank you for payment message"
|
5371 |
msgstr ""
|
5372 |
|
5373 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5374 |
msgctxt "settings"
|
5375 |
msgid "Ask users to come back for abandoned payments?"
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5379 |
msgctxt "settings"
|
5380 |
msgid "Listing abandonment threshold (hours)"
|
5381 |
msgstr ""
|
5382 |
|
5383 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5384 |
msgctxt "settings"
|
5385 |
msgid "Display email address fields publicly?"
|
5386 |
msgstr ""
|
5387 |
|
5388 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5389 |
msgctxt "settings"
|
5390 |
msgid ""
|
5391 |
"Shows the email address of the listing owner to all web users. NOT "
|
@@ -5393,24 +5366,24 @@ msgid ""
|
|
5393 |
"harvest it for future use."
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5397 |
msgctxt "settings"
|
5398 |
msgid "How to determine the listing's email address?"
|
5399 |
msgstr ""
|
5400 |
|
5401 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5402 |
msgctxt "settings"
|
5403 |
msgid ""
|
5404 |
"This affects emails sent to listing owners via contact forms or when their "
|
5405 |
"listings expire."
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5409 |
msgctxt "settings"
|
5410 |
msgid "Email Content-Type header"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5414 |
msgctxt "settings"
|
5415 |
msgid ""
|
5416 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -5419,59 +5392,59 @@ msgid ""
|
|
5419 |
"then \"Both\"."
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5423 |
msgctxt "settings"
|
5424 |
msgid "Templates"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5428 |
msgctxt "settings"
|
5429 |
msgid "Email confirmation message"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5433 |
msgctxt "settings"
|
5434 |
msgid "Sent after a listing has been submitted."
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5438 |
msgctxt "settings"
|
5439 |
msgid "Listing published message"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5443 |
msgctxt "settings"
|
5444 |
msgid "Sent when the listing has been published or approved by an admin."
|
5445 |
msgstr ""
|
5446 |
|
5447 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5448 |
msgctxt "settings"
|
5449 |
msgid "Listing Contact Message"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5453 |
msgctxt "settings"
|
5454 |
msgid ""
|
5455 |
"Sent to listing owners when someone uses the contact form on their listing "
|
5456 |
"pages."
|
5457 |
msgstr ""
|
5458 |
|
5459 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5460 |
msgctxt "settings"
|
5461 |
msgid "Payment completed message"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5465 |
msgctxt "settings"
|
5466 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5470 |
msgctxt "settings"
|
5471 |
msgid "Payment abandoned reminder message"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5475 |
msgctxt "settings"
|
5476 |
msgid "Cropped"
|
5477 |
msgstr ""
|
@@ -5487,17 +5460,17 @@ msgctxt "settings"
|
|
5487 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: includes/licensing.php:
|
5491 |
msgctxt "settings"
|
5492 |
msgid "Themes"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: includes/licensing.php:
|
5496 |
msgctxt "settings"
|
5497 |
msgid "Please wait..."
|
5498 |
msgstr ""
|
5499 |
|
5500 |
-
#: includes/licensing.php:
|
5501 |
msgctxt "settings"
|
5502 |
msgid "Deauthorize"
|
5503 |
msgstr ""
|
@@ -5549,27 +5522,27 @@ msgctxt "themes"
|
|
5549 |
msgid "Could not delete theme directory. Check permissions."
|
5550 |
msgstr ""
|
5551 |
|
5552 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5553 |
msgctxt "themes"
|
5554 |
msgid "Please upload a valid theme file."
|
5555 |
msgstr ""
|
5556 |
|
5557 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5558 |
msgctxt "themes"
|
5559 |
msgid "Could not move \"%s\" to a temporary directory."
|
5560 |
msgstr ""
|
5561 |
|
5562 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5563 |
msgctxt "themes"
|
5564 |
msgid "Activate your <a>license key</a> to use this theme."
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5568 |
msgctxt "themes"
|
5569 |
msgid "Invalid theme ID"
|
5570 |
msgstr ""
|
5571 |
|
5572 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5573 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
5574 |
msgctxt "themes"
|
5575 |
msgid "Could not update theme: %s"
|
@@ -5965,24 +5938,24 @@ msgctxt "post status"
|
|
5965 |
msgid "Trash"
|
5966 |
msgstr ""
|
5967 |
|
5968 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5969 |
#. translators: %s: url shortcode
|
5970 |
msgctxt "contact email"
|
5971 |
msgid "You have received a reply from your listing at %s."
|
5972 |
msgstr ""
|
5973 |
|
5974 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5975 |
#. translators: %s: name shortcode
|
5976 |
msgctxt "contact email"
|
5977 |
msgid "Name: %s"
|
5978 |
msgstr ""
|
5979 |
|
5980 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5981 |
msgctxt "contact email"
|
5982 |
msgid "Message:"
|
5983 |
msgstr ""
|
5984 |
|
5985 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5986 |
#. translators: %s: date shortcode
|
5987 |
msgctxt "contact email"
|
5988 |
msgid "Time: %s"
|
@@ -6259,32 +6232,32 @@ msgctxt "listing"
|
|
6259 |
msgid "Add New Listing"
|
6260 |
msgstr ""
|
6261 |
|
6262 |
-
#: includes/models/class-listing.php:
|
6263 |
msgctxt "listing"
|
6264 |
msgid "Listing has no registered payments"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
-
#: includes/models/class-listing.php:
|
6268 |
msgctxt "listing"
|
6269 |
msgid "Can't delete payment"
|
6270 |
msgstr ""
|
6271 |
|
6272 |
-
#: includes/models/class-listing.php:
|
6273 |
msgctxt "listing"
|
6274 |
msgid "Listing expired"
|
6275 |
msgstr ""
|
6276 |
|
6277 |
-
#: includes/models/class-listing.php:
|
6278 |
msgctxt "listing"
|
6279 |
msgid "(Unavailable Plan)"
|
6280 |
msgstr ""
|
6281 |
|
6282 |
-
#: includes/models/class-listing.php:
|
6283 |
msgctxt "listing"
|
6284 |
msgid "Plan \"%s\" (recurring)"
|
6285 |
msgstr ""
|
6286 |
|
6287 |
-
#: includes/models/class-listing.php:
|
6288 |
msgctxt "listing"
|
6289 |
msgid "Plan \"%s\""
|
6290 |
msgstr ""
|
@@ -6412,27 +6385,18 @@ msgctxt "payment-gateways"
|
|
6412 |
msgid "Enable %s?"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
-
#: includes/class-payment-gateways.php:
|
6416 |
msgctxt "payment-gateways"
|
6417 |
msgid ""
|
6418 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
6419 |
"won't be available until the following problems are fixed: <problems>."
|
6420 |
msgstr ""
|
6421 |
|
6422 |
-
#: includes/class-payment-gateways.php:
|
6423 |
msgctxt "payment-gateways"
|
6424 |
msgid "Please check the <link>payment settings</link>."
|
6425 |
msgstr ""
|
6426 |
|
6427 |
-
#: includes/class-payment-gateways.php:142
|
6428 |
-
msgctxt "payment-gateways"
|
6429 |
-
msgid ""
|
6430 |
-
"You have payments turned on but no gateway is active and properly "
|
6431 |
-
"configured. Go to <link>Manage Options - Payment</link> to change the "
|
6432 |
-
"payment settings. Until you change this, the directory will operate in "
|
6433 |
-
"<i>Free Mode</i>."
|
6434 |
-
msgstr ""
|
6435 |
-
|
6436 |
#: includes/class-recaptcha.php:32
|
6437 |
msgctxt "recaptcha"
|
6438 |
msgid "The reCAPTCHA wasn't entered correctly."
|
@@ -6626,33 +6590,33 @@ msgid ""
|
|
6626 |
"site. If you didn't want that, click <a>here</a> to change the setting."
|
6627 |
msgstr ""
|
6628 |
|
6629 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6630 |
msgctxt "templates"
|
6631 |
msgid ""
|
6632 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
6633 |
"Submission?\" setting checked?"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6637 |
msgctxt "templates"
|
6638 |
msgid "Listing submission has been disabled. Contact the administrator for details."
|
6639 |
msgstr ""
|
6640 |
|
6641 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6642 |
msgctxt "templates"
|
6643 |
msgid ""
|
6644 |
"<b>There are no Fee Plans available</b>, without a fee plan site users "
|
6645 |
"can't submit a listing. %s to create a fee plan"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6649 |
msgctxt "templates"
|
6650 |
msgid ""
|
6651 |
"Listing submission is not available at the moment. Contact the "
|
6652 |
"administrator for details."
|
6653 |
msgstr ""
|
6654 |
|
6655 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6656 |
msgctxt "templates"
|
6657 |
msgid ""
|
6658 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -6660,17 +6624,17 @@ msgid ""
|
|
6660 |
"an existing field"
|
6661 |
msgstr ""
|
6662 |
|
6663 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6664 |
msgctxt "templates"
|
6665 |
msgid "Please agree to the Terms and Conditions."
|
6666 |
msgstr ""
|
6667 |
|
6668 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6669 |
msgctxt "templates"
|
6670 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
6671 |
msgstr ""
|
6672 |
|
6673 |
-
#: includes/helpers/functions/general.php:
|
6674 |
msgctxt "templates"
|
6675 |
msgid "Return to results"
|
6676 |
msgstr ""
|
@@ -6983,7 +6947,7 @@ msgctxt "submit listing"
|
|
6983 |
msgid "You can't edit this listing."
|
6984 |
msgstr ""
|
6985 |
|
6986 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6987 |
msgctxt "submit listing"
|
6988 |
msgid ""
|
6989 |
"This listing can't be edited at this time because it has no fee plan "
|
@@ -6991,65 +6955,65 @@ msgid ""
|
|
6991 |
"to a fee plan."
|
6992 |
msgstr ""
|
6993 |
|
6994 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6995 |
msgctxt "submit listing"
|
6996 |
msgid ""
|
6997 |
"This listing can't be edited at this time. Please try again later or "
|
6998 |
"contact the admin if the problem persists."
|
6999 |
msgstr ""
|
7000 |
|
7001 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7002 |
msgctxt "submit listing"
|
7003 |
msgid "You're logged in as admin, payment will be skipped."
|
7004 |
msgstr ""
|
7005 |
|
7006 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7007 |
msgctxt "submit listing"
|
7008 |
msgid "Category selection"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7012 |
msgctxt "submit listing"
|
7013 |
msgid "Category & plan selection"
|
7014 |
msgstr ""
|
7015 |
|
7016 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7017 |
msgctxt "submit listing"
|
7018 |
msgid "Can not submit a listing at this moment. Please try again later."
|
7019 |
msgstr ""
|
7020 |
|
7021 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7022 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7023 |
msgctxt "submit listing"
|
7024 |
msgid "Please select a category."
|
7025 |
msgstr ""
|
7026 |
|
7027 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7028 |
msgctxt "submit listing"
|
7029 |
msgid "Please choose a valid category for your plan."
|
7030 |
msgstr ""
|
7031 |
|
7032 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7033 |
msgctxt "submit listing"
|
7034 |
msgid "Please choose a valid fee plan for your category selection."
|
7035 |
msgstr ""
|
7036 |
|
7037 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7038 |
msgctxt "submit listing"
|
7039 |
msgid "Please enter your desired username."
|
7040 |
msgstr ""
|
7041 |
|
7042 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7043 |
msgctxt "submit listing"
|
7044 |
msgid "Please enter the e-mail for your new account."
|
7045 |
msgstr ""
|
7046 |
|
7047 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7048 |
msgctxt "submit listing"
|
7049 |
msgid "The username you chose is already in use. Please use a different one."
|
7050 |
msgstr ""
|
7051 |
|
7052 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7053 |
msgctxt "submit listing"
|
7054 |
msgid "The e-mail address you chose for your account is already in use."
|
7055 |
msgstr ""
|
@@ -7059,7 +7023,7 @@ msgctxt "submit listing"
|
|
7059 |
msgid "Listing submitted by admin. Payment skipped."
|
7060 |
msgstr ""
|
7061 |
|
7062 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7063 |
msgctxt "listing submit"
|
7064 |
msgid ""
|
7065 |
"Image upload is required, please provide at least one image and submit "
|
@@ -7365,19 +7329,19 @@ msgctxt "default category name"
|
|
7365 |
msgid "General"
|
7366 |
msgstr ""
|
7367 |
|
7368 |
-
#: includes/licensing.php:
|
7369 |
msgctxt "licensing"
|
7370 |
msgid "Could not contact licensing server"
|
7371 |
msgstr ""
|
7372 |
|
7373 |
-
#: includes/licensing.php:
|
7374 |
msgctxt "licensing"
|
7375 |
msgid ""
|
7376 |
"It was not possible to establish a connection with Business Directory's "
|
7377 |
"server. cURL was not found in your system"
|
7378 |
msgstr ""
|
7379 |
|
7380 |
-
#: includes/licensing.php:
|
7381 |
msgctxt "licensing"
|
7382 |
msgid ""
|
7383 |
"To ensure the security of our systems and adhere to industry best "
|
@@ -7386,7 +7350,7 @@ msgid ""
|
|
7386 |
"OpenSSL 1.0.1c)."
|
7387 |
msgstr ""
|
7388 |
|
7389 |
-
#: includes/licensing.php:
|
7390 |
msgctxt "licensing"
|
7391 |
msgid ""
|
7392 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -7394,46 +7358,46 @@ msgid ""
|
|
7394 |
"services using the latest security standards."
|
7395 |
msgstr ""
|
7396 |
|
7397 |
-
#: includes/licensing.php:
|
7398 |
msgctxt "licensing"
|
7399 |
msgid ""
|
7400 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7401 |
"Include this message if necessary"
|
7402 |
msgstr ""
|
7403 |
|
7404 |
-
#: includes/licensing.php:
|
7405 |
msgctxt "licensing"
|
7406 |
msgid ""
|
7407 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7408 |
"Include this message if necessary."
|
7409 |
msgstr ""
|
7410 |
|
7411 |
-
#: includes/licensing.php:
|
7412 |
msgctxt "licensing"
|
7413 |
msgid "The server returned a 403 Forbidden error."
|
7414 |
msgstr ""
|
7415 |
|
7416 |
-
#: includes/licensing.php:
|
7417 |
msgctxt "licensing"
|
7418 |
msgid "Could not activate license: %s."
|
7419 |
msgstr ""
|
7420 |
|
7421 |
-
#: includes/licensing.php:
|
7422 |
msgctxt "licensing"
|
7423 |
msgid "License activated"
|
7424 |
msgstr ""
|
7425 |
|
7426 |
-
#: includes/licensing.php:
|
7427 |
msgctxt "licensing"
|
7428 |
msgid "Could not deactivate license: %s."
|
7429 |
msgstr ""
|
7430 |
|
7431 |
-
#: includes/licensing.php:
|
7432 |
msgctxt "licensing"
|
7433 |
msgid "License deactivated"
|
7434 |
msgstr ""
|
7435 |
|
7436 |
-
#: includes/licensing.php:
|
7437 |
#. translators: "<module-name>" version <version-number> is not...
|
7438 |
msgctxt "deprecation"
|
7439 |
msgid ""
|
@@ -7453,17 +7417,17 @@ msgid_plural "%d images allowed."
|
|
7453 |
msgstr[0] ""
|
7454 |
msgstr[1] ""
|
7455 |
|
7456 |
-
#: includes/models/class-fee-plan.php:
|
7457 |
msgctxt "fees-api"
|
7458 |
msgid "Fee label is required."
|
7459 |
msgstr ""
|
7460 |
|
7461 |
-
#: includes/models/class-fee-plan.php:
|
7462 |
msgctxt "fees-api"
|
7463 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
7464 |
msgstr ""
|
7465 |
|
7466 |
-
#: includes/models/class-fee-plan.php:
|
7467 |
msgctxt "fees-api"
|
7468 |
msgid ""
|
7469 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
@@ -7471,7 +7435,7 @@ msgid ""
|
|
7471 |
"<a>fee plan</a> appropriately."
|
7472 |
msgstr ""
|
7473 |
|
7474 |
-
#: includes/models/class-fee-plan.php:
|
7475 |
msgctxt "fees-api"
|
7476 |
msgid ""
|
7477 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
@@ -7544,17 +7508,17 @@ msgctxt "utils"
|
|
7544 |
msgid "Unkown error while uploading file."
|
7545 |
msgstr ""
|
7546 |
|
7547 |
-
#: includes/utils.php:
|
7548 |
msgctxt "utils"
|
7549 |
msgid "Error while uploading file"
|
7550 |
msgstr ""
|
7551 |
|
7552 |
-
#: includes/utils.php:
|
7553 |
msgctxt "utils"
|
7554 |
msgid "File type \"%s\" is not allowed"
|
7555 |
msgstr ""
|
7556 |
|
7557 |
-
#: includes/utils.php:
|
7558 |
msgctxt "utils"
|
7559 |
msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
7560 |
msgstr ""
|
@@ -7659,39 +7623,6 @@ msgctxt "admin forms"
|
|
7659 |
msgid "required"
|
7660 |
msgstr ""
|
7661 |
|
7662 |
-
#: templates/admin/home.tpl.php:12
|
7663 |
-
msgctxt "admin home"
|
7664 |
-
msgid "Welcome to Business Directory Plugin. You are using %s."
|
7665 |
-
msgstr ""
|
7666 |
-
|
7667 |
-
#: templates/admin/home.tpl.php:15
|
7668 |
-
msgctxt "admin home"
|
7669 |
-
msgid ""
|
7670 |
-
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
7671 |
-
"let's jump right in!"
|
7672 |
-
msgstr ""
|
7673 |
-
|
7674 |
-
#: templates/admin/home.tpl.php:28
|
7675 |
-
msgctxt "admin home"
|
7676 |
-
msgid ""
|
7677 |
-
"Our complete documentation is <a>here</a> which we encourage you to use "
|
7678 |
-
"while setting things up."
|
7679 |
-
msgstr ""
|
7680 |
-
|
7681 |
-
#: templates/admin/home.tpl.php:36
|
7682 |
-
msgctxt "admin home"
|
7683 |
-
msgid ""
|
7684 |
-
"We have some quick-start scenarios that you will find useful regarding "
|
7685 |
-
"setup and configuration <a>here</a>."
|
7686 |
-
msgstr ""
|
7687 |
-
|
7688 |
-
#: templates/admin/home.tpl.php:45
|
7689 |
-
msgctxt "admin home"
|
7690 |
-
msgid ""
|
7691 |
-
"If you have questions, please post a comment on <a>support forum</a> and "
|
7692 |
-
"we'll answer it within 24 hours most days."
|
7693 |
-
msgstr ""
|
7694 |
-
|
7695 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
7696 |
msgctxt "admin infometabox"
|
7697 |
msgid "Renewal url (copy & paste)"
|
2 |
# This file is distributed under the GPLv2 or any later version.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Business Directory Plugin 5.17\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/business-directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-02 19:43:00+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
73 |
msgid "Directory"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/admin/class-admin.php:312
|
77 |
msgid "Fee Plans"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: includes/admin/class-admin.php:315
|
81 |
msgid "Form Fields"
|
82 |
msgstr ""
|
83 |
|
84 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
85 |
+
#: includes/licensing.php:227
|
86 |
msgid "Modules"
|
87 |
msgstr ""
|
88 |
|
187 |
msgstr ""
|
188 |
|
189 |
#: includes/admin/controllers/class-admin-fees.php:49
|
190 |
+
#: includes/admin/helpers/tables/class-fees-table.php:65
|
191 |
#: includes/admin/settings/class-settings-bootstrap.php:897
|
192 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
|
193 |
msgid "Images"
|
219 |
msgstr ""
|
220 |
|
221 |
#: includes/admin/controllers/class-admin-listings.php:185
|
222 |
+
#: includes/controllers/pages/class-submit-listing.php:518
|
223 |
#: templates/email/listing-reported.tpl.php:7
|
224 |
msgid "Listing Information"
|
225 |
msgstr ""
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
267 |
+
#: includes/controllers/pages/class-submit-listing.php:848
|
268 |
msgid "Go to \"Form Fields\""
|
269 |
msgstr ""
|
270 |
|
271 |
#: includes/admin/controllers/class-form-fields-admin.php:128
|
272 |
+
#: includes/helpers/functions/general.php:1366
|
273 |
+
#: includes/helpers/functions/general.php:1371
|
274 |
msgid "Go back"
|
275 |
msgstr ""
|
276 |
|
366 |
msgstr ""
|
367 |
|
368 |
#: includes/admin/controllers/class-settings-admin.php:536
|
369 |
+
#: includes/admin/helpers/tables/class-fees-table.php:174
|
370 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
371 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
372 |
#: templates/admin/payments-note.tpl.php:14
|
373 |
+
#: templates/admin/themes-item.tpl.php:66
|
374 |
#: templates/parts/listing-buttons.tpl.php:31
|
375 |
#: templates/parts/listing-buttons.tpl.php:65
|
376 |
msgid "Delete"
|
416 |
msgstr ""
|
417 |
|
418 |
#: includes/admin/helpers/class-modules-list.php:187
|
419 |
+
#: includes/admin/helpers/tables/class-fees-table.php:284
|
420 |
+
#: templates/admin/themes-item.tpl.php:41
|
421 |
msgid "Active"
|
422 |
msgstr ""
|
423 |
|
427 |
|
428 |
#: includes/admin/helpers/class-modules-list.php:225
|
429 |
#: includes/controllers/class-smtp.php:317
|
430 |
+
#: templates/admin/themes-item.tpl.php:61
|
431 |
msgid "Activate"
|
432 |
msgstr ""
|
433 |
|
434 |
#: includes/admin/helpers/class-modules-list.php:235
|
435 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:275
|
436 |
msgid "Upgrade Now"
|
437 |
msgstr ""
|
438 |
|
446 |
msgstr ""
|
447 |
|
448 |
#: includes/admin/helpers/tables/class-fees-table.php:61
|
449 |
+
msgid "Order"
|
450 |
msgstr ""
|
451 |
|
452 |
#: includes/admin/helpers/tables/class-fees-table.php:62
|
453 |
+
msgid "Plan Details"
|
454 |
msgstr ""
|
455 |
|
456 |
#: includes/admin/helpers/tables/class-fees-table.php:63
|
457 |
+
msgid "Pricing"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
461 |
#: includes/admin/settings/class-settings-bootstrap.php:669
|
462 |
#: includes/admin/settings/class-settings-bootstrap.php:670
|
463 |
#: includes/helpers/class-app.php:92
|
464 |
msgid "Listings"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: includes/admin/helpers/tables/class-fees-table.php:153
|
468 |
msgid "Disable"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/admin/helpers/tables/class-fees-table.php:159
|
472 |
msgid "Enable"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/admin/helpers/tables/class-fees-table.php:181
|
476 |
msgid "ID: %s"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
480 |
msgid "Paid Plan"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
484 |
msgid "Free Plan"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: includes/admin/helpers/tables/class-fees-table.php:219
|
488 |
msgid "%1$s for %2$s"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: includes/admin/helpers/tables/class-fees-table.php:282
|
|
|
492 |
msgid "Disabled"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: includes/admin/helpers/tables/class-fees-table.php:288
|
496 |
#: includes/helpers/functions/templates-ui.php:431
|
497 |
msgid "Default"
|
498 |
msgstr ""
|
530 |
msgstr ""
|
531 |
|
532 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
533 |
+
#: includes/controllers/pages/class-submit-listing.php:1252
|
534 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:137
|
535 |
#: templates/listing-contactform.tpl.php:33
|
536 |
#: templates/listing-flagging-form.tpl.php:39
|
572 |
|
573 |
#: includes/admin/settings/class-settings-bootstrap.php:264
|
574 |
#: includes/admin/settings/class-settings-bootstrap.php:278
|
575 |
+
#: includes/controllers/pages/class-submit-listing.php:531
|
576 |
msgid "Terms and Conditions"
|
577 |
msgstr ""
|
578 |
|
762 |
msgid "URL"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1226
|
766 |
msgid "Thank you for your payment."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1254
|
770 |
msgid ""
|
771 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
772 |
"collect payments in this currency."
|
776 |
msgstr[0] ""
|
777 |
msgstr[1] ""
|
778 |
|
779 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
780 |
msgid "Email Notifications"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1347
|
784 |
msgid "Notify admin via email when..."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1365
|
788 |
msgid "CC this email address too"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
792 |
msgid ""
|
793 |
"You can modify the text template used for most of these emails in the "
|
794 |
"<templates-link>Templates</templates-link> tab."
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1379
|
798 |
msgid "Notify users via email when..."
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1446
|
802 |
#. translators: %s: email shortcode
|
803 |
msgid "Email: %s"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1449
|
807 |
#. translators: %s: phone shortcode
|
808 |
msgid "Phone Number: %s"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
812 |
msgid "Sender's email address"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1462
|
816 |
msgid "Sender's phone number"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1526
|
820 |
msgid "Renewal and expiration"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1662
|
824 |
#: templates/admin/uninstall-complete.tpl.php:4
|
825 |
msgid "Uninstall"
|
826 |
msgstr ""
|
911 |
msgstr ""
|
912 |
|
913 |
#: includes/admin/views/modules/list.php:63
|
914 |
+
#: templates/admin/themes-item.tpl.php:50
|
915 |
#. translators: %s: Status name
|
916 |
msgid "Status: %s"
|
917 |
msgstr ""
|
1069 |
msgid "View All Listings"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: includes/class-payment-gateways.php:144
|
|
|
1073 |
msgid ""
|
1074 |
+
"You have paid plans but no payment gateway. Go to %1$sSettings - "
|
1075 |
+
"Payment%2$s to set up a gateway. Until you do this, only free plans will be "
|
1076 |
+
"available."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
#: includes/class-wpbdp.php:369
|
1094 |
"admin."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/class-wpbdp.php:588 includes/fields/class-fieldtypes-image.php:322
|
1098 |
msgid "Could not find image ID"
|
1099 |
msgstr ""
|
1100 |
|
1278 |
msgid "This is just a preview. The listing has not been published yet."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: includes/controllers/pages/class-submit-listing.php:564
|
1282 |
msgid "Listing Images"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/controllers/pages/class-submit-listing.php:632
|
1286 |
msgid "Account Creation"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/controllers/pages/class-submit-listing.php:831
|
1290 |
msgid "Go to \"Fee Plans\""
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/controllers/pages/class-submit-listing.php:887
|
1294 |
msgid "Please choose a fee plan."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1298 |
msgid "Please check the form for errors, correct them and submit again."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/controllers/pages/class-submit-listing.php:1236
|
1302 |
msgid "Create a user account on this site"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/controllers/pages/class-submit-listing.php:1243
|
1306 |
msgid "Username"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: includes/controllers/pages/class-submit-listing.php:1265
|
1310 |
msgid "Clear Form"
|
1311 |
msgstr ""
|
1312 |
|
1570 |
"%s. You can try again later or cancel subscription from gateway dashboard."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: includes/helpers/functions/general.php:568
|
|
|
1574 |
msgid "Free"
|
1575 |
msgstr ""
|
1576 |
|
1582 |
msgid "Manage Listings"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: includes/licensing.php:150
|
1586 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1587 |
msgid ""
|
1588 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1589 |
"get updates."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: includes/licensing.php:203 includes/licensing.php:206
|
1593 |
msgid "Licenses"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: includes/licensing.php:273
|
1597 |
msgid "Build more powerful directories"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: includes/licensing.php:274
|
1601 |
msgid "Add category images, maps, filter by location, payment gateways, and more."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: includes/licensing.php:276
|
1605 |
msgid "Already purchased?"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: includes/licensing.php:294
|
1609 |
#. translators: %s: item type.
|
1610 |
msgid "%s will not get updates until license is reauthorized."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: includes/licensing.php:315
|
1614 |
msgid "Enter License Key here"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: includes/licensing.php:316
|
1618 |
msgid "Authorize"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: includes/licensing.php:420
|
1622 |
msgid "Invalid item ID"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: includes/licensing.php:433
|
1626 |
msgid "No license key provided"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: includes/licensing.php:482 includes/licensing.php:520
|
1630 |
msgid "License key is invalid"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: includes/licensing.php:486
|
1634 |
msgid "Deactivation failed"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: includes/licensing.php:531
|
1638 |
msgid "The license key was revoked."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: includes/licensing.php:535
|
1642 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1643 |
msgid ""
|
1644 |
"If you think this is a mistake, please contact %1$sBusiness Directory "
|
1647 |
"purchase with your report."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: includes/licensing.php:598
|
1651 |
msgid ""
|
1652 |
"It was not possible to establish a connection with the Business Directory "
|
1653 |
"server. The connection failed with the following error:"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: includes/licensing.php:611
|
1657 |
msgid ""
|
1658 |
"It was not possible to establish a connection with the Business Directory "
|
1659 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: includes/licensing.php:658
|
1663 |
msgid ""
|
1664 |
"It looks like your server is not authorized to make outgoing requests to "
|
1665 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1666 |
"our IP address 52.0.78.177 to your allow list."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: includes/licensing.php:752
|
1670 |
msgid "Business Directory license key is missing."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: includes/licensing.php:753
|
1674 |
msgid "Business Directory license key has expired"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: includes/licensing.php:754
|
1678 |
msgid "Could not verify Business Directory license."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: includes/licensing.php:765
|
1682 |
msgid "Review license keys"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: includes/licensing.php:880
|
1686 |
msgid "Missing data. Please reload this page and try again."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: includes/licensing.php:885
|
1690 |
msgid "Please enter a license key."
|
1691 |
msgstr ""
|
1692 |
|
1727 |
msgid "ZIP file is not a valid Business Directory theme file."
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: includes/utils.php:341
|
1731 |
msgid "File size (%1$s) exceeds maximum file size of %2$s"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: includes/utils.php:350
|
1735 |
msgid "File size (%1$s) is smaller than the minimum file size of %2$s"
|
1736 |
msgstr ""
|
1737 |
|
2022 |
msgid "Add New Listing Fee"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: templates/admin/fees-index.tpl.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026 |
msgid "Order fees on the frontend by:"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: templates/admin/fees-index.tpl.php:30
|
2030 |
msgid "↑ Ascending"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: templates/admin/fees-index.tpl.php:31
|
2034 |
msgid "↓ Descending"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: templates/admin/fees-index.tpl.php:39
|
2038 |
msgid "Drag and drop to re-order fees."
|
2039 |
msgstr ""
|
2040 |
|
|
|
|
|
|
|
|
|
|
|
2041 |
#: templates/admin/fees-index.tpl.php:67
|
|
|
|
|
|
|
|
|
2042 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: templates/admin/fees-index.tpl.php:69
|
2046 |
msgid "Add a payment gateway to increase conversion rates"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: templates/admin/fees-index.tpl.php:88
|
2050 |
#. translators: %s: payment gateway name */
|
2051 |
msgid "Add the %s gateway as a payment option."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: templates/admin/fees-index.tpl.php:94
|
2055 |
msgid "Upgrade"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: templates/admin/fees-index.tpl.php:102
|
2059 |
msgid "Set up Authorize.net as a payment option."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: templates/admin/fees-index.tpl.php:105
|
2063 |
msgid "Set Up"
|
2064 |
msgstr ""
|
2065 |
|
2087 |
msgid "Delete Field"
|
2088 |
msgstr ""
|
2089 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2090 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2091 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2092 |
#: templates/login.tpl.php:71
|
2356 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: templates/admin/themes-item.tpl.php:45
|
2360 |
msgid "Inactive"
|
2361 |
msgstr ""
|
2362 |
|
3260 |
msgid "Fee \"%s\" deleted."
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3264 |
+
msgctxt "fees admin"
|
3265 |
+
msgid "Fee enabled."
|
3266 |
+
msgstr ""
|
3267 |
+
|
3268 |
+
#: includes/admin/controllers/class-admin-fees.php:256
|
3269 |
msgctxt "fees admin"
|
3270 |
msgid "Fee disabled."
|
3271 |
msgstr ""
|
3280 |
msgid "fees"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3284 |
msgctxt "fees admin"
|
3285 |
msgid "Attributes"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: includes/admin/helpers/tables/class-fees-table.php:137
|
3289 |
msgctxt "fees admin"
|
3290 |
msgid "Edit"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: includes/admin/helpers/tables/class-fees-table.php:207
|
3294 |
msgctxt "fees admin"
|
3295 |
msgid "Variable"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: includes/admin/helpers/tables/class-fees-table.php:212
|
3299 |
msgctxt "fees admin"
|
3300 |
msgid "%1$s + %2$s per category"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
#: includes/admin/helpers/tables/class-fees-table.php:231
|
3304 |
msgctxt "fees admin"
|
3305 |
msgid "Forever"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: includes/admin/helpers/tables/class-fees-table.php:233
|
3309 |
msgctxt "fees admin"
|
3310 |
msgid "%d day"
|
3311 |
msgid_plural "%d days"
|
3312 |
msgstr[0] ""
|
3313 |
msgstr[1] ""
|
3314 |
|
3315 |
+
#: includes/admin/helpers/tables/class-fees-table.php:263
|
3316 |
msgctxt "fees admin"
|
3317 |
msgid "All categories"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: includes/admin/helpers/tables/class-fees-table.php:292
|
3321 |
msgctxt "fees admin"
|
3322 |
msgid "Sticky"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: includes/admin/helpers/tables/class-fees-table.php:296
|
3326 |
msgctxt "fees admin"
|
3327 |
msgid "Recurring"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: includes/admin/helpers/tables/class-fees-table.php:300
|
3331 |
msgctxt "fees admin"
|
3332 |
msgid "Private"
|
3333 |
msgstr ""
|
3495 |
msgid "Reported"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
+
#: includes/models/class-listing.php:961
|
3499 |
msgctxt "listing status"
|
3500 |
msgid "Unknown"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: includes/models/class-listing.php:962
|
3504 |
msgctxt "listing status"
|
3505 |
msgid "Legacy"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: includes/models/class-listing.php:963
|
3509 |
msgctxt "listing status"
|
3510 |
msgid "Incomplete"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: includes/models/class-listing.php:964
|
3514 |
msgctxt "listing status"
|
3515 |
msgid "Pending Payment"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: includes/models/class-listing.php:965
|
3519 |
msgctxt "listing status"
|
3520 |
msgid "Complete"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: includes/models/class-listing.php:966
|
3524 |
msgctxt "listing status"
|
3525 |
msgid "Pending Upgrade"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: includes/models/class-listing.php:967
|
3529 |
msgctxt "listing status"
|
3530 |
msgid "Expired"
|
3531 |
msgstr ""
|
3532 |
|
3533 |
+
#: includes/models/class-listing.php:968
|
3534 |
msgctxt "listing status"
|
3535 |
msgid "Pending Renewal"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
+
#: includes/models/class-listing.php:969
|
3539 |
msgctxt "listing status"
|
3540 |
msgid "Abandoned"
|
3541 |
msgstr ""
|
4154 |
msgstr ""
|
4155 |
|
4156 |
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4157 |
+
#: includes/helpers/functions/general.php:1281
|
4158 |
msgctxt "admin settings"
|
4159 |
msgid "Date posted"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4163 |
+
#: includes/helpers/functions/general.php:1282
|
4164 |
msgctxt "admin settings"
|
4165 |
msgid "Date last modified"
|
4166 |
msgstr ""
|
4333 |
msgid "U.S. Dollar (USD)"
|
4334 |
msgstr ""
|
4335 |
|
4336 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
4337 |
msgctxt "admin settings"
|
4338 |
msgid "Show currency symbol on the left"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
4342 |
msgctxt "admin settings"
|
4343 |
msgid "Show currency symbol on the right"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
4347 |
msgctxt "admin settings"
|
4348 |
msgid "Do not show currency symbol"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
4352 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4353 |
msgctxt "admin settings"
|
4354 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
4358 |
msgctxt "admin settings"
|
4359 |
msgid ""
|
4360 |
"Listings with pending payments are marked as abandoned after this time. You "
|
4361 |
"can also <a>customize the email</a> users receive."
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1320
|
4365 |
msgctxt "admin settings"
|
4366 |
msgid "Try listing's email field first, then author's email."
|
4367 |
msgstr ""
|
4368 |
|
4369 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1321
|
4370 |
msgctxt "admin settings"
|
4371 |
msgid "Try author's email first and then listing's email field."
|
4372 |
msgstr ""
|
4373 |
|
4374 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1334
|
4375 |
msgctxt "admin settings"
|
4376 |
msgid "Plain (text/plain)"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1335
|
4380 |
msgctxt "admin settings"
|
4381 |
msgid "HTML (text/html)"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1336
|
4385 |
msgctxt "admin settings"
|
4386 |
msgid "Both (multipart/alternative)"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1350
|
4390 |
msgctxt "admin settings"
|
4391 |
msgid "A new listing is submitted."
|
4392 |
msgstr ""
|
4393 |
|
4394 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1351
|
4395 |
msgctxt "admin settings"
|
4396 |
msgid "A listing is edited."
|
4397 |
msgstr ""
|
4398 |
|
4399 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
4400 |
msgctxt "admin settings"
|
4401 |
msgid "A listing expires."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
4405 |
msgctxt "admin settings"
|
4406 |
msgid "A listing is renewed."
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1354
|
4410 |
msgctxt "admin settings"
|
4411 |
msgid "A listing payment is completed."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1355
|
4415 |
msgctxt "admin settings"
|
4416 |
msgid "A listing has been reported as inappropriate."
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
4420 |
msgctxt "admin settings"
|
4421 |
msgid "A contact message is sent to a listing's owner."
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
4425 |
msgctxt "admin settings"
|
4426 |
msgid "Their listing is submitted."
|
4427 |
msgstr ""
|
4428 |
|
4429 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1384
|
4430 |
msgctxt "admin settings"
|
4431 |
msgid "Their listing is approved/published."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1385
|
4435 |
msgctxt "admin settings"
|
4436 |
msgid "A payment for their listing is completed."
|
4437 |
msgstr ""
|
4438 |
|
4439 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
4440 |
msgctxt "admin settings"
|
4441 |
msgid "Their listing expired or is about to expire."
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1404
|
4445 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
4446 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
4447 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
4448 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1514
|
4449 |
msgctxt "admin settings"
|
4450 |
msgid "Listing's title"
|
4451 |
msgstr ""
|
4452 |
|
4453 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1405
|
4454 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
4455 |
msgctxt "admin settings"
|
4456 |
msgid "Listing's fee plan name"
|
4457 |
msgstr ""
|
4458 |
|
4459 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1406
|
4460 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
4461 |
msgctxt "admin settings"
|
4462 |
msgid "Listing's fee plan description"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
4466 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
4467 |
msgctxt "admin settings"
|
4468 |
msgid "Listing's fee plan details"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
4472 |
msgctxt "admin settings"
|
4473 |
msgid ""
|
4474 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
4475 |
"viewed by the public."
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1424
|
4479 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1458
|
4480 |
msgctxt "admin settings"
|
4481 |
msgid "Listing's URL"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1425
|
4485 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1465
|
4486 |
msgctxt "admin settings"
|
4487 |
msgid "Listing's Access Key"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
4491 |
msgctxt "admin settings"
|
4492 |
msgid "Sender's name"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1463
|
4496 |
msgctxt "admin settings"
|
4497 |
msgid "Contact message"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1464
|
4501 |
msgctxt "admin settings"
|
4502 |
msgid "Date and time the message was sent"
|
4503 |
msgstr ""
|
4504 |
|
4505 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
4506 |
msgctxt "admin settings"
|
4507 |
msgid "Payment items details."
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
4511 |
msgctxt "admin settings"
|
4512 |
msgid "URL where user can review and print payment receipt."
|
4513 |
msgstr ""
|
4514 |
|
4515 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
4516 |
msgctxt "admin settings"
|
4517 |
msgid "Gateway used to process listing's payment."
|
4518 |
msgstr ""
|
4519 |
|
4520 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1515
|
4521 |
msgctxt "admin settings"
|
4522 |
msgid "Checkout URL link"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1617
|
4526 |
msgctxt "admin settings"
|
4527 |
msgid "Uploaded Image (no resize)"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: includes/helpers/functions/general.php:1279
|
4531 |
msgctxt "admin settings"
|
4532 |
msgid "User"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: includes/helpers/functions/general.php:1280
|
4536 |
msgctxt "admin settings"
|
4537 |
msgid "User registration date"
|
4538 |
msgstr ""
|
4749 |
#: includes/admin/settings/class-settings-bootstrap.php:14
|
4750 |
#: includes/admin/settings/class-settings-bootstrap.php:17
|
4751 |
#: includes/admin/settings/class-settings-bootstrap.php:36
|
4752 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1301
|
4753 |
#: includes/admin/settings/class-settings.php:341
|
4754 |
msgctxt "settings"
|
4755 |
msgid "General Settings"
|
5308 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
5309 |
msgstr ""
|
5310 |
|
5311 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1132
|
5312 |
msgctxt "settings"
|
5313 |
msgid "Fee Order"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1145
|
|
|
|
|
|
|
|
|
|
|
5317 |
msgctxt "settings"
|
5318 |
msgid "Put payment gateways in test mode?"
|
5319 |
msgstr ""
|
5323 |
msgid "Currency Code"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
5327 |
msgctxt "settings"
|
5328 |
msgid "Currency Symbol"
|
5329 |
msgstr ""
|
5330 |
|
5331 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
5332 |
msgctxt "settings"
|
5333 |
msgid "Currency symbol display"
|
5334 |
msgstr ""
|
5335 |
|
5336 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
5337 |
msgctxt "settings"
|
5338 |
msgid "Include fee description in receipt?"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1225
|
5342 |
msgctxt "settings"
|
5343 |
msgid "Thank you for payment message"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1278
|
5347 |
msgctxt "settings"
|
5348 |
msgid "Ask users to come back for abandoned payments?"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1289
|
5352 |
msgctxt "settings"
|
5353 |
msgid "Listing abandonment threshold (hours)"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1306
|
5357 |
msgctxt "settings"
|
5358 |
msgid "Display email address fields publicly?"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1307
|
5362 |
msgctxt "settings"
|
5363 |
msgid ""
|
5364 |
"Shows the email address of the listing owner to all web users. NOT "
|
5366 |
"harvest it for future use."
|
5367 |
msgstr ""
|
5368 |
|
5369 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1316
|
5370 |
msgctxt "settings"
|
5371 |
msgid "How to determine the listing's email address?"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1317
|
5375 |
msgctxt "settings"
|
5376 |
msgid ""
|
5377 |
"This affects emails sent to listing owners via contact forms or when their "
|
5378 |
"listings expire."
|
5379 |
msgstr ""
|
5380 |
|
5381 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1330
|
5382 |
msgctxt "settings"
|
5383 |
msgid "Email Content-Type header"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1331
|
5387 |
msgctxt "settings"
|
5388 |
msgid ""
|
5389 |
"Use this setting to control the format of the emails explicitly. Some "
|
5392 |
"then \"Both\"."
|
5393 |
msgstr ""
|
5394 |
|
5395 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
5396 |
msgctxt "settings"
|
5397 |
msgid "Templates"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1397
|
5401 |
msgctxt "settings"
|
5402 |
msgid "Email confirmation message"
|
5403 |
msgstr ""
|
5404 |
|
5405 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1398
|
5406 |
msgctxt "settings"
|
5407 |
msgid "Sent after a listing has been submitted."
|
5408 |
msgstr ""
|
5409 |
|
5410 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1416
|
5411 |
msgctxt "settings"
|
5412 |
msgid "Listing published message"
|
5413 |
msgstr ""
|
5414 |
|
5415 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1417
|
5416 |
msgctxt "settings"
|
5417 |
msgid "Sent when the listing has been published or approved by an admin."
|
5418 |
msgstr ""
|
5419 |
|
5420 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
5421 |
msgctxt "settings"
|
5422 |
msgid "Listing Contact Message"
|
5423 |
msgstr ""
|
5424 |
|
5425 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1435
|
5426 |
msgctxt "settings"
|
5427 |
msgid ""
|
5428 |
"Sent to listing owners when someone uses the contact form on their listing "
|
5429 |
"pages."
|
5430 |
msgstr ""
|
5431 |
|
5432 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1475
|
5433 |
msgctxt "settings"
|
5434 |
msgid "Payment completed message"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
5438 |
msgctxt "settings"
|
5439 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
5440 |
msgstr ""
|
5441 |
|
5442 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
5443 |
msgctxt "settings"
|
5444 |
msgid "Payment abandoned reminder message"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1638
|
5448 |
msgctxt "settings"
|
5449 |
msgid "Cropped"
|
5450 |
msgstr ""
|
5460 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: includes/licensing.php:245
|
5464 |
msgctxt "settings"
|
5465 |
msgid "Themes"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
+
#: includes/licensing.php:316 includes/licensing.php:317
|
5469 |
msgctxt "settings"
|
5470 |
msgid "Please wait..."
|
5471 |
msgstr ""
|
5472 |
|
5473 |
+
#: includes/licensing.php:317
|
5474 |
msgctxt "settings"
|
5475 |
msgid "Deauthorize"
|
5476 |
msgstr ""
|
5522 |
msgid "Could not delete theme directory. Check permissions."
|
5523 |
msgstr ""
|
5524 |
|
5525 |
+
#: includes/admin/controllers/class-themes-admin.php:240
|
5526 |
msgctxt "themes"
|
5527 |
msgid "Please upload a valid theme file."
|
5528 |
msgstr ""
|
5529 |
|
5530 |
+
#: includes/admin/controllers/class-themes-admin.php:249
|
5531 |
msgctxt "themes"
|
5532 |
msgid "Could not move \"%s\" to a temporary directory."
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: includes/admin/controllers/class-themes-admin.php:335
|
5536 |
msgctxt "themes"
|
5537 |
msgid "Activate your <a>license key</a> to use this theme."
|
5538 |
msgstr ""
|
5539 |
|
5540 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
5541 |
msgctxt "themes"
|
5542 |
msgid "Invalid theme ID"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: includes/admin/controllers/class-themes-admin.php:384
|
5546 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
5547 |
msgctxt "themes"
|
5548 |
msgid "Could not update theme: %s"
|
5938 |
msgid "Trash"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
5942 |
#. translators: %s: url shortcode
|
5943 |
msgctxt "contact email"
|
5944 |
msgid "You have received a reply from your listing at %s."
|
5945 |
msgstr ""
|
5946 |
|
5947 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
5948 |
#. translators: %s: name shortcode
|
5949 |
msgctxt "contact email"
|
5950 |
msgid "Name: %s"
|
5951 |
msgstr ""
|
5952 |
|
5953 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1451
|
5954 |
msgctxt "contact email"
|
5955 |
msgid "Message:"
|
5956 |
msgstr ""
|
5957 |
|
5958 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1455
|
5959 |
#. translators: %s: date shortcode
|
5960 |
msgctxt "contact email"
|
5961 |
msgid "Time: %s"
|
6232 |
msgid "Add New Listing"
|
6233 |
msgstr ""
|
6234 |
|
6235 |
+
#: includes/models/class-listing.php:421
|
6236 |
msgctxt "listing"
|
6237 |
msgid "Listing has no registered payments"
|
6238 |
msgstr ""
|
6239 |
|
6240 |
+
#: includes/models/class-listing.php:430
|
6241 |
msgctxt "listing"
|
6242 |
msgid "Can't delete payment"
|
6243 |
msgstr ""
|
6244 |
|
6245 |
+
#: includes/models/class-listing.php:468
|
6246 |
msgctxt "listing"
|
6247 |
msgid "Listing expired"
|
6248 |
msgstr ""
|
6249 |
|
6250 |
+
#: includes/models/class-listing.php:668
|
6251 |
msgctxt "listing"
|
6252 |
msgid "(Unavailable Plan)"
|
6253 |
msgstr ""
|
6254 |
|
6255 |
+
#: includes/models/class-listing.php:858
|
6256 |
msgctxt "listing"
|
6257 |
msgid "Plan \"%s\" (recurring)"
|
6258 |
msgstr ""
|
6259 |
|
6260 |
+
#: includes/models/class-listing.php:860
|
6261 |
msgctxt "listing"
|
6262 |
msgid "Plan \"%s\""
|
6263 |
msgstr ""
|
6385 |
msgid "Enable %s?"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
+
#: includes/class-payment-gateways.php:131
|
6389 |
msgctxt "payment-gateways"
|
6390 |
msgid ""
|
6391 |
"The <gateway> gateway is enabled but not properly configured. The gateway "
|
6392 |
"won't be available until the following problems are fixed: <problems>."
|
6393 |
msgstr ""
|
6394 |
|
6395 |
+
#: includes/class-payment-gateways.php:133
|
6396 |
msgctxt "payment-gateways"
|
6397 |
msgid "Please check the <link>payment settings</link>."
|
6398 |
msgstr ""
|
6399 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6400 |
#: includes/class-recaptcha.php:32
|
6401 |
msgctxt "recaptcha"
|
6402 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6590 |
"site. If you didn't want that, click <a>here</a> to change the setting."
|
6591 |
msgstr ""
|
6592 |
|
6593 |
+
#: includes/controllers/pages/class-submit-listing.php:424
|
6594 |
msgctxt "templates"
|
6595 |
msgid ""
|
6596 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
6597 |
"Submission?\" setting checked?"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
+
#: includes/controllers/pages/class-submit-listing.php:426
|
6601 |
msgctxt "templates"
|
6602 |
msgid "Listing submission has been disabled. Contact the administrator for details."
|
6603 |
msgstr ""
|
6604 |
|
6605 |
+
#: includes/controllers/pages/class-submit-listing.php:824
|
6606 |
msgctxt "templates"
|
6607 |
msgid ""
|
6608 |
"<b>There are no Fee Plans available</b>, without a fee plan site users "
|
6609 |
"can't submit a listing. %s to create a fee plan"
|
6610 |
msgstr ""
|
6611 |
|
6612 |
+
#: includes/controllers/pages/class-submit-listing.php:838
|
6613 |
msgctxt "templates"
|
6614 |
msgid ""
|
6615 |
"Listing submission is not available at the moment. Contact the "
|
6616 |
"administrator for details."
|
6617 |
msgstr ""
|
6618 |
|
6619 |
+
#: includes/controllers/pages/class-submit-listing.php:841
|
6620 |
msgctxt "templates"
|
6621 |
msgid ""
|
6622 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
6624 |
"an existing field"
|
6625 |
msgstr ""
|
6626 |
|
6627 |
+
#: includes/controllers/pages/class-submit-listing.php:1286
|
6628 |
msgctxt "templates"
|
6629 |
msgid "Please agree to the Terms and Conditions."
|
6630 |
msgstr ""
|
6631 |
|
6632 |
+
#: includes/controllers/pages/class-submit-listing.php:1300
|
6633 |
msgctxt "templates"
|
6634 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
6635 |
msgstr ""
|
6636 |
|
6637 |
+
#: includes/helpers/functions/general.php:1362
|
6638 |
msgctxt "templates"
|
6639 |
msgid "Return to results"
|
6640 |
msgstr ""
|
6947 |
msgid "You can't edit this listing."
|
6948 |
msgstr ""
|
6949 |
|
6950 |
+
#: includes/controllers/pages/class-submit-listing.php:168
|
6951 |
msgctxt "submit listing"
|
6952 |
msgid ""
|
6953 |
"This listing can't be edited at this time because it has no fee plan "
|
6955 |
"to a fee plan."
|
6956 |
msgstr ""
|
6957 |
|
6958 |
+
#: includes/controllers/pages/class-submit-listing.php:174
|
6959 |
msgctxt "submit listing"
|
6960 |
msgid ""
|
6961 |
"This listing can't be edited at this time. Please try again later or "
|
6962 |
"contact the admin if the problem persists."
|
6963 |
msgstr ""
|
6964 |
|
6965 |
+
#: includes/controllers/pages/class-submit-listing.php:198
|
6966 |
msgctxt "submit listing"
|
6967 |
msgid "You're logged in as admin, payment will be skipped."
|
6968 |
msgstr ""
|
6969 |
|
6970 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
6971 |
msgctxt "submit listing"
|
6972 |
msgid "Category selection"
|
6973 |
msgstr ""
|
6974 |
|
6975 |
+
#: includes/controllers/pages/class-submit-listing.php:513
|
6976 |
msgctxt "submit listing"
|
6977 |
msgid "Category & plan selection"
|
6978 |
msgstr ""
|
6979 |
|
6980 |
+
#: includes/controllers/pages/class-submit-listing.php:821
|
6981 |
msgctxt "submit listing"
|
6982 |
msgid "Can not submit a listing at this moment. Please try again later."
|
6983 |
msgstr ""
|
6984 |
|
6985 |
+
#: includes/controllers/pages/class-submit-listing.php:870
|
6986 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
6987 |
msgctxt "submit listing"
|
6988 |
msgid "Please select a category."
|
6989 |
msgstr ""
|
6990 |
|
6991 |
+
#: includes/controllers/pages/class-submit-listing.php:893
|
6992 |
msgctxt "submit listing"
|
6993 |
msgid "Please choose a valid category for your plan."
|
6994 |
msgstr ""
|
6995 |
|
6996 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
6997 |
msgctxt "submit listing"
|
6998 |
msgid "Please choose a valid fee plan for your category selection."
|
6999 |
msgstr ""
|
7000 |
|
7001 |
+
#: includes/controllers/pages/class-submit-listing.php:1206
|
7002 |
msgctxt "submit listing"
|
7003 |
msgid "Please enter your desired username."
|
7004 |
msgstr ""
|
7005 |
|
7006 |
+
#: includes/controllers/pages/class-submit-listing.php:1211
|
7007 |
msgctxt "submit listing"
|
7008 |
msgid "Please enter the e-mail for your new account."
|
7009 |
msgstr ""
|
7010 |
|
7011 |
+
#: includes/controllers/pages/class-submit-listing.php:1216
|
7012 |
msgctxt "submit listing"
|
7013 |
msgid "The username you chose is already in use. Please use a different one."
|
7014 |
msgstr ""
|
7015 |
|
7016 |
+
#: includes/controllers/pages/class-submit-listing.php:1221
|
7017 |
msgctxt "submit listing"
|
7018 |
msgid "The e-mail address you chose for your account is already in use."
|
7019 |
msgstr ""
|
7023 |
msgid "Listing submitted by admin. Payment skipped."
|
7024 |
msgstr ""
|
7025 |
|
7026 |
+
#: includes/controllers/pages/class-submit-listing.php:1161
|
7027 |
msgctxt "listing submit"
|
7028 |
msgid ""
|
7029 |
"Image upload is required, please provide at least one image and submit "
|
7329 |
msgid "General"
|
7330 |
msgstr ""
|
7331 |
|
7332 |
+
#: includes/licensing.php:571
|
7333 |
msgctxt "licensing"
|
7334 |
msgid "Could not contact licensing server"
|
7335 |
msgstr ""
|
7336 |
|
7337 |
+
#: includes/licensing.php:584
|
7338 |
msgctxt "licensing"
|
7339 |
msgid ""
|
7340 |
"It was not possible to establish a connection with Business Directory's "
|
7341 |
"server. cURL was not found in your system"
|
7342 |
msgstr ""
|
7343 |
|
7344 |
+
#: includes/licensing.php:586 includes/licensing.php:616
|
7345 |
msgctxt "licensing"
|
7346 |
msgid ""
|
7347 |
"To ensure the security of our systems and adhere to industry best "
|
7350 |
"OpenSSL 1.0.1c)."
|
7351 |
msgstr ""
|
7352 |
|
7353 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
7354 |
msgctxt "licensing"
|
7355 |
msgid ""
|
7356 |
"Upgrading your system will not only allow you to communicate with Business "
|
7358 |
"services using the latest security standards."
|
7359 |
msgstr ""
|
7360 |
|
7361 |
+
#: includes/licensing.php:590
|
7362 |
msgctxt "licensing"
|
7363 |
msgid ""
|
7364 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7365 |
"Include this message if necessary"
|
7366 |
msgstr ""
|
7367 |
|
7368 |
+
#: includes/licensing.php:620
|
7369 |
msgctxt "licensing"
|
7370 |
msgid ""
|
7371 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7372 |
"Include this message if necessary."
|
7373 |
msgstr ""
|
7374 |
|
7375 |
+
#: includes/licensing.php:656
|
7376 |
msgctxt "licensing"
|
7377 |
msgid "The server returned a 403 Forbidden error."
|
7378 |
msgstr ""
|
7379 |
|
7380 |
+
#: includes/licensing.php:902
|
7381 |
msgctxt "licensing"
|
7382 |
msgid "Could not activate license: %s."
|
7383 |
msgstr ""
|
7384 |
|
7385 |
+
#: includes/licensing.php:907
|
7386 |
msgctxt "licensing"
|
7387 |
msgid "License activated"
|
7388 |
msgstr ""
|
7389 |
|
7390 |
+
#: includes/licensing.php:939
|
7391 |
msgctxt "licensing"
|
7392 |
msgid "Could not deactivate license: %s."
|
7393 |
msgstr ""
|
7394 |
|
7395 |
+
#: includes/licensing.php:941
|
7396 |
msgctxt "licensing"
|
7397 |
msgid "License deactivated"
|
7398 |
msgstr ""
|
7399 |
|
7400 |
+
#: includes/licensing.php:1181
|
7401 |
#. translators: "<module-name>" version <version-number> is not...
|
7402 |
msgctxt "deprecation"
|
7403 |
msgid ""
|
7417 |
msgstr[0] ""
|
7418 |
msgstr[1] ""
|
7419 |
|
7420 |
+
#: includes/models/class-fee-plan.php:387
|
7421 |
msgctxt "fees-api"
|
7422 |
msgid "Fee label is required."
|
7423 |
msgstr ""
|
7424 |
|
7425 |
+
#: includes/models/class-fee-plan.php:393
|
7426 |
msgctxt "fees-api"
|
7427 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
7428 |
msgstr ""
|
7429 |
|
7430 |
+
#: includes/models/class-fee-plan.php:398
|
7431 |
msgctxt "fees-api"
|
7432 |
msgid ""
|
7433 |
"To set this fee as \"Recurring\" you must have a time for the listing to "
|
7435 |
"<a>fee plan</a> appropriately."
|
7436 |
msgstr ""
|
7437 |
|
7438 |
+
#: includes/models/class-fee-plan.php:401
|
7439 |
msgctxt "fees-api"
|
7440 |
msgid ""
|
7441 |
"To set this fee as \"Recurring\" you must set a price for your fee plan. To "
|
7508 |
msgid "Unkown error while uploading file."
|
7509 |
msgstr ""
|
7510 |
|
7511 |
+
#: includes/utils.php:335
|
7512 |
msgctxt "utils"
|
7513 |
msgid "Error while uploading file"
|
7514 |
msgstr ""
|
7515 |
|
7516 |
+
#: includes/utils.php:359 includes/utils.php:366
|
7517 |
msgctxt "utils"
|
7518 |
msgid "File type \"%s\" is not allowed"
|
7519 |
msgstr ""
|
7520 |
|
7521 |
+
#: includes/utils.php:585
|
7522 |
msgctxt "utils"
|
7523 |
msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
7524 |
msgstr ""
|
7623 |
msgid "required"
|
7624 |
msgstr ""
|
7625 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7626 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:124
|
7627 |
msgctxt "admin infometabox"
|
7628 |
msgid "Renewal url (copy & paste)"
|
templates/admin/fees-index.tpl.php
CHANGED
@@ -12,20 +12,6 @@
|
|
12 |
?>
|
13 |
<?php wpbdp_admin_notices(); ?>
|
14 |
|
15 |
-
<?php if ( ! wpbdp_get_option( 'payments-on' ) ) : ?>
|
16 |
-
<p class="howto">
|
17 |
-
<?php esc_html_e( 'Payments are currently turned off.', 'business-directory-plugin' ); ?><br />
|
18 |
-
<?php
|
19 |
-
echo sprintf(
|
20 |
-
/* translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag. */
|
21 |
-
esc_html__( 'To manage fees you need to go to the %1$sManage Options - Payment%2$s page and check the box next to \'Turn On Payments\' under \'Payment Settings\'.', 'business-directory-plugin' ),
|
22 |
-
'<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_settings&tab=payment' ) ) . '">',
|
23 |
-
'</a>'
|
24 |
-
);
|
25 |
-
?>
|
26 |
-
</p>
|
27 |
-
<?php endif; ?>
|
28 |
-
|
29 |
<?php if ( 'active' == $table->get_current_view() || 'all' == $table->get_current_view() ) : ?>
|
30 |
<div class="fees-order">
|
31 |
<form>
|
@@ -59,17 +45,6 @@
|
|
59 |
<br class="clear" />
|
60 |
<?php endif; ?>
|
61 |
|
62 |
-
<p class="howto">
|
63 |
-
<?php
|
64 |
-
printf(
|
65 |
-
/* translators: %1$s is directory payment mode (Free or Paid) */
|
66 |
-
esc_html__( 'All fee plans may not be available in "%1$s" mode.', 'business-directory-plugin' ),
|
67 |
-
esc_html( wpbdp_payments_possible() ? __( 'Paid', 'business-directory-plugin' ) : __( 'Free', 'business-directory-plugin' ) )
|
68 |
-
);
|
69 |
-
?>
|
70 |
-
</p>
|
71 |
-
|
72 |
-
|
73 |
<?php $table->views(); ?>
|
74 |
<?php $table->display(); ?>
|
75 |
|
12 |
?>
|
13 |
<?php wpbdp_admin_notices(); ?>
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
<?php if ( 'active' == $table->get_current_view() || 'all' == $table->get_current_view() ) : ?>
|
16 |
<div class="fees-order">
|
17 |
<form>
|
45 |
<br class="clear" />
|
46 |
<?php endif; ?>
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
<?php $table->views(); ?>
|
49 |
<?php $table->display(); ?>
|
50 |
|
templates/admin/home.tpl.php
DELETED
@@ -1,80 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* BD home template
|
4 |
-
*
|
5 |
-
* @package WPBDP/Templates/Admin/Home
|
6 |
-
*/
|
7 |
-
|
8 |
-
echo wpbdp_admin_header();
|
9 |
-
?>
|
10 |
-
|
11 |
-
<div class="wpbdp-note welcome-message">
|
12 |
-
<h4><?php printf( _x( 'Welcome to Business Directory Plugin. You are using %s.', 'admin home', 'business-directory-plugin' ), '<span class="version">' . wpbdp_get_version() . '</span>' ); ?></h4>
|
13 |
-
<p>
|
14 |
-
<?php
|
15 |
-
_ex(
|
16 |
-
'Thanks for choosing us. There\'s a lot you probably want to get done, so let\'s jump right in!',
|
17 |
-
'admin home',
|
18 |
-
'business-directory-plugin'
|
19 |
-
);
|
20 |
-
?>
|
21 |
-
</p>
|
22 |
-
<ul>
|
23 |
-
<li>
|
24 |
-
<?php
|
25 |
-
echo str_replace(
|
26 |
-
'<a>',
|
27 |
-
'<a href="https://businessdirectoryplugin.com/knowledge-base/" target="_blank" rel="noopener">',
|
28 |
-
_x( 'Our complete documentation is <a>here</a> which we encourage you to use while setting things up.', 'admin home', 'business-directory-plugin' )
|
29 |
-
);
|
30 |
-
?>
|
31 |
-
<li>
|
32 |
-
<?php
|
33 |
-
echo str_replace(
|
34 |
-
'<a>',
|
35 |
-
'<a href="https://businessdirectoryplugin.com/article-categories/getting-started/" target="_blank" rel="noopener">',
|
36 |
-
_x( 'We have some quick-start scenarios that you will find useful regarding setup and configuration <a>here</a>.', 'admin home', 'business-directory-plugin' )
|
37 |
-
);
|
38 |
-
?>
|
39 |
-
</li>
|
40 |
-
<li>
|
41 |
-
<?php
|
42 |
-
echo str_replace(
|
43 |
-
'<a>',
|
44 |
-
'<a href="http://businessdirectoryplugin.com/support-forum/" target="_blank" rel="noopener">',
|
45 |
-
_x( 'If you have questions, please post a comment on <a>support forum</a> and we\'ll answer it within 24 hours most days.', 'admin home', 'business-directory-plugin' )
|
46 |
-
);
|
47 |
-
?>
|
48 |
-
</li>
|
49 |
-
</ul>
|
50 |
-
</div>
|
51 |
-
|
52 |
-
<ul class="shortcuts">
|
53 |
-
<li>
|
54 |
-
<a href="<?php echo esc_url( admin_url( 'admin.php?page=wpbdp_settings' ) ); ?>" class="button">
|
55 |
-
<?php esc_html_e( 'Manage Options', 'business-directory-plugin' ); ?>
|
56 |
-
</a>
|
57 |
-
</li>
|
58 |
-
<li>
|
59 |
-
<a href="<?php echo esc_url( admin_url( 'admin.php?page=wpbdp_admin_formfields' ) ); ?>" class="button">
|
60 |
-
<?php esc_html_e( 'Form Fields', 'business-directory-plugin' ); ?>
|
61 |
-
</a>
|
62 |
-
</li>
|
63 |
-
<li>
|
64 |
-
<a href="<?php echo esc_url( admin_url( 'admin.php?page=wpbdp-admin-fees' ) ); ?>" class="button">
|
65 |
-
<?php esc_html_e( 'Fee Plans', 'business-directory-plugin' ); ?>
|
66 |
-
</a>
|
67 |
-
</li>
|
68 |
-
<li class="clear"></li>
|
69 |
-
|
70 |
-
|
71 |
-
<?php if ( wpbdp_get_option( 'payments-on' ) ) : ?>
|
72 |
-
<li>
|
73 |
-
<a href="<?php echo esc_url( admin_url( 'edit.php?wpbdmfilter=unpaid&post_type=' . WPBDP_POST_TYPE ) ); ?>" class="button">
|
74 |
-
<?php esc_html_e( 'Manage Paid Listings', 'business-directory-plugin' ); ?>
|
75 |
-
</a>
|
76 |
-
</li>
|
77 |
-
<?php endif; ?>
|
78 |
-
</ul>
|
79 |
-
|
80 |
-
<?php echo wpbdp_admin_footer(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
templates/admin/themes-item.tpl.php
CHANGED
@@ -37,10 +37,18 @@
|
|
37 |
<div class="plugin-card-bottom">
|
38 |
<span class="addon-status">
|
39 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
printf(
|
41 |
/* translators: %s: Status name */
|
42 |
esc_html__( 'Status: %s', 'business-directory-plugin' ),
|
43 |
-
'<span class="addon-status-label">' . esc_html( $
|
44 |
);
|
45 |
?>
|
46 |
</span>
|
37 |
<div class="plugin-card-bottom">
|
38 |
<span class="addon-status">
|
39 |
<?php
|
40 |
+
if ( $theme->active ) {
|
41 |
+
$status = __( 'Active', 'business-directory-plugin' );
|
42 |
+
} elseif ( ! $theme->can_be_activated && ! empty( $theme->license_status ) ) {
|
43 |
+
$status = ucfirst( $theme->license_status );
|
44 |
+
} else {
|
45 |
+
$status = __( 'Inactive', 'business-directory-plugin' );
|
46 |
+
}
|
47 |
+
|
48 |
printf(
|
49 |
/* translators: %s: Status name */
|
50 |
esc_html__( 'Status: %s', 'business-directory-plugin' ),
|
51 |
+
'<span class="addon-status-label">' . esc_html( $status ) . esc_html( ' v' . $theme->version ) . '</span>'
|
52 |
);
|
53 |
?>
|
54 |
</span>
|
themes/default/theme.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
{
|
2 |
"name": "Default Theme",
|
3 |
"description": "The default look of Business Directory. A clean, basic look. This theme is always installed and cannot be removed.",
|
4 |
-
"version": "5.
|
5 |
"author": "Business Directory Team",
|
6 |
"author_email": "support@businessdirectoryplugin.com",
|
7 |
"author_url": "https://businessdirectoryplugin.com",
|
1 |
{
|
2 |
"name": "Default Theme",
|
3 |
"description": "The default look of Business Directory. A clean, basic look. This theme is always installed and cannot be removed.",
|
4 |
+
"version": "5.17",
|
5 |
"author": "Business Directory Team",
|
6 |
"author_email": "support@businessdirectoryplugin.com",
|
7 |
"author_url": "https://businessdirectoryplugin.com",
|