Version Description
Download this release
Release Info
Developer | businessdirectoryplugin |
Plugin | Business Directory Plugin |
Version | 6.3 |
Comparing to | |
See all releases |
Code changes from version 6.2.10 to 6.3
- README.TXT +10 -6
- assets/css/admin-listing-metabox.min.css +1 -1
- assets/css/admin.min.css +1 -1
- assets/js/admin-csv-import.js +30 -0
- assets/js/admin-csv-import.min.js +1 -1
- assets/js/admin-listing-metabox.js +25 -0
- assets/js/admin-listing-metabox.min.js +1 -1
- business-directory-plugin.php +1 -1
- includes/admin/admin-pages.php +1 -1
- includes/admin/controllers/class-admin-csv.php +1 -1
- includes/admin/controllers/class-admin-listings.php +9 -9
- includes/admin/csv-import.php +92 -67
- includes/admin/helpers/csv/class-csv-import.php +1 -1
- includes/admin/helpers/tables/class-payments-table.php +17 -7
- includes/admin/tracking.php +1 -1
- includes/class-wpbdp.php +1 -1
- includes/controllers/pages/class-main.php +7 -2
- includes/fields/class-fieldtypes-checkbox.php +22 -18
- includes/fields/class-fieldtypes-radiobutton.php +8 -6
- includes/fields/class-fieldtypes-select.php +22 -22
- includes/installer.php +2 -1
- includes/licensing.php +22 -10
- includes/models/class-fee-plan.php +9 -1
- includes/models/class-payment.php +13 -0
- includes/utils.php +1 -0
- languages/business-directory-plugin-ar.po +178 -138
- languages/business-directory-plugin-de_DE.po +179 -139
- languages/business-directory-plugin-en_US.po +157 -131
- languages/business-directory-plugin-fr_FR.mo +0 -0
- languages/business-directory-plugin-fr_FR.po +181 -138
- languages/business-directory-plugin-it_IT.mo +0 -0
- languages/business-directory-plugin-it_IT.po +178 -138
- languages/business-directory-plugin-nl_NL.po +159 -130
- languages/business-directory-plugin-pl_PL.po +182 -139
- languages/business-directory-plugin-ru_RU.po +179 -139
- languages/business-directory-plugin-sv_SE.mo +0 -0
- languages/business-directory-plugin-sv_SE.po +177 -137
- languages/business-directory-plugin.pot +157 -131
- templates/admin/csv-import.tpl.php +9 -2
- templates/admin/metaboxes-listing-information-plan.tpl.php +5 -3
- templates/admin/payments-details.tpl.php +3 -0
- templates/admin/themes-item.tpl.php +1 -0
- themes/default/theme.json +1 -1
README.TXT
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Business Directory Plugin - Easy Listing Directories for WordPress ===
|
2 |
-
Contributors: businessdirectoryplugin
|
3 |
Tags: business directory, listings, directory plugin, staff directory, member directory, company directory, team directory, chamber of commerce business directory, church directory, address book, contact directory, local business directory, listings directory, link directory
|
4 |
Requires at least: 4.8
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 6.0
|
7 |
-
Stable tag: 6.
|
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 |
= 6.2.10 =
|
162 |
* Use h3 tags in the excerpt listings for better accessibility.
|
163 |
* Fix: Images uploaded with sideload were failing. This fixes migration imports.
|
@@ -222,8 +230,4 @@ This can be done under Plugins -> Add New as the Administrator user. Do not "net
|
|
222 |
* Fix: Redirect to the login page from the new listing form when logging in is required.
|
223 |
* Fix: The listings weren't showing alphabetically in new installations, if the sorting settings hadn't been updated.
|
224 |
|
225 |
-
= 6.2.3 =
|
226 |
-
* Fix: Category pages on non-block themes were using the category in the wrong places.
|
227 |
-
* Fix: The French translation has some issues that were causing errors.
|
228 |
-
|
229 |
<a href="https://businessdirectoryplugin.com/plugins/business-directory/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">See changelog for all versions</a>
|
1 |
=== Business Directory Plugin - Easy Listing Directories for WordPress ===
|
2 |
+
Contributors: businessdirectoryplugin
|
3 |
Tags: business directory, listings, directory plugin, staff directory, member directory, company directory, team directory, chamber of commerce business directory, church directory, address book, contact directory, local business directory, listings directory, link directory
|
4 |
Requires at least: 4.8
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 6.0
|
7 |
+
Stable tag: 6.3
|
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 |
+
= 6.3 =
|
162 |
+
* New: New payments made in test mode will now show as test payments. Any new test payments will be excluded from the plan stats.
|
163 |
+
* New: The sample CSV file for imports can now be downloaded to use as a template.
|
164 |
+
* New: Use the front-end form to submit listings for admins too.
|
165 |
+
* New: When editing a listing in the admin area without a plan selected, make it clear that the plan is missing and automatically scroll to the plan setting.
|
166 |
+
* Fix: Resolve the PHP 8 error when uploading some attachments.
|
167 |
+
* Fix: When a BD theme is installed without a license, show a more clear message instead of "Invalid".
|
168 |
+
|
169 |
= 6.2.10 =
|
170 |
* Use h3 tags in the excerpt listings for better accessibility.
|
171 |
* Fix: Images uploaded with sideload were failing. This fixes migration imports.
|
230 |
* Fix: Redirect to the login page from the new listing form when logging in is required.
|
231 |
* Fix: The listings weren't showing alphabetically in new installations, if the sorting settings hadn't been updated.
|
232 |
|
|
|
|
|
|
|
|
|
233 |
<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-listing-metabox.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#wpbdp-listing-metabox-timeline:before{position:absolute;top:0;bottom:0;left:10px;width:2px;content:"";display:block;background:#f3f3f3;height:100%;z-index:0}#wpbdp-listing-metabox-timeline:after{content:'';display:table;clear:both}#wpbdp-listing-metabox-timeline .timeline-item{display:block;padding:5px 0 5px 20px;border-bottom:1px solid #f5f5f5;margin:10px 0;position:relative}#wpbdp-listing-metabox-timeline .timeline-item .timeline-item-icon{z-index:1;float:left;width:12px;height:12px;background:#f3f3f3;border:2px solid #fff;border-radius:50%;margin-left:-28px;margin-top:1px}#wpbdp-listing-metabox-timeline .timeline-item .timeline-item-header{padding:5px 0;color:#000}#wpbdp-listing-metabox-timeline .timeline-item .timeline-item-datetime{font-size:90%;color:#767676;display:block}#wpbdp-listing-metabox-timeline .timeline-item .timeline-item-extra{font-size:90%}#wpbdp-listing-metabox-timeline .timeline-item .timeline-item-actions{font-size:80%}#wpbdp-listing-metabox-timeline .timeline-item-listing_payment .timeline-item-extra .payment-amount{float:right}#wpbdp-listing-metabox-timeline .timeline-item-listing_payment .payment-status{float:right}#wpbdp-listing-metabox-timeline .timeline-item-listing_payment .payment-status.pending{background:#ff0000}#BusinessDirectory_listinginfo .inside{margin:0;padding:0}.listing-metabox-tabs{display:block;border-bottom:solid 1px #ddd !important}.listing-metabox-tabs li{display:inline;padding:1px 8px;margin:0}.listing-metabox-tabs li a{text-decoration:none}.listing-metabox-tabs li.selected{background:#ddd}.listing-metabox-tabs li.selected a{color:#333}#listing-metabox-generalinfo,#listing-metabox-fees,#listing-metabox-transactions{display:none}#listing-metabox-generalinfo>strong,#listing-metabox-fees>strong,#listing-metabox-transactions>strong{display:block;margin-bottom:10px}#listing-metabox-fees .listing-plan{border-bottom:dotted 1px #bbb}#listing-metabox-fees .listing-plan .plan-label{text-decoration:underline;font-weight:bold}#listing-metabox-fees .listing-plan .plan-status.ok{background:green}#listing-metabox-fees .listing-plan .plan-status.pending{background:red}#listing-metabox-fees .listing-plan .plan-details{margin-left:25px}a dl{margin:0;clear:both}#listing-metabox-fees .listing-plan dt{float:left;color:#595959;width:80px}#listing-metabox-fees .listing-plan .listing-category dd{margin-bottom:0}#listing-metabox-fees .listing-plan .spinner{text-align:center;display:block;float:none;margin:10px auto}#listing-metabox-fees .listing-plan .datepicker{position:absolute;z-index:100;right:10px;font-size:80%}.wpbdp-datepicker.ui-datepicker{--bd-main-color:#6d87b9;--bd-main-color-20:rgba(109,135,185,0.2)}.wpbdp-datepicker.ui-datepicker .ui-datepicker-never{float:none}.wpbdp-datepicker.ui-datepicker .ui-datepicker-close,.wpbdp-datepicker.ui-datepicker .ui-datepicker-current{display:none}#listing-metabox-fees .listing-plan .admin-actions{margin-top:10px;margin-left:25px;clear:both}#listing-metabox-fees .listing-plan .admin-actions li{margin:0;padding:0}#wpbdp-listing-metabox-payments #wpbdp-listing-payment-message{margin:10px 0;border-left:4px solid #7ad03a;padding:1px 12px}#wpbdp-listing-metabox-payments .wpbdp-payment-item{padding:2px;border-bottom:solid 1px #efefef;clear:both;font-size:95%}#wpbdp-listing-metabox-payments .wpbdp-payment-item:first-child{margin-top:12px}#wpbdp-listing-metabox-payments .wpbdp-payment-item.wpbdp-payment-status-completed{color:green}#wpbdp-listing-metabox-payments .wpbdp-payment-item.wpbdp-payment-status-pending{color:red}#wpbdp-listing-metabox-payments .wpbdp-payment-item.wpbdp-payment-status-rejected{color:#bbb}#wpbdp-listing-metabox-payments .wpbdp-payment-item a{color:inherit}#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-item-row{clear:both}#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-date,#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-summary{float:left}#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-summary{width:150px}#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-summary a{font-size:95%}#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-status,#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-total{text-align:right}.wpbdp-listing-metabox-tab dl{margin:0;display:grid;grid-template-columns:max-content auto;grid-gap:8px}.wpbdp-listing-metabox-tab dt{grid-column-start:1;padding-left:10px}.wpbdp-listing-metabox-tab dd{grid-column-start:2;font-weight:500;margin-left:0}#wpbdp-listing-metabox-plan-info h4{margin:5px 0;font-size:85%;text-transform:uppercase}#wpbdp-listing-metabox-plan-info .value-editor{display:none}#wpbdp-listing-metabox-plan-info a.edit-value-toggle{margin:0 0 0 10px;font-weight:normal}#wpbdp-listing-flagging .inside{margin:0;padding:0}#wpbdp-listing-flagging .inside .authoring-info{width:25%}#wpbdp-listing-flagging .inside .wpbdp-remove-listing-reports{padding:10px}#wpbdp-listing-reports{margin-left:10px}#wpbdp-listing-report-by-users{margin:0;padding:0}#wpbdp-listing-report-by-visitors{margin:0;padding:0}#wpbdp-listing-flagging table.widefat{border:0;border-bottom:1px solid #E5E5E5}.post-php.post-type-wpbdp_listing .editor-post-featured-image{display:none}.post-php.post-type-wpbdp_listing #postimagediv{display:none}
|
1 |
+
#wpbdp-listing-metabox-timeline:before{position:absolute;top:0;bottom:0;left:10px;width:2px;content:"";display:block;background:#f3f3f3;height:100%;z-index:0}#wpbdp-listing-metabox-timeline:after{content:'';display:table;clear:both}#wpbdp-listing-metabox-timeline .timeline-item{display:block;padding:5px 0 5px 20px;border-bottom:1px solid #f5f5f5;margin:10px 0;position:relative}#wpbdp-listing-metabox-timeline .timeline-item .timeline-item-icon{z-index:1;float:left;width:12px;height:12px;background:#f3f3f3;border:2px solid #fff;border-radius:50%;margin-left:-28px;margin-top:1px}#wpbdp-listing-metabox-timeline .timeline-item .timeline-item-header{padding:5px 0;color:#000}#wpbdp-listing-metabox-timeline .timeline-item .timeline-item-datetime{font-size:90%;color:#767676;display:block}#wpbdp-listing-metabox-timeline .timeline-item .timeline-item-extra{font-size:90%}#wpbdp-listing-metabox-timeline .timeline-item .timeline-item-actions{font-size:80%}#wpbdp-listing-metabox-timeline .timeline-item-listing_payment .timeline-item-extra .payment-amount{float:right}#wpbdp-listing-metabox-timeline .timeline-item-listing_payment .payment-status{float:right}#wpbdp-listing-metabox-timeline .timeline-item-listing_payment .payment-status.pending{background:#ff0000}#BusinessDirectory_listinginfo .inside{margin:0;padding:0}.wpbdp-error-btn{border:2px solid #d64226 !important}.listing-metabox-tabs{display:block;border-bottom:solid 1px #ddd !important}.listing-metabox-tabs li{display:inline;padding:1px 8px;margin:0}.listing-metabox-tabs li a{text-decoration:none}.listing-metabox-tabs li.selected{background:#ddd}.listing-metabox-tabs li.selected a{color:#333}#listing-metabox-generalinfo,#listing-metabox-fees,#listing-metabox-transactions{display:none}#listing-metabox-generalinfo>strong,#listing-metabox-fees>strong,#listing-metabox-transactions>strong{display:block;margin-bottom:10px}#listing-metabox-fees .listing-plan{border-bottom:dotted 1px #bbb}#listing-metabox-fees .listing-plan .plan-label{text-decoration:underline;font-weight:bold}#listing-metabox-fees .listing-plan .plan-status.ok{background:green}#listing-metabox-fees .listing-plan .plan-status.pending{background:red}#listing-metabox-fees .listing-plan .plan-details{margin-left:25px}a dl{margin:0;clear:both}#listing-metabox-fees .listing-plan dt{float:left;color:#595959;width:80px}#listing-metabox-fees .listing-plan .listing-category dd{margin-bottom:0}#listing-metabox-fees .listing-plan .spinner{text-align:center;display:block;float:none;margin:10px auto}#listing-metabox-fees .listing-plan .datepicker{position:absolute;z-index:100;right:10px;font-size:80%}.wpbdp-datepicker.ui-datepicker{--bd-main-color:#6d87b9;--bd-main-color-20:rgba(109,135,185,0.2)}.wpbdp-datepicker.ui-datepicker .ui-datepicker-never{float:none}.wpbdp-datepicker.ui-datepicker .ui-datepicker-close,.wpbdp-datepicker.ui-datepicker .ui-datepicker-current{display:none}#listing-metabox-fees .listing-plan .admin-actions{margin-top:10px;margin-left:25px;clear:both}#listing-metabox-fees .listing-plan .admin-actions li{margin:0;padding:0}#wpbdp-listing-metabox-payments #wpbdp-listing-payment-message{margin:10px 0;border-left:4px solid #7ad03a;padding:1px 12px}#wpbdp-listing-metabox-payments .wpbdp-payment-item{padding:2px;border-bottom:solid 1px #efefef;clear:both;font-size:95%}#wpbdp-listing-metabox-payments .wpbdp-payment-item:first-child{margin-top:12px}#wpbdp-listing-metabox-payments .wpbdp-payment-item.wpbdp-payment-status-completed{color:green}#wpbdp-listing-metabox-payments .wpbdp-payment-item.wpbdp-payment-status-pending{color:red}#wpbdp-listing-metabox-payments .wpbdp-payment-item.wpbdp-payment-status-rejected{color:#bbb}#wpbdp-listing-metabox-payments .wpbdp-payment-item a{color:inherit}#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-item-row{clear:both}#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-date,#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-summary{float:left}#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-summary{width:150px}#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-summary a{font-size:95%}#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-status,#wpbdp-listing-metabox-payments .wpbdp-payment-item .wpbdp-payment-total{text-align:right}.wpbdp-listing-metabox-tab dl{margin:0;display:grid;grid-template-columns:max-content auto;grid-gap:8px}.wpbdp-listing-metabox-tab dt{grid-column-start:1;padding-left:10px}.wpbdp-listing-metabox-tab dd{grid-column-start:2;font-weight:500;margin-left:0}#wpbdp-listing-metabox-plan-info h4{margin:5px 0;font-size:85%;text-transform:uppercase}#wpbdp-listing-metabox-plan-info .value-editor{display:none}#wpbdp-listing-metabox-plan-info a.edit-value-toggle{margin:0 0 0 10px;font-weight:normal}#wpbdp-listing-flagging .inside{margin:0;padding:0}#wpbdp-listing-flagging .inside .authoring-info{width:25%}#wpbdp-listing-flagging .inside .wpbdp-remove-listing-reports{padding:10px}#wpbdp-listing-reports{margin-left:10px}#wpbdp-listing-report-by-users{margin:0;padding:0}#wpbdp-listing-report-by-visitors{margin:0;padding:0}#wpbdp-listing-flagging table.widefat{border:0;border-bottom:1px solid #E5E5E5}.post-php.post-type-wpbdp_listing .editor-post-featured-image{display:none}.post-php.post-type-wpbdp_listing #postimagediv{display:none}
|
assets/css/admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.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:#6278A5;border-right-color:#6278A5;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,.wpbdp-admin-page .ui-datepicker-buttonpane button{text-shadow:none;box-shadow:none;border-radius:4px;border:1px solid #7E92BC;font-size:14px;transition:all .2s ease;height:28px;min-height:28px;outline:none;line-height:22px;min-width:100px;display:inline-block;text-align:center;padding:2px 15px;text-decoration:none;font-weight:500}.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;color:#6278A5}.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{background:rgba(109,135,185,0.07);color:#7E92BC;box-shadow:none}.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,.wpbdp-admin-page .add-new-h2:active,.wpbdp-admin-page .wpbdp-button-secondary:active,.wpbdp-admin-page .button-secondary:active,.wpbdp-admin-page .button:active{background-color:#fff}.wpbdp-admin-page .add-new-h2:disabled,.wpbdp-admin-page .wpbdp-button-secondary:disabled,.wpbdp-admin-page .button-secondary:disabled,.wpbdp-admin-page .button:disabled{background-color:#fff;border-color:#7E92BC;color:#6278A5;opacity:.5}.wpbdp-admin-page .page-title-action,.wpbdp-admin-page .wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane button,.wpbdp-admin-page .wpbdp-button-primary,.wpbdp-admin-page .button-primary{background-color:#7E92BC;border-color:#7E92BC;color:#fff}.wpbdp-admin-page .page-title-action:hover,.wpbdp-admin-page .wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane button:hover,.wpbdp-admin-page .wpbdp-button-primary:hover,.wpbdp-admin-page .button-primary:hover{background:#6278A5;border-color:#6278A5;color:#fff}.wpbdp-admin-page .page-title-action:focus,.wpbdp-admin-page .wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane button:focus,.wpbdp-admin-page .wpbdp-button-primary:focus,.wpbdp-admin-page .button-primary:focus,.wpbdp-admin-page .page-title-action:active,.wpbdp-admin-page .wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane button:active,.wpbdp-admin-page .wpbdp-button-primary:active,.wpbdp-admin-page .button-primary:active{background:#7E92BC;border-color:#7E92BC;color:#fff}.wpbdp-admin-page .page-title-action:disabled,.wpbdp-admin-page .wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane button:disabled,.wpbdp-admin-page .wpbdp-button-primary:disabled,.wpbdp-admin-page .button-primary:disabled{background:#7E92BC !important;border-color:#7E92BC !important;color:#fff !important;opacity:.5}#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{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:25px}.wpbdp-addons h2{font-size:17px}.wpbdp-addons h3{margin-top:0}.wpbdp-card{width:100%;border-radius:10px;border:1px solid #C5CCDB;opacity:1;transition:opacity 1s;background:#fff;box-sizing:border-box;position:relative}.wpbdp-addons .wpbdp-card.wpbdp-addon-not-installed{position:relative}.wpbdp-addons .wpbdp-card{padding:25px;border-color:transparent}.wpbdp-addons .wpbdp-card-module-icon{margin:3px;display:inline-block}.wpbdp-addons .wpbdp-plugin-card-details{margin-bottom:0;color:#3C4B5D}.wpbdp-addons .wpbdp-plugin-card-docs{padding-top:5px}.wpbdp-addons .wpbdp-plugin-card-docs a{text-decoration:none;font-weight:500}.wpbdp-addons .wpbdp-plugin-card-title{margin:0 0 8px;font-weight:600;font-size:15px}.wpbdp-addons .wpbdp-addon-status{font-style:italic;opacity:.8;margin:0 0 13px}.wpbdp-template-row p{opacity:.8}.wpbdp-addon-active .button{visibility:hidden}.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 #1da867;color:#fff;position:absolute;top:-19px;left:-29px;padding:0 10px;width:30px;font-family:sans-serif;font-style:italic;size:11px}.wpbdp-ribbon span{position:absolute;left:-5px;font-size:15px;top:4px}.wpbdp-theme-actions form{margin:0;padding:0;display:inline}.wpbdp-theme-actions form input[type="submit"]{margin:0}.wpbdp-theme-details-wrapper{text-align:center}.wpbdp-theme-thumbnail{width:100%;height:150px;object-fit:cover;object-position:100% 0}.wpbdp-theme .enter-license{display:none;position:absolute;float:none;font-weight:normal;top:3px;right:10px;color:#d64226}.wpbdp-theme:hover .enter-license{display:block}.wpbdp-theme:hover a.delete-theme-link,.wpbdp-theme:hover .choose-theme{display:inline-block}.wpbdp-theme.active .choose-theme,.wpbdp-theme.active:hover .choose-theme{display:none}#wpbdp-admin-page-theme-delete #delete-theme{margin-left:20px;color:#d64226}#wpbdp-admin-page-theme-delete #delete-theme:hover{background:#d54e21;border-color:#d54e21;color:#fff;box-shadow:none}.wpbdp-theme a.delete-theme-link{display:none;margin-top:4px;margin-right:10px;margin-left:5px;color:#d64226 !important;font-size:13px}.wpbdp-theme.wpbdp-card{padding-bottom:0}.wpbdp-theme h2.wpbdp-plugin-card-title,.wpbdp-theme .wpbdp-theme-thumbnail p{margin:0 0 24px;padding-top:0}.wpbdp-theme .wpbdp-card-footer{padding:17px 0}.wpbdp-theme .addon-status{margin:0}.wpbdp-theme .wpbdp-theme-update-info{display:inline-block;padding:5px 24px;position:absolute;left:-1px;right:-1px;margin:0;text-align:left;border-left-width:1px}.wpbdp-theme .wpbdp-theme-update-info.theme-updated{background:#ecf7ed;border-left-color:#46b450}.wpbdp-theme .wpbdp-theme-update-info.update-error{border-color:red}.wpbdp-theme .wpbdp-theme-update-info.update-error .update-message{color:red}.wpbdp-theme .wpbdp-theme-update-info .update-message{padding:2px 4px}.wpbdp-theme .wpbdp-theme-update-info.theme-updated .update-message{background:#F0F5F7}.wpbdp-theme .wpbdp-theme-license-required-row{padding:5px 10px;border-top:solid 2px;background:#fef7f1;border-color:#D34F2B}.wpbdp-admin-module-icon img{width:100%}.wpbdp-admin-page-themes .wpbdp-addons .wpbdp-card{position:relative}@media only screen and (max-width:1200px){.wpbdp-addons{grid-template-columns:1fr 1fr}}@media only screen and (max-width:782px){.wpbdp-card-module-icon+.wpbdp7{grid-column:span 10 / span 10}.wpbdp-card-module-icon+.wpbdp7+.wpbdp-right.wpbdp3{grid-column:span 12 / span 12;text-align:center}}.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}.wpbdp-admin-layout{background-color:rgba(109,135,185,0.07);margin:0;padding-top:0;padding-left:0;display:inline-block;width:100%}.wpbdp-admin-layout ::before,.wpbdp-admin-layout ::after,.wpbdp-admin-layout *{box-sizing:border-box}.wpbdp-title-buttons{clear:both}.wpbdp-no-padding{padding-left:0;padding-right:0}.wpbdp-page-title{padding:10px 0 10px 20px !important}.wpbdp-page-title span{vertical-align:middle}.wpbdp-admin-row{margin:0;display:flex;min-height:calc(100vh - 32px);height:100%}.wpbdp-admin-row.minimized .title-text,.wpbdp-admin-row.minimized .wpbdp-nav-item-name,.wpbdp-admin-row.minimized .wpbdp-icon-maximized{display:none}.wpbdp-admin-row.minimized .wpbdp-menu-area{width:57px}.wpbdp-admin-row.minimized .wpbdp-nav-item a{text-align:center;padding-left:0;padding-right:0}.wpbdp-admin-row.minimized .wpbdp-nav-item-icon{margin:0 auto}.wpbdp-admin-row.minimized .wpbdp-page-title{padding-left:10px !important}.wpbdp-admin-row.minimized .wpbdp-icon-minimized{display:block}.wpbdp-admin-row.minimized .wpbdp-nav-toggle{margin-left:15px}@media only screen and (max-width:960px){.wpbdp-admin-row{height:100%}.wpbdp-admin-row .wpbdp-menu-area{padding:9px 0 37px 0}.wpbdp-admin-row .wpbdp-nav-item a{padding-left:3px !important;padding-right:2px !important}.wpbdp-admin-row .title-text,.wpbdp-admin-row .wpbdp-nav-item-name,.wpbdp-admin-row .wpbdp-icon-maximized{display:none}.wpbdp-admin-row .wpbdp-menu-area{width:57px}.wpbdp-admin-row .wpbdp-nav-item a{text-align:center;padding-left:0;padding-right:0}.wpbdp-admin-row .wpbdp-nav-item-icon{margin:0 auto}.wpbdp-admin-row .wpbdp-page-title{padding-left:10px !important}.wpbdp-admin-row .wpbdp-icon-minimized{display:block}.wpbdp-admin-row .wpbdp-nav-toggle{margin-left:15px}}.wpbdp-menu-area{width:287px;background-color:rgba(109,135,185,0.07);border-right:1px solid rgba(109,135,185,0.07);position:relative;bottom:0;top:0}@media only screen and (max-width:960px){.wpbdp-menu-area{position:relative;top:0;bottom:0}}.wpbdp-nav-items{display:flex;flex-wrap:wrap;padding-left:0;list-style:none;flex-direction:column;margin-bottom:auto;margin-top:0}.wpbdp-nav-items .wpbdp-nav-item{font-size:16px}.wpbdp-nav-items .wpbdp-nav-item a{display:flex;padding:15px 7px;text-decoration:none;color:#3C4B5D;align-items:center}.wpbdp-nav-items .wpbdp-nav-item a:focus{box-shadow:none}.wpbdp-nav-items .wpbdp-nav-item .active{background-color:#fff;color:#7E92BC}.wpbdp-nav-items .wpbdp-nav-item .active .wpbdp-admin-icon{background-color:#7E92BC}.wpbdp-nav-items .wpbdp-nav-item:hover a{color:#7E92BC}.wpbdp-nav-item-icon{margin:0 10px;display:inline-block;opacity:.7;width:24px;height:24px}.wpbdp-admin-icon svg{fill:currentColor;width:100%;height:24px}.wpbdp-admin-module-icon img{width:100%}.wpbdp-nav-toggle{bottom:0;position:relative;margin-top:40px;margin-left:17px;cursor:pointer;font-size:14px;width:200px}@media only screen and (max-width:960px){.wpbdp-nav-toggle{display:none}}.wpbdp-nav-toggle .wpbdp-nav-item-name{opacity:.7;line-height:1.5}.wpbdp-nav-toggle .wpbdp-nav-item-name:hover{color:#7E92BC}.wpbdp-nav-toggle .wpbdp-nav-item-icon{margin:0}.wpbdp-icon-minimized{display:none}.wpbdp-content-area{flex:1;margin-left:0}@media only screen and (max-width:960px){.wpbdp-content-area{margin-left:0 !important}}.wpbdp-content-area-header{width:100%;min-height:56px;padding:10px 40px;border-bottom:1px solid #C5CCDB;background-color:#fff;flex-direction:row;align-items:center;display:flex;gap:20px}.wpbdp-content-area-header.wpbdp-header-scroll{position:sticky;top:32px;z-index:99}.wpbdp-content-area-header>div{flex:1}.wpbdp-content-area-header-tabbed{padding-bottom:0}.wpbdp-content-area-header-tabbed .wpbdp-content-area-header-actions{padding-bottom:10px}.wpbdp-content-area-header-actions{display:flex;align-items:center;width:100%;gap:20px;justify-content:flex-end}.wpbdp-content-area-header-actions p.submit{float:none;padding:0;margin:0 0 0 auto;display:inline-block}.wpbdp-content-area-header-tabs .wpbdp-header-tab{text-decoration:none;float:left;border-bottom:none;margin-right:.5em;padding:5px 10px 22px 10px;font-size:20px;font-weight:400;color:#3C4B5D}.wpbdp-content-area-header-tabs .wpbdp-header-tab:hover{color:#7E92BC}.wpbdp-content-area-header-tabs .wpbdp-header-tab-active{color:#7E92BC;border-bottom:2px solid #7E92BC}.wpbdp-content-area-body{padding:40px;font-size:14px}.wpbdp-content-area-body h3{font-size:20px;margin:40px 0 20px}@media only screen and (min-width:960px){.wpbdp-admin-page-settings .wpbdp-content-area-body,.wpbdp-admin-page-csv .wpbdp-content-area-body{max-width:1000px}}.wpbdp-page-title,.wpbdp-sub-section-title{font-size:24px !important;font-weight:400 !important;margin:0 !important}.wpbdp-settings-form.wpbdp-grid{grid-gap:30px 4%}.wpbdp-settings-form-title{margin:10px 0}.wpbdp-admin-page .form-field label,.wpbdp-setting-label,.wpbdp-setting-form-title label{font-weight:600;font-size:14px;padding-bottom:5px}.edit-php.post-type-wpbdp_listing .wp-heading-inline+.page-title-action,.edit-tags-php[class*="taxonomy-wpbd"] .wp-heading-inline+.page-title-action,.term-php[class*="taxonomy-wpbd"] .wp-heading-inline+.page-title-action,.edit-php.post-type-wpbdp_listing .wp-heading-inline,.edit-tags-php[class*="taxonomy-wpbd"] .wp-heading-inline,.term-php[class*="taxonomy-wpbd"] .wp-heading-inline,.edit-php.post-type-wpbdp_listing .subtitle,.edit-tags-php[class*="taxonomy-wpbd"] .subtitle,.term-php[class*="taxonomy-wpbd"] .subtitle{display:none !important}.edit-php.post-type-wpbdp_listing #wpbody-content>.wrap,.edit-tags-php[class*="taxonomy-wpbd"] #wpbody-content>.wrap,.term-php[class*="taxonomy-wpbd"] #wpbody-content>.wrap{margin:0}.wpbdp-admin-page #wpcontent{padding-left:0}.wpbdp-admin-page:not(.edit-php) .wrap:not(.wpbdp-admin){padding-left:20px}.wpbdp-admin-page #wpfooter{display:none}.wpbdp-admin-page #wpbody-content{padding-bottom:0;min-height:100%}.wpbdp-admin-page #screen-meta-links{position:absolute;right:200px}.edit-tags-php[class*="taxonomy-wpbd"] #col-left,.term-php[class*="taxonomy-wpbd"] #col-left,.edit-tags-php[class*="taxonomy-wpbd"] .search-form,.term-php[class*="taxonomy-wpbd"] .search-form{display:none}.edit-tags-php[class*="taxonomy-wpbd"] #col-right,.term-php[class*="taxonomy-wpbd"] #col-right{float:none;width:100%}.edit-tags-php[class*="taxonomy-wpbd"] #col-right .col-wrap,.term-php[class*="taxonomy-wpbd"] #col-right .col-wrap{padding:0}.edit-tags-php[class*="taxonomy-wpbd"] #wpcontent,.term-php[class*="taxonomy-wpbd"] #wpcontent,.edit-tags-php[class*="taxonomy-wpbd"] .wrap,.term-php[class*="taxonomy-wpbd"] .wrap{padding-left:0 !important}.edit-tags-php[class*="taxonomy-wpbd"] .wpbdp-admin-layout,.term-php[class*="taxonomy-wpbd"] .wpbdp-admin-layout,.edit-tags-php[class*="taxonomy-wpbd"] .wpbdp-content-area .search-form,.term-php[class*="taxonomy-wpbd"] .wpbdp-content-area .search-form{display:block}.wpbdp-admin-page-themes .wpbdp-admin-row,.wpbdp-admin-page-addons .wpbdp-admin-row,.wpbdp-admin-page-payments .wpbdp-admin-row,.wpbdp-admin-page-full-width .wpbdp-admin-row{height:100%}.wpbdp-admin-page-themes .wpbdp-content-area,.wpbdp-admin-page-addons .wpbdp-content-area,.wpbdp-admin-page-payments .wpbdp-content-area,.wpbdp-admin-page-full-width .wpbdp-content-area{margin-left:0}.wpbdp-admin-page-themes .wpbdp-content-area-body,.wpbdp-admin-page-addons .wpbdp-content-area-body,.wpbdp-admin-page-payments .wpbdp-content-area-body,.wpbdp-admin-page-full-width .wpbdp-content-area-body{max-width:100%}.wpbdp-settings-tab-subtabs{margin-bottom:40px}.wpbdp-sub-menu{width:auto;margin-top:0;padding:3px 2px;border-radius:7px;font-size:13px;background-color:rgba(109,135,185,0.07)}.wpbdp-sub-menu li{margin:0 1px}.wpbdp-sub-menu a{color:#3C4B5D;padding:5px 20px;font-weight:600}.wpbdp-sub-menu a:active,.wpbdp-sub-menu a:visited{color:#3C4B5D;outline:none}.wpbdp-sub-menu a:focus{box-shadow:none}.wpbdp-sub-menu a:hover{color:#7E92BC}.wpbdp-sub-menu a.current{color:#7E92BC;background-color:#fff;border-radius:7px;border:.5px solid rgba(0,0,0,0.04);box-shadow:0 3px 8px rgba(0,0,0,0.12),0 3px 1px rgba(0,0,0,0.04);-webkit-box-shadow:0 3px 8px rgba(0,0,0,0.12),0 3px 1px rgba(0,0,0,0.04);-moz-box-shadow:0 3px 8px rgba(0,0,0,0.12),0 3px 1px rgba(0,0,0,0.04)}.wpbdp-sub-menu.wpbdp-small-tabs a{padding:5px;font-size:11px}.wpbdp-license-key-activation-ui .wpbdp-button-secondary{padding:0}.wpbdp-license-key-activation-ui p{line-height:26px;margin:0}.wpbdp-license-key-input{padding:0 8px !important}.wpbdp-settings-form-title h2{font-size:20px}.post-type-wpbdp_listing .notice:not(.wpbdp-inline-notice),.wpbdp-admin-layout .notice:not(.wpbdp-inline-notice),.directory_page_wpbdp_settings .notice:not(.wpbdp-inline-notice),.wpbdp-admin-page .notice:not(.wpbdp-inline-notice){display:none}.wpbdp-bell-notifications-list{clear:both;margin:0}.wpbdp-bell-notifications-list li{display:block !important}.wpbdp-bell-notification{display:none;position:fixed;right:20px;bottom:20px}.wpbdp-bell-notification svg{height:48px;width:48px;display:block}.wpbdp-bell-notification-icon:focus{outline:0;background-color:#fff;border-radius:12px;box-shadow:0 24px 54px rgba(99,111,125,0.2);border:none;display:block}.wpbdp-bell-notification-icon,.wpbdp-bell-notifications li{background-color:#fff;border-radius:12px;box-shadow:0 24px 54px rgba(99,111,125,0.2);border:none;display:block}.wpbdp-bell-notifications{position:fixed;bottom:69px;min-width:20%;right:20px;max-width:400px;font-size:13px}.wpbdp-bell-notifications li{padding:10px 25px;margin:0 auto 4px}.wpbdp-bell-notifications li .notice-dismiss{right:0;top:7px}.wpbdp-bell-notifications-close{border-radius:8px;background-color:#3C4B5D;color:#fff;padding:5px 15px;text-decoration:none;display:block;float:right;margin-bottom:4px}.wpbdp-bell-notifications-close:hover{color:#fff}#wpbdp-snackbar-notices{color:#fff;text-align:center;position:fixed;bottom:0;left:180px;z-index:1;max-width:500px;min-width:300px}.wpbdp-snackbar{background-color:#3C4B5D;color:#fff !important;border-radius:8px;padding:16px;width:100%;position:relative;box-sizing:border-box;margin-bottom:4px;opacity:0;display:inline-block;-webkit-animation:wpbdp-fade-in-out 10s linear forwards;animation:wpbdp-fade-in-out 10s linear forwards}.wpbdp-snackbar p,.wpbdp-snackbar a{margin:0;color:#fff !important}.wpbdp-snackbar p{margin-right:10px}.wpbdp-snackbar button::before{color:#fff !important}.folded .wpbdp-snackbar{left:56px}.wpbdp-nav-tooltip{position:relative}.wpbdp-nav-tooltip::before{background-color:#3C4B5D;color:#fff !important;border-radius:8px;padding:16px;position:absolute;top:0;left:50px;content:attr(title);text-transform:none;transition:all .5s ease;width:160px;z-index:200}.wpbdp-nav-tooltip::after{position:absolute;top:20px;left:49px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #3C4B5D;content:" ";font-size:0;line-height:0;margin-left:-4px;width:0}.wpbdp-nav-tooltip::before,.wpbdp-nav-tooltip::after{color:#fff;font-size:12px;opacity:0;pointer-events:none;text-align:left}.wpbdp-nav-tooltip:focus::before,.wpbdp-nav-tooltip:focus::after,.wpbdp-nav-tooltip:hover::before,.wpbdp-nav-tooltip:hover::after{opacity:1;transition:all .75s ease}@media screen and (max-width:782px){.wpbdp-snackbar{left:10px;max-width:90%}}@-moz-keyframes wpbdp-fade-in-out{2%{opacity:1}100%{opacity:1}}@-webkit-keyframes wpbdp-fade-in-out{2%{opacity:1}100%{opacity:1}}@keyframes wpbdp-fade-in-out{2%{opacity:1}100%{opacity:1}}.wpbdp-admin-dialog{background-color:#fff;border-radius:12px;box-shadow:0 24px 54px rgba(99,111,125,0.2);border:none;display:block;z-index:100;padding:0 !important;max-width:100% !important}.wpbdp-admin-dialog .inside:not(.empty){border-top:1px solid #C5CCDB;border-bottom:1px solid #C5CCDB}.wpbdp-admin-dialog .inside:not(.empty) p{padding:25px}.wpbdp-admin-dialog .dismiss:focus{outline:0;box-shadow:none}.wpbdp-admin-dialog .dismiss-button{text-decoration:none;font-weight:600}.wpbdp-admin-dialog .form-wrap{padding:10px 25px 25px}.wpbdp-admin-dialog .form-wrap p{padding:0 !important}.wpbdp-admin-dialog .form-wrap .inner-message{margin-top:2em;margin-bottom:2em}.wpbdp-admin-dialog .form-wrap input[type="submit"]{float:right}.wpbdp-admin-dialog .form-wrap .term-description-wrap,.wpbdp-admin-dialog .form-wrap .term-slug-wrap,.wpbdp-admin-dialog .form-wrap select+p,.wpbdp-admin-dialog .form-wrap input+p,.wpbdp-admin-dialog .form-wrap .aioseo-taxonomy-upsell{display:none}.wpbdp-admin-dialog h2{margin:0;margin-right:25px}.wpbdp-admin-dialog a{color:#7E92BC}.wpbdp-modal-top,.wpbdp-modal-bottom{padding:25px}.wpbdp-modal-bottom{display:flex;align-items:center}.wpbdp-modal-bottom .alignright{margin-left:auto}.wpbdp-modal-overlay{background:rgba(60,75,93,0.7) !important;position:fixed;width:100%;height:100%;top:0;left:0;right:0;bottom:0}.wpbd-toggle-cont{position:relative;display:inline-block;width:38px;height:22px;vertical-align:middle;margin:2px}.wpbd-toggle-cont+span{margin-left:15px}.wpbd-toggle-cont input{display:none !important}.wpbd-toggle-cont input:checked+.wpbd-toggle-slider{background-color:#6d87b9;outline-color:#6d87b9}.wpbd-toggle-cont input:checked+.wpbd-toggle-slider:before{transform:translateX(17px);outline-color:#6d87b9}.wpbd-toggle-cont input:focus+.wpbd-toggle-slider{box-shadow:0 0 1px #6d87b9}.wpbd-toggle-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;transition:.4s;border-radius:30px;background-color:rgba(109,135,185,0.15);outline:1px solid rgba(109,135,185,0.15)}.wpbd-toggle-slider:before{border-radius:50%;position:absolute;content:"";height:22px;width:22px;left:0;top:0;transition:.3s;background-color:#fff;outline:1px solid rgba(109,135,185,0.15);box-shadow:0 2px 6px rgba(41,58,82,0.3)}.wpbd-toggle .wpbdp-setting-description{margin-left:57px}.wpbdp-admin-dialog textarea,.wpbdp-admin-page-settings textarea,.wpbdp-admin-page-csv textarea,.wpbdp-admin-dialog select,.wpbdp-admin-page-settings select,.wpbdp-admin-page-csv select,.wpbdp-admin-dialog input[type="text"],.wpbdp-admin-page-settings input[type="text"],.wpbdp-admin-page-csv input[type="text"],.wpbdp-admin-dialog input[type="number"],.wpbdp-admin-page-settings input[type="number"],.wpbdp-admin-page-csv input[type="number"],.wpbdp-admin-dialog input[type="url"],.wpbdp-admin-page-settings input[type="url"],.wpbdp-admin-page-csv input[type="url"]{width:100%;max-width:100%}.wpbdp-admin-page input[type="text"],.wpbdp-admin-page input[type="number"],.wpbdp-admin-page input[type="url"],.wpbdp-admin-page input[type="search"],.wpbdp-admin-page select,.wpbdp-admin-page textarea{border-color:#C5CCDB}.wpbdp-admin-page input[type="text"]:default,.wpbdp-admin-page input[type="number"]:default,.wpbdp-admin-page input[type="url"]:default,.wpbdp-admin-page input[type="search"]:default,.wpbdp-admin-page select:default,.wpbdp-admin-page textarea:default{border-color:#C5CCDB}.wpbdp-admin-page input[type="text"]::placeholder,.wpbdp-admin-page input[type="number"]::placeholder,.wpbdp-admin-page input[type="url"]::placeholder,.wpbdp-admin-page input[type="search"]::placeholder,.wpbdp-admin-page select::placeholder,.wpbdp-admin-page textarea::placeholder{opacity:.5}.wpbdp-admin-page input[type="text"]:hover,.wpbdp-admin-page input[type="number"]:hover,.wpbdp-admin-page input[type="url"]:hover,.wpbdp-admin-page input[type="search"]:hover,.wpbdp-admin-page select:hover,.wpbdp-admin-page textarea:hover,.wpbdp-admin-page input[type="text"]:active,.wpbdp-admin-page input[type="number"]:active,.wpbdp-admin-page input[type="url"]:active,.wpbdp-admin-page input[type="search"]:active,.wpbdp-admin-page select:active,.wpbdp-admin-page textarea:active{border-color:#7E92BC}.wpbdp-admin-page input[type="text"]:disabled,.wpbdp-admin-page input[type="number"]:disabled,.wpbdp-admin-page input[type="url"]:disabled,.wpbdp-admin-page input[type="search"]:disabled,.wpbdp-admin-page select:disabled,.wpbdp-admin-page textarea:disabled{background-color:rgba(109,135,185,0.07);border-color:#C5CCDB;cursor:not-allowed}.wpbdp-admin-page input[type="text"]:invalid,.wpbdp-admin-page input[type="number"]:invalid,.wpbdp-admin-page input[type="url"]:invalid,.wpbdp-admin-page input[type="search"]:invalid,.wpbdp-admin-page select:invalid,.wpbdp-admin-page textarea:invalid{border-color:#BC7E7E}.wpbdp-admin-page input[type="text"].valid,.wpbdp-admin-page input[type="number"].valid,.wpbdp-admin-page input[type="url"].valid,.wpbdp-admin-page input[type="search"].valid,.wpbdp-admin-page select.valid,.wpbdp-admin-page textarea.valid{border-color:#78C53C}.wpbdp-admin-page textarea{min-height:150px}.wpbdp-admin-page input[type="checkbox"]{border-radius:2px}.wpbdp-admin-page input[type="checkbox"],.wpbdp-admin-page input[type="radio"]{border-color:#C5CCDB;margin-right:11px;box-shadow:none}.wpbdp-admin-page input[type="checkbox"]:hover,.wpbdp-admin-page input[type="radio"]:hover,.wpbdp-admin-page input[type="checkbox"]:active,.wpbdp-admin-page input[type="radio"]:active{border-color:#7E92BC}.wpbdp-admin-page input[type="checkbox"]:disabled,.wpbdp-admin-page input[type="radio"]:disabled{background-color:rgba(109,135,185,0.07);border-color:#C5CCDB;cursor:not-allowed}.wpbdp-admin-page input[type="checkbox"]:focus,.wpbdp-admin-page input[type="radio"]:focus{box-shadow:0 0 0 2px rgba(126,146,188,0.25)}.wpbdp-admin-page input[type="checkbox"]:invalid,.wpbdp-admin-page input[type="radio"]:invalid{border-color:#BC7E7E}.wpbdp-admin-page input[type="checkbox"].valid,.wpbdp-admin-page input[type="radio"].valid{border-color:#78C53C}.wpbd-checkbox label{font-weight:500;padding-bottom:0}.wpbdp-admin-page{--bd-main-color:#6d87b9;--bd-main-color-20:rgba(109,135,185,0.2);--bd-main-color-8:rgba(109,135,185,0.08);background-color:#fff}.wpbdp-admin-page #wp-content-editor-tools{background-color:transparent}.wpbdp-admin-page h1,.wpbdp-admin-page h2,.wpbdp-admin-page h3,.wpbdp-admin-page label{color:rgba(60,75,93,0.8)}.wpbdp-admin-page p,.wpbdp-admin-page .required{color:#3C4B5D}.wpbdp-admin-page .wp-pointer-content h3{color:#fff;background:#6d87b9;border-color:#6d87b9}.wpbdp-admin-page .wp-pointer-content h3:before{color:#fff}.wpbdp-admin-page .wp-pointer-top .wp-pointer-arrow-inner,.wpbdp-admin-page .wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#6d87b9}.wpbdp-content-area-body a{color:#7E92BC}a.wpbdp-delete-link{color:#d64226}.wpbdp-admin-page-addons.wpbdp-admin-page,.wpbdp-admin-page-themes.wpbdp-admin-page{background:rgba(109,135,185,0.07)}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.wpbdp-right{text-align:right}.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(109,135,185,0.07)}.wpbdp-pro-tip a,.wpbdp-upgrade-bar a{color:#6d87b9;font-weight:600;text-decoration:none}.wpbdp-pro-tip{display:flex;flex-wrap:wrap;align-items:center;border-radius:6px;padding:11px 22px;position:relative}.wpbdp-pro-tip svg{color:#6d87b9;margin-right:13px}.wpbdp-pro-tip a{margin-left:5px}.wpbdp-pro-tip>img{width:calc(100% - 35px);margin:10px 0 10px 35px}.wpbdp-pro-tip>img~a{position:absolute;right:22px;top:11px}.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-page-fees .wp-list-table .column-order{width:65px}.wpbdp-admin-page-fees .wp-list-table .wpbdp-drag-handle{margin-right:3px}.wpbdp-admin-page-fees .wpbdp-fee-gateway-list{padding-left:20px;padding-right:20px}@media only screen and (max-width:960px){.wpbdp-admin-page-fees .wpbdp-fee-gateway-list{padding-left:0;padding-right:0}}@media only screen and (max-width:710px){.wpbdp-admin-page-fees .wpbdp-fee-gateway-list .wpbdp3,.wpbdp-admin-page-fees .wpbdp-fee-gateway-list .wpbdp4{grid-column:span 6 / span 6 !important}}.wpbdp-admin-page-fees h3{margin-top:50px}.wpbdp-admin-page-fees img.gateway-logo{height:20px}.wpbdp-admin-page-fees .gateway-description{min-height:30px;margin-top:10px;opacity:.6}.wpbdp-admin-page-fees .gateway-footer .button-primary{width:99px;text-align:center}.wpbdp-admin-page-fees .howto{opacity:.7}.wpbdp-admin-page-fees .howto .title{font-weight:600;clear:both;font-size:14px;display:block}.wpbdp-admin-page-fees .fees-order .button-secondary{line-height:2}#wpbdp-admin-admin-page-fees .column-attributes .wpbdp-tag{background:green;color:#fff}#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;color:#fff}#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;color:#fff}#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;color:#fff}#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-setting-description{font-size:14px;padding:0 0 6px;color:#3C4B5D;opacity:80%}.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 .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-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 .wpbdp-setting-disabled{display:none}.wpbdp-admin-page-settings .wpbdp_upgrade_to_pro{margin-top:60px}.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-settings-email{margin:10px 0 0 0;border:solid 1px #C5CCDB;border-radius:4px;padding:5px;background:#fff}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview{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}#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 .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 .placeholders{margin:10px 0 0 0}#wpbdp-admin-page-settings .placeholder{font-size:90%}#wpbdp-admin-page-settings .placeholder .placeholder-code{font-family:monospace;font-weight:bold}#wpbdp-admin-page-settings .placeholder .placeholder-description{font-style:italic}#wpbdp-admin-page-settings .placeholder-separator{margin-top: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-settings-radio-options,.wpbdp-settings-multicheck-options.wpbdp-grid,.wpbdp-settings-multicheck-options{grid-gap:0}.wpbdp-settings-radio-options .wpbdp-settings-radio-option,.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-radio-option,.wpbdp-settings-multicheck-options .wpbdp-settings-radio-option,.wpbdp-settings-radio-options .wpbdp-settings-multicheck-option,.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-multicheck-option,.wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option{margin:0 0 5px 0}.wpbdp-settings-radio-options .wpbdp-settings-radio-option input[type="radio"],.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-radio-option input[type="radio"],.wpbdp-settings-multicheck-options .wpbdp-settings-radio-option input[type="radio"],.wpbdp-settings-radio-options .wpbdp-settings-multicheck-option input[type="radio"],.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-multicheck-option input[type="radio"],.wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option input[type="radio"],.wpbdp-settings-radio-options .wpbdp-settings-radio-option input[type="checkbox"],.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-radio-option input[type="checkbox"],.wpbdp-settings-multicheck-options .wpbdp-settings-radio-option input[type="checkbox"],.wpbdp-settings-radio-options .wpbdp-settings-multicheck-option input[type="checkbox"],.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-multicheck-option input[type="checkbox"],.wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option input[type="checkbox"]{vertical-align:bottom}.wpbdp-settings-radio-options+.wpbdp-setting-description,.wpbdp-settings-multicheck-options.wpbdp-grid+.wpbdp-setting-description,.wpbdp-settings-multicheck-options+.wpbdp-setting-description{margin:10px 0 0 0}.wpbd-checkbox .wpbdp-setting-description{margin:0 28px}.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:auto;min-width:173px}#wpbdp-settings-list-layout input{display:none}#wpbdp-settings-list-layout label span{border:2px solid #C5CCDB;display:inline-block;padding-bottom:10px;border-radius:3px;min-width:176px}#wpbdp-settings-list-layout input:checked+label span{border-color:#6d87b9}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.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:65px}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 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-admin-page-field-form .wpbdp-pro-tip{margin-top:5px}#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}.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:74px}.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:rgba(109,135,185,0.07);margin:5px 0 20px 0;border:1px solid transparent;border-radius:4px;opacity:1}.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.ok{background:green}.tag.paymentstatus.completed{background:green;color:#fff}.tag.paymentstatus.pending,.tag.paymentstatus.pending-abandonment{background:red}.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}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .dashicons{width:20px;height:20px;font-size:20px}#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 .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:#d64226;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;color:#fff}span.tag.wpbdp-listing-attr-payment-canceled,span.tag.wpbdp-listing-attr-payment-failed{background:red;color:#fff}span.tag.wpbdp-listing-attr-payment-on-hold,span.tag.wpbdp-listing-attr-payment-refunded{background:orange;color:#fff}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-admin .wpbdp-tag,span.tag,table.wp-list-table td .tag,td.column-payment_status .status,td.column-sticky_status .status{background:var(--bd-main-color-20);border-radius:4px;padding:2px 5px;font-size:90%;color:#3C4B5D}table.wp-list-table td .tag{margin-right:2px}.wpbdp-tag.wpbdp-listing-attr-payment-completed,span.tag.wpbdp-listing-attr-payment-completed{background:green;color:#fff}.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;color:#fff}.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;color:#fff}.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}.wpbdp-admin-page .wp-list-table{border:0;box-shadow:none;margin:20px 0}.wpbdp-admin-page .wp-list-table thead .manage-column,.wpbdp-admin-page .wp-list-table tfoot .manage-column,.wpbdp-admin-page .wp-list-table thead a,.wpbdp-admin-page .wp-list-table tfoot a{color:rgba(60,75,93,0.7);font-weight:600;font-size:13px}.wpbdp-admin-page .wp-list-table tbody a,.wpbdp-admin-page .wp-list-table tbody .inline .button-link{color:#7E92BC}.wpbdp-admin-page .wp-list-table tbody .row-actions .trash a,.wpbdp-admin-page .wp-list-table tbody .row-actions .delete a{color:#d64226}.wpbdp-admin-page .wp-list-table.striped>tbody>:nth-child(odd){background-color:rgba(109,135,185,0.04)}.wpbdp-admin-page .wp-list-table th{text-align:left}.wpbdp-admin-page .wp-list-table.widefat thead th,.wpbdp-admin-page .wp-list-table.widefat thead td,.wpbdp-admin-page .wp-list-table.widefat tfoot th,.wpbdp-admin-page .wp-list-table.widefat tfoot td{border-color:#D4D5D7}.wpbdp-admin-page .subsubsub a{color:#7E92BC}.wpbdp-admin-page .subsubsub a.current{color:#3C4B5D}.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}.wpbdp-setting-tooltip{height:18px;width:18px;font-size:18px;line-height:18px;vertical-align:middle;margin-right:5px;color:#666;cursor:help}th .wpbdp-setting-tooltip{margin:0 0 0 5px}.wpbdp-admin-tooltip-content{background-color:#414B5A !important;background-image:none !important;box-shadow:none !important;border-radius:5px !important;color:#fff !important;padding:1rem !important;width:auto;max-width:220px !important;font-size:12px !important}
|
1 |
+
.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:#6278A5;border-right-color:#6278A5;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,.wpbdp-admin-page .ui-datepicker-buttonpane button{text-shadow:none;box-shadow:none;border-radius:4px;border:1px solid #7E92BC;font-size:14px;transition:all .2s ease;outline:none;line-height:22px;min-width:100px;display:inline-block;text-align:center;padding:2px 15px;text-decoration:none;font-weight:500}.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;color:#6278A5}.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{background:rgba(109,135,185,0.07);color:#7E92BC;box-shadow:none}.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,.wpbdp-admin-page .add-new-h2:active,.wpbdp-admin-page .wpbdp-button-secondary:active,.wpbdp-admin-page .button-secondary:active,.wpbdp-admin-page .button:active{background-color:#fff}.wpbdp-admin-page .add-new-h2:disabled,.wpbdp-admin-page .wpbdp-button-secondary:disabled,.wpbdp-admin-page .button-secondary:disabled,.wpbdp-admin-page .button:disabled{background-color:#fff;border-color:#7E92BC;color:#6278A5;opacity:.5}.wpbdp-admin-page .page-title-action,.wpbdp-admin-page .wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane button,.wpbdp-admin-page .wpbdp-button-primary,.wpbdp-admin-page .button-primary{background-color:#7E92BC;border-color:#7E92BC;color:#fff}.wpbdp-admin-page .page-title-action:hover,.wpbdp-admin-page .wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane button:hover,.wpbdp-admin-page .wpbdp-button-primary:hover,.wpbdp-admin-page .button-primary:hover{background:#6278A5;border-color:#6278A5;color:#fff}.wpbdp-admin-page .page-title-action:focus,.wpbdp-admin-page .wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane button:focus,.wpbdp-admin-page .wpbdp-button-primary:focus,.wpbdp-admin-page .button-primary:focus,.wpbdp-admin-page .page-title-action:active,.wpbdp-admin-page .wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane button:active,.wpbdp-admin-page .wpbdp-button-primary:active,.wpbdp-admin-page .button-primary:active{background:#7E92BC;border-color:#7E92BC;color:#fff}.wpbdp-admin-page .page-title-action:disabled,.wpbdp-admin-page .wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane button:disabled,.wpbdp-admin-page .wpbdp-button-primary:disabled,.wpbdp-admin-page .button-primary:disabled{background:#7E92BC !important;border-color:#7E92BC !important;color:#fff !important;opacity:.5}#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{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:25px}.wpbdp-addons h2{font-size:17px}.wpbdp-addons h3{margin-top:0}.wpbdp-card{width:100%;border-radius:10px;border:1px solid #C5CCDB;opacity:1;transition:opacity 1s;background:#fff;box-sizing:border-box;position:relative}.wpbdp-addons .wpbdp-card.wpbdp-addon-not-installed{position:relative}.wpbdp-addons .wpbdp-card{padding:25px;border-color:transparent}.wpbdp-addons .wpbdp-card-module-icon{margin:3px;display:inline-block}.wpbdp-addons .wpbdp-plugin-card-details{margin-bottom:0;color:#3C4B5D}.wpbdp-addons .wpbdp-plugin-card-docs{padding-top:5px}.wpbdp-addons .wpbdp-plugin-card-docs a{text-decoration:none;font-weight:500}.wpbdp-addons .wpbdp-plugin-card-title{margin:0 0 8px;font-weight:600;font-size:15px}.wpbdp-addons .wpbdp-addon-status{font-style:italic;opacity:.8;margin:0 0 13px}.wpbdp-template-row p{opacity:.8}.wpbdp-addon-active .button{visibility:hidden}.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 #1da867;color:#fff;position:absolute;top:-19px;left:-29px;padding:0 10px;width:30px;font-family:sans-serif;font-style:italic;size:11px}.wpbdp-ribbon span{position:absolute;left:-5px;font-size:15px;top:4px}.wpbdp-theme-actions form{margin:0;padding:0;display:inline}.wpbdp-theme-actions form input[type="submit"]{margin:0}.wpbdp-theme-details-wrapper{text-align:center}.wpbdp-theme-thumbnail{width:100%;height:150px;object-fit:cover;object-position:100% 0}.wpbdp-theme .enter-license{display:none;position:absolute;float:none;font-weight:normal;top:3px;right:10px;color:#d64226}.wpbdp-theme:hover .enter-license{display:block}.wpbdp-theme:hover a.delete-theme-link,.wpbdp-theme:hover .choose-theme{display:inline-block}.wpbdp-theme.active .choose-theme,.wpbdp-theme.active:hover .choose-theme{display:none}#wpbdp-admin-page-theme-delete #delete-theme{margin-left:20px;color:#d64226}#wpbdp-admin-page-theme-delete #delete-theme:hover{background:#d54e21;border-color:#d54e21;color:#fff;box-shadow:none}.wpbdp-theme a.delete-theme-link{display:none;margin-top:4px;margin-right:10px;margin-left:5px;color:#d64226 !important;font-size:13px}.wpbdp-theme.wpbdp-card{padding-bottom:0}.wpbdp-theme h2.wpbdp-plugin-card-title,.wpbdp-theme .wpbdp-theme-thumbnail p{margin:0 0 24px;padding-top:0}.wpbdp-theme .wpbdp-card-footer{padding:17px 0}.wpbdp-theme .addon-status{margin:0}.wpbdp-theme .wpbdp-theme-update-info{display:inline-block;padding:5px 24px;position:absolute;left:-1px;right:-1px;margin:0;text-align:left;border-left-width:1px}.wpbdp-theme .wpbdp-theme-update-info.theme-updated{background:#ecf7ed;border-left-color:#46b450}.wpbdp-theme .wpbdp-theme-update-info.update-error{border-color:red}.wpbdp-theme .wpbdp-theme-update-info.update-error .update-message{color:red}.wpbdp-theme .wpbdp-theme-update-info .update-message{padding:2px 4px}.wpbdp-theme .wpbdp-theme-update-info.theme-updated .update-message{background:#F0F5F7}.wpbdp-theme .wpbdp-theme-license-required-row{padding:5px 10px;border-top:solid 2px;background:#fef7f1;border-color:#D34F2B}.wpbdp-admin-module-icon img{width:100%}.wpbdp-admin-page-themes .wpbdp-addons .wpbdp-card{position:relative}@media only screen and (max-width:1200px){.wpbdp-addons{grid-template-columns:1fr 1fr}}@media only screen and (max-width:782px){.wpbdp-card-module-icon+.wpbdp7{grid-column:span 10 / span 10}.wpbdp-card-module-icon+.wpbdp7+.wpbdp-right.wpbdp3{grid-column:span 12 / span 12;text-align:center}}.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}.wpbdp-admin-layout{background-color:rgba(109,135,185,0.07);margin:0;padding-top:0;padding-left:0;display:inline-block;width:100%}.wpbdp-admin-layout ::before,.wpbdp-admin-layout ::after,.wpbdp-admin-layout *{box-sizing:border-box}.wpbdp-title-buttons{clear:both}.wpbdp-no-padding{padding-left:0;padding-right:0}.wpbdp-page-title{padding:10px 0 10px 20px !important}.wpbdp-page-title span{vertical-align:middle}.wpbdp-admin-row{margin:0;display:flex;min-height:calc(100vh - 32px);height:100%}.wpbdp-admin-row.minimized .title-text,.wpbdp-admin-row.minimized .wpbdp-nav-item-name,.wpbdp-admin-row.minimized .wpbdp-icon-maximized{display:none}.wpbdp-admin-row.minimized .wpbdp-menu-area{width:57px}.wpbdp-admin-row.minimized .wpbdp-nav-item a{text-align:center;padding-left:0;padding-right:0}.wpbdp-admin-row.minimized .wpbdp-nav-item-icon{margin:0 auto}.wpbdp-admin-row.minimized .wpbdp-page-title{padding-left:10px !important}.wpbdp-admin-row.minimized .wpbdp-icon-minimized{display:block}.wpbdp-admin-row.minimized .wpbdp-nav-toggle{margin-left:15px}@media only screen and (max-width:960px){.wpbdp-admin-row{height:100%}.wpbdp-admin-row .wpbdp-menu-area{padding:9px 0 37px 0}.wpbdp-admin-row .wpbdp-nav-item a{padding-left:3px !important;padding-right:2px !important}.wpbdp-admin-row .title-text,.wpbdp-admin-row .wpbdp-nav-item-name,.wpbdp-admin-row .wpbdp-icon-maximized{display:none}.wpbdp-admin-row .wpbdp-menu-area{width:57px}.wpbdp-admin-row .wpbdp-nav-item a{text-align:center;padding-left:0;padding-right:0}.wpbdp-admin-row .wpbdp-nav-item-icon{margin:0 auto}.wpbdp-admin-row .wpbdp-page-title{padding-left:10px !important}.wpbdp-admin-row .wpbdp-icon-minimized{display:block}.wpbdp-admin-row .wpbdp-nav-toggle{margin-left:15px}}.wpbdp-menu-area{width:287px;background-color:rgba(109,135,185,0.07);border-right:1px solid rgba(109,135,185,0.07);position:relative;bottom:0;top:0}@media only screen and (max-width:960px){.wpbdp-menu-area{position:relative;top:0;bottom:0}}.wpbdp-nav-items{display:flex;flex-wrap:wrap;padding-left:0;list-style:none;flex-direction:column;margin-bottom:auto;margin-top:0}.wpbdp-nav-items .wpbdp-nav-item{font-size:16px}.wpbdp-nav-items .wpbdp-nav-item a{display:flex;padding:15px 7px;text-decoration:none;color:#3C4B5D;align-items:center}.wpbdp-nav-items .wpbdp-nav-item a:focus{box-shadow:none}.wpbdp-nav-items .wpbdp-nav-item .active{background-color:#fff;color:#7E92BC}.wpbdp-nav-items .wpbdp-nav-item .active .wpbdp-admin-icon{background-color:#7E92BC}.wpbdp-nav-items .wpbdp-nav-item:hover a{color:#7E92BC}.wpbdp-nav-item-icon{margin:0 10px;display:inline-block;opacity:.7;width:24px;height:24px}.wpbdp-admin-icon svg{fill:currentColor;width:100%;height:24px}.wpbdp-admin-module-icon img{width:100%}.wpbdp-nav-toggle{bottom:0;position:relative;margin-top:40px;margin-left:17px;cursor:pointer;font-size:14px;width:200px}@media only screen and (max-width:960px){.wpbdp-nav-toggle{display:none}}.wpbdp-nav-toggle .wpbdp-nav-item-name{opacity:.7;line-height:1.5}.wpbdp-nav-toggle .wpbdp-nav-item-name:hover{color:#7E92BC}.wpbdp-nav-toggle .wpbdp-nav-item-icon{margin:0}.wpbdp-icon-minimized{display:none}.wpbdp-content-area{flex:1;margin-left:0}@media only screen and (max-width:960px){.wpbdp-content-area{margin-left:0 !important}}.wpbdp-content-area-header{width:100%;min-height:56px;padding:10px 40px;border-bottom:1px solid #C5CCDB;background-color:#fff;flex-direction:row;align-items:center;display:flex;gap:20px}.wpbdp-content-area-header.wpbdp-header-scroll{position:sticky;top:32px;z-index:99}.wpbdp-content-area-header>div{flex:1}.wpbdp-content-area-header-tabbed{padding-bottom:0}.wpbdp-content-area-header-tabbed .wpbdp-content-area-header-actions{padding-bottom:10px}.wpbdp-content-area-header-actions{display:flex;align-items:center;width:100%;gap:20px;justify-content:flex-end}.wpbdp-content-area-header-actions p.submit{float:none;padding:0;margin:0 0 0 auto;display:inline-block}.wpbdp-content-area-header-tabs .wpbdp-header-tab{text-decoration:none;float:left;border-bottom:none;margin-right:.5em;padding:5px 10px 22px 10px;font-size:20px;font-weight:400;color:#3C4B5D}.wpbdp-content-area-header-tabs .wpbdp-header-tab:hover{color:#7E92BC}.wpbdp-content-area-header-tabs .wpbdp-header-tab-active{color:#7E92BC;border-bottom:2px solid #7E92BC}.wpbdp-content-area-body{padding:40px;font-size:14px}.wpbdp-content-area-body h3{font-size:20px;margin:40px 0 20px}@media only screen and (min-width:960px){.wpbdp-admin-page-settings .wpbdp-content-area-body,.wpbdp-admin-page-csv .wpbdp-content-area-body{max-width:1000px}}.wpbdp-page-title,.wpbdp-sub-section-title{font-size:24px !important;font-weight:400 !important;margin:0 !important}.wpbdp-settings-form.wpbdp-grid{grid-gap:30px 4%}.wpbdp-settings-form-title{margin:10px 0}.wpbdp-admin-page .form-field label,.wpbdp-setting-label,.wpbdp-setting-form-title label{font-weight:600;font-size:14px;padding-bottom:5px}.edit-php.post-type-wpbdp_listing .wp-heading-inline+.page-title-action,.edit-tags-php[class*="taxonomy-wpbd"] .wp-heading-inline+.page-title-action,.term-php[class*="taxonomy-wpbd"] .wp-heading-inline+.page-title-action,.edit-php.post-type-wpbdp_listing .wp-heading-inline,.edit-tags-php[class*="taxonomy-wpbd"] .wp-heading-inline,.term-php[class*="taxonomy-wpbd"] .wp-heading-inline,.edit-php.post-type-wpbdp_listing .subtitle,.edit-tags-php[class*="taxonomy-wpbd"] .subtitle,.term-php[class*="taxonomy-wpbd"] .subtitle{display:none !important}.edit-php.post-type-wpbdp_listing #wpbody-content>.wrap,.edit-tags-php[class*="taxonomy-wpbd"] #wpbody-content>.wrap,.term-php[class*="taxonomy-wpbd"] #wpbody-content>.wrap{margin:0}.wpbdp-admin-page #wpcontent{padding-left:0}.wpbdp-admin-page:not(.edit-php) .wrap:not(.wpbdp-admin){padding-left:20px}.wpbdp-admin-page #wpfooter{display:none}.wpbdp-admin-page #wpbody-content{padding-bottom:0;min-height:100%}.wpbdp-admin-page #screen-meta-links{position:absolute;right:200px}.edit-tags-php[class*="taxonomy-wpbd"] #col-left,.term-php[class*="taxonomy-wpbd"] #col-left,.edit-tags-php[class*="taxonomy-wpbd"] .search-form,.term-php[class*="taxonomy-wpbd"] .search-form{display:none}.edit-tags-php[class*="taxonomy-wpbd"] #col-right,.term-php[class*="taxonomy-wpbd"] #col-right{float:none;width:100%}.edit-tags-php[class*="taxonomy-wpbd"] #col-right .col-wrap,.term-php[class*="taxonomy-wpbd"] #col-right .col-wrap{padding:0}.edit-tags-php[class*="taxonomy-wpbd"] #wpcontent,.term-php[class*="taxonomy-wpbd"] #wpcontent,.edit-tags-php[class*="taxonomy-wpbd"] .wrap,.term-php[class*="taxonomy-wpbd"] .wrap{padding-left:0 !important}.edit-tags-php[class*="taxonomy-wpbd"] .wpbdp-admin-layout,.term-php[class*="taxonomy-wpbd"] .wpbdp-admin-layout,.edit-tags-php[class*="taxonomy-wpbd"] .wpbdp-content-area .search-form,.term-php[class*="taxonomy-wpbd"] .wpbdp-content-area .search-form{display:block}.wpbdp-admin-page-themes .wpbdp-admin-row,.wpbdp-admin-page-addons .wpbdp-admin-row,.wpbdp-admin-page-payments .wpbdp-admin-row,.wpbdp-admin-page-full-width .wpbdp-admin-row{height:100%}.wpbdp-admin-page-themes .wpbdp-content-area,.wpbdp-admin-page-addons .wpbdp-content-area,.wpbdp-admin-page-payments .wpbdp-content-area,.wpbdp-admin-page-full-width .wpbdp-content-area{margin-left:0}.wpbdp-admin-page-themes .wpbdp-content-area-body,.wpbdp-admin-page-addons .wpbdp-content-area-body,.wpbdp-admin-page-payments .wpbdp-content-area-body,.wpbdp-admin-page-full-width .wpbdp-content-area-body{max-width:100%}.wpbdp-settings-tab-subtabs{margin-bottom:40px}.wpbdp-sub-menu{width:auto;margin-top:0;padding:3px 2px;border-radius:7px;font-size:13px;background-color:rgba(109,135,185,0.07)}.wpbdp-sub-menu li{margin:0 1px}.wpbdp-sub-menu a{color:#3C4B5D;padding:5px 20px;font-weight:600}.wpbdp-sub-menu a:active,.wpbdp-sub-menu a:visited{color:#3C4B5D;outline:none}.wpbdp-sub-menu a:focus{box-shadow:none}.wpbdp-sub-menu a:hover{color:#7E92BC}.wpbdp-sub-menu a.current{color:#7E92BC;background-color:#fff;border-radius:7px;border:.5px solid rgba(0,0,0,0.04);box-shadow:0 3px 8px rgba(0,0,0,0.12),0 3px 1px rgba(0,0,0,0.04);-webkit-box-shadow:0 3px 8px rgba(0,0,0,0.12),0 3px 1px rgba(0,0,0,0.04);-moz-box-shadow:0 3px 8px rgba(0,0,0,0.12),0 3px 1px rgba(0,0,0,0.04)}.wpbdp-sub-menu.wpbdp-small-tabs a{padding:5px;font-size:11px}.wpbdp-license-key-activation-ui .wpbdp-button-secondary{padding:0}.wpbdp-license-key-activation-ui p{line-height:26px;margin:0}.wpbdp-license-key-input{padding:0 8px !important}.wpbdp-settings-form-title h2{font-size:20px}.post-type-wpbdp_listing .notice:not(.wpbdp-inline-notice),.wpbdp-admin-layout .notice:not(.wpbdp-inline-notice),.directory_page_wpbdp_settings .notice:not(.wpbdp-inline-notice),.wpbdp-admin-page .notice:not(.wpbdp-inline-notice){display:none}.wpbdp-bell-notifications-list{clear:both;margin:0}.wpbdp-bell-notifications-list li{display:block !important}.wpbdp-bell-notification{display:none;position:fixed;right:20px;bottom:20px}.wpbdp-bell-notification svg{height:48px;width:48px;display:block}.wpbdp-bell-notification-icon:focus{outline:0;background-color:#fff;border-radius:12px;box-shadow:0 24px 54px rgba(99,111,125,0.2);border:none;display:block}.wpbdp-bell-notification-icon,.wpbdp-bell-notifications li{background-color:#fff;border-radius:12px;box-shadow:0 24px 54px rgba(99,111,125,0.2);border:none;display:block}.wpbdp-bell-notifications{position:fixed;bottom:69px;min-width:20%;right:20px;max-width:400px;font-size:13px}.wpbdp-bell-notifications li{padding:10px 25px;margin:0 auto 4px}.wpbdp-bell-notifications li .notice-dismiss{right:0;top:7px}.wpbdp-bell-notifications-close{border-radius:8px;background-color:#3C4B5D;color:#fff;padding:5px 15px;text-decoration:none;display:block;float:right;margin-bottom:4px}.wpbdp-bell-notifications-close:hover{color:#fff}#wpbdp-snackbar-notices{color:#fff;text-align:center;position:fixed;bottom:0;left:180px;z-index:1;max-width:500px;min-width:300px}.wpbdp-snackbar{background-color:#3C4B5D;color:#fff !important;border-radius:8px;padding:16px;width:100%;position:relative;box-sizing:border-box;margin-bottom:4px;opacity:0;display:inline-block;-webkit-animation:wpbdp-fade-in-out 10s linear forwards;animation:wpbdp-fade-in-out 10s linear forwards}.wpbdp-snackbar p,.wpbdp-snackbar a{margin:0;color:#fff !important}.wpbdp-snackbar p{margin-right:10px}.wpbdp-snackbar button::before{color:#fff !important}.folded .wpbdp-snackbar{left:56px}.wpbdp-nav-tooltip{position:relative}.wpbdp-nav-tooltip::before{background-color:#3C4B5D;color:#fff !important;border-radius:8px;padding:16px;position:absolute;top:0;left:50px;content:attr(title);text-transform:none;transition:all .5s ease;width:160px;z-index:200}.wpbdp-nav-tooltip::after{position:absolute;top:20px;left:49px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #3C4B5D;content:" ";font-size:0;line-height:0;margin-left:-4px;width:0}.wpbdp-nav-tooltip::before,.wpbdp-nav-tooltip::after{color:#fff;font-size:12px;opacity:0;pointer-events:none;text-align:left}.wpbdp-nav-tooltip:focus::before,.wpbdp-nav-tooltip:focus::after,.wpbdp-nav-tooltip:hover::before,.wpbdp-nav-tooltip:hover::after{opacity:1;transition:all .75s ease}@media screen and (max-width:782px){.wpbdp-snackbar{left:10px;max-width:90%}}@-moz-keyframes wpbdp-fade-in-out{2%{opacity:1}100%{opacity:1}}@-webkit-keyframes wpbdp-fade-in-out{2%{opacity:1}100%{opacity:1}}@keyframes wpbdp-fade-in-out{2%{opacity:1}100%{opacity:1}}.wpbdp-admin-dialog{background-color:#fff;border-radius:12px;box-shadow:0 24px 54px rgba(99,111,125,0.2);border:none;display:block;z-index:100;padding:0 !important;max-width:100% !important}.wpbdp-admin-dialog .inside:not(.empty){border-top:1px solid #C5CCDB;border-bottom:1px solid #C5CCDB}.wpbdp-admin-dialog .inside:not(.empty) p{padding:25px}.wpbdp-admin-dialog .dismiss:focus{outline:0;box-shadow:none}.wpbdp-admin-dialog .dismiss-button{text-decoration:none;font-weight:600}.wpbdp-admin-dialog .form-wrap{padding:10px 25px 25px}.wpbdp-admin-dialog .form-wrap p{padding:0 !important}.wpbdp-admin-dialog .form-wrap .inner-message{margin-top:2em;margin-bottom:2em}.wpbdp-admin-dialog .form-wrap input[type="submit"]{float:right}.wpbdp-admin-dialog .form-wrap .term-description-wrap,.wpbdp-admin-dialog .form-wrap .term-slug-wrap,.wpbdp-admin-dialog .form-wrap select+p,.wpbdp-admin-dialog .form-wrap input+p,.wpbdp-admin-dialog .form-wrap .aioseo-taxonomy-upsell{display:none}.wpbdp-admin-dialog h2{margin:0;margin-right:25px}.wpbdp-admin-dialog a{color:#7E92BC}.wpbdp-modal-top,.wpbdp-modal-bottom{padding:25px}.wpbdp-modal-bottom{display:flex;align-items:center}.wpbdp-modal-bottom .alignright{margin-left:auto}.wpbdp-modal-overlay{background:rgba(60,75,93,0.7) !important;position:fixed;width:100%;height:100%;top:0;left:0;right:0;bottom:0}.wpbd-toggle-cont{position:relative;display:inline-block;width:38px;height:22px;vertical-align:middle;margin:2px}.wpbd-toggle-cont+span{margin-left:15px}.wpbd-toggle-cont input{display:none !important}.wpbd-toggle-cont input:checked+.wpbd-toggle-slider{background-color:#6d87b9;outline-color:#6d87b9}.wpbd-toggle-cont input:checked+.wpbd-toggle-slider:before{transform:translateX(17px);outline-color:#6d87b9}.wpbd-toggle-cont input:focus+.wpbd-toggle-slider{box-shadow:0 0 1px #6d87b9}.wpbd-toggle-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;transition:.4s;border-radius:30px;background-color:rgba(109,135,185,0.15);outline:1px solid rgba(109,135,185,0.15)}.wpbd-toggle-slider:before{border-radius:50%;position:absolute;content:"";height:22px;width:22px;left:0;top:0;transition:.3s;background-color:#fff;outline:1px solid rgba(109,135,185,0.15);box-shadow:0 2px 6px rgba(41,58,82,0.3)}.wpbd-toggle .wpbdp-setting-description{margin-left:57px}.wpbdp-admin-dialog textarea,.wpbdp-admin-page-settings textarea,.wpbdp-admin-page-csv textarea,.wpbdp-admin-dialog select,.wpbdp-admin-page-settings select,.wpbdp-admin-page-csv select,.wpbdp-admin-dialog input[type="text"],.wpbdp-admin-page-settings input[type="text"],.wpbdp-admin-page-csv input[type="text"],.wpbdp-admin-dialog input[type="number"],.wpbdp-admin-page-settings input[type="number"],.wpbdp-admin-page-csv input[type="number"],.wpbdp-admin-dialog input[type="url"],.wpbdp-admin-page-settings input[type="url"],.wpbdp-admin-page-csv input[type="url"]{width:100%;max-width:100%}.wpbdp-admin-page input[type="text"],.wpbdp-admin-page input[type="number"],.wpbdp-admin-page input[type="url"],.wpbdp-admin-page input[type="search"],.wpbdp-admin-page select,.wpbdp-admin-page textarea{border-color:#C5CCDB}.wpbdp-admin-page input[type="text"]:default,.wpbdp-admin-page input[type="number"]:default,.wpbdp-admin-page input[type="url"]:default,.wpbdp-admin-page input[type="search"]:default,.wpbdp-admin-page select:default,.wpbdp-admin-page textarea:default{border-color:#C5CCDB}.wpbdp-admin-page input[type="text"]::placeholder,.wpbdp-admin-page input[type="number"]::placeholder,.wpbdp-admin-page input[type="url"]::placeholder,.wpbdp-admin-page input[type="search"]::placeholder,.wpbdp-admin-page select::placeholder,.wpbdp-admin-page textarea::placeholder{opacity:.5}.wpbdp-admin-page input[type="text"]:hover,.wpbdp-admin-page input[type="number"]:hover,.wpbdp-admin-page input[type="url"]:hover,.wpbdp-admin-page input[type="search"]:hover,.wpbdp-admin-page select:hover,.wpbdp-admin-page textarea:hover,.wpbdp-admin-page input[type="text"]:active,.wpbdp-admin-page input[type="number"]:active,.wpbdp-admin-page input[type="url"]:active,.wpbdp-admin-page input[type="search"]:active,.wpbdp-admin-page select:active,.wpbdp-admin-page textarea:active{border-color:#7E92BC}.wpbdp-admin-page input[type="text"]:disabled,.wpbdp-admin-page input[type="number"]:disabled,.wpbdp-admin-page input[type="url"]:disabled,.wpbdp-admin-page input[type="search"]:disabled,.wpbdp-admin-page select:disabled,.wpbdp-admin-page textarea:disabled{background-color:rgba(109,135,185,0.07);border-color:#C5CCDB;cursor:not-allowed}.wpbdp-admin-page input[type="text"]:invalid,.wpbdp-admin-page input[type="number"]:invalid,.wpbdp-admin-page input[type="url"]:invalid,.wpbdp-admin-page input[type="search"]:invalid,.wpbdp-admin-page select:invalid,.wpbdp-admin-page textarea:invalid{border-color:#BC7E7E}.wpbdp-admin-page input[type="text"].valid,.wpbdp-admin-page input[type="number"].valid,.wpbdp-admin-page input[type="url"].valid,.wpbdp-admin-page input[type="search"].valid,.wpbdp-admin-page select.valid,.wpbdp-admin-page textarea.valid{border-color:#78C53C}.wpbdp-admin-page textarea{min-height:150px}.wpbdp-admin-page input[type="checkbox"]{border-radius:2px}.wpbdp-admin-page input[type="checkbox"],.wpbdp-admin-page input[type="radio"]{border-color:#C5CCDB;margin-right:11px;box-shadow:none}.wpbdp-admin-page input[type="checkbox"]:hover,.wpbdp-admin-page input[type="radio"]:hover,.wpbdp-admin-page input[type="checkbox"]:active,.wpbdp-admin-page input[type="radio"]:active{border-color:#7E92BC}.wpbdp-admin-page input[type="checkbox"]:disabled,.wpbdp-admin-page input[type="radio"]:disabled{background-color:rgba(109,135,185,0.07);border-color:#C5CCDB;cursor:not-allowed}.wpbdp-admin-page input[type="checkbox"]:focus,.wpbdp-admin-page input[type="radio"]:focus{box-shadow:0 0 0 2px rgba(126,146,188,0.25)}.wpbdp-admin-page input[type="checkbox"]:invalid,.wpbdp-admin-page input[type="radio"]:invalid{border-color:#BC7E7E}.wpbdp-admin-page input[type="checkbox"].valid,.wpbdp-admin-page input[type="radio"].valid{border-color:#78C53C}.wpbd-checkbox label{font-weight:500;padding-bottom:0}.wpbdp-admin-page{--bd-main-color:#6d87b9;--bd-main-color-20:rgba(109,135,185,0.2);--bd-main-color-8:rgba(109,135,185,0.08);background-color:#fff}.wpbdp-admin-page #wp-content-editor-tools{background-color:transparent}.wpbdp-admin-page h1,.wpbdp-admin-page h2,.wpbdp-admin-page h3,.wpbdp-admin-page label{color:rgba(60,75,93,0.8)}.wpbdp-admin-page p,.wpbdp-admin-page .required{color:#3C4B5D}.wpbdp-admin-page .wp-pointer-content h3{color:#fff;background:#6d87b9;border-color:#6d87b9}.wpbdp-admin-page .wp-pointer-content h3:before{color:#fff}.wpbdp-admin-page .wp-pointer-top .wp-pointer-arrow-inner,.wpbdp-admin-page .wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#6d87b9}.wpbdp-content-area-body a{color:#7E92BC}a.wpbdp-delete-link{color:#d64226}.wpbdp-admin-page-addons.wpbdp-admin-page,.wpbdp-admin-page-themes.wpbdp-admin-page{background:rgba(109,135,185,0.07)}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.wpbdp-right{text-align:right}.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(109,135,185,0.07)}.wpbdp-pro-tip a,.wpbdp-upgrade-bar a{color:#6d87b9;font-weight:600;text-decoration:none}.wpbdp-pro-tip{display:flex;flex-wrap:wrap;align-items:center;border-radius:6px;padding:11px 22px;position:relative}.wpbdp-pro-tip svg{color:#6d87b9;margin-right:13px}.wpbdp-pro-tip a{margin-left:5px}.wpbdp-pro-tip>img{width:calc(100% - 35px);margin:10px 0 10px 35px}.wpbdp-pro-tip>img~a{position:absolute;right:22px;top:11px}.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-page-fees .wp-list-table .column-order{width:65px}.wpbdp-admin-page-fees .wp-list-table .wpbdp-drag-handle{margin-right:3px}.wpbdp-admin-page-fees .wpbdp-fee-gateway-list{padding-left:20px;padding-right:20px}@media only screen and (max-width:960px){.wpbdp-admin-page-fees .wpbdp-fee-gateway-list{padding-left:0;padding-right:0}}@media only screen and (max-width:710px){.wpbdp-admin-page-fees .wpbdp-fee-gateway-list .wpbdp3,.wpbdp-admin-page-fees .wpbdp-fee-gateway-list .wpbdp4{grid-column:span 6 / span 6 !important}}.wpbdp-admin-page-fees h3{margin-top:50px}.wpbdp-admin-page-fees img.gateway-logo{height:20px}.wpbdp-admin-page-fees .gateway-description{min-height:30px;margin-top:10px;opacity:.6}.wpbdp-admin-page-fees .gateway-footer .button-primary{width:99px;text-align:center}.wpbdp-admin-page-fees .howto{opacity:.7}.wpbdp-admin-page-fees .howto .title{font-weight:600;clear:both;font-size:14px;display:block}.wpbdp-admin-page-fees .fees-order .button-secondary{line-height:2}#wpbdp-admin-admin-page-fees .column-attributes .wpbdp-tag{background:green;color:#fff}#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;color:#fff}#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;color:#fff}#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;color:#fff}#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-setting-description{font-size:14px;padding:0 0 6px;color:#3C4B5D;opacity:80%}.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 .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-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 .wpbdp-setting-disabled{display:none}.wpbdp-admin-page-settings .wpbdp_upgrade_to_pro{margin-top:60px}.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-settings-email{margin:10px 0 0 0;border:solid 1px #C5CCDB;border-radius:4px;padding:5px;background:#fff}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview{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}#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 .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 .placeholders{margin:10px 0 0 0}#wpbdp-admin-page-settings .placeholder{font-size:90%}#wpbdp-admin-page-settings .placeholder .placeholder-code{font-family:monospace;font-weight:bold}#wpbdp-admin-page-settings .placeholder .placeholder-description{font-style:italic}#wpbdp-admin-page-settings .placeholder-separator{margin-top: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-settings-radio-options,.wpbdp-settings-multicheck-options.wpbdp-grid,.wpbdp-settings-multicheck-options{grid-gap:0}.wpbdp-settings-radio-options .wpbdp-settings-radio-option,.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-radio-option,.wpbdp-settings-multicheck-options .wpbdp-settings-radio-option,.wpbdp-settings-radio-options .wpbdp-settings-multicheck-option,.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-multicheck-option,.wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option{margin:0 0 5px 0}.wpbdp-settings-radio-options .wpbdp-settings-radio-option input[type="radio"],.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-radio-option input[type="radio"],.wpbdp-settings-multicheck-options .wpbdp-settings-radio-option input[type="radio"],.wpbdp-settings-radio-options .wpbdp-settings-multicheck-option input[type="radio"],.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-multicheck-option input[type="radio"],.wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option input[type="radio"],.wpbdp-settings-radio-options .wpbdp-settings-radio-option input[type="checkbox"],.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-radio-option input[type="checkbox"],.wpbdp-settings-multicheck-options .wpbdp-settings-radio-option input[type="checkbox"],.wpbdp-settings-radio-options .wpbdp-settings-multicheck-option input[type="checkbox"],.wpbdp-settings-multicheck-options.wpbdp-grid .wpbdp-settings-multicheck-option input[type="checkbox"],.wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option input[type="checkbox"]{vertical-align:bottom}.wpbdp-settings-radio-options+.wpbdp-setting-description,.wpbdp-settings-multicheck-options.wpbdp-grid+.wpbdp-setting-description,.wpbdp-settings-multicheck-options+.wpbdp-setting-description{margin:10px 0 0 0}.wpbd-checkbox .wpbdp-setting-description{margin:0 28px}.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:auto;min-width:173px}#wpbdp-settings-list-layout input{display:none}#wpbdp-settings-list-layout label span{border:2px solid #C5CCDB;display:inline-block;padding-bottom:10px;border-radius:3px;min-width:176px}#wpbdp-settings-list-layout input:checked+label span{border-color:#6d87b9}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.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:65px}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 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-admin-page-field-form .wpbdp-pro-tip{margin-top:5px}#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}.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:74px}.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:rgba(109,135,185,0.07);margin:5px 0 20px 0;border:1px solid transparent;border-radius:4px;opacity:1}.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.ok{background:green}.tag.paymentstatus.completed{background:green;color:#fff}.tag.paymentstatus.pending,.tag.paymentstatus.pending-abandonment{background:red}.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}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .dashicons{width:20px;height:20px;font-size:20px}#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 .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:#d64226;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;color:#fff}span.tag.wpbdp-listing-attr-payment-canceled,span.tag.wpbdp-listing-attr-payment-failed{background:red;color:#fff}span.tag.wpbdp-listing-attr-payment-on-hold,span.tag.wpbdp-listing-attr-payment-refunded{background:orange;color:#fff}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-admin .wpbdp-tag,span.tag,table.wp-list-table td .tag,td.column-payment_status .status,td.column-sticky_status .status{background:var(--bd-main-color-20);border-radius:4px;padding:2px 5px;font-size:90%;color:#3C4B5D}table.wp-list-table td .tag{margin-right:2px}.wpbdp-tag.wpbdp-listing-attr-payment-completed,span.tag.wpbdp-listing-attr-payment-completed{background:green;color:#fff}.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;color:#fff}.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;color:#fff}.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}.wpbdp-admin-page .wp-list-table{border:0;box-shadow:none;margin:20px 0}.wpbdp-admin-page .wp-list-table thead .manage-column,.wpbdp-admin-page .wp-list-table tfoot .manage-column,.wpbdp-admin-page .wp-list-table thead a,.wpbdp-admin-page .wp-list-table tfoot a{color:rgba(60,75,93,0.7);font-weight:600;font-size:13px}.wpbdp-admin-page .wp-list-table tbody a,.wpbdp-admin-page .wp-list-table tbody .inline .button-link{color:#7E92BC}.wpbdp-admin-page .wp-list-table tbody .row-actions .trash a,.wpbdp-admin-page .wp-list-table tbody .row-actions .delete a{color:#d64226}.wpbdp-admin-page .wp-list-table.striped>tbody>:nth-child(odd){background-color:rgba(109,135,185,0.04)}.wpbdp-admin-page .wp-list-table th{text-align:left}.wpbdp-admin-page .wp-list-table.widefat thead th,.wpbdp-admin-page .wp-list-table.widefat thead td,.wpbdp-admin-page .wp-list-table.widefat tfoot th,.wpbdp-admin-page .wp-list-table.widefat tfoot td{border-color:#D4D5D7}.wpbdp-admin-page .subsubsub a{color:#7E92BC}.wpbdp-admin-page .subsubsub a.current{color:#3C4B5D}.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}.wpbdp-setting-tooltip{height:18px;width:18px;font-size:18px;line-height:18px;vertical-align:middle;margin-right:5px;color:#666;cursor:help}th .wpbdp-setting-tooltip{margin:0 0 0 5px}.wpbdp-admin-tooltip-content{background-color:#414B5A !important;background-image:none !important;box-shadow:none !important;border-radius:5px !important;color:#fff !important;padding:1rem !important;width:auto;max-width:220px !important;font-size:12px !important}
|
assets/js/admin-csv-import.js
CHANGED
@@ -157,6 +157,36 @@ jQuery(function( $ ) {
|
|
157 |
}
|
158 |
} );
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
// Import progress page.
|
161 |
if ( $( '#wpbdp-csv-import-state' ).length > 0 ) {
|
162 |
var import_in_page = new csvimport.CSV_Import();
|
157 |
}
|
158 |
} );
|
159 |
|
160 |
+
// Import example page.
|
161 |
+
$( 'a.wpbdp-example-csv' ).on( 'click', function(e) {
|
162 |
+
e.preventDefault();
|
163 |
+
$.ajax({
|
164 |
+
url: ajaxurl,
|
165 |
+
type: 'POST',
|
166 |
+
data: {
|
167 |
+
'action': 'wpbdp-example-csv',
|
168 |
+
'nonce': wpbdp_global.nonce
|
169 |
+
},
|
170 |
+
success: function( res ) {
|
171 |
+
var link = document.createElement( 'a' );
|
172 |
+
var fileData = ['\ufeff'+res];
|
173 |
+
|
174 |
+
var fileObject = new Blob( fileData, {
|
175 |
+
type: 'text/csv;charset=utf-8;'
|
176 |
+
});
|
177 |
+
|
178 |
+
var url = URL.createObjectURL( fileObject );
|
179 |
+
link.href = url;
|
180 |
+
link.download = 'bd-example.csv';
|
181 |
+
|
182 |
+
// Actually download CSV.
|
183 |
+
document.body.appendChild( link );
|
184 |
+
link.click();
|
185 |
+
document.body.removeChild( link );
|
186 |
+
}
|
187 |
+
});
|
188 |
+
});
|
189 |
+
|
190 |
// Import progress page.
|
191 |
if ( $( '#wpbdp-csv-import-state' ).length > 0 ) {
|
192 |
var import_in_page = new csvimport.CSV_Import();
|
assets/js/admin-csv-import.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function($){var csvimport={};if(csvimport.CSV_Import=function(){this.import_id=$("#wpbdp-csv-import-state").attr("data-import-id"),this.in_progress=!1,this.canceled=!1,this.processed_rows=0,this.total_rows=0,this.imported_rows=0,this.rejected_rows=0,this.warnings=[],this.$state=$("#wpbdp-csv-import-state"),this.$success=$("#wpbdp-csv-import-summary"),this.$progress_bar=new WPBDP_Admin.ProgressBar($(".import-progress")),this._setup_events()},$.extend(csvimport.CSV_Import.prototype,{_setup_events:function(){var t=this;$("a.cancel-import").on("click",function(e){e.preventDefault(),t.cancel()}),$("a.resume-import").on("click",function(e){e.preventDefault(),t.start_or_resume()})},_advance:function(){var t=this;t.in_progress&&(t.in_progress&&t.canceled&&(t.in_progress=!1),$.ajax({url:ajaxurl,type:"POST",dataType:"json",data:{action:"wpbdp-csv-import",import_id:t.import_id},success:function(res){return res&&res.success?(t.processed_rows=res.data.progress,t.total_rows=res.data.total,t.imported_rows=res.data.imported,t.rejected_rows=res.data.rejected,t.$progress_bar.set(t.processed_rows,t.total_rows),void(res.data.done?(t.in_progress=!1,t.warnings=res.data.warnings,t._show_success_screen()):t._advance())):t._fatal_error(res.error)},error:function(){return t._fatal_error()}}))},_show_success_screen:function(){var t=this;t.$state.fadeOut(function(){if(t.$state.remove(),t.$success.find(".placeholder-imported-rows").html(t.imported_rows),t.$success.find(".placeholder-rejected-rows").html(t.rejected_rows),0==t.warnings.length)return t.$success.find(".no-warnings").show(),void t.$success.fadeIn("fast");var $warnings_table=t.$success.find(".wpbdp-csv-import-warnings tbody"),$template_row=$warnings_table.find(".row-template");$.each(t.warnings,function(i,v){var $r=$template_row.clone();$r.find(".col-line-no").html(v.line),$r.find(".col-line-content").html(v.content),$r.find(".col-warning").html(v.error),$warnings_table.append($r.show())}),t.$success.find(".with-warnings").show(),t.$success.find(".wpbdp-csv-import-warnings").show(),t.$success.fadeIn("fast")})},_fatal_error:function(msg){var t=this,$fatal_error=$("#wpbdp-csv-import-fatal-error"),$with_reason=$fatal_error.find(".with-reason"),$no_reason=$fatal_error.find(".no-reason");msg?$with_reason.html($with_reason.html().replace("%s",msg)).show():$no_reason.show(),$fatal_error.show(),$("html, body").animate({scrollTop:0},"medium"),t.cancel()},start_or_resume:function(){this.in_progress||this.canceled||(this.in_progress=!0,$("a.resume-import").css("opacity","0.4"),$(".status-msg .not-started").hide(),$(".status-msg .in-progress").show(),this._advance())},cancel:function(){var t=this;t.canceled=!0,$(".canceled-import").show(),t.$state.remove(),$.ajax({url:ajaxurl,type:"POST",dataType:"json",data:{action:"wpbdp-csv-import",import_id:t.import_id,cleanup:1}})}}),$("#wpbdp-csv-import-state").length>0){new csvimport.CSV_Import}else $(".wpbdp-page-csv-import .file-local-selection a.toggle-selection").on("click",function(e){e.preventDefault();var $files=$(this).siblings("ul");$files.toggle(),$files.is(":visible")||$files.find('input[type="radio"]').prop("checked",!1)}),$(".wpbdp-page-csv-import").on("change",'.file-local-selection input[type="radio"]',function(e){var sel=$(this).filter(":checked").val();""==sel&&($(this).prop("checked",!1),$(this).parents(".file-local-selection").hide())}),function(){function update_textfield_value(event,ui){event.preventDefault(),"undefined"!=typeof ui.item&&($default_user_field.val(ui.item.label),$default_user_field.siblings("#"+$default_user_field.attr("data-hidden-field")).val(ui.item.value))}var $default_user_field,$form=$("form#wpbdp-csv-import-form"),$use_default_user_checkbox=$form.find("input.use-default-listing-user");$form.on("change","input.assign-listings-to-user",function(e){$(this).is(":checked")?$form.find(".default-user-selection").show():$form.find(".default-user-selection").hide(),$use_default_user_checkbox.trigger("change")}),$("input.assign-listings-to-user").trigger("change"),$(document).on("change",$use_default_user_checkbox,function(){$(this).is(":checked")?$form.find("select.default-user, input.default-user").closest("tr").show():$form.find("select.default-user, input.default-user").closest("tr").hide()}),$use_default_user_checkbox.trigger("change"),$default_user_field=$form.find(".wpbdp-user-autocomplete").autocomplete({source:ajaxurl+"?action=wpbdp-autocomplete-user",delay:500,minLength:2,select:update_textfield_value,focus:update_textfield_value})}()});
|
1 |
+
jQuery(function($){var csvimport={};if(csvimport.CSV_Import=function(){this.import_id=$("#wpbdp-csv-import-state").attr("data-import-id"),this.in_progress=!1,this.canceled=!1,this.processed_rows=0,this.total_rows=0,this.imported_rows=0,this.rejected_rows=0,this.warnings=[],this.$state=$("#wpbdp-csv-import-state"),this.$success=$("#wpbdp-csv-import-summary"),this.$progress_bar=new WPBDP_Admin.ProgressBar($(".import-progress")),this._setup_events()},$.extend(csvimport.CSV_Import.prototype,{_setup_events:function(){var t=this;$("a.cancel-import").on("click",function(e){e.preventDefault(),t.cancel()}),$("a.resume-import").on("click",function(e){e.preventDefault(),t.start_or_resume()})},_advance:function(){var t=this;t.in_progress&&(t.in_progress&&t.canceled&&(t.in_progress=!1),$.ajax({url:ajaxurl,type:"POST",dataType:"json",data:{action:"wpbdp-csv-import",import_id:t.import_id},success:function(res){return res&&res.success?(t.processed_rows=res.data.progress,t.total_rows=res.data.total,t.imported_rows=res.data.imported,t.rejected_rows=res.data.rejected,t.$progress_bar.set(t.processed_rows,t.total_rows),void(res.data.done?(t.in_progress=!1,t.warnings=res.data.warnings,t._show_success_screen()):t._advance())):t._fatal_error(res.error)},error:function(){return t._fatal_error()}}))},_show_success_screen:function(){var t=this;t.$state.fadeOut(function(){if(t.$state.remove(),t.$success.find(".placeholder-imported-rows").html(t.imported_rows),t.$success.find(".placeholder-rejected-rows").html(t.rejected_rows),0==t.warnings.length)return t.$success.find(".no-warnings").show(),void t.$success.fadeIn("fast");var $warnings_table=t.$success.find(".wpbdp-csv-import-warnings tbody"),$template_row=$warnings_table.find(".row-template");$.each(t.warnings,function(i,v){var $r=$template_row.clone();$r.find(".col-line-no").html(v.line),$r.find(".col-line-content").html(v.content),$r.find(".col-warning").html(v.error),$warnings_table.append($r.show())}),t.$success.find(".with-warnings").show(),t.$success.find(".wpbdp-csv-import-warnings").show(),t.$success.fadeIn("fast")})},_fatal_error:function(msg){var t=this,$fatal_error=$("#wpbdp-csv-import-fatal-error"),$with_reason=$fatal_error.find(".with-reason"),$no_reason=$fatal_error.find(".no-reason");msg?$with_reason.html($with_reason.html().replace("%s",msg)).show():$no_reason.show(),$fatal_error.show(),$("html, body").animate({scrollTop:0},"medium"),t.cancel()},start_or_resume:function(){this.in_progress||this.canceled||(this.in_progress=!0,$("a.resume-import").css("opacity","0.4"),$(".status-msg .not-started").hide(),$(".status-msg .in-progress").show(),this._advance())},cancel:function(){var t=this;t.canceled=!0,$(".canceled-import").show(),t.$state.remove(),$.ajax({url:ajaxurl,type:"POST",dataType:"json",data:{action:"wpbdp-csv-import",import_id:t.import_id,cleanup:1}})}}),$("a.wpbdp-example-csv").on("click",function(e){e.preventDefault(),$.ajax({url:ajaxurl,type:"POST",data:{action:"wpbdp-example-csv",nonce:wpbdp_global.nonce},success:function(res){var link=document.createElement("a"),fileData=["\ufeff"+res],fileObject=new Blob(fileData,{type:"text/csv;charset=utf-8;"}),url=URL.createObjectURL(fileObject);link.href=url,link.download="bd-example.csv",document.body.appendChild(link),link.click(),document.body.removeChild(link)}})}),$("#wpbdp-csv-import-state").length>0){new csvimport.CSV_Import}else $(".wpbdp-page-csv-import .file-local-selection a.toggle-selection").on("click",function(e){e.preventDefault();var $files=$(this).siblings("ul");$files.toggle(),$files.is(":visible")||$files.find('input[type="radio"]').prop("checked",!1)}),$(".wpbdp-page-csv-import").on("change",'.file-local-selection input[type="radio"]',function(e){var sel=$(this).filter(":checked").val();""==sel&&($(this).prop("checked",!1),$(this).parents(".file-local-selection").hide())}),function(){function update_textfield_value(event,ui){event.preventDefault(),"undefined"!=typeof ui.item&&($default_user_field.val(ui.item.label),$default_user_field.siblings("#"+$default_user_field.attr("data-hidden-field")).val(ui.item.value))}var $default_user_field,$form=$("form#wpbdp-csv-import-form"),$use_default_user_checkbox=$form.find("input.use-default-listing-user");$form.on("change","input.assign-listings-to-user",function(e){$(this).is(":checked")?$form.find(".default-user-selection").show():$form.find(".default-user-selection").hide(),$use_default_user_checkbox.trigger("change")}),$("input.assign-listings-to-user").trigger("change"),$(document).on("change",$use_default_user_checkbox,function(){$(this).is(":checked")?$form.find("select.default-user, input.default-user").closest("tr").show():$form.find("select.default-user, input.default-user").closest("tr").hide()}),$use_default_user_checkbox.trigger("change"),$default_user_field=$form.find(".wpbdp-user-autocomplete").autocomplete({source:ajaxurl+"?action=wpbdp-autocomplete-user",delay:500,minLength:2,select:update_textfield_value,focus:update_textfield_value})}()});
|
assets/js/admin-listing-metabox.js
CHANGED
@@ -58,6 +58,31 @@ jQuery( function( $ ) {
|
|
58 |
if ( featured !== null ) {
|
59 |
featured.closest( '.components-panel__body' ).classList.add( 'hidden' );
|
60 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
},
|
62 |
3500
|
63 |
);
|
58 |
if ( featured !== null ) {
|
59 |
featured.closest( '.components-panel__body' ).classList.add( 'hidden' );
|
60 |
}
|
61 |
+
|
62 |
+
// If there's no plan selected, make it clear how to add it.
|
63 |
+
var selectedPlan = document.querySelector( 'input[name="listing_plan[fee_id]"]' );
|
64 |
+
if ( selectedPlan !== null && ! selectedPlan.value ) {
|
65 |
+
var planPos, panel,
|
66 |
+
publishBtn = document.querySelector( '.edit-post-header__settings .is-primary' );
|
67 |
+
|
68 |
+
if ( publishBtn !== null ) {
|
69 |
+
publishBtn.classList.add( 'wpbdp-error-btn' );
|
70 |
+
publishBtn.title = 'The Listing plan is required.';
|
71 |
+
|
72 |
+
// Auto scroll to the plan selector box.
|
73 |
+
panel = document.querySelector( '.interface-interface-skeleton__sidebar' );
|
74 |
+
planPos = document.getElementById( 'wpbdp-listing-plan' ).getBoundingClientRect();
|
75 |
+
if ( panel !== null ) {
|
76 |
+
panel.scrollTop = planPos.y;
|
77 |
+
}
|
78 |
+
|
79 |
+
// Clear the error warning.
|
80 |
+
$metabox_tab.on( 'change', 'input[name="listing_plan[fee_id]"]', function() {
|
81 |
+
publishBtn.classList.remove( 'wpbdp-error-btn' );
|
82 |
+
publishBtn.title = '';
|
83 |
+
});
|
84 |
+
}
|
85 |
+
}
|
86 |
},
|
87 |
3500
|
88 |
);
|
assets/js/admin-listing-metabox.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function($){var _addNeverButton=function(instance){setTimeout(function(){var $buttonPane=$(instance.dpDiv).find(".ui-datepicker-buttonpane");if(!($buttonPane.find(".ui-datepicker-never").length>0)){var $button=$("<button>",{text:"Never Expires",click:function(){$(instance.input).val(""),$(instance.input).datepicker("hide")}}).addClass("ui-datepicker-never ui-state-default ui-priority-primary ui-corner-all");$buttonPane.append($button)}},1)};$('#wpbdp-listing-metabox-plan-info input[name="listing_plan[expiration_date]"]').datepicker({dateFormat:"yy-mm-dd",showButtonPanel:!0,beforeShow:function(input,instance){_addNeverButton(instance),$("#ui-datepicker-div").addClass("wpbdp-datepicker")},onChangeMonthYear:function(year,month,instance){_addNeverButton(instance)}});var $metabox_tab=$("#wpbdp-listing-metabox-plan-info"),updateText=function(plan){var images=$('input[name="listing_plan[fee_images]"]').val();$("#wpbdp-listing-plan-prop-images").html(images),plan&&($("#wpbdp-listing-plan-prop-label").html(wpbdpListingMetaboxL10n.planDisplayFormat.replace("{{plan_id}}",plan.id).replace("{{plan_label}}",plan.label)),$("#wpbdp-listing-plan-prop-amount").html(plan.amount?plan.amount:"-"),$("#wpbdp-listing-plan-prop-is_sticky").html(plan.sticky),$("#wpbdp-listing-plan-prop-is_recurring").html(plan.recurring),$("#wpbdp-listing-plan-prop-expiration").html(plan.formated_date))};setTimeout(function(){var featured=document.querySelector(".editor-post-featured-image");null!==featured&&featured.closest(".components-panel__body").classList.add("hidden")},3500),$metabox_tab.on("click","a.edit-value-toggle",function(e){e.preventDefault();var $dd=$(this).parents("dd"),$editor=$dd.find(".value-editor"),$display=$dd.find(".display-value"),$input=$editor.find('input[type="text"], input[type="checkbox"], select'),current_value=$input.is(":checkbox")?$input.is(":checked"):$input.val();$input.data("before-edit-value",current_value),$(this).hide(),$display.hide(),$editor.show()}),$metabox_tab.on("click",".value-editor a.update-value, .value-editor a.cancel-edit",function(e){e.preventDefault();var $dd=$(this).parents("dd"),$editor=$dd.find(".value-editor"),$display=$dd.find(".display-value"),$input=$editor.find('input[type="text"], input[type="checkbox"], select');if($(this).is(".cancel-edit")){var prev_value=$input.data("before-edit-value");$input.is(":checkbox")?$input.prop("checked",prev_value):$input.val(prev_value)}else if($input.is("#wpbdp-listing-plan-select")&&$input.val()){var listing_id=$('input[name="post_ID"]').val();$.ajax(ajaxurl,{data:{action:"wpbdp-assign-plan-to-listing",nonce:wpbdp_global.nonce,listing_id:listing_id,plan_id:$input.val()},type:"POST",dataType:"json",success:function(res){if(res.success){var plan=res.data;$metabox_tab.find('input[name="listing_plan[fee_id]"]').val(plan.id),$metabox_tab.find('input[name="listing_plan[expiration_date]"]').val(plan.expiration_date),$metabox_tab.find('input[name="listing_plan[fee_images]"]').val(plan.images),updateText(plan)}}})}else $display.html($input.val());$editor.hide(),$display.show(),$dd.find(".edit-value-toggle").show()}),$payments_tab=$("#wpbdp-listing-metabox-payments"),$payments_tab.on("click",'a[name="delete-payments"]',function(e){e.preventDefault(),$.post(ajaxurl,{action:"wpbdp-clear-payment-history",listing_id:$(this).attr("data-id")},function(res){return res.success?void $(".wpbdp-payment-items",$payments_tab).fadeOut("fast",function(){$(this).html(""),$("#wpbdp-listing-payment-message",$payments_tab).html(res.data.message).fadeIn()}):void(res.data.error&&$("#wpbdp-listing-payment-message").addClass("error").html(res.data.error).fadeIn())})})});
|
1 |
+
jQuery(function($){var _addNeverButton=function(instance){setTimeout(function(){var $buttonPane=$(instance.dpDiv).find(".ui-datepicker-buttonpane");if(!($buttonPane.find(".ui-datepicker-never").length>0)){var $button=$("<button>",{text:"Never Expires",click:function(){$(instance.input).val(""),$(instance.input).datepicker("hide")}}).addClass("ui-datepicker-never ui-state-default ui-priority-primary ui-corner-all");$buttonPane.append($button)}},1)};$('#wpbdp-listing-metabox-plan-info input[name="listing_plan[expiration_date]"]').datepicker({dateFormat:"yy-mm-dd",showButtonPanel:!0,beforeShow:function(input,instance){_addNeverButton(instance),$("#ui-datepicker-div").addClass("wpbdp-datepicker")},onChangeMonthYear:function(year,month,instance){_addNeverButton(instance)}});var $metabox_tab=$("#wpbdp-listing-metabox-plan-info"),updateText=function(plan){var images=$('input[name="listing_plan[fee_images]"]').val();$("#wpbdp-listing-plan-prop-images").html(images),plan&&($("#wpbdp-listing-plan-prop-label").html(wpbdpListingMetaboxL10n.planDisplayFormat.replace("{{plan_id}}",plan.id).replace("{{plan_label}}",plan.label)),$("#wpbdp-listing-plan-prop-amount").html(plan.amount?plan.amount:"-"),$("#wpbdp-listing-plan-prop-is_sticky").html(plan.sticky),$("#wpbdp-listing-plan-prop-is_recurring").html(plan.recurring),$("#wpbdp-listing-plan-prop-expiration").html(plan.formated_date))};setTimeout(function(){var featured=document.querySelector(".editor-post-featured-image");null!==featured&&featured.closest(".components-panel__body").classList.add("hidden");var selectedPlan=document.querySelector('input[name="listing_plan[fee_id]"]');if(null!==selectedPlan&&!selectedPlan.value){var planPos,panel,publishBtn=document.querySelector(".edit-post-header__settings .is-primary");null!==publishBtn&&(publishBtn.classList.add("wpbdp-error-btn"),publishBtn.title="The Listing plan is required.",panel=document.querySelector(".interface-interface-skeleton__sidebar"),planPos=document.getElementById("wpbdp-listing-plan").getBoundingClientRect(),null!==panel&&(panel.scrollTop=planPos.y),$metabox_tab.on("change",'input[name="listing_plan[fee_id]"]',function(){publishBtn.classList.remove("wpbdp-error-btn"),publishBtn.title=""}))}},3500),$metabox_tab.on("click","a.edit-value-toggle",function(e){e.preventDefault();var $dd=$(this).parents("dd"),$editor=$dd.find(".value-editor"),$display=$dd.find(".display-value"),$input=$editor.find('input[type="text"], input[type="checkbox"], select'),current_value=$input.is(":checkbox")?$input.is(":checked"):$input.val();$input.data("before-edit-value",current_value),$(this).hide(),$display.hide(),$editor.show()}),$metabox_tab.on("click",".value-editor a.update-value, .value-editor a.cancel-edit",function(e){e.preventDefault();var $dd=$(this).parents("dd"),$editor=$dd.find(".value-editor"),$display=$dd.find(".display-value"),$input=$editor.find('input[type="text"], input[type="checkbox"], select');if($(this).is(".cancel-edit")){var prev_value=$input.data("before-edit-value");$input.is(":checkbox")?$input.prop("checked",prev_value):$input.val(prev_value)}else if($input.is("#wpbdp-listing-plan-select")&&$input.val()){var listing_id=$('input[name="post_ID"]').val();$.ajax(ajaxurl,{data:{action:"wpbdp-assign-plan-to-listing",nonce:wpbdp_global.nonce,listing_id:listing_id,plan_id:$input.val()},type:"POST",dataType:"json",success:function(res){if(res.success){var plan=res.data;$metabox_tab.find('input[name="listing_plan[fee_id]"]').val(plan.id),$metabox_tab.find('input[name="listing_plan[expiration_date]"]').val(plan.expiration_date),$metabox_tab.find('input[name="listing_plan[fee_images]"]').val(plan.images),updateText(plan)}}})}else $display.html($input.val());$editor.hide(),$display.show(),$dd.find(".edit-value-toggle").show()}),$payments_tab=$("#wpbdp-listing-metabox-payments"),$payments_tab.on("click",'a[name="delete-payments"]',function(e){e.preventDefault(),$.post(ajaxurl,{action:"wpbdp-clear-payment-history",listing_id:$(this).attr("data-id")},function(res){return res.success?void $(".wpbdp-payment-items",$payments_tab).fadeOut("fast",function(){$(this).html(""),$("#wpbdp-listing-payment-message",$payments_tab).html(res.data.message).fadeIn()}):void(res.data.error&&$("#wpbdp-listing-payment-message").addClass("error").html(res.data.error).fadeIn())})})});
|
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: 6.
|
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: 6.3
|
7 |
* Author: Business Directory Team
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: business-directory-plugin
|
includes/admin/admin-pages.php
CHANGED
@@ -66,7 +66,7 @@ class WPBDP_Admin_Pages {
|
|
66 |
$args['buttons'] = array(
|
67 |
'add_listing' => array(
|
68 |
'label' => __( 'Add New Listing', 'business-directory-plugin' ),
|
69 |
-
'url' => esc_url(
|
70 |
),
|
71 |
);
|
72 |
}
|
66 |
$args['buttons'] = array(
|
67 |
'add_listing' => array(
|
68 |
'label' => __( 'Add New Listing', 'business-directory-plugin' ),
|
69 |
+
'url' => esc_url( wpbdp_url( 'submit_listing' ) ),
|
70 |
),
|
71 |
);
|
72 |
}
|
includes/admin/controllers/class-admin-csv.php
CHANGED
@@ -52,7 +52,7 @@ class WPBDP__Admin__Csv extends WPBDP__Admin__Controller {
|
|
52 |
),
|
53 |
'help' => array(
|
54 |
'label' => __( 'Help', 'business-directory-plugin' ),
|
55 |
-
'url' => '#help',
|
56 |
),
|
57 |
);
|
58 |
}
|
52 |
),
|
53 |
'help' => array(
|
54 |
'label' => __( 'Help', 'business-directory-plugin' ),
|
55 |
+
'url' => admin_url( 'admin.php?page=wpbdp_admin_csv#help' ),
|
56 |
),
|
57 |
);
|
58 |
}
|
includes/admin/controllers/class-admin-listings.php
CHANGED
@@ -752,15 +752,15 @@ class WPBDP_Admin_Listings {
|
|
752 |
return $tags;
|
753 |
}
|
754 |
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
|
765 |
return $tags;
|
766 |
|
752 |
return $tags;
|
753 |
}
|
754 |
|
755 |
+
$tags = get_terms(
|
756 |
+
array(
|
757 |
+
'taxonomy' => WPBDP_TAGS_TAX,
|
758 |
+
'number' => 45,
|
759 |
+
'orderby' => 'count',
|
760 |
+
'order' => 'DESC',
|
761 |
+
'hide_empty' => false,
|
762 |
+
)
|
763 |
+
);
|
764 |
|
765 |
return $tags;
|
766 |
|
includes/admin/csv-import.php
CHANGED
@@ -24,6 +24,7 @@ class WPBDP_CSVImportAdmin {
|
|
24 |
add_action( 'wpbdp_enqueue_admin_scripts', array( &$this, 'enqueue_scripts' ) );
|
25 |
add_action( 'wp_ajax_wpbdp-csv-import', array( &$this, 'ajax_csv_import' ) );
|
26 |
add_action( 'wp_ajax_wpbdp-autocomplete-user', array( &$this, 'ajax_autocomplete_user' ) );
|
|
|
27 |
}
|
28 |
|
29 |
function enqueue_scripts() {
|
@@ -129,24 +130,25 @@ class WPBDP_CSVImportAdmin {
|
|
129 |
$letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
130 |
|
131 |
if ( $field ) {
|
132 |
-
|
|
|
133 |
/* translators: %s: Sample business name */
|
134 |
return sprintf( esc_html__( 'Business %s', 'business-directory-plugin' ), $letters[ rand( 0, strlen( $letters ) - 1 ) ] );
|
135 |
}
|
136 |
|
137 |
-
if ( $
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
return '';
|
149 |
-
|
150 |
|
151 |
if ( $field->has_validator( 'url' ) ) {
|
152 |
return get_site_url();
|
@@ -177,71 +179,94 @@ class WPBDP_CSVImportAdmin {
|
|
177 |
}
|
178 |
|
179 |
private function example_csv() {
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
'return' => array(
|
185 |
-
'label' => __( 'Go Back', 'business-directory-plugin' ),
|
186 |
-
'url' => remove_query_arg( 'action' ),
|
187 |
-
)
|
188 |
-
),
|
189 |
-
'echo' => true,
|
190 |
-
'sidebar' => false,
|
191 |
-
)
|
192 |
-
);
|
193 |
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
'post_status' => 'publish',
|
198 |
-
'numberposts' => 10,
|
199 |
-
'suppress_filters' => false,
|
200 |
-
)
|
201 |
-
);
|
202 |
|
203 |
-
|
204 |
-
|
205 |
|
206 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
echo 'username,fee_id';
|
212 |
-
echo "\n";
|
213 |
|
214 |
-
|
215 |
-
|
216 |
-
foreach ( $fields as $f ) {
|
217 |
-
$value = $f->plain_value( $post->ID );
|
218 |
|
219 |
-
|
220 |
-
echo ',';
|
221 |
-
}
|
222 |
-
echo get_the_author_meta( 'user_login', (int) $post->post_author );
|
223 |
-
$fee = wpbdp_get_listing( $post->ID )->get_fee_plan();
|
224 |
-
echo ',';
|
225 |
-
echo $fee ? $fee->fee_id : '';
|
226 |
|
227 |
-
|
228 |
-
}
|
229 |
-
} else {
|
230 |
-
for ( $i = 0; $i < 5; $i++ ) {
|
231 |
-
foreach ( $fields as $f ) {
|
232 |
-
echo sprintf( '"%s"', $this->example_data_for_field( $f, $f->get_short_name() ) );
|
233 |
-
echo ',';
|
234 |
-
}
|
235 |
|
236 |
-
|
237 |
-
|
238 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
}
|
|
|
|
|
240 |
|
241 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
|
243 |
-
|
244 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
|
246 |
private function get_imports_dir() {
|
247 |
$upload_dir = wp_upload_dir();
|
24 |
add_action( 'wpbdp_enqueue_admin_scripts', array( &$this, 'enqueue_scripts' ) );
|
25 |
add_action( 'wp_ajax_wpbdp-csv-import', array( &$this, 'ajax_csv_import' ) );
|
26 |
add_action( 'wp_ajax_wpbdp-autocomplete-user', array( &$this, 'ajax_autocomplete_user' ) );
|
27 |
+
add_action( 'wp_ajax_wpbdp-example-csv', array( &$this, 'download_example_csv' ) );
|
28 |
}
|
29 |
|
30 |
function enqueue_scripts() {
|
130 |
$letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
131 |
|
132 |
if ( $field ) {
|
133 |
+
$assoc = $field->get_association();
|
134 |
+
if ( $assoc === 'title' ) {
|
135 |
/* translators: %s: Sample business name */
|
136 |
return sprintf( esc_html__( 'Business %s', 'business-directory-plugin' ), $letters[ rand( 0, strlen( $letters ) - 1 ) ] );
|
137 |
}
|
138 |
|
139 |
+
if ( $assoc === 'category' || $assoc === 'tags' ) {
|
140 |
+
$term_args = array(
|
141 |
+
'taxonomy' => $assoc === 'category' ? WPBDP_CATEGORY_TAX : WPBDP_TAGS_TAX,
|
142 |
+
'hide_empty' => 0,
|
143 |
+
'number' => 5,
|
144 |
+
);
|
145 |
+
|
146 |
+
$terms = get_terms( $term_args );
|
147 |
+
if ( $terms ) {
|
148 |
+
return $terms[ array_rand( $terms ) ]->name;
|
149 |
+
}
|
150 |
return '';
|
151 |
+
}
|
152 |
|
153 |
if ( $field->has_validator( 'url' ) ) {
|
154 |
return get_site_url();
|
179 |
}
|
180 |
|
181 |
private function example_csv() {
|
182 |
+
echo '<p class="alignright"><a class="wpbdp-button-secondary wpbdp-example-csv">' .
|
183 |
+
esc_html__( 'Download Example', 'business-directory-plugin' ) .
|
184 |
+
'</a></p>';
|
185 |
+
echo '<h3 style="margin-top:1em">' . __( 'Example CSV Import File', 'business-directory-plugin' ) . '</h3>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
|
187 |
+
echo '<textarea class="wpbdp-csv-import-example" rows="20">';
|
188 |
+
echo $this->example_csv_content();
|
189 |
+
echo '</textarea>';
|
|
|
|
|
|
|
|
|
|
|
190 |
|
191 |
+
echo wpbdp_admin_footer();
|
192 |
+
}
|
193 |
|
194 |
+
/**
|
195 |
+
* Generate a sample CS file for download.
|
196 |
+
*
|
197 |
+
* @since 5.3
|
198 |
+
* @return void
|
199 |
+
*/
|
200 |
+
public function download_example_csv() {
|
201 |
+
check_ajax_referer( 'wpbdp_ajax', 'nonce' );
|
202 |
+
if ( ! current_user_can( 'edit_posts' ) ) {
|
203 |
+
wp_send_json_error();
|
204 |
+
}
|
205 |
|
206 |
+
$filename = 'bd-example.csv';
|
207 |
+
$filepath = get_temp_dir() . $filename;
|
208 |
+
$charset = get_option( 'blog_charset' );
|
|
|
|
|
209 |
|
210 |
+
header( 'Content-Type: text/csv; charset=' . $charset );
|
211 |
+
header( 'Content-Disposition: attachment; filename=' . $filename );
|
|
|
|
|
212 |
|
213 |
+
$f = fopen( 'php://output', 'w' );
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
|
215 |
+
fwrite( $f, $this->example_csv_content() );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
|
217 |
+
exit;
|
218 |
+
}
|
219 |
+
|
220 |
+
/**
|
221 |
+
* @since 5.3
|
222 |
+
* @return string
|
223 |
+
*/
|
224 |
+
private function example_csv_content() {
|
225 |
+
$content = '';
|
226 |
+
$fields = wpbdp_get_form_fields( array( 'field_type' => '-ratings' ) );
|
227 |
+
|
228 |
+
foreach ( $fields as $f ) {
|
229 |
+
$content .= $f->get_short_name() . ',';
|
230 |
}
|
231 |
+
$content .= 'username,fee_id';
|
232 |
+
$content .= "\n";
|
233 |
|
234 |
+
$posts = get_posts(
|
235 |
+
array(
|
236 |
+
'post_type' => WPBDP_POST_TYPE,
|
237 |
+
'post_status' => 'publish',
|
238 |
+
'numberposts' => 3,
|
239 |
+
'suppress_filters' => false,
|
240 |
+
)
|
241 |
+
);
|
242 |
|
243 |
+
if ( count( $posts ) >= 1 ) {
|
244 |
+
foreach ( $posts as $post ) {
|
245 |
+
foreach ( $fields as $f ) {
|
246 |
+
$value = $f->csv_value( $post->ID );
|
247 |
+
$content .= str_replace( array( ',', '"' ), array( ';', '""' ), $value );
|
248 |
+
$content .= ',';
|
249 |
+
}
|
250 |
+
$content .= get_the_author_meta( 'user_login', (int) $post->post_author );
|
251 |
+
$fee = wpbdp_get_listing( $post->ID )->get_fee_plan();
|
252 |
+
$content .= ',';
|
253 |
+
$content .= $fee ? $fee->fee_id : '';
|
254 |
+
|
255 |
+
$content .= "\n";
|
256 |
+
}
|
257 |
+
} else {
|
258 |
+
for ( $i = 0; $i < 5; $i++ ) {
|
259 |
+
foreach ( $fields as $f ) {
|
260 |
+
$content .= sprintf( '"%s"', $this->example_data_for_field( $f, $f->get_short_name() ) );
|
261 |
+
$content .= ',';
|
262 |
+
}
|
263 |
+
|
264 |
+
$content .= sprintf( '"%s"', $this->example_data_for_field( null, 'user' ) );
|
265 |
+
$content .= "\n";
|
266 |
+
}
|
267 |
+
}
|
268 |
+
return $content;
|
269 |
+
}
|
270 |
|
271 |
private function get_imports_dir() {
|
272 |
$upload_dir = wp_upload_dir();
|
includes/admin/helpers/csv/class-csv-import.php
CHANGED
@@ -118,7 +118,7 @@ class WPBDP_CSV_Import {
|
|
118 |
$this->current_line = $file->key();
|
119 |
$this->processed_lines++;
|
120 |
|
121 |
-
if (
|
122 |
continue;
|
123 |
}
|
124 |
|
118 |
$this->current_line = $file->key();
|
119 |
$this->processed_lines++;
|
120 |
|
121 |
+
if ( count( $line_data ) < 2 && empty( $line_data[0] ) ) {
|
122 |
continue;
|
123 |
}
|
124 |
|
includes/admin/helpers/tables/class-payments-table.php
CHANGED
@@ -126,13 +126,23 @@ class WPBDP__Admin__Payments_Table extends WP_List_Table {
|
|
126 |
return wpbdp_currency_format( $payment->amount );
|
127 |
}
|
128 |
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
public function column_listing( $payment ) {
|
138 |
$listing = $payment->listing;
|
126 |
return wpbdp_currency_format( $payment->amount );
|
127 |
}
|
128 |
|
129 |
+
public function column_status( $payment ) {
|
130 |
+
$class = 'wpbdp-tag wpbdp-listing-attr-payment-' . esc_attr( $payment->status );
|
131 |
+
$value = '<span class="' . esc_attr( $class ) . '">' .
|
132 |
+
WPBDP_Payment::get_status_label( $payment->status ) .
|
133 |
+
'</span>';
|
134 |
+
|
135 |
+
if ( $payment->is_test ) {
|
136 |
+
$value .= ' <span class="wpbdp-tag wpbdp-test-payment">Test</span>';
|
137 |
+
}
|
138 |
+
return $value;
|
139 |
+
}
|
140 |
+
|
141 |
+
public function column_details( $payment ) {
|
142 |
+
return '<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_admin_payments&wpbdp-view=details&payment-id=' . $payment->id ) ) . '">' .
|
143 |
+
esc_html__( 'View Payment', 'business-directory-plugin' ) .
|
144 |
+
'</a>';
|
145 |
+
}
|
146 |
|
147 |
public function column_listing( $payment ) {
|
148 |
$listing = $payment->listing;
|
includes/admin/tracking.php
CHANGED
@@ -145,7 +145,7 @@ class WPBDP_SiteTracking {
|
|
145 |
return $wpdb->get_results(
|
146 |
"SELECT gateway, SUM(amount) as amount, currency_code
|
147 |
FROM {$wpdb->prefix}wpbdp_payments
|
148 |
-
WHERE gateway_tx_id IS NOT NULL AND status = 'completed'
|
149 |
GROUP BY currency_code, gateway",
|
150 |
ARRAY_A
|
151 |
);
|
145 |
return $wpdb->get_results(
|
146 |
"SELECT gateway, SUM(amount) as amount, currency_code
|
147 |
FROM {$wpdb->prefix}wpbdp_payments
|
148 |
+
WHERE gateway_tx_id IS NOT NULL AND status = 'completed' AND is_test != 1
|
149 |
GROUP BY currency_code, gateway",
|
150 |
ARRAY_A
|
151 |
);
|
includes/class-wpbdp.php
CHANGED
@@ -28,7 +28,7 @@ final class WPBDP {
|
|
28 |
}
|
29 |
|
30 |
private function setup_constants() {
|
31 |
-
define( 'WPBDP_VERSION', '6.
|
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', '6.3' );
|
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-main.php
CHANGED
@@ -4,7 +4,12 @@ class WPBDP__Views__Main extends WPBDP__View {
|
|
4 |
private function warnings() {
|
5 |
$html = '';
|
6 |
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
8 |
if ( is_user_logged_in() && current_user_can( 'install_plugins' ) ) {
|
9 |
$html .= wpbdp_render_msg( _x( 'There are no categories assigned to the business directory yet. You need to assign some categories to the business directory. Only admins can see this message. Regular users are seeing a message that there are currently no listings in the directory. Listings cannot be added until you assign categories to the business directory.', 'templates', 'business-directory-plugin' ), 'error' );
|
10 |
} else {
|
@@ -13,7 +18,7 @@ class WPBDP__Views__Main extends WPBDP__View {
|
|
13 |
}
|
14 |
|
15 |
if ( current_user_can( 'administrator' ) && wpbdp_get_option( 'hide-empty-categories' ) ) {
|
16 |
-
$has_cats = (float)
|
17 |
$empty_cat = (float) wp_count_terms( WPBDP_CATEGORY_TAX, 'hide_empty=1' ) == 0;
|
18 |
|
19 |
if ( ! $has_cats || ! $empty_cat ) {
|
4 |
private function warnings() {
|
5 |
$html = '';
|
6 |
|
7 |
+
$term_args = array(
|
8 |
+
'taxonomy' => WPBDP_CATEGORY_TAX,
|
9 |
+
'hide_empty' => 0,
|
10 |
+
);
|
11 |
+
$cat_count = wp_count_terms( $term_args );
|
12 |
+
if ( (int) $cat_count === 0 ) {
|
13 |
if ( is_user_logged_in() && current_user_can( 'install_plugins' ) ) {
|
14 |
$html .= wpbdp_render_msg( _x( 'There are no categories assigned to the business directory yet. You need to assign some categories to the business directory. Only admins can see this message. Regular users are seeing a message that there are currently no listings in the directory. Listings cannot be added until you assign categories to the business directory.', 'templates', 'business-directory-plugin' ), 'error' );
|
15 |
} else {
|
18 |
}
|
19 |
|
20 |
if ( current_user_can( 'administrator' ) && wpbdp_get_option( 'hide-empty-categories' ) ) {
|
21 |
+
$has_cats = (float) $cat_count > 0;
|
22 |
$empty_cat = (float) wp_count_terms( WPBDP_CATEGORY_TAX, 'hide_empty=1' ) == 0;
|
23 |
|
24 |
if ( ! $has_cats || ! $empty_cat ) {
|
includes/fields/class-fieldtypes-checkbox.php
CHANGED
@@ -25,13 +25,14 @@ class WPBDP_FieldTypes_Checkbox extends WPBDP_Form_Field_Type {
|
|
25 |
public function render_field_inner( &$field, $value, $context, &$extra = null, $field_settings = array() ) {
|
26 |
$options = $field->data( 'options' ) ? $field->data( 'options' ) : array();
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
31 |
'hide_empty' => false,
|
32 |
'fields' => 'names',
|
33 |
-
|
34 |
-
|
35 |
|
36 |
if ( $tags && ! is_wp_error( $tags ) ) {
|
37 |
$options = array_unique( array_merge( $options, $tags ) );
|
@@ -150,12 +151,13 @@ class WPBDP_FieldTypes_Checkbox extends WPBDP_Form_Field_Type {
|
|
150 |
$options = $options ? array_map( 'trim', explode( "\n", $options ) ) : array();
|
151 |
|
152 |
if ( 'tags' === $field->get_association() ) {
|
153 |
-
|
154 |
-
|
|
|
155 |
'hide_empty' => false,
|
156 |
'fields' => 'names',
|
157 |
-
|
158 |
-
|
159 |
|
160 |
foreach ( array_diff( $options, $tags ) as $option ) {
|
161 |
wp_insert_term( $option, WPBDP_TAGS_TAX );
|
@@ -200,20 +202,22 @@ class WPBDP_FieldTypes_Checkbox extends WPBDP_Form_Field_Type {
|
|
200 |
}
|
201 |
|
202 |
public function get_field_plain_value( &$field, $post_id ) {
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
|
|
|
|
209 |
'include' => $value,
|
210 |
'hide_empty' => 0,
|
211 |
'fields' => 'names',
|
212 |
-
|
213 |
-
|
214 |
|
215 |
return join( ', ', $term_names );
|
216 |
-
} elseif ( $
|
217 |
return esc_attr( implode( ', ', $value ) );
|
218 |
}
|
219 |
|
25 |
public function render_field_inner( &$field, $value, $context, &$extra = null, $field_settings = array() ) {
|
26 |
$options = $field->data( 'options' ) ? $field->data( 'options' ) : array();
|
27 |
|
28 |
+
if ( $field->get_association() === 'tags' ) {
|
29 |
+
$tags = get_terms(
|
30 |
+
array(
|
31 |
+
'taxonomy' => WPBDP_TAGS_TAX,
|
32 |
'hide_empty' => false,
|
33 |
'fields' => 'names',
|
34 |
+
)
|
35 |
+
);
|
36 |
|
37 |
if ( $tags && ! is_wp_error( $tags ) ) {
|
38 |
$options = array_unique( array_merge( $options, $tags ) );
|
151 |
$options = $options ? array_map( 'trim', explode( "\n", $options ) ) : array();
|
152 |
|
153 |
if ( 'tags' === $field->get_association() ) {
|
154 |
+
$tags = get_terms(
|
155 |
+
array(
|
156 |
+
'taxonomy' => WPBDP_TAGS_TAX,
|
157 |
'hide_empty' => false,
|
158 |
'fields' => 'names',
|
159 |
+
)
|
160 |
+
);
|
161 |
|
162 |
foreach ( array_diff( $options, $tags ) as $option ) {
|
163 |
wp_insert_term( $option, WPBDP_TAGS_TAX );
|
202 |
}
|
203 |
|
204 |
public function get_field_plain_value( &$field, $post_id ) {
|
205 |
+
$value = $field->value( $post_id );
|
206 |
+
$assoc = $field->get_association();
|
207 |
+
|
208 |
+
if ( $assoc === 'category' || $assoc === 'tags' ) {
|
209 |
+
$tax = $assoc === 'category' ? WPBDP_CATEGORY_TAX : WPBDP_TAGS_TAX;
|
210 |
+
$term_names = get_terms(
|
211 |
+
array(
|
212 |
+
'taxonomy' => $tax,
|
213 |
'include' => $value,
|
214 |
'hide_empty' => 0,
|
215 |
'fields' => 'names',
|
216 |
+
)
|
217 |
+
);
|
218 |
|
219 |
return join( ', ', $term_names );
|
220 |
+
} elseif ( $assoc == 'meta' ) {
|
221 |
return esc_attr( implode( ', ', $value ) );
|
222 |
}
|
223 |
|
includes/fields/class-fieldtypes-radiobutton.php
CHANGED
@@ -27,9 +27,10 @@ class WPBDP_FieldTypes_RadioButton extends WPBDP_Form_Field_Type {
|
|
27 |
|
28 |
if ( $field->get_association() == 'tags' && ! $options ) {
|
29 |
$tags = get_terms(
|
30 |
-
|
31 |
-
|
32 |
-
|
|
|
33 |
)
|
34 |
);
|
35 |
$options = array_combine( $tags, $tags );
|
@@ -119,9 +120,10 @@ class WPBDP_FieldTypes_RadioButton extends WPBDP_Form_Field_Type {
|
|
119 |
|
120 |
if ( 'tags' === $field->get_association() ) {
|
121 |
$tags = get_terms(
|
122 |
-
|
123 |
-
|
124 |
-
|
|
|
125 |
)
|
126 |
);
|
127 |
|
27 |
|
28 |
if ( $field->get_association() == 'tags' && ! $options ) {
|
29 |
$tags = get_terms(
|
30 |
+
array(
|
31 |
+
'taxonomy' => WPBDP_TAGS_TAX,
|
32 |
+
'hide_empty' => false,
|
33 |
+
'fields' => 'names',
|
34 |
)
|
35 |
);
|
36 |
$options = array_combine( $tags, $tags );
|
120 |
|
121 |
if ( 'tags' === $field->get_association() ) {
|
122 |
$tags = get_terms(
|
123 |
+
array(
|
124 |
+
'taxonomy' => WPBDP_TAGS_TAX,
|
125 |
+
'hide_empty' => false,
|
126 |
+
'fields' => 'names',
|
127 |
)
|
128 |
);
|
129 |
|
includes/fields/class-fieldtypes-select.php
CHANGED
@@ -84,12 +84,13 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
|
|
84 |
$html = '';
|
85 |
|
86 |
if ( $field->get_association() === 'tags' && ! $options ) {
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
|
|
93 |
$options = array_combine( $tags, $tags );
|
94 |
}
|
95 |
|
@@ -299,12 +300,13 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
|
|
299 |
$options = $options ? array_map( 'trim', explode( "\n", $options ) ) : array();
|
300 |
|
301 |
if ( 'tags' === $field->get_association() ) {
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
|
|
308 |
|
309 |
foreach ( array_diff( $options, $tags ) as $option ) {
|
310 |
wp_insert_term( $option, WPBDP_TAGS_TAX );
|
@@ -365,16 +367,14 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
|
|
365 |
return '';
|
366 |
}
|
367 |
|
368 |
-
if ( $field->get_association()
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
$args
|
377 |
-
);
|
378 |
return join( ', ', $term_names );
|
379 |
} elseif ( $field->get_association() == 'tags' ) {
|
380 |
return join( ', ', $value );
|
84 |
$html = '';
|
85 |
|
86 |
if ( $field->get_association() === 'tags' && ! $options ) {
|
87 |
+
$tags = get_terms(
|
88 |
+
array(
|
89 |
+
'taxonomy' => WPBDP_TAGS_TAX,
|
90 |
+
'hide_empty' => false,
|
91 |
+
'fields' => 'names',
|
92 |
+
)
|
93 |
+
);
|
94 |
$options = array_combine( $tags, $tags );
|
95 |
}
|
96 |
|
300 |
$options = $options ? array_map( 'trim', explode( "\n", $options ) ) : array();
|
301 |
|
302 |
if ( 'tags' === $field->get_association() ) {
|
303 |
+
$tags = get_terms(
|
304 |
+
array(
|
305 |
+
'taxonomy' => WPBDP_TAGS_TAX,
|
306 |
+
'hide_empty' => false,
|
307 |
+
'fields' => 'names',
|
308 |
+
)
|
309 |
+
);
|
310 |
|
311 |
foreach ( array_diff( $options, $tags ) as $option ) {
|
312 |
wp_insert_term( $option, WPBDP_TAGS_TAX );
|
367 |
return '';
|
368 |
}
|
369 |
|
370 |
+
if ( $field->get_association() === 'category' ) {
|
371 |
+
$args = array(
|
372 |
+
'taxonomy' => WPBDP_CATEGORY_TAX,
|
373 |
+
'include' => $value,
|
374 |
+
'hide_empty' => 0,
|
375 |
+
'fields' => 'names',
|
376 |
+
);
|
377 |
+
$term_names = get_terms( $args );
|
|
|
|
|
378 |
return join( ', ', $term_names );
|
379 |
} elseif ( $field->get_association() == 'tags' ) {
|
380 |
return join( ', ', $value );
|
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 |
|
@@ -128,6 +128,7 @@ class WPBDP_Installer {
|
|
128 |
currency_code varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'USD',
|
129 |
amount decimal(10,2) NOT NULL DEFAULT 0.00,
|
130 |
status varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
|
|
131 |
created_at datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
132 |
processed_on timestamp NULL DEFAULT NULL,
|
133 |
processed_by varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL,
|
10 |
*/
|
11 |
class WPBDP_Installer {
|
12 |
|
13 |
+
const DB_VERSION = '18.7';
|
14 |
|
15 |
private $installed_version = null;
|
16 |
|
128 |
currency_code varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'USD',
|
129 |
amount decimal(10,2) NOT NULL DEFAULT 0.00,
|
130 |
status varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
131 |
+
is_test boolean NULL,
|
132 |
created_at datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
133 |
processed_on timestamp NULL DEFAULT NULL,
|
134 |
processed_by varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL,
|
includes/licensing.php
CHANGED
@@ -611,15 +611,20 @@ class WPBDP_Licensing {
|
|
611 |
$page = wpbdp_get_var( array( 'param' => 'page' ) );
|
612 |
|
613 |
$is_settings = in_array( $pagenow, array( 'admin.php', 'edit.php' ) ) && 'wpbdp_settings' === $page;
|
614 |
-
if ( $is_settings ) {
|
615 |
return;
|
616 |
}
|
617 |
|
618 |
$expired = false;
|
619 |
$invalid = false;
|
620 |
|
|
|
|
|
621 |
foreach ( $this->items as $item ) {
|
622 |
$status = $this->get_license_status( '', $item['id'], $item['item_type'] );
|
|
|
|
|
|
|
623 |
|
624 |
if ( 'expired' === $status ) {
|
625 |
$expired = true;
|
@@ -634,6 +639,12 @@ class WPBDP_Licensing {
|
|
634 |
$this->show_notice( 'missing_licenses' );
|
635 |
} elseif ( ! empty( $this->get_license_errors() ) ) {
|
636 |
$this->show_notice( 'license_status_error' );
|
|
|
|
|
|
|
|
|
|
|
|
|
637 |
}
|
638 |
}
|
639 |
|
@@ -654,16 +665,16 @@ class WPBDP_Licensing {
|
|
654 |
<div id="wpbdp-licensing-issues-warning" class="<?php echo esc_attr( $class ); ?>" data-dismissible-id="<?php echo esc_attr( $notice_id ); ?>" data-nonce="<?php echo esc_attr( $nonce ); ?>">
|
655 |
<p>
|
656 |
<b><?php echo esc_html( $this->license_notice( $notice_id ) ); ?></b>
|
657 |
-
<span>
|
658 |
-
<?php
|
659 |
-
if ( empty( $content ) ) {
|
660 |
-
$this->link_to_license_page();
|
661 |
-
} else {
|
662 |
-
echo wp_kses_post( $content );
|
663 |
-
}
|
664 |
-
?>
|
665 |
-
</span>
|
666 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
</div>
|
668 |
<?php
|
669 |
}
|
@@ -684,6 +695,7 @@ class WPBDP_Licensing {
|
|
684 |
'missing_licenses' => __( 'Business Directory license key is missing.', 'business-directory-plugin' ),
|
685 |
'expired_licenses' => __( 'Business Directory license key has expired', 'business-directory-plugin' ),
|
686 |
'license_status_error' => __( 'Could not verify Business Directory license.', 'business-directory-plugin' ),
|
|
|
687 |
);
|
688 |
}
|
689 |
|
611 |
$page = wpbdp_get_var( array( 'param' => 'page' ) );
|
612 |
|
613 |
$is_settings = in_array( $pagenow, array( 'admin.php', 'edit.php' ) ) && 'wpbdp_settings' === $page;
|
614 |
+
if ( $is_settings || empty( $this->items ) ) {
|
615 |
return;
|
616 |
}
|
617 |
|
618 |
$expired = false;
|
619 |
$invalid = false;
|
620 |
|
621 |
+
$has_premium = false;
|
622 |
+
|
623 |
foreach ( $this->items as $item ) {
|
624 |
$status = $this->get_license_status( '', $item['id'], $item['item_type'] );
|
625 |
+
if ( $item['id'] === 'business-directory-premium' ) {
|
626 |
+
$has_premium = true;
|
627 |
+
}
|
628 |
|
629 |
if ( 'expired' === $status ) {
|
630 |
$expired = true;
|
639 |
$this->show_notice( 'missing_licenses' );
|
640 |
} elseif ( ! empty( $this->get_license_errors() ) ) {
|
641 |
$this->show_notice( 'license_status_error' );
|
642 |
+
} elseif ( ! $has_premium ) {
|
643 |
+
// There are add-ons without Premium.
|
644 |
+
$content = '<a href="https://businessdirectoryplugin.com/account/downloads/" target="_blank" class="wpbdp-button-primary">' .
|
645 |
+
__( 'Download Premium', 'business-directory-plugin' ) .
|
646 |
+
'</a>';
|
647 |
+
$this->show_notice( 'missing_premium', $content );
|
648 |
}
|
649 |
}
|
650 |
|
665 |
<div id="wpbdp-licensing-issues-warning" class="<?php echo esc_attr( $class ); ?>" data-dismissible-id="<?php echo esc_attr( $notice_id ); ?>" data-nonce="<?php echo esc_attr( $nonce ); ?>">
|
666 |
<p>
|
667 |
<b><?php echo esc_html( $this->license_notice( $notice_id ) ); ?></b>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
668 |
</p>
|
669 |
+
<div>
|
670 |
+
<?php
|
671 |
+
if ( empty( $content ) ) {
|
672 |
+
$this->link_to_license_page();
|
673 |
+
} else {
|
674 |
+
echo wp_kses_post( $content );
|
675 |
+
}
|
676 |
+
?>
|
677 |
+
</div>
|
678 |
</div>
|
679 |
<?php
|
680 |
}
|
695 |
'missing_licenses' => __( 'Business Directory license key is missing.', 'business-directory-plugin' ),
|
696 |
'expired_licenses' => __( 'Business Directory license key has expired', 'business-directory-plugin' ),
|
697 |
'license_status_error' => __( 'Could not verify Business Directory license.', 'business-directory-plugin' ),
|
698 |
+
'missing_premium' => __( 'You have modules installed, but Business Directory Premium is missing. Install this plugin for extra features and easy license management.', 'business-directory-plugin' ),
|
699 |
);
|
700 |
}
|
701 |
|
includes/models/class-fee-plan.php
CHANGED
@@ -306,7 +306,15 @@ final class WPBDP__Fee_Plan {
|
|
306 |
|
307 |
global $wpdb;
|
308 |
|
309 |
-
$query = $wpdb->prepare(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
$total = WPBDP_Utils::check_cache(
|
311 |
array(
|
312 |
'cache_key' => 'payments_complete_plan_' . $this->id,
|
306 |
|
307 |
global $wpdb;
|
308 |
|
309 |
+
$query = $wpdb->prepare(
|
310 |
+
"SELECT SUM(amount) FROM {$wpdb->prefix}wpbdp_payments p
|
311 |
+
LEFT JOIN {$wpdb->prefix}wpbdp_listings l ON (l.listing_id = p.listing_id)
|
312 |
+
WHERE p.status = %s AND l.fee_id = %d AND l.flags != %s AND p.is_test != %d",
|
313 |
+
'completed',
|
314 |
+
$this->id,
|
315 |
+
'admin-posted',
|
316 |
+
1
|
317 |
+
);
|
318 |
$total = WPBDP_Utils::check_cache(
|
319 |
array(
|
320 |
'cache_key' => 'payments_complete_plan_' . $this->id,
|
includes/models/class-payment.php
CHANGED
@@ -78,6 +78,10 @@ class WPBDP_Payment extends WPBDP__DB__Model {
|
|
78 |
}
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
81 |
WPBDP_Utils::cache_delete_group( 'wpbdp_payments' );
|
82 |
}
|
83 |
|
@@ -370,6 +374,15 @@ class WPBDP_Payment extends WPBDP__DB__Model {
|
|
370 |
$this->save();
|
371 |
}
|
372 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
public function has_been_processed() {
|
374 |
return ! empty( $this->processed_by );
|
375 |
}
|
78 |
}
|
79 |
}
|
80 |
|
81 |
+
if ( $new ) {
|
82 |
+
$this->maybe_set_test_mode();
|
83 |
+
}
|
84 |
+
|
85 |
WPBDP_Utils::cache_delete_group( 'wpbdp_payments' );
|
86 |
}
|
87 |
|
374 |
$this->save();
|
375 |
}
|
376 |
|
377 |
+
/**
|
378 |
+
* Check if payment gateway is in test mode and set the payment as testing if so
|
379 |
+
*
|
380 |
+
* @return void
|
381 |
+
*/
|
382 |
+
public function maybe_set_test_mode() {
|
383 |
+
$this->is_test = (bool) wpbdp_get_option( 'payments-test-mode' );
|
384 |
+
}
|
385 |
+
|
386 |
public function has_been_processed() {
|
387 |
return ! empty( $this->processed_by );
|
388 |
}
|
includes/utils.php
CHANGED
@@ -454,6 +454,7 @@ class WPBDP_Utils {
|
|
454 |
private static function is_valid_file_type( $file, $mimetypes ) {
|
455 |
// If this is a multidimensional array, flatten it.
|
456 |
if ( is_array( reset( $mimetypes ) ) ) {
|
|
|
457 |
$mimetypes = call_user_func_array( 'array_merge', $mimetypes );
|
458 |
}
|
459 |
|
454 |
private static function is_valid_file_type( $file, $mimetypes ) {
|
455 |
// If this is a multidimensional array, flatten it.
|
456 |
if ( is_array( reset( $mimetypes ) ) ) {
|
457 |
+
$mimetypes = array_values( $mimetypes );
|
458 |
$mimetypes = call_user_func_array( 'array_merge', $mimetypes );
|
459 |
}
|
460 |
|
languages/business-directory-plugin-ar.po
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
# Copyright (C) 2013
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
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"
|
@@ -267,7 +267,6 @@ msgid "See Example"
|
|
267 |
msgstr ""
|
268 |
|
269 |
#: includes/admin/controllers/class-admin-csv.php:54
|
270 |
-
#: templates/admin/csv-import.tpl.php:291
|
271 |
#, fuzzy
|
272 |
msgid "Help"
|
273 |
msgstr "المساعدة"
|
@@ -275,8 +274,8 @@ msgstr "المساعدة"
|
|
275 |
#: includes/admin/controllers/class-admin-fees.php:46
|
276 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
277 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
278 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
279 |
-
#: templates/admin/payments-details.tpl.php:
|
280 |
#: templates/email/listing-payment-completed.tpl.php:21
|
281 |
#: templates/payment/payment_items.tpl.php:5
|
282 |
#, fuzzy
|
@@ -352,7 +351,7 @@ msgid "Listing Reports"
|
|
352 |
msgstr "الإعلان منتهي التاريخ"
|
353 |
|
354 |
#: includes/admin/controllers/class-admin-listings.php:268
|
355 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
356 |
#, fuzzy
|
357 |
msgid "Expires on"
|
358 |
msgstr "ستنتهي الصلاحية في"
|
@@ -364,7 +363,7 @@ msgstr "سمات الحقل"
|
|
364 |
|
365 |
#: includes/admin/controllers/class-admin-listings.php:339
|
366 |
#: includes/helpers/class-listing-display-helper.php:137
|
367 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
368 |
#, fuzzy
|
369 |
msgid "Featured"
|
370 |
msgstr "حالة مميزة (مثبت)"
|
@@ -382,7 +381,7 @@ msgid "Delete Listing"
|
|
382 |
msgstr "حذف الإعلان"
|
383 |
|
384 |
#: includes/admin/controllers/class-admin-listings.php:733
|
385 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
386 |
#, fuzzy
|
387 |
msgid "Never"
|
388 |
msgstr "أبداً"
|
@@ -390,8 +389,8 @@ msgstr "أبداً"
|
|
390 |
#: includes/admin/controllers/class-admin-listings.php:744
|
391 |
#: includes/admin/controllers/class-admin-listings.php:745
|
392 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
393 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
394 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
395 |
#, fuzzy
|
396 |
msgid "Yes"
|
397 |
msgstr "نعم"
|
@@ -400,8 +399,8 @@ msgstr "نعم"
|
|
400 |
#: includes/admin/controllers/class-admin-listings.php:745
|
401 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
402 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
403 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
404 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
405 |
#, fuzzy
|
406 |
msgid "No"
|
407 |
msgstr "لا"
|
@@ -478,27 +477,27 @@ msgid "Address 2"
|
|
478 |
msgstr "العنوان"
|
479 |
|
480 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
481 |
-
#: templates/admin/payments-details.tpl.php:
|
482 |
#: templates/checkout-billing-form.tpl.php:87
|
483 |
#, fuzzy
|
484 |
msgid "City"
|
485 |
msgstr "المدينة"
|
486 |
|
487 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
488 |
-
#: templates/admin/payments-details.tpl.php:
|
489 |
#, fuzzy
|
490 |
msgid "State"
|
491 |
msgstr "الولاية"
|
492 |
|
493 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
494 |
-
#: templates/admin/payments-details.tpl.php:
|
495 |
#: templates/checkout-billing-form.tpl.php:102
|
496 |
#, fuzzy
|
497 |
msgid "Country"
|
498 |
msgstr "الدولة:"
|
499 |
|
500 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
501 |
-
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:
|
502 |
msgid "ZIP Code"
|
503 |
msgstr "الرمز البريدي"
|
504 |
|
@@ -569,7 +568,7 @@ msgstr "مُركب مسبقا"
|
|
569 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
570 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
571 |
#: templates/admin/payments-note.tpl.php:14
|
572 |
-
#: templates/admin/themes-item.tpl.php:
|
573 |
#: templates/parts/listing-buttons.tpl.php:31
|
574 |
#, fuzzy
|
575 |
msgid "Delete"
|
@@ -586,31 +585,31 @@ msgid "Themes"
|
|
586 |
msgstr "القوالب"
|
587 |
|
588 |
#. translators: %s: Sample business name
|
589 |
-
#: includes/admin/csv-import.php:
|
590 |
#, fuzzy
|
591 |
msgid "Business %s"
|
592 |
msgstr "الأعمال %s"
|
593 |
|
594 |
-
#: includes/admin/csv-import.php:
|
|
|
|
|
|
|
|
|
595 |
#, fuzzy
|
596 |
msgid "Example CSV Import File"
|
597 |
msgstr "مثال لملف الاستيراد CSV"
|
598 |
|
599 |
-
#: includes/admin/csv-import.php:
|
600 |
-
msgid "Go Back"
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: includes/admin/csv-import.php:333 includes/helpers/class-app.php:232
|
604 |
#: includes/helpers/class-app.php:244
|
605 |
msgid "You are not allowed to do that."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: includes/admin/csv-import.php:
|
609 |
#, fuzzy
|
610 |
msgid "There was an error uploading the file:"
|
611 |
msgstr "حدث خطأ أثناء رفع ملف CSV."
|
612 |
|
613 |
-
#: includes/admin/csv-import.php:
|
614 |
#, fuzzy
|
615 |
msgid "Please upload the correct file type."
|
616 |
msgstr "المرجو رفع أو حدد ملف CSV."
|
@@ -650,7 +649,7 @@ msgstr "غير منصب"
|
|
650 |
|
651 |
#: includes/admin/helpers/class-modules-list.php:226
|
652 |
#: includes/controllers/class-smtp.php:317
|
653 |
-
#: templates/admin/themes-item.tpl.php:
|
654 |
#, fuzzy
|
655 |
msgid "Activate"
|
656 |
msgstr "قم بالتفعيل"
|
@@ -737,14 +736,14 @@ msgstr "رسوم افتراضية"
|
|
737 |
|
738 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
739 |
#: includes/fields/class-fieldtypes-social.php:135
|
740 |
-
#: templates/admin/csv-import.tpl.php:
|
741 |
#, fuzzy
|
742 |
msgid "Type"
|
743 |
msgstr "نوع"
|
744 |
|
745 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
746 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
747 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
748 |
msgid "Edit"
|
749 |
msgstr "Editer"
|
750 |
|
@@ -753,6 +752,11 @@ msgstr "Editer"
|
|
753 |
msgid "Are you sure you want to delete that field?"
|
754 |
msgstr "هل أنت متأكد من أنك تريد حذف الحقل \"%s\"؟"
|
755 |
|
|
|
|
|
|
|
|
|
|
|
756 |
#: includes/admin/page-debug.php:40
|
757 |
#, fuzzy
|
758 |
msgid "Plugin Settings"
|
@@ -768,9 +772,9 @@ msgid "Plugin Info"
|
|
768 |
msgstr ""
|
769 |
|
770 |
#: includes/admin/page-debug.php:159
|
771 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
772 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
773 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
774 |
#, fuzzy
|
775 |
msgid "OK"
|
776 |
msgstr "حسناً"
|
@@ -781,7 +785,7 @@ msgstr "الجداول المفقودة: %s"
|
|
781 |
|
782 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
783 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
784 |
-
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:
|
785 |
#: templates/listing-contactform.tpl.php:33
|
786 |
#: templates/listing-flagging-form.tpl.php:39
|
787 |
#, fuzzy
|
@@ -1415,9 +1419,9 @@ msgid ""
|
|
1415 |
msgstr ""
|
1416 |
|
1417 |
#: includes/class-assets.php:195
|
1418 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1419 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1420 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1421 |
#: templates/admin/settings-email.tpl.php:103
|
1422 |
#: templates/admin/settings-reset.tpl.php:8
|
1423 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
@@ -1871,42 +1875,42 @@ msgstr "قائمة منسدلة"
|
|
1871 |
msgid "Select List"
|
1872 |
msgstr "قائمة منسدلة"
|
1873 |
|
1874 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1875 |
#, fuzzy
|
1876 |
msgid "-- Choose One --"
|
1877 |
msgstr "-- اختار واحد --"
|
1878 |
|
1879 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1880 |
#, fuzzy
|
1881 |
msgid "-- Choose Terms --"
|
1882 |
msgstr "- اختيار البنود -"
|
1883 |
|
1884 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1885 |
msgid "— None —"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1889 |
#, fuzzy
|
1890 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1891 |
msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
|
1892 |
|
1893 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1894 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1895 |
#: templates/admin/fees-form.tpl.php:58
|
1896 |
#, fuzzy
|
1897 |
msgid "required"
|
1898 |
msgstr "مطلوب"
|
1899 |
|
1900 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1901 |
msgid "One option per line"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1905 |
#, fuzzy
|
1906 |
msgid "Allow empty selection on search?"
|
1907 |
msgstr "السماح بالتحديد الفارغ في البحث؟"
|
1908 |
|
1909 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1910 |
#, fuzzy
|
1911 |
msgid "Field list of options is required."
|
1912 |
msgstr "قائمة خيارات الحقل مطلوبة."
|
@@ -2003,7 +2007,7 @@ msgstr "عنوان الإعلان"
|
|
2003 |
msgid "Short Description"
|
2004 |
msgstr "وصف قصير"
|
2005 |
|
2006 |
-
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:
|
2007 |
#, fuzzy
|
2008 |
msgid "Description"
|
2009 |
msgstr "رسم الوصف"
|
@@ -2057,7 +2061,7 @@ msgstr "المصادقة على رقم صحيح"
|
|
2057 |
msgid "Telephone Number Validator"
|
2058 |
msgstr "المصادقة على رقم صحيح"
|
2059 |
|
2060 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
2061 |
#, fuzzy
|
2062 |
msgid "Field"
|
2063 |
msgstr "حقل"
|
@@ -2392,31 +2396,41 @@ msgid ""
|
|
2392 |
"our IP address 52.0.78.177 to your allow list."
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
2396 |
#, fuzzy
|
2397 |
msgid "Business Directory license key is missing."
|
2398 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
2399 |
|
2400 |
-
#: includes/licensing.php:
|
2401 |
#, fuzzy
|
2402 |
msgid "Business Directory license key has expired"
|
2403 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
2404 |
|
2405 |
-
#: includes/licensing.php:
|
2406 |
#, fuzzy
|
2407 |
msgid "Could not verify Business Directory license."
|
2408 |
msgstr "المساعدة في تحسين دليل الأعمال"
|
2409 |
|
2410 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2411 |
#, fuzzy
|
2412 |
msgid "Review license keys"
|
2413 |
msgstr "تجديد مفتاح الترخيص"
|
2414 |
|
2415 |
-
#: includes/licensing.php:
|
2416 |
msgid "Missing data. Please reload this page and try again."
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: includes/licensing.php:
|
2420 |
#, fuzzy
|
2421 |
msgid "Please enter a license key."
|
2422 |
msgstr "يرجى إدخال بريد إلكتروني صحيح."
|
@@ -2724,39 +2738,46 @@ msgstr ""
|
|
2724 |
msgid "Disable email notifications during import"
|
2725 |
msgstr "تعطيل تنبيهات البريد الإلكتروني أثناء عملية الاستيراد؟"
|
2726 |
|
2727 |
-
#: templates/admin/csv-import.tpl.php:
|
2728 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2729 |
msgid ""
|
2730 |
-
"
|
2731 |
-
"
|
2732 |
-
"the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see "
|
2733 |
-
"how an import file should look like."
|
2734 |
msgstr ""
|
2735 |
-
"فيما يلي أسماء رؤوس صالحة لاستخدامها في ملف CSV. يمكن أن تظهر حقول متعددة "
|
2736 |
-
"القيم (مثل تصنيف أو وسوم) عدة مرات في الملف. إضغط فوق <a href=\"%s\">\"انظر "
|
2737 |
-
"مثال لملف استيراد CSV\"</a> لمعرفة كيف يجب أن يبدو ملف الاستيراد."
|
2738 |
|
2739 |
-
#: templates/admin/csv-import.tpl.php:
|
2740 |
#, fuzzy
|
2741 |
msgid "Header name/label"
|
2742 |
msgstr "إسم رأس/التسمية"
|
2743 |
|
2744 |
-
#: templates/admin/csv-import.tpl.php:
|
2745 |
#, fuzzy
|
2746 |
msgid "Required?"
|
2747 |
msgstr "مطلوب؟"
|
2748 |
|
2749 |
-
#: templates/admin/csv-import.tpl.php:
|
2750 |
#, fuzzy
|
2751 |
msgid "Multivalued?"
|
2752 |
msgstr "متعدد القيم؟"
|
2753 |
|
2754 |
-
#: templates/admin/csv-import.tpl.php:
|
2755 |
#, fuzzy
|
2756 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2757 |
msgstr "لائحة مفصولة بفاصلة منقوطة لصور الإعلانات (من ملف مضغوط)"
|
2758 |
|
2759 |
-
#: templates/admin/csv-import.tpl.php:
|
2760 |
#, fuzzy
|
2761 |
msgid "Listing owner's username"
|
2762 |
msgstr "إسم مستخدم كاتب الإعلان"
|
@@ -2985,13 +3006,13 @@ msgstr "تاريخ التجديد"
|
|
2985 |
msgid "Plan"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2989 |
#: templates/plan-selection-plan.tpl.php:41
|
2990 |
#, fuzzy
|
2991 |
msgid "Recurring"
|
2992 |
msgstr "(متكرر)"
|
2993 |
|
2994 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2995 |
#, fuzzy
|
2996 |
msgid "Renew listing"
|
2997 |
msgstr "تجديد الإعلان"
|
@@ -3022,7 +3043,7 @@ msgid "Overview"
|
|
3022 |
msgstr ""
|
3023 |
|
3024 |
#: templates/admin/payments-details.tpl.php:52
|
3025 |
-
#: templates/admin/payments-details.tpl.php:
|
3026 |
#, fuzzy
|
3027 |
msgid "Payment ID"
|
3028 |
msgstr "الدفع"
|
@@ -3048,69 +3069,73 @@ msgstr "بوابة"
|
|
3048 |
msgid "(Not yet set)"
|
3049 |
msgstr "لم تتسجل بعد؟"
|
3050 |
|
3051 |
-
#: templates/admin/payments-details.tpl.php:
|
|
|
|
|
|
|
|
|
3052 |
#, fuzzy
|
3053 |
msgid "Delete Payment"
|
3054 |
msgstr "رفض الدفع"
|
3055 |
|
3056 |
-
#: templates/admin/payments-details.tpl.php:
|
3057 |
#, fuzzy
|
3058 |
msgid "Save Payment"
|
3059 |
msgstr "الدفع"
|
3060 |
|
3061 |
-
#: templates/admin/payments-details.tpl.php:
|
3062 |
#, fuzzy
|
3063 |
msgid "Details"
|
3064 |
msgstr "+ Détails"
|
3065 |
|
3066 |
-
#: templates/admin/payments-details.tpl.php:
|
3067 |
#, fuzzy
|
3068 |
msgid "Item Type"
|
3069 |
msgstr "نوع الحقل"
|
3070 |
|
3071 |
-
#: templates/admin/payments-details.tpl.php:
|
3072 |
#: templates/payment/payment_items.tpl.php:23
|
3073 |
#, fuzzy
|
3074 |
msgid "Total"
|
3075 |
msgstr "مجموع"
|
3076 |
|
3077 |
-
#: templates/admin/payments-details.tpl.php:
|
3078 |
#, fuzzy
|
3079 |
msgid "Customer Details"
|
3080 |
msgstr "تفاصيل الرسوم الحالية"
|
3081 |
|
3082 |
-
#: templates/admin/payments-details.tpl.php:
|
3083 |
#: templates/checkout-billing-form.tpl.php:17
|
3084 |
#, fuzzy
|
3085 |
msgid "First Name"
|
3086 |
msgstr "الإسم الشخصي:"
|
3087 |
|
3088 |
-
#: templates/admin/payments-details.tpl.php:
|
3089 |
#: templates/checkout-billing-form.tpl.php:22
|
3090 |
#, fuzzy
|
3091 |
msgid "Last Name"
|
3092 |
msgstr "الإسم العائلي:"
|
3093 |
|
3094 |
-
#: templates/admin/payments-details.tpl.php:
|
3095 |
#, fuzzy
|
3096 |
msgid "Address Line 1"
|
3097 |
msgstr "خانة العنوان 1:"
|
3098 |
|
3099 |
-
#: templates/admin/payments-details.tpl.php:
|
3100 |
#: templates/checkout-billing-form.tpl.php:81
|
3101 |
#, fuzzy
|
3102 |
msgid "Address Line 2"
|
3103 |
msgstr "خانة العنوان 2:"
|
3104 |
|
3105 |
-
#: templates/admin/payments-details.tpl.php:
|
3106 |
msgid "Notes & Log"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: templates/admin/payments-details.tpl.php:
|
3110 |
msgid "No notes."
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: templates/admin/payments-details.tpl.php:
|
3114 |
#, fuzzy
|
3115 |
msgid "Add Note"
|
3116 |
msgstr "إضافة رسم"
|
@@ -3273,23 +3298,28 @@ msgstr "أرشيف قالب دليل الأعمال (ملف مضغوط)"
|
|
3273 |
msgid "Upload"
|
3274 |
msgstr "وحدة رفع الملفات"
|
3275 |
|
3276 |
-
#: templates/admin/themes-item.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
3277 |
#, fuzzy
|
3278 |
msgid "Inactive"
|
3279 |
msgstr "مفعل"
|
3280 |
|
3281 |
-
#: templates/admin/themes-item.tpl.php:
|
3282 |
#, fuzzy
|
3283 |
msgid "Updating theme..."
|
3284 |
msgstr "تحديث القالب..."
|
3285 |
|
3286 |
-
#: templates/admin/themes-item.tpl.php:
|
3287 |
#, fuzzy
|
3288 |
msgid "Theme updated."
|
3289 |
msgstr "تم تحديث القالب"
|
3290 |
|
3291 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3292 |
-
#: templates/admin/themes-item.tpl.php:
|
3293 |
#, fuzzy
|
3294 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3295 |
msgstr "الإصدار الجديد متوفر (<b>%s</b>). <a>التحديث الآن.</a>"
|
@@ -4711,12 +4741,6 @@ msgctxt "payments admin"
|
|
4711 |
msgid "All"
|
4712 |
msgstr "الكل"
|
4713 |
|
4714 |
-
#: includes/admin/helpers/tables/class-payments-table.php:134
|
4715 |
-
#, fuzzy
|
4716 |
-
msgctxt "payments admin"
|
4717 |
-
msgid "View Payment History"
|
4718 |
-
msgstr "سجل المدفوعات"
|
4719 |
-
|
4720 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4721 |
msgctxt "form-fields admin"
|
4722 |
msgid "Form fields updated."
|
@@ -4812,30 +4836,30 @@ msgctxt "form-fields admin"
|
|
4812 |
msgid "In Listing"
|
4813 |
msgstr "في الإعلان"
|
4814 |
|
4815 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4816 |
#, fuzzy
|
4817 |
msgctxt "form-fields admin"
|
4818 |
msgid "Select All"
|
4819 |
msgstr "قائمة منسدلة"
|
4820 |
|
4821 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4822 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4823 |
msgctxt "form-fields admin"
|
4824 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4825 |
msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
|
4826 |
|
4827 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4828 |
msgctxt "form-fields admin"
|
4829 |
msgid "Include \"Select all\"?"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4833 |
msgctxt "form-fields admin"
|
4834 |
msgid "Display \"Select all\" option among options above."
|
4835 |
msgstr ""
|
4836 |
|
4837 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4838 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4839 |
msgctxt "form-fields admin"
|
4840 |
msgid "Field list of options is required."
|
4841 |
msgstr "قائمة خيارات الحقل مطلوبة."
|
@@ -6791,17 +6815,17 @@ msgctxt "admin csv-export"
|
|
6791 |
msgid "← Return to CSV Export"
|
6792 |
msgstr "← العودة إلى تصدير CSV"
|
6793 |
|
6794 |
-
#: includes/admin/csv-import.php:
|
6795 |
msgctxt "admin csv-import"
|
6796 |
msgid "Whatever"
|
6797 |
msgstr "أيا كان"
|
6798 |
|
6799 |
-
#: includes/admin/csv-import.php:
|
6800 |
msgctxt "admin csv-import"
|
6801 |
msgid "Please upload or select a CSV file."
|
6802 |
msgstr "المرجو رفع أو حدد ملف CSV."
|
6803 |
|
6804 |
-
#: includes/admin/csv-import.php:
|
6805 |
msgctxt "admin csv-import"
|
6806 |
msgid ""
|
6807 |
"An error was detected while validating the CSV file for import. Please fix "
|
@@ -6810,7 +6834,7 @@ msgstr ""
|
|
6810 |
"تم اكتشاف خطأ أثناء التحقق من صحة ملف CSV للاستيراد. المرجو إصلاح هذا قبل "
|
6811 |
"المتابعة."
|
6812 |
|
6813 |
-
#: includes/admin/csv-import.php:
|
6814 |
msgctxt "admin csv-import"
|
6815 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6816 |
msgstr "الاستيراد في \"وضع الاختبار\". لن يتم إدراج أي شيء في قاعدة البيانات."
|
@@ -7021,7 +7045,7 @@ msgctxt "admin csv-import"
|
|
7021 |
msgid "Import Listings"
|
7022 |
msgstr "استيراد الإعلانات"
|
7023 |
|
7024 |
-
#: templates/admin/csv-import.tpl.php:
|
7025 |
#, fuzzy
|
7026 |
msgctxt "admin csv-import"
|
7027 |
msgid ""
|
@@ -7031,14 +7055,14 @@ msgstr ""
|
|
7031 |
"تاريخ انتهاء صلاحية الإعلان بهذا التنسيق YYYY-MM-dd. \"استخدام\" هذا العمود "
|
7032 |
"عند إضافة أو تحديث الإعلانات من مصادر خارجية."
|
7033 |
|
7034 |
-
#: templates/admin/csv-import.tpl.php:
|
7035 |
msgctxt "admin csv-import"
|
7036 |
msgid ""
|
7037 |
"Internal Sequence ID used to allow listing updates from external sources."
|
7038 |
msgstr ""
|
7039 |
"معرف (ID) تسلسل داخلي يستخدم للسماح للإعلان بالتحديثات من مصادر خارجية."
|
7040 |
|
7041 |
-
#: templates/admin/csv-import.tpl.php:
|
7042 |
msgctxt "admin csv-import"
|
7043 |
msgid ""
|
7044 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
@@ -7047,7 +7071,7 @@ msgstr ""
|
|
7047 |
"تاريخ انتهاء صلاحية الإعلان بهذا التنسيق YYYY-MM-dd. \"استخدام\" هذا العمود "
|
7048 |
"عند إضافة أو تحديث الإعلانات من مصادر خارجية."
|
7049 |
|
7050 |
-
#: includes/admin/csv-import.php:
|
7051 |
#, fuzzy
|
7052 |
msgctxt "csv import"
|
7053 |
msgid ""
|
@@ -7089,12 +7113,12 @@ msgctxt "listing metabox"
|
|
7089 |
msgid "Plan Details"
|
7090 |
msgstr "تفاصيل الخطة"
|
7091 |
|
7092 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7093 |
msgctxt "listing metabox"
|
7094 |
msgid "Change plan"
|
7095 |
msgstr ""
|
7096 |
|
7097 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7098 |
#, fuzzy
|
7099 |
msgctxt "listing metabox"
|
7100 |
msgid "# of images"
|
@@ -7832,7 +7856,7 @@ msgctxt "templates"
|
|
7832 |
msgid "Send Message to listing owner"
|
7833 |
msgstr "إرسال رسالة إلى مالك الإعلان"
|
7834 |
|
7835 |
-
#: includes/controllers/pages/class-main.php:
|
7836 |
msgctxt "templates"
|
7837 |
msgid ""
|
7838 |
"There are no categories assigned to the business directory yet. You need to "
|
@@ -7846,12 +7870,12 @@ msgstr ""
|
|
7846 |
"العاديين يرون رسالة لا توجد إعلانات في الدليل. لا يمكن إضافة الإعلانات حتى "
|
7847 |
"تقوم بتعيين تصنيفات إلى دليل الأعمال."
|
7848 |
|
7849 |
-
#: includes/controllers/pages/class-main.php:
|
7850 |
msgctxt "templates"
|
7851 |
msgid "There are currently no listings in the directory."
|
7852 |
msgstr "لا توجد حاليا إعلانات في الدليل."
|
7853 |
|
7854 |
-
#: includes/controllers/pages/class-main.php:
|
7855 |
msgctxt "templates"
|
7856 |
msgid ""
|
7857 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
@@ -8318,7 +8342,7 @@ msgctxt "submit listing"
|
|
8318 |
msgid "The e-mail address you chose for your account is already in use."
|
8319 |
msgstr ""
|
8320 |
|
8321 |
-
#: includes/models/class-payment.php:
|
8322 |
#, fuzzy
|
8323 |
msgctxt "submit listing"
|
8324 |
msgid "Listing submitted by admin. Payment skipped."
|
@@ -8419,7 +8443,7 @@ msgid ""
|
|
8419 |
"work."
|
8420 |
msgstr "لا يمكن حذف هذا الحقل لأنه مطلوب لعمل الإضافة."
|
8421 |
|
8422 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
8423 |
#, fuzzy
|
8424 |
msgctxt "checkbox form field"
|
8425 |
msgid "Select all"
|
@@ -8700,28 +8724,28 @@ msgctxt "licensing"
|
|
8700 |
msgid "The server returned a 403 Forbidden error."
|
8701 |
msgstr ""
|
8702 |
|
8703 |
-
#: includes/licensing.php:
|
8704 |
msgctxt "licensing"
|
8705 |
msgid "Could not activate license: %s."
|
8706 |
msgstr "لا يمكن تفعيل الترخيص: %s."
|
8707 |
|
8708 |
-
#: includes/licensing.php:
|
8709 |
msgctxt "licensing"
|
8710 |
msgid "License activated"
|
8711 |
msgstr "تم تفعيل ترخيص"
|
8712 |
|
8713 |
-
#: includes/licensing.php:
|
8714 |
msgctxt "licensing"
|
8715 |
msgid "Could not deactivate license: %s."
|
8716 |
msgstr "لا يمكن إلغاء الترخيص: %s."
|
8717 |
|
8718 |
-
#: includes/licensing.php:
|
8719 |
msgctxt "licensing"
|
8720 |
msgid "License deactivated"
|
8721 |
msgstr "تم إلغاء تفعيل الترخيص"
|
8722 |
|
8723 |
#. translators: "<module-name>" version <version-number> is not...
|
8724 |
-
#: includes/licensing.php:
|
8725 |
msgctxt "deprecation"
|
8726 |
msgid ""
|
8727 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8746,18 +8770,18 @@ msgstr[3] "الصور المسموح بها"
|
|
8746 |
msgstr[4] "الصور المسموح بها"
|
8747 |
msgstr[5] "الصور المسموح بها"
|
8748 |
|
8749 |
-
#: includes/models/class-fee-plan.php:
|
8750 |
#, fuzzy
|
8751 |
msgctxt "fees-api"
|
8752 |
msgid "Plan label is required."
|
8753 |
msgstr "تسمية الحقل مطلوب."
|
8754 |
|
8755 |
-
#: includes/models/class-fee-plan.php:
|
8756 |
msgctxt "fees-api"
|
8757 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8758 |
msgstr "يجب أن تكون رسوم مدة الإعلان بعدد أقل من 10 سنوات (3650 يوما)."
|
8759 |
|
8760 |
-
#: includes/models/class-fee-plan.php:
|
8761 |
msgctxt "fees-api"
|
8762 |
msgid ""
|
8763 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
@@ -8765,69 +8789,69 @@ msgid ""
|
|
8765 |
"<a>plan</a> appropriately."
|
8766 |
msgstr ""
|
8767 |
|
8768 |
-
#: includes/models/class-fee-plan.php:
|
8769 |
msgctxt "fees-api"
|
8770 |
msgid ""
|
8771 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8772 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
8773 |
msgstr ""
|
8774 |
|
8775 |
-
#: includes/models/class-payment.php:
|
8776 |
msgctxt "payment"
|
8777 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8778 |
msgstr ""
|
8779 |
|
8780 |
-
#: includes/models/class-payment.php:
|
8781 |
#, fuzzy
|
8782 |
msgctxt "payment"
|
8783 |
msgid "Initial payment (\"%s\")"
|
8784 |
msgstr "الدفعة الأولية"
|
8785 |
|
8786 |
-
#: includes/models/class-payment.php:
|
8787 |
#, fuzzy
|
8788 |
msgctxt "payment"
|
8789 |
msgid "Renewal payment (\"%s\")"
|
8790 |
msgstr "رفض الدفع"
|
8791 |
|
8792 |
-
#: includes/models/class-payment.php:
|
8793 |
#, fuzzy
|
8794 |
msgctxt "payment"
|
8795 |
msgid "Pending"
|
8796 |
msgstr " في الانتظار"
|
8797 |
|
8798 |
-
#: includes/models/class-payment.php:
|
8799 |
msgctxt "payment"
|
8800 |
msgid "Failed"
|
8801 |
msgstr ""
|
8802 |
|
8803 |
-
#: includes/models/class-payment.php:
|
8804 |
#, fuzzy
|
8805 |
msgctxt "payment"
|
8806 |
msgid "Completed"
|
8807 |
msgstr "إكتمل"
|
8808 |
|
8809 |
-
#: includes/models/class-payment.php:
|
8810 |
#, fuzzy
|
8811 |
msgctxt "payment"
|
8812 |
msgid "Canceled"
|
8813 |
msgstr "ألغيت"
|
8814 |
|
8815 |
-
#: includes/models/class-payment.php:
|
8816 |
msgctxt "payment"
|
8817 |
msgid "On Hold"
|
8818 |
msgstr ""
|
8819 |
|
8820 |
-
#: includes/models/class-payment.php:
|
8821 |
msgctxt "payment"
|
8822 |
msgid "Refunded"
|
8823 |
msgstr ""
|
8824 |
|
8825 |
-
#: includes/models/class-payment.php:
|
8826 |
msgctxt "payment summary"
|
8827 |
msgid "%s. Admin Posted."
|
8828 |
msgstr ""
|
8829 |
|
8830 |
-
#: includes/models/class-payment.php:
|
8831 |
#, fuzzy
|
8832 |
msgctxt "payment summary"
|
8833 |
msgid "%s. Imported Listing."
|
@@ -8854,7 +8878,7 @@ msgctxt "utils"
|
|
8854 |
msgid "File type \"%s\" is not allowed"
|
8855 |
msgstr "غير مسموح بنوع الملف \"%s\""
|
8856 |
|
8857 |
-
#: includes/utils.php:
|
8858 |
msgctxt "utils"
|
8859 |
msgid ""
|
8860 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8986,18 +9010,18 @@ msgid ""
|
|
8986 |
"we'll answer it within 24 hours most days."
|
8987 |
msgstr ""
|
8988 |
|
8989 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8990 |
#, fuzzy
|
8991 |
msgctxt "admin infometabox"
|
8992 |
msgid "Renewal url (copy & paste)"
|
8993 |
msgstr "تجديد عنوان URL (نسخة & لصق)"
|
8994 |
|
8995 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8996 |
msgctxt "admin infometabox"
|
8997 |
msgid "Get renewal URL"
|
8998 |
msgstr ""
|
8999 |
|
9000 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
9001 |
#, fuzzy
|
9002 |
msgctxt "admin infometabox"
|
9003 |
msgid "Send renewal e-mail"
|
@@ -9207,6 +9231,22 @@ msgctxt "send-access-keys"
|
|
9207 |
msgid "Continue"
|
9208 |
msgstr "متابعة"
|
9209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9210 |
#, fuzzy
|
9211 |
#~ msgctxt "uninstall"
|
9212 |
#~ msgid "Please choose an option."
|
1 |
+
# Copyright (C) 2013
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
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-11-03 17:40:34+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"
|
267 |
msgstr ""
|
268 |
|
269 |
#: includes/admin/controllers/class-admin-csv.php:54
|
|
|
270 |
#, fuzzy
|
271 |
msgid "Help"
|
272 |
msgstr "المساعدة"
|
274 |
#: includes/admin/controllers/class-admin-fees.php:46
|
275 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
276 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
277 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:81
|
278 |
+
#: templates/admin/payments-details.tpl.php:124
|
279 |
#: templates/email/listing-payment-completed.tpl.php:21
|
280 |
#: templates/payment/payment_items.tpl.php:5
|
281 |
#, fuzzy
|
351 |
msgstr "الإعلان منتهي التاريخ"
|
352 |
|
353 |
#: includes/admin/controllers/class-admin-listings.php:268
|
354 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:87
|
355 |
#, fuzzy
|
356 |
msgid "Expires on"
|
357 |
msgstr "ستنتهي الصلاحية في"
|
363 |
|
364 |
#: includes/admin/controllers/class-admin-listings.php:339
|
365 |
#: includes/helpers/class-listing-display-helper.php:137
|
366 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:118
|
367 |
#, fuzzy
|
368 |
msgid "Featured"
|
369 |
msgstr "حالة مميزة (مثبت)"
|
381 |
msgstr "حذف الإعلان"
|
382 |
|
383 |
#: includes/admin/controllers/class-admin-listings.php:733
|
384 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:96
|
385 |
#, fuzzy
|
386 |
msgid "Never"
|
387 |
msgstr "أبداً"
|
389 |
#: includes/admin/controllers/class-admin-listings.php:744
|
390 |
#: includes/admin/controllers/class-admin-listings.php:745
|
391 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
392 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
393 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
394 |
#, fuzzy
|
395 |
msgid "Yes"
|
396 |
msgstr "نعم"
|
399 |
#: includes/admin/controllers/class-admin-listings.php:745
|
400 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
401 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
402 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
403 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
404 |
#, fuzzy
|
405 |
msgid "No"
|
406 |
msgstr "لا"
|
477 |
msgstr "العنوان"
|
478 |
|
479 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
480 |
+
#: templates/admin/payments-details.tpl.php:175
|
481 |
#: templates/checkout-billing-form.tpl.php:87
|
482 |
#, fuzzy
|
483 |
msgid "City"
|
484 |
msgstr "المدينة"
|
485 |
|
486 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
487 |
+
#: templates/admin/payments-details.tpl.php:171
|
488 |
#, fuzzy
|
489 |
msgid "State"
|
490 |
msgstr "الولاية"
|
491 |
|
492 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
493 |
+
#: templates/admin/payments-details.tpl.php:167
|
494 |
#: templates/checkout-billing-form.tpl.php:102
|
495 |
#, fuzzy
|
496 |
msgid "Country"
|
497 |
msgstr "الدولة:"
|
498 |
|
499 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
500 |
+
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:179
|
501 |
msgid "ZIP Code"
|
502 |
msgstr "الرمز البريدي"
|
503 |
|
568 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
569 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
570 |
#: templates/admin/payments-note.tpl.php:14
|
571 |
+
#: templates/admin/themes-item.tpl.php:51
|
572 |
#: templates/parts/listing-buttons.tpl.php:31
|
573 |
#, fuzzy
|
574 |
msgid "Delete"
|
585 |
msgstr "القوالب"
|
586 |
|
587 |
#. translators: %s: Sample business name
|
588 |
+
#: includes/admin/csv-import.php:136
|
589 |
#, fuzzy
|
590 |
msgid "Business %s"
|
591 |
msgstr "الأعمال %s"
|
592 |
|
593 |
+
#: includes/admin/csv-import.php:183
|
594 |
+
msgid "Download Example"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: includes/admin/csv-import.php:185
|
598 |
#, fuzzy
|
599 |
msgid "Example CSV Import File"
|
600 |
msgstr "مثال لملف الاستيراد CSV"
|
601 |
|
602 |
+
#: includes/admin/csv-import.php:358 includes/helpers/class-app.php:232
|
|
|
|
|
|
|
|
|
603 |
#: includes/helpers/class-app.php:244
|
604 |
msgid "You are not allowed to do that."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: includes/admin/csv-import.php:451
|
608 |
#, fuzzy
|
609 |
msgid "There was an error uploading the file:"
|
610 |
msgstr "حدث خطأ أثناء رفع ملف CSV."
|
611 |
|
612 |
+
#: includes/admin/csv-import.php:456
|
613 |
#, fuzzy
|
614 |
msgid "Please upload the correct file type."
|
615 |
msgstr "المرجو رفع أو حدد ملف CSV."
|
649 |
|
650 |
#: includes/admin/helpers/class-modules-list.php:226
|
651 |
#: includes/controllers/class-smtp.php:317
|
652 |
+
#: templates/admin/themes-item.tpl.php:59
|
653 |
#, fuzzy
|
654 |
msgid "Activate"
|
655 |
msgstr "قم بالتفعيل"
|
736 |
|
737 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
738 |
#: includes/fields/class-fieldtypes-social.php:135
|
739 |
+
#: templates/admin/csv-import.tpl.php:314
|
740 |
#, fuzzy
|
741 |
msgid "Type"
|
742 |
msgstr "نوع"
|
743 |
|
744 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
745 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:93
|
746 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:110
|
747 |
msgid "Edit"
|
748 |
msgstr "Editer"
|
749 |
|
752 |
msgid "Are you sure you want to delete that field?"
|
753 |
msgstr "هل أنت متأكد من أنك تريد حذف الحقل \"%s\"؟"
|
754 |
|
755 |
+
#: includes/admin/helpers/tables/class-payments-table.php:143
|
756 |
+
#, fuzzy
|
757 |
+
msgid "View Payment"
|
758 |
+
msgstr "الدفع"
|
759 |
+
|
760 |
#: includes/admin/page-debug.php:40
|
761 |
#, fuzzy
|
762 |
msgid "Plugin Settings"
|
772 |
msgstr ""
|
773 |
|
774 |
#: includes/admin/page-debug.php:159
|
775 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:76
|
776 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:99
|
777 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:114
|
778 |
#, fuzzy
|
779 |
msgid "OK"
|
780 |
msgstr "حسناً"
|
785 |
|
786 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
787 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
788 |
+
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:151
|
789 |
#: templates/listing-contactform.tpl.php:33
|
790 |
#: templates/listing-flagging-form.tpl.php:39
|
791 |
#, fuzzy
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#: includes/class-assets.php:195
|
1422 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:77
|
1423 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:100
|
1424 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:115
|
1425 |
#: templates/admin/settings-email.tpl.php:103
|
1426 |
#: templates/admin/settings-reset.tpl.php:8
|
1427 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
1875 |
msgid "Select List"
|
1876 |
msgstr "قائمة منسدلة"
|
1877 |
|
1878 |
+
#: includes/fields/class-fieldtypes-select.php:117
|
1879 |
#, fuzzy
|
1880 |
msgid "-- Choose One --"
|
1881 |
msgstr "-- اختار واحد --"
|
1882 |
|
1883 |
+
#: includes/fields/class-fieldtypes-select.php:144
|
1884 |
#, fuzzy
|
1885 |
msgid "-- Choose Terms --"
|
1886 |
msgstr "- اختيار البنود -"
|
1887 |
|
1888 |
+
#: includes/fields/class-fieldtypes-select.php:210
|
1889 |
msgid "— None —"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1893 |
#, fuzzy
|
1894 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1895 |
msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
|
1896 |
|
1897 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1898 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1899 |
#: templates/admin/fees-form.tpl.php:58
|
1900 |
#, fuzzy
|
1901 |
msgid "required"
|
1902 |
msgstr "مطلوب"
|
1903 |
|
1904 |
+
#: includes/fields/class-fieldtypes-select.php:269
|
1905 |
msgid "One option per line"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: includes/fields/class-fieldtypes-select.php:279
|
1909 |
#, fuzzy
|
1910 |
msgid "Allow empty selection on search?"
|
1911 |
msgstr "السماح بالتحديد الفارغ في البحث؟"
|
1912 |
|
1913 |
+
#: includes/fields/class-fieldtypes-select.php:297
|
1914 |
#, fuzzy
|
1915 |
msgid "Field list of options is required."
|
1916 |
msgstr "قائمة خيارات الحقل مطلوبة."
|
2007 |
msgid "Short Description"
|
2008 |
msgstr "وصف قصير"
|
2009 |
|
2010 |
+
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:123
|
2011 |
#, fuzzy
|
2012 |
msgid "Description"
|
2013 |
msgstr "رسم الوصف"
|
2061 |
msgid "Telephone Number Validator"
|
2062 |
msgstr "المصادقة على رقم صحيح"
|
2063 |
|
2064 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:313
|
2065 |
#, fuzzy
|
2066 |
msgid "Field"
|
2067 |
msgstr "حقل"
|
2396 |
"our IP address 52.0.78.177 to your allow list."
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: includes/licensing.php:645
|
2400 |
+
msgid "Download Premium"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: includes/licensing.php:695
|
2404 |
#, fuzzy
|
2405 |
msgid "Business Directory license key is missing."
|
2406 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
2407 |
|
2408 |
+
#: includes/licensing.php:696
|
2409 |
#, fuzzy
|
2410 |
msgid "Business Directory license key has expired"
|
2411 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
2412 |
|
2413 |
+
#: includes/licensing.php:697
|
2414 |
#, fuzzy
|
2415 |
msgid "Could not verify Business Directory license."
|
2416 |
msgstr "المساعدة في تحسين دليل الأعمال"
|
2417 |
|
2418 |
+
#: includes/licensing.php:698
|
2419 |
+
msgid ""
|
2420 |
+
"You have modules installed, but Business Directory Premium is missing. "
|
2421 |
+
"Install this plugin for extra features and easy license management."
|
2422 |
+
msgstr ""
|
2423 |
+
|
2424 |
+
#: includes/licensing.php:709
|
2425 |
#, fuzzy
|
2426 |
msgid "Review license keys"
|
2427 |
msgstr "تجديد مفتاح الترخيص"
|
2428 |
|
2429 |
+
#: includes/licensing.php:824
|
2430 |
msgid "Missing data. Please reload this page and try again."
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: includes/licensing.php:829
|
2434 |
#, fuzzy
|
2435 |
msgid "Please enter a license key."
|
2436 |
msgstr "يرجى إدخال بريد إلكتروني صحيح."
|
2738 |
msgid "Disable email notifications during import"
|
2739 |
msgstr "تعطيل تنبيهات البريد الإلكتروني أثناء عملية الاستيراد؟"
|
2740 |
|
2741 |
+
#: templates/admin/csv-import.tpl.php:291
|
2742 |
#, fuzzy
|
2743 |
+
msgid "CSV File Formatting"
|
2744 |
+
msgstr "إعدادات ملف CSV"
|
2745 |
+
|
2746 |
+
#: templates/admin/csv-import.tpl.php:296
|
2747 |
+
msgid ""
|
2748 |
+
"The following are the header names to use in your CSV file for your current "
|
2749 |
+
"setup. The headers in your CSV file must EXACTLY match (case and "
|
2750 |
+
"punctuation) the names listed here. Fields such as categories or tags can "
|
2751 |
+
"appear multiple times in the file."
|
2752 |
+
msgstr ""
|
2753 |
+
|
2754 |
+
#: templates/admin/csv-import.tpl.php:303
|
2755 |
msgid ""
|
2756 |
+
"<a href=\"%s\">See an example CSV import file</a> to see how your file "
|
2757 |
+
"should be formatted."
|
|
|
|
|
2758 |
msgstr ""
|
|
|
|
|
|
|
2759 |
|
2760 |
+
#: templates/admin/csv-import.tpl.php:312
|
2761 |
#, fuzzy
|
2762 |
msgid "Header name/label"
|
2763 |
msgstr "إسم رأس/التسمية"
|
2764 |
|
2765 |
+
#: templates/admin/csv-import.tpl.php:315
|
2766 |
#, fuzzy
|
2767 |
msgid "Required?"
|
2768 |
msgstr "مطلوب؟"
|
2769 |
|
2770 |
+
#: templates/admin/csv-import.tpl.php:316
|
2771 |
#, fuzzy
|
2772 |
msgid "Multivalued?"
|
2773 |
msgstr "متعدد القيم؟"
|
2774 |
|
2775 |
+
#: templates/admin/csv-import.tpl.php:348
|
2776 |
#, fuzzy
|
2777 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2778 |
msgstr "لائحة مفصولة بفاصلة منقوطة لصور الإعلانات (من ملف مضغوط)"
|
2779 |
|
2780 |
+
#: templates/admin/csv-import.tpl.php:355
|
2781 |
#, fuzzy
|
2782 |
msgid "Listing owner's username"
|
2783 |
msgstr "إسم مستخدم كاتب الإعلان"
|
3006 |
msgid "Plan"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:125
|
3010 |
#: templates/plan-selection-plan.tpl.php:41
|
3011 |
#, fuzzy
|
3012 |
msgid "Recurring"
|
3013 |
msgstr "(متكرر)"
|
3014 |
|
3015 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:155
|
3016 |
#, fuzzy
|
3017 |
msgid "Renew listing"
|
3018 |
msgstr "تجديد الإعلان"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
#: templates/admin/payments-details.tpl.php:52
|
3046 |
+
#: templates/admin/payments-details.tpl.php:94
|
3047 |
#, fuzzy
|
3048 |
msgid "Payment ID"
|
3049 |
msgstr "الدفع"
|
3069 |
msgid "(Not yet set)"
|
3070 |
msgstr "لم تتسجل بعد؟"
|
3071 |
|
3072 |
+
#: templates/admin/payments-details.tpl.php:89
|
3073 |
+
msgid "- Test Mode"
|
3074 |
+
msgstr ""
|
3075 |
+
|
3076 |
+
#: templates/admin/payments-details.tpl.php:105
|
3077 |
#, fuzzy
|
3078 |
msgid "Delete Payment"
|
3079 |
msgstr "رفض الدفع"
|
3080 |
|
3081 |
+
#: templates/admin/payments-details.tpl.php:107
|
3082 |
#, fuzzy
|
3083 |
msgid "Save Payment"
|
3084 |
msgstr "الدفع"
|
3085 |
|
3086 |
+
#: templates/admin/payments-details.tpl.php:118
|
3087 |
#, fuzzy
|
3088 |
msgid "Details"
|
3089 |
msgstr "+ Détails"
|
3090 |
|
3091 |
+
#: templates/admin/payments-details.tpl.php:122
|
3092 |
#, fuzzy
|
3093 |
msgid "Item Type"
|
3094 |
msgstr "نوع الحقل"
|
3095 |
|
3096 |
+
#: templates/admin/payments-details.tpl.php:135
|
3097 |
#: templates/payment/payment_items.tpl.php:23
|
3098 |
#, fuzzy
|
3099 |
msgid "Total"
|
3100 |
msgstr "مجموع"
|
3101 |
|
3102 |
+
#: templates/admin/payments-details.tpl.php:146
|
3103 |
#, fuzzy
|
3104 |
msgid "Customer Details"
|
3105 |
msgstr "تفاصيل الرسوم الحالية"
|
3106 |
|
3107 |
+
#: templates/admin/payments-details.tpl.php:156
|
3108 |
#: templates/checkout-billing-form.tpl.php:17
|
3109 |
#, fuzzy
|
3110 |
msgid "First Name"
|
3111 |
msgstr "الإسم الشخصي:"
|
3112 |
|
3113 |
+
#: templates/admin/payments-details.tpl.php:161
|
3114 |
#: templates/checkout-billing-form.tpl.php:22
|
3115 |
#, fuzzy
|
3116 |
msgid "Last Name"
|
3117 |
msgstr "الإسم العائلي:"
|
3118 |
|
3119 |
+
#: templates/admin/payments-details.tpl.php:183
|
3120 |
#, fuzzy
|
3121 |
msgid "Address Line 1"
|
3122 |
msgstr "خانة العنوان 1:"
|
3123 |
|
3124 |
+
#: templates/admin/payments-details.tpl.php:187
|
3125 |
#: templates/checkout-billing-form.tpl.php:81
|
3126 |
#, fuzzy
|
3127 |
msgid "Address Line 2"
|
3128 |
msgstr "خانة العنوان 2:"
|
3129 |
|
3130 |
+
#: templates/admin/payments-details.tpl.php:196
|
3131 |
msgid "Notes & Log"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: templates/admin/payments-details.tpl.php:201
|
3135 |
msgid "No notes."
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: templates/admin/payments-details.tpl.php:221
|
3139 |
#, fuzzy
|
3140 |
msgid "Add Note"
|
3141 |
msgstr "إضافة رسم"
|
3298 |
msgid "Upload"
|
3299 |
msgstr "وحدة رفع الملفات"
|
3300 |
|
3301 |
+
#: templates/admin/themes-item.tpl.php:6
|
3302 |
+
#, fuzzy
|
3303 |
+
msgid "Missing License"
|
3304 |
+
msgstr "عنوان الإعلان: "
|
3305 |
+
|
3306 |
+
#: templates/admin/themes-item.tpl.php:8
|
3307 |
#, fuzzy
|
3308 |
msgid "Inactive"
|
3309 |
msgstr "مفعل"
|
3310 |
|
3311 |
+
#: templates/admin/themes-item.tpl.php:18
|
3312 |
#, fuzzy
|
3313 |
msgid "Updating theme..."
|
3314 |
msgstr "تحديث القالب..."
|
3315 |
|
3316 |
+
#: templates/admin/themes-item.tpl.php:18
|
3317 |
#, fuzzy
|
3318 |
msgid "Theme updated."
|
3319 |
msgstr "تم تحديث القالب"
|
3320 |
|
3321 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3322 |
+
#: templates/admin/themes-item.tpl.php:23
|
3323 |
#, fuzzy
|
3324 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3325 |
msgstr "الإصدار الجديد متوفر (<b>%s</b>). <a>التحديث الآن.</a>"
|
4741 |
msgid "All"
|
4742 |
msgstr "الكل"
|
4743 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4744 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4745 |
msgctxt "form-fields admin"
|
4746 |
msgid "Form fields updated."
|
4836 |
msgid "In Listing"
|
4837 |
msgstr "في الإعلان"
|
4838 |
|
4839 |
+
#: includes/fields/class-fieldtypes-checkbox.php:98
|
4840 |
#, fuzzy
|
4841 |
msgctxt "form-fields admin"
|
4842 |
msgid "Select All"
|
4843 |
msgstr "قائمة منسدلة"
|
4844 |
|
4845 |
+
#: includes/fields/class-fieldtypes-checkbox.php:116
|
4846 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:91
|
4847 |
msgctxt "form-fields admin"
|
4848 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4849 |
msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
|
4850 |
|
4851 |
+
#: includes/fields/class-fieldtypes-checkbox.php:128
|
4852 |
msgctxt "form-fields admin"
|
4853 |
msgid "Include \"Select all\"?"
|
4854 |
msgstr ""
|
4855 |
|
4856 |
+
#: includes/fields/class-fieldtypes-checkbox.php:132
|
4857 |
msgctxt "form-fields admin"
|
4858 |
msgid "Display \"Select all\" option among options above."
|
4859 |
msgstr ""
|
4860 |
|
4861 |
+
#: includes/fields/class-fieldtypes-checkbox.php:148
|
4862 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:118
|
4863 |
msgctxt "form-fields admin"
|
4864 |
msgid "Field list of options is required."
|
4865 |
msgstr "قائمة خيارات الحقل مطلوبة."
|
6815 |
msgid "← Return to CSV Export"
|
6816 |
msgstr "← العودة إلى تصدير CSV"
|
6817 |
|
6818 |
+
#: includes/admin/csv-import.php:178
|
6819 |
msgctxt "admin csv-import"
|
6820 |
msgid "Whatever"
|
6821 |
msgstr "أيا كان"
|
6822 |
|
6823 |
+
#: includes/admin/csv-import.php:372
|
6824 |
msgctxt "admin csv-import"
|
6825 |
msgid "Please upload or select a CSV file."
|
6826 |
msgstr "المرجو رفع أو حدد ملف CSV."
|
6827 |
|
6828 |
+
#: includes/admin/csv-import.php:397
|
6829 |
msgctxt "admin csv-import"
|
6830 |
msgid ""
|
6831 |
"An error was detected while validating the CSV file for import. Please fix "
|
6834 |
"تم اكتشاف خطأ أثناء التحقق من صحة ملف CSV للاستيراد. المرجو إصلاح هذا قبل "
|
6835 |
"المتابعة."
|
6836 |
|
6837 |
+
#: includes/admin/csv-import.php:406
|
6838 |
msgctxt "admin csv-import"
|
6839 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6840 |
msgstr "الاستيراد في \"وضع الاختبار\". لن يتم إدراج أي شيء في قاعدة البيانات."
|
7045 |
msgid "Import Listings"
|
7046 |
msgstr "استيراد الإعلانات"
|
7047 |
|
7048 |
+
#: templates/admin/csv-import.tpl.php:341
|
7049 |
#, fuzzy
|
7050 |
msgctxt "admin csv-import"
|
7051 |
msgid ""
|
7055 |
"تاريخ انتهاء صلاحية الإعلان بهذا التنسيق YYYY-MM-dd. \"استخدام\" هذا العمود "
|
7056 |
"عند إضافة أو تحديث الإعلانات من مصادر خارجية."
|
7057 |
|
7058 |
+
#: templates/admin/csv-import.tpl.php:362
|
7059 |
msgctxt "admin csv-import"
|
7060 |
msgid ""
|
7061 |
"Internal Sequence ID used to allow listing updates from external sources."
|
7062 |
msgstr ""
|
7063 |
"معرف (ID) تسلسل داخلي يستخدم للسماح للإعلان بالتحديثات من مصادر خارجية."
|
7064 |
|
7065 |
+
#: templates/admin/csv-import.tpl.php:369
|
7066 |
msgctxt "admin csv-import"
|
7067 |
msgid ""
|
7068 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
7071 |
"تاريخ انتهاء صلاحية الإعلان بهذا التنسيق YYYY-MM-dd. \"استخدام\" هذا العمود "
|
7072 |
"عند إضافة أو تحديث الإعلانات من مصادر خارجية."
|
7073 |
|
7074 |
+
#: includes/admin/csv-import.php:328
|
7075 |
#, fuzzy
|
7076 |
msgctxt "csv import"
|
7077 |
msgid ""
|
7113 |
msgid "Plan Details"
|
7114 |
msgstr "تفاصيل الخطة"
|
7115 |
|
7116 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:51
|
7117 |
msgctxt "listing metabox"
|
7118 |
msgid "Change plan"
|
7119 |
msgstr ""
|
7120 |
|
7121 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:105
|
7122 |
#, fuzzy
|
7123 |
msgctxt "listing metabox"
|
7124 |
msgid "# of images"
|
7856 |
msgid "Send Message to listing owner"
|
7857 |
msgstr "إرسال رسالة إلى مالك الإعلان"
|
7858 |
|
7859 |
+
#: includes/controllers/pages/class-main.php:14
|
7860 |
msgctxt "templates"
|
7861 |
msgid ""
|
7862 |
"There are no categories assigned to the business directory yet. You need to "
|
7870 |
"العاديين يرون رسالة لا توجد إعلانات في الدليل. لا يمكن إضافة الإعلانات حتى "
|
7871 |
"تقوم بتعيين تصنيفات إلى دليل الأعمال."
|
7872 |
|
7873 |
+
#: includes/controllers/pages/class-main.php:16
|
7874 |
msgctxt "templates"
|
7875 |
msgid "There are currently no listings in the directory."
|
7876 |
msgstr "لا توجد حاليا إعلانات في الدليل."
|
7877 |
|
7878 |
+
#: includes/controllers/pages/class-main.php:28
|
7879 |
msgctxt "templates"
|
7880 |
msgid ""
|
7881 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
8342 |
msgid "The e-mail address you chose for your account is already in use."
|
8343 |
msgstr ""
|
8344 |
|
8345 |
+
#: includes/models/class-payment.php:286
|
8346 |
#, fuzzy
|
8347 |
msgctxt "submit listing"
|
8348 |
msgid "Listing submitted by admin. Payment skipped."
|
8443 |
"work."
|
8444 |
msgstr "لا يمكن حذف هذا الحقل لأنه مطلوب لعمل الإضافة."
|
8445 |
|
8446 |
+
#: includes/fields/class-fieldtypes-checkbox.php:52
|
8447 |
#, fuzzy
|
8448 |
msgctxt "checkbox form field"
|
8449 |
msgid "Select all"
|
8724 |
msgid "The server returned a 403 Forbidden error."
|
8725 |
msgstr ""
|
8726 |
|
8727 |
+
#: includes/licensing.php:846
|
8728 |
msgctxt "licensing"
|
8729 |
msgid "Could not activate license: %s."
|
8730 |
msgstr "لا يمكن تفعيل الترخيص: %s."
|
8731 |
|
8732 |
+
#: includes/licensing.php:851
|
8733 |
msgctxt "licensing"
|
8734 |
msgid "License activated"
|
8735 |
msgstr "تم تفعيل ترخيص"
|
8736 |
|
8737 |
+
#: includes/licensing.php:883
|
8738 |
msgctxt "licensing"
|
8739 |
msgid "Could not deactivate license: %s."
|
8740 |
msgstr "لا يمكن إلغاء الترخيص: %s."
|
8741 |
|
8742 |
+
#: includes/licensing.php:885
|
8743 |
msgctxt "licensing"
|
8744 |
msgid "License deactivated"
|
8745 |
msgstr "تم إلغاء تفعيل الترخيص"
|
8746 |
|
8747 |
#. translators: "<module-name>" version <version-number> is not...
|
8748 |
+
#: includes/licensing.php:1125
|
8749 |
msgctxt "deprecation"
|
8750 |
msgid ""
|
8751 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8770 |
msgstr[4] "الصور المسموح بها"
|
8771 |
msgstr[5] "الصور المسموح بها"
|
8772 |
|
8773 |
+
#: includes/models/class-fee-plan.php:410
|
8774 |
#, fuzzy
|
8775 |
msgctxt "fees-api"
|
8776 |
msgid "Plan label is required."
|
8777 |
msgstr "تسمية الحقل مطلوب."
|
8778 |
|
8779 |
+
#: includes/models/class-fee-plan.php:416
|
8780 |
msgctxt "fees-api"
|
8781 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8782 |
msgstr "يجب أن تكون رسوم مدة الإعلان بعدد أقل من 10 سنوات (3650 يوما)."
|
8783 |
|
8784 |
+
#: includes/models/class-fee-plan.php:421
|
8785 |
msgctxt "fees-api"
|
8786 |
msgid ""
|
8787 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
8789 |
"<a>plan</a> appropriately."
|
8790 |
msgstr ""
|
8791 |
|
8792 |
+
#: includes/models/class-fee-plan.php:424
|
8793 |
msgctxt "fees-api"
|
8794 |
msgid ""
|
8795 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8796 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
8797 |
msgstr ""
|
8798 |
|
8799 |
+
#: includes/models/class-payment.php:109
|
8800 |
msgctxt "payment"
|
8801 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8802 |
msgstr ""
|
8803 |
|
8804 |
+
#: includes/models/class-payment.php:157
|
8805 |
#, fuzzy
|
8806 |
msgctxt "payment"
|
8807 |
msgid "Initial payment (\"%s\")"
|
8808 |
msgstr "الدفعة الأولية"
|
8809 |
|
8810 |
+
#: includes/models/class-payment.php:160
|
8811 |
#, fuzzy
|
8812 |
msgctxt "payment"
|
8813 |
msgid "Renewal payment (\"%s\")"
|
8814 |
msgstr "رفض الدفع"
|
8815 |
|
8816 |
+
#: includes/models/class-payment.php:403
|
8817 |
#, fuzzy
|
8818 |
msgctxt "payment"
|
8819 |
msgid "Pending"
|
8820 |
msgstr " في الانتظار"
|
8821 |
|
8822 |
+
#: includes/models/class-payment.php:404
|
8823 |
msgctxt "payment"
|
8824 |
msgid "Failed"
|
8825 |
msgstr ""
|
8826 |
|
8827 |
+
#: includes/models/class-payment.php:405
|
8828 |
#, fuzzy
|
8829 |
msgctxt "payment"
|
8830 |
msgid "Completed"
|
8831 |
msgstr "إكتمل"
|
8832 |
|
8833 |
+
#: includes/models/class-payment.php:406
|
8834 |
#, fuzzy
|
8835 |
msgctxt "payment"
|
8836 |
msgid "Canceled"
|
8837 |
msgstr "ألغيت"
|
8838 |
|
8839 |
+
#: includes/models/class-payment.php:407
|
8840 |
msgctxt "payment"
|
8841 |
msgid "On Hold"
|
8842 |
msgstr ""
|
8843 |
|
8844 |
+
#: includes/models/class-payment.php:408
|
8845 |
msgctxt "payment"
|
8846 |
msgid "Refunded"
|
8847 |
msgstr ""
|
8848 |
|
8849 |
+
#: includes/models/class-payment.php:172
|
8850 |
msgctxt "payment summary"
|
8851 |
msgid "%s. Admin Posted."
|
8852 |
msgstr ""
|
8853 |
|
8854 |
+
#: includes/models/class-payment.php:174
|
8855 |
#, fuzzy
|
8856 |
msgctxt "payment summary"
|
8857 |
msgid "%s. Imported Listing."
|
8878 |
msgid "File type \"%s\" is not allowed"
|
8879 |
msgstr "غير مسموح بنوع الملف \"%s\""
|
8880 |
|
8881 |
+
#: includes/utils.php:668
|
8882 |
msgctxt "utils"
|
8883 |
msgid ""
|
8884 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
9010 |
"we'll answer it within 24 hours most days."
|
9011 |
msgstr ""
|
9012 |
|
9013 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
9014 |
#, fuzzy
|
9015 |
msgctxt "admin infometabox"
|
9016 |
msgid "Renewal url (copy & paste)"
|
9017 |
msgstr "تجديد عنوان URL (نسخة & لصق)"
|
9018 |
|
9019 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
9020 |
msgctxt "admin infometabox"
|
9021 |
msgid "Get renewal URL"
|
9022 |
msgstr ""
|
9023 |
|
9024 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:149
|
9025 |
#, fuzzy
|
9026 |
msgctxt "admin infometabox"
|
9027 |
msgid "Send renewal e-mail"
|
9231 |
msgid "Continue"
|
9232 |
msgstr "متابعة"
|
9233 |
|
9234 |
+
#, fuzzy
|
9235 |
+
#~ msgid ""
|
9236 |
+
#~ "The following are the valid header names to be used in the CSV file. "
|
9237 |
+
#~ "Multivalued fields (such as category or tags) can appear multiple times "
|
9238 |
+
#~ "in the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> "
|
9239 |
+
#~ "to see how an import file should look like."
|
9240 |
+
#~ msgstr ""
|
9241 |
+
#~ "فيما يلي أسماء رؤوس صالحة لاستخدامها في ملف CSV. يمكن أن تظهر حقول متعددة "
|
9242 |
+
#~ "القيم (مثل تصنيف أو وسوم) عدة مرات في الملف. إضغط فوق <a href=\"%s\">"
|
9243 |
+
#~ "\"انظر مثال لملف استيراد CSV\"</a> لمعرفة كيف يجب أن يبدو ملف الاستيراد."
|
9244 |
+
|
9245 |
+
#, fuzzy
|
9246 |
+
#~ msgctxt "payments admin"
|
9247 |
+
#~ msgid "View Payment"
|
9248 |
+
#~ msgstr "سجل المدفوعات"
|
9249 |
+
|
9250 |
#, fuzzy
|
9251 |
#~ msgctxt "uninstall"
|
9252 |
#~ msgid "Please choose an option."
|
languages/business-directory-plugin-de_DE.po
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
# Copyright (C) 2013
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
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."
|
@@ -273,7 +273,6 @@ msgid "See Example"
|
|
273 |
msgstr ""
|
274 |
|
275 |
#: includes/admin/controllers/class-admin-csv.php:54
|
276 |
-
#: templates/admin/csv-import.tpl.php:291
|
277 |
#, fuzzy
|
278 |
msgid "Help"
|
279 |
msgstr "Hilfe "
|
@@ -281,8 +280,8 @@ msgstr "Hilfe "
|
|
281 |
#: includes/admin/controllers/class-admin-fees.php:46
|
282 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
283 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
284 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
285 |
-
#: templates/admin/payments-details.tpl.php:
|
286 |
#: templates/email/listing-payment-completed.tpl.php:21
|
287 |
#: templates/payment/payment_items.tpl.php:5
|
288 |
#, fuzzy
|
@@ -357,7 +356,7 @@ msgid "Listing Reports"
|
|
357 |
msgstr "Ein Eintrag läuft aus."
|
358 |
|
359 |
#: includes/admin/controllers/class-admin-listings.php:268
|
360 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
361 |
#, fuzzy
|
362 |
msgid "Expires on"
|
363 |
msgstr "Läuft ab am"
|
@@ -369,7 +368,7 @@ msgstr "Feld Attribute"
|
|
369 |
|
370 |
#: includes/admin/controllers/class-admin-listings.php:339
|
371 |
#: includes/helpers/class-listing-display-helper.php:137
|
372 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
373 |
#, fuzzy
|
374 |
msgid "Featured"
|
375 |
msgstr "unterstützter (unbeweglicher) Status"
|
@@ -387,7 +386,7 @@ msgid "Delete Listing"
|
|
387 |
msgstr "Eintrag Löschen"
|
388 |
|
389 |
#: includes/admin/controllers/class-admin-listings.php:733
|
390 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
391 |
#, fuzzy
|
392 |
msgid "Never"
|
393 |
msgstr "niemals"
|
@@ -395,8 +394,8 @@ msgstr "niemals"
|
|
395 |
#: includes/admin/controllers/class-admin-listings.php:744
|
396 |
#: includes/admin/controllers/class-admin-listings.php:745
|
397 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
398 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
399 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
400 |
#, fuzzy
|
401 |
msgid "Yes"
|
402 |
msgstr "Ja"
|
@@ -405,8 +404,8 @@ msgstr "Ja"
|
|
405 |
#: includes/admin/controllers/class-admin-listings.php:745
|
406 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
407 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
408 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
409 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
410 |
#, fuzzy
|
411 |
msgid "No"
|
412 |
msgstr "Nein"
|
@@ -484,27 +483,27 @@ msgid "Address 2"
|
|
484 |
msgstr "E-Mail Adresse:"
|
485 |
|
486 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
487 |
-
#: templates/admin/payments-details.tpl.php:
|
488 |
#: templates/checkout-billing-form.tpl.php:87
|
489 |
#, fuzzy
|
490 |
msgid "City"
|
491 |
msgstr "Stadt"
|
492 |
|
493 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
494 |
-
#: templates/admin/payments-details.tpl.php:
|
495 |
#, fuzzy
|
496 |
msgid "State"
|
497 |
msgstr "Status"
|
498 |
|
499 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
500 |
-
#: templates/admin/payments-details.tpl.php:
|
501 |
#: templates/checkout-billing-form.tpl.php:102
|
502 |
#, fuzzy
|
503 |
msgid "Country"
|
504 |
msgstr "Land"
|
505 |
|
506 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
507 |
-
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:
|
508 |
msgid "ZIP Code"
|
509 |
msgstr "Postleitzahl"
|
510 |
|
@@ -575,7 +574,7 @@ msgstr "Bereits installiert"
|
|
575 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
576 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
577 |
#: templates/admin/payments-note.tpl.php:14
|
578 |
-
#: templates/admin/themes-item.tpl.php:
|
579 |
#: templates/parts/listing-buttons.tpl.php:31
|
580 |
#, fuzzy
|
581 |
msgid "Delete"
|
@@ -592,31 +591,31 @@ msgid "Themes"
|
|
592 |
msgstr "Preise Verwalten"
|
593 |
|
594 |
#. translators: %s: Sample business name
|
595 |
-
#: includes/admin/csv-import.php:
|
596 |
#, fuzzy
|
597 |
msgid "Business %s"
|
598 |
msgstr "Geschäft %s"
|
599 |
|
600 |
-
#: includes/admin/csv-import.php:
|
|
|
|
|
|
|
|
|
601 |
#, fuzzy
|
602 |
msgid "Example CSV Import File"
|
603 |
msgstr "Beispiel CSV Import Datei"
|
604 |
|
605 |
-
#: includes/admin/csv-import.php:
|
606 |
-
msgid "Go Back"
|
607 |
-
msgstr ""
|
608 |
-
|
609 |
-
#: includes/admin/csv-import.php:333 includes/helpers/class-app.php:232
|
610 |
#: includes/helpers/class-app.php:244
|
611 |
msgid "You are not allowed to do that."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: includes/admin/csv-import.php:
|
615 |
#, fuzzy
|
616 |
msgid "There was an error uploading the file:"
|
617 |
msgstr "Beim hochladen der CSV-Datei ist ein Fehler aufgetreten."
|
618 |
|
619 |
-
#: includes/admin/csv-import.php:
|
620 |
#, fuzzy
|
621 |
msgid "Please upload the correct file type."
|
622 |
msgstr "Die hochgeladene Datei ist nicht im CSV Format."
|
@@ -656,7 +655,7 @@ msgstr "Nicht installiert "
|
|
656 |
|
657 |
#: includes/admin/helpers/class-modules-list.php:226
|
658 |
#: includes/controllers/class-smtp.php:317
|
659 |
-
#: templates/admin/themes-item.tpl.php:
|
660 |
#, fuzzy
|
661 |
msgid "Activate"
|
662 |
msgstr "Aktiviere Lizenz"
|
@@ -745,14 +744,14 @@ msgstr "Standard Preis"
|
|
745 |
|
746 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
747 |
#: includes/fields/class-fieldtypes-social.php:135
|
748 |
-
#: templates/admin/csv-import.tpl.php:
|
749 |
#, fuzzy
|
750 |
msgid "Type"
|
751 |
msgstr "Typ"
|
752 |
|
753 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
754 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
755 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
756 |
msgid "Edit"
|
757 |
msgstr "Bearbeiten"
|
758 |
|
@@ -761,6 +760,11 @@ msgstr "Bearbeiten"
|
|
761 |
msgid "Are you sure you want to delete that field?"
|
762 |
msgstr "Bist du sicher, dass du das Feld \"%s\" löschen möchtest?"
|
763 |
|
|
|
|
|
|
|
|
|
|
|
764 |
#: includes/admin/page-debug.php:40
|
765 |
#, fuzzy
|
766 |
msgid "Plugin Settings"
|
@@ -776,9 +780,9 @@ msgid "Plugin Info"
|
|
776 |
msgstr ""
|
777 |
|
778 |
#: includes/admin/page-debug.php:159
|
779 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
780 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
781 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
782 |
#, fuzzy
|
783 |
msgid "OK"
|
784 |
msgstr "OK"
|
@@ -789,7 +793,7 @@ msgstr "Nicht vorhandene Tabellen: %s"
|
|
789 |
|
790 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
791 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
792 |
-
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:
|
793 |
#: templates/listing-contactform.tpl.php:33
|
794 |
#: templates/listing-flagging-form.tpl.php:39
|
795 |
#, fuzzy
|
@@ -1413,9 +1417,9 @@ msgid ""
|
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: includes/class-assets.php:195
|
1416 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1417 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1418 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1419 |
#: templates/admin/settings-email.tpl.php:103
|
1420 |
#: templates/admin/settings-reset.tpl.php:8
|
1421 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
@@ -1849,43 +1853,43 @@ msgstr "Liste auswählen"
|
|
1849 |
msgid "Select List"
|
1850 |
msgstr "Liste auswählen"
|
1851 |
|
1852 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1853 |
#, fuzzy
|
1854 |
msgid "-- Choose One --"
|
1855 |
msgstr "-- Auswählen --"
|
1856 |
|
1857 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1858 |
#, fuzzy
|
1859 |
msgid "-- Choose Terms --"
|
1860 |
msgstr "-- Bedingungen auswählen --"
|
1861 |
|
1862 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1863 |
msgid "— None —"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1867 |
#, fuzzy
|
1868 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1869 |
msgstr ""
|
1870 |
"Feldoptionen (für ausgewählte Listen, Radiobutton und Kontrollkästchen)"
|
1871 |
|
1872 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1873 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1874 |
#: templates/admin/fees-form.tpl.php:58
|
1875 |
#, fuzzy
|
1876 |
msgid "required"
|
1877 |
msgstr "Pflichtfeld"
|
1878 |
|
1879 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1880 |
msgid "One option per line"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1884 |
#, fuzzy
|
1885 |
msgid "Allow empty selection on search?"
|
1886 |
msgstr "Erlaube leere Auswahl bei Suche?"
|
1887 |
|
1888 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1889 |
#, fuzzy
|
1890 |
msgid "Field list of options is required."
|
1891 |
msgstr "Feldliste von Optionen wird benötigt."
|
@@ -1979,7 +1983,7 @@ msgstr "Eintrag Titel"
|
|
1979 |
msgid "Short Description"
|
1980 |
msgstr "Kurze Geschäftsbeschreibung"
|
1981 |
|
1982 |
-
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:
|
1983 |
#, fuzzy
|
1984 |
msgid "Description"
|
1985 |
msgstr "Beschreibung"
|
@@ -2032,7 +2036,7 @@ msgstr "Ganze Nummern Validierung"
|
|
2032 |
msgid "Telephone Number Validator"
|
2033 |
msgstr "Ganze Nummern Validierung"
|
2034 |
|
2035 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
2036 |
#, fuzzy
|
2037 |
msgid "Field"
|
2038 |
msgstr "Feld"
|
@@ -2370,31 +2374,41 @@ msgid ""
|
|
2370 |
"our IP address 52.0.78.177 to your allow list."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
2374 |
#, fuzzy
|
2375 |
msgid "Business Directory license key is missing."
|
2376 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
2377 |
|
2378 |
-
#: includes/licensing.php:
|
2379 |
#, fuzzy
|
2380 |
msgid "Business Directory license key has expired"
|
2381 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
2382 |
|
2383 |
-
#: includes/licensing.php:
|
2384 |
#, fuzzy
|
2385 |
msgid "Could not verify Business Directory license."
|
2386 |
msgstr "Hilf Business Directory zu unterstützen"
|
2387 |
|
2388 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2389 |
#, fuzzy
|
2390 |
msgid "Review license keys"
|
2391 |
msgstr "Erneuere Lizenzschlüssel"
|
2392 |
|
2393 |
-
#: includes/licensing.php:
|
2394 |
msgid "Missing data. Please reload this page and try again."
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: includes/licensing.php:
|
2398 |
#, fuzzy
|
2399 |
msgid "Please enter a license key."
|
2400 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
@@ -2712,40 +2726,46 @@ msgstr ""
|
|
2712 |
msgid "Disable email notifications during import"
|
2713 |
msgstr "E-Mail-Benachrichtigungen"
|
2714 |
|
2715 |
-
#: templates/admin/csv-import.tpl.php:
|
2716 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2717 |
msgid ""
|
2718 |
-
"
|
2719 |
-
"
|
2720 |
-
"the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see "
|
2721 |
-
"how an import file should look like."
|
2722 |
msgstr ""
|
2723 |
-
"Folgendes sind Spaltennamen die in der CSV-Datei verwendet werden. Mehrfach "
|
2724 |
-
"belegte Felder (so wie Kategorien oder Tags) können öfters in der Datei "
|
2725 |
-
"erscheinen. Klicken Sie <a href=\"%s\">\"CSV Beispieldatei anschauen\"</a>, "
|
2726 |
-
"um zu sehen wie eine Importdatei aufgebaut sein muss."
|
2727 |
|
2728 |
-
#: templates/admin/csv-import.tpl.php:
|
2729 |
#, fuzzy
|
2730 |
msgid "Header name/label"
|
2731 |
msgstr "Kopfname/Bezeichnung"
|
2732 |
|
2733 |
-
#: templates/admin/csv-import.tpl.php:
|
2734 |
#, fuzzy
|
2735 |
msgid "Required?"
|
2736 |
msgstr "Pflichtfeld?"
|
2737 |
|
2738 |
-
#: templates/admin/csv-import.tpl.php:
|
2739 |
#, fuzzy
|
2740 |
msgid "Multivalued?"
|
2741 |
msgstr "Mehrfachwert?"
|
2742 |
|
2743 |
-
#: templates/admin/csv-import.tpl.php:
|
2744 |
#, fuzzy
|
2745 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2746 |
msgstr "Semikolon getrennte Liste der Eintragsbilder (aus der ZIP Datei)"
|
2747 |
|
2748 |
-
#: templates/admin/csv-import.tpl.php:
|
2749 |
#, fuzzy
|
2750 |
msgid "Listing owner's username"
|
2751 |
msgstr "Benutzername des Authors"
|
@@ -2977,13 +2997,13 @@ msgstr "Erneuerungsdatum"
|
|
2977 |
msgid "Plan"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2981 |
#: templates/plan-selection-plan.tpl.php:41
|
2982 |
#, fuzzy
|
2983 |
msgid "Recurring"
|
2984 |
msgstr "(wiederkehrend)"
|
2985 |
|
2986 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2987 |
#, fuzzy
|
2988 |
msgid "Renew listing"
|
2989 |
msgstr "Eintrag erneuern"
|
@@ -3014,7 +3034,7 @@ msgid "Overview"
|
|
3014 |
msgstr ""
|
3015 |
|
3016 |
#: templates/admin/payments-details.tpl.php:52
|
3017 |
-
#: templates/admin/payments-details.tpl.php:
|
3018 |
#, fuzzy
|
3019 |
msgid "Payment ID"
|
3020 |
msgstr "Bezahlung"
|
@@ -3040,69 +3060,73 @@ msgstr "Gateway"
|
|
3040 |
msgid "(Not yet set)"
|
3041 |
msgstr "Noch nicht registriert?"
|
3042 |
|
3043 |
-
#: templates/admin/payments-details.tpl.php:
|
|
|
|
|
|
|
|
|
3044 |
#, fuzzy
|
3045 |
msgid "Delete Payment"
|
3046 |
msgstr "Bezahlung zurückweisen"
|
3047 |
|
3048 |
-
#: templates/admin/payments-details.tpl.php:
|
3049 |
#, fuzzy
|
3050 |
msgid "Save Payment"
|
3051 |
msgstr "Bezahlung"
|
3052 |
|
3053 |
-
#: templates/admin/payments-details.tpl.php:
|
3054 |
#, fuzzy
|
3055 |
msgid "Details"
|
3056 |
msgstr "+ Details"
|
3057 |
|
3058 |
-
#: templates/admin/payments-details.tpl.php:
|
3059 |
#, fuzzy
|
3060 |
msgid "Item Type"
|
3061 |
msgstr "Feldtyp"
|
3062 |
|
3063 |
-
#: templates/admin/payments-details.tpl.php:
|
3064 |
#: templates/payment/payment_items.tpl.php:23
|
3065 |
#, fuzzy
|
3066 |
msgid "Total"
|
3067 |
msgstr "Gesamt"
|
3068 |
|
3069 |
-
#: templates/admin/payments-details.tpl.php:
|
3070 |
#, fuzzy
|
3071 |
msgid "Customer Details"
|
3072 |
msgstr "Aktuelle Preisdetails"
|
3073 |
|
3074 |
-
#: templates/admin/payments-details.tpl.php:
|
3075 |
#: templates/checkout-billing-form.tpl.php:17
|
3076 |
#, fuzzy
|
3077 |
msgid "First Name"
|
3078 |
msgstr "Name:"
|
3079 |
|
3080 |
-
#: templates/admin/payments-details.tpl.php:
|
3081 |
#: templates/checkout-billing-form.tpl.php:22
|
3082 |
#, fuzzy
|
3083 |
msgid "Last Name"
|
3084 |
msgstr "Name:"
|
3085 |
|
3086 |
-
#: templates/admin/payments-details.tpl.php:
|
3087 |
#, fuzzy
|
3088 |
msgid "Address Line 1"
|
3089 |
msgstr "Adresszeile 1:"
|
3090 |
|
3091 |
-
#: templates/admin/payments-details.tpl.php:
|
3092 |
#: templates/checkout-billing-form.tpl.php:81
|
3093 |
#, fuzzy
|
3094 |
msgid "Address Line 2"
|
3095 |
msgstr "Adresszeile 2:"
|
3096 |
|
3097 |
-
#: templates/admin/payments-details.tpl.php:
|
3098 |
msgid "Notes & Log"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: templates/admin/payments-details.tpl.php:
|
3102 |
msgid "No notes."
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: templates/admin/payments-details.tpl.php:
|
3106 |
#, fuzzy
|
3107 |
msgid "Add Note"
|
3108 |
msgstr "Preis Erstellen"
|
@@ -3268,23 +3292,28 @@ msgstr "BD Theme Archiv (ZIP Datei)"
|
|
3268 |
msgid "Upload"
|
3269 |
msgstr "File Upload Module"
|
3270 |
|
3271 |
-
#: templates/admin/themes-item.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
3272 |
#, fuzzy
|
3273 |
msgid "Inactive"
|
3274 |
msgstr "Nur Aktiv"
|
3275 |
|
3276 |
-
#: templates/admin/themes-item.tpl.php:
|
3277 |
#, fuzzy
|
3278 |
msgid "Updating theme..."
|
3279 |
msgstr "Theme wird aktualisiert…"
|
3280 |
|
3281 |
-
#: templates/admin/themes-item.tpl.php:
|
3282 |
#, fuzzy
|
3283 |
msgid "Theme updated."
|
3284 |
msgstr "Preis aktualisiert."
|
3285 |
|
3286 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3287 |
-
#: templates/admin/themes-item.tpl.php:
|
3288 |
#, fuzzy
|
3289 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3290 |
msgstr "neue Version verfügbar (<b>%s</b>). <a>Jetzt aktualisieren</a>."
|
@@ -4703,12 +4732,6 @@ msgctxt "payments admin"
|
|
4703 |
msgid "All"
|
4704 |
msgstr "Alle"
|
4705 |
|
4706 |
-
#: includes/admin/helpers/tables/class-payments-table.php:134
|
4707 |
-
#, fuzzy
|
4708 |
-
msgctxt "payments admin"
|
4709 |
-
msgid "View Payment History"
|
4710 |
-
msgstr "Bezahlhistorie"
|
4711 |
-
|
4712 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4713 |
msgctxt "form-fields admin"
|
4714 |
msgid "Form fields updated."
|
@@ -4805,31 +4828,31 @@ msgctxt "form-fields admin"
|
|
4805 |
msgid "In Listing"
|
4806 |
msgstr "Im Eintrag"
|
4807 |
|
4808 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4809 |
#, fuzzy
|
4810 |
msgctxt "form-fields admin"
|
4811 |
msgid "Select All"
|
4812 |
msgstr "Liste auswählen"
|
4813 |
|
4814 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4815 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4816 |
msgctxt "form-fields admin"
|
4817 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4818 |
msgstr ""
|
4819 |
"Feldoptionen (für ausgewählte Listen, Radiobutton und Kontrollkästchen)"
|
4820 |
|
4821 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4822 |
msgctxt "form-fields admin"
|
4823 |
msgid "Include \"Select all\"?"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4827 |
msgctxt "form-fields admin"
|
4828 |
msgid "Display \"Select all\" option among options above."
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4832 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4833 |
msgctxt "form-fields admin"
|
4834 |
msgid "Field list of options is required."
|
4835 |
msgstr "Feldliste von Optionen wird benötigt."
|
@@ -6760,17 +6783,17 @@ msgctxt "admin csv-export"
|
|
6760 |
msgid "← Return to CSV Export"
|
6761 |
msgstr "← Zurück nach CSV Export"
|
6762 |
|
6763 |
-
#: includes/admin/csv-import.php:
|
6764 |
msgctxt "admin csv-import"
|
6765 |
msgid "Whatever"
|
6766 |
msgstr "BeispielText"
|
6767 |
|
6768 |
-
#: includes/admin/csv-import.php:
|
6769 |
msgctxt "admin csv-import"
|
6770 |
msgid "Please upload or select a CSV file."
|
6771 |
msgstr "Die hochgeladene Datei ist nicht im CSV Format."
|
6772 |
|
6773 |
-
#: includes/admin/csv-import.php:
|
6774 |
msgctxt "admin csv-import"
|
6775 |
msgid ""
|
6776 |
"An error was detected while validating the CSV file for import. Please fix "
|
@@ -6779,7 +6802,7 @@ msgstr ""
|
|
6779 |
"Beim überprüfen der der CSV-Datei wurde ein Fehler festgestellt. Bitte "
|
6780 |
"beheben sie diesen, bevor Sie mit dem Importieren fortfahren."
|
6781 |
|
6782 |
-
#: includes/admin/csv-import.php:
|
6783 |
msgctxt "admin csv-import"
|
6784 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6785 |
msgstr ""
|
@@ -6998,7 +7021,7 @@ msgctxt "admin csv-import"
|
|
6998 |
msgid "Import Listings"
|
6999 |
msgstr "Einträge importieren"
|
7000 |
|
7001 |
-
#: templates/admin/csv-import.tpl.php:
|
7002 |
#, fuzzy
|
7003 |
msgctxt "admin csv-import"
|
7004 |
msgid ""
|
@@ -7008,7 +7031,7 @@ msgstr ""
|
|
7008 |
"Tag des Eintragende formatiert als YYYY-MM-DD. Benutze diese Spalte, wenn "
|
7009 |
"Einträge aus externen Quellen hinzugefügt oder aktualisiert werden."
|
7010 |
|
7011 |
-
#: templates/admin/csv-import.tpl.php:
|
7012 |
msgctxt "admin csv-import"
|
7013 |
msgid ""
|
7014 |
"Internal Sequence ID used to allow listing updates from external sources."
|
@@ -7016,7 +7039,7 @@ msgstr ""
|
|
7016 |
"Interne Sequenz ID wird benutzt um Aktualisierungen von Einträgen aus "
|
7017 |
"externer Quellen durchzuführen."
|
7018 |
|
7019 |
-
#: templates/admin/csv-import.tpl.php:
|
7020 |
msgctxt "admin csv-import"
|
7021 |
msgid ""
|
7022 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
@@ -7025,7 +7048,7 @@ msgstr ""
|
|
7025 |
"Tag des Eintragende formatiert als YYYY-MM-DD. Benutze diese Spalte, wenn "
|
7026 |
"Einträge aus externen Quellen hinzugefügt oder aktualisiert werden."
|
7027 |
|
7028 |
-
#: includes/admin/csv-import.php:
|
7029 |
#, fuzzy
|
7030 |
msgctxt "csv import"
|
7031 |
msgid ""
|
@@ -7069,12 +7092,12 @@ msgctxt "listing metabox"
|
|
7069 |
msgid "Plan Details"
|
7070 |
msgstr "Details planen"
|
7071 |
|
7072 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7073 |
msgctxt "listing metabox"
|
7074 |
msgid "Change plan"
|
7075 |
msgstr ""
|
7076 |
|
7077 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7078 |
#, fuzzy
|
7079 |
msgctxt "listing metabox"
|
7080 |
msgid "# of images"
|
@@ -7810,7 +7833,7 @@ msgctxt "templates"
|
|
7810 |
msgid "Send Message to listing owner"
|
7811 |
msgstr "Nachricht an den Anbieter"
|
7812 |
|
7813 |
-
#: includes/controllers/pages/class-main.php:
|
7814 |
msgctxt "templates"
|
7815 |
msgid ""
|
7816 |
"There are no categories assigned to the business directory yet. You need to "
|
@@ -7825,12 +7848,12 @@ msgstr ""
|
|
7825 |
"nicht erstellt werden kann. Einträge können nicht erstellt werden bis ein "
|
7826 |
"Kategorie zugewiesen wurde."
|
7827 |
|
7828 |
-
#: includes/controllers/pages/class-main.php:
|
7829 |
msgctxt "templates"
|
7830 |
msgid "There are currently no listings in the directory."
|
7831 |
msgstr "Keine Einträge im Verzeichnis vorhanden. "
|
7832 |
|
7833 |
-
#: includes/controllers/pages/class-main.php:
|
7834 |
msgctxt "templates"
|
7835 |
msgid ""
|
7836 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
@@ -8302,7 +8325,7 @@ msgctxt "submit listing"
|
|
8302 |
msgid "The e-mail address you chose for your account is already in use."
|
8303 |
msgstr ""
|
8304 |
|
8305 |
-
#: includes/models/class-payment.php:
|
8306 |
#, fuzzy
|
8307 |
msgctxt "submit listing"
|
8308 |
msgid "Listing submitted by admin. Payment skipped."
|
@@ -8405,7 +8428,7 @@ msgstr ""
|
|
8405 |
"Dieses Formularfeld kann nicht gelöscht werden, weil es ein Pflichtfeld ist, "
|
8406 |
"damit das Modul richtig funktioniert."
|
8407 |
|
8408 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
8409 |
#, fuzzy
|
8410 |
msgctxt "checkbox form field"
|
8411 |
msgid "Select all"
|
@@ -8685,28 +8708,28 @@ msgctxt "licensing"
|
|
8685 |
msgid "The server returned a 403 Forbidden error."
|
8686 |
msgstr ""
|
8687 |
|
8688 |
-
#: includes/licensing.php:
|
8689 |
msgctxt "licensing"
|
8690 |
msgid "Could not activate license: %s."
|
8691 |
msgstr "Konnte Lizenz nicht aktivieren: %s"
|
8692 |
|
8693 |
-
#: includes/licensing.php:
|
8694 |
msgctxt "licensing"
|
8695 |
msgid "License activated"
|
8696 |
msgstr "Lizenz aktiviert"
|
8697 |
|
8698 |
-
#: includes/licensing.php:
|
8699 |
msgctxt "licensing"
|
8700 |
msgid "Could not deactivate license: %s."
|
8701 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
8702 |
|
8703 |
-
#: includes/licensing.php:
|
8704 |
msgctxt "licensing"
|
8705 |
msgid "License deactivated"
|
8706 |
msgstr "Lizenz deaktiviert"
|
8707 |
|
8708 |
#. translators: "<module-name>" version <version-number> is not...
|
8709 |
-
#: includes/licensing.php:
|
8710 |
msgctxt "deprecation"
|
8711 |
msgid ""
|
8712 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8725,20 +8748,20 @@ msgid_plural "%d images allowed."
|
|
8725 |
msgstr[0] "%d Bild erlaubt."
|
8726 |
msgstr[1] "%d Bilder erlaubt."
|
8727 |
|
8728 |
-
#: includes/models/class-fee-plan.php:
|
8729 |
#, fuzzy
|
8730 |
msgctxt "fees-api"
|
8731 |
msgid "Plan label is required."
|
8732 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
8733 |
|
8734 |
-
#: includes/models/class-fee-plan.php:
|
8735 |
msgctxt "fees-api"
|
8736 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8737 |
msgstr ""
|
8738 |
"Preis Eintrag Zeitraum muss eine Nummer kleiner als 10 Jahre sein (3650 "
|
8739 |
"Tage)."
|
8740 |
|
8741 |
-
#: includes/models/class-fee-plan.php:
|
8742 |
msgctxt "fees-api"
|
8743 |
msgid ""
|
8744 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
@@ -8746,69 +8769,69 @@ msgid ""
|
|
8746 |
"<a>plan</a> appropriately."
|
8747 |
msgstr ""
|
8748 |
|
8749 |
-
#: includes/models/class-fee-plan.php:
|
8750 |
msgctxt "fees-api"
|
8751 |
msgid ""
|
8752 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8753 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
8754 |
msgstr ""
|
8755 |
|
8756 |
-
#: includes/models/class-payment.php:
|
8757 |
msgctxt "payment"
|
8758 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8759 |
msgstr ""
|
8760 |
|
8761 |
-
#: includes/models/class-payment.php:
|
8762 |
#, fuzzy
|
8763 |
msgctxt "payment"
|
8764 |
msgid "Initial payment (\"%s\")"
|
8765 |
msgstr "Initialbezahlung"
|
8766 |
|
8767 |
-
#: includes/models/class-payment.php:
|
8768 |
#, fuzzy
|
8769 |
msgctxt "payment"
|
8770 |
msgid "Renewal payment (\"%s\")"
|
8771 |
msgstr "Bezahlung zurückweisen"
|
8772 |
|
8773 |
-
#: includes/models/class-payment.php:
|
8774 |
#, fuzzy
|
8775 |
msgctxt "payment"
|
8776 |
msgid "Pending"
|
8777 |
msgstr "Ausstehend"
|
8778 |
|
8779 |
-
#: includes/models/class-payment.php:
|
8780 |
msgctxt "payment"
|
8781 |
msgid "Failed"
|
8782 |
msgstr ""
|
8783 |
|
8784 |
-
#: includes/models/class-payment.php:
|
8785 |
#, fuzzy
|
8786 |
msgctxt "payment"
|
8787 |
msgid "Completed"
|
8788 |
msgstr "Abgeschlossen"
|
8789 |
|
8790 |
-
#: includes/models/class-payment.php:
|
8791 |
#, fuzzy
|
8792 |
msgctxt "payment"
|
8793 |
msgid "Canceled"
|
8794 |
msgstr "Abgebrochen"
|
8795 |
|
8796 |
-
#: includes/models/class-payment.php:
|
8797 |
msgctxt "payment"
|
8798 |
msgid "On Hold"
|
8799 |
msgstr ""
|
8800 |
|
8801 |
-
#: includes/models/class-payment.php:
|
8802 |
msgctxt "payment"
|
8803 |
msgid "Refunded"
|
8804 |
msgstr ""
|
8805 |
|
8806 |
-
#: includes/models/class-payment.php:
|
8807 |
msgctxt "payment summary"
|
8808 |
msgid "%s. Admin Posted."
|
8809 |
msgstr ""
|
8810 |
|
8811 |
-
#: includes/models/class-payment.php:
|
8812 |
#, fuzzy
|
8813 |
msgctxt "payment summary"
|
8814 |
msgid "%s. Imported Listing."
|
@@ -8835,7 +8858,7 @@ msgctxt "utils"
|
|
8835 |
msgid "File type \"%s\" is not allowed"
|
8836 |
msgstr "Dateityp \"%s\" ist nicht erlaubt"
|
8837 |
|
8838 |
-
#: includes/utils.php:
|
8839 |
msgctxt "utils"
|
8840 |
msgid ""
|
8841 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8969,18 +8992,18 @@ msgid ""
|
|
8969 |
"we'll answer it within 24 hours most days."
|
8970 |
msgstr ""
|
8971 |
|
8972 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8973 |
#, fuzzy
|
8974 |
msgctxt "admin infometabox"
|
8975 |
msgid "Renewal url (copy & paste)"
|
8976 |
msgstr "URL Erneuern (kopieren & einfügen)"
|
8977 |
|
8978 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8979 |
msgctxt "admin infometabox"
|
8980 |
msgid "Get renewal URL"
|
8981 |
msgstr ""
|
8982 |
|
8983 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8984 |
#, fuzzy
|
8985 |
msgctxt "admin infometabox"
|
8986 |
msgid "Send renewal e-mail"
|
@@ -9193,6 +9216,23 @@ msgctxt "send-access-keys"
|
|
9193 |
msgid "Continue"
|
9194 |
msgstr "Weiter"
|
9195 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9196 |
#, fuzzy
|
9197 |
#~ msgctxt "uninstall"
|
9198 |
#~ msgid "Please choose an option."
|
1 |
+
# Copyright (C) 2013
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
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-11-03 17:40:34+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."
|
273 |
msgstr ""
|
274 |
|
275 |
#: includes/admin/controllers/class-admin-csv.php:54
|
|
|
276 |
#, fuzzy
|
277 |
msgid "Help"
|
278 |
msgstr "Hilfe "
|
280 |
#: includes/admin/controllers/class-admin-fees.php:46
|
281 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
282 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
283 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:81
|
284 |
+
#: templates/admin/payments-details.tpl.php:124
|
285 |
#: templates/email/listing-payment-completed.tpl.php:21
|
286 |
#: templates/payment/payment_items.tpl.php:5
|
287 |
#, fuzzy
|
356 |
msgstr "Ein Eintrag läuft aus."
|
357 |
|
358 |
#: includes/admin/controllers/class-admin-listings.php:268
|
359 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:87
|
360 |
#, fuzzy
|
361 |
msgid "Expires on"
|
362 |
msgstr "Läuft ab am"
|
368 |
|
369 |
#: includes/admin/controllers/class-admin-listings.php:339
|
370 |
#: includes/helpers/class-listing-display-helper.php:137
|
371 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:118
|
372 |
#, fuzzy
|
373 |
msgid "Featured"
|
374 |
msgstr "unterstützter (unbeweglicher) Status"
|
386 |
msgstr "Eintrag Löschen"
|
387 |
|
388 |
#: includes/admin/controllers/class-admin-listings.php:733
|
389 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:96
|
390 |
#, fuzzy
|
391 |
msgid "Never"
|
392 |
msgstr "niemals"
|
394 |
#: includes/admin/controllers/class-admin-listings.php:744
|
395 |
#: includes/admin/controllers/class-admin-listings.php:745
|
396 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
397 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
398 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
399 |
#, fuzzy
|
400 |
msgid "Yes"
|
401 |
msgstr "Ja"
|
404 |
#: includes/admin/controllers/class-admin-listings.php:745
|
405 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
406 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
407 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
408 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
409 |
#, fuzzy
|
410 |
msgid "No"
|
411 |
msgstr "Nein"
|
483 |
msgstr "E-Mail Adresse:"
|
484 |
|
485 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
486 |
+
#: templates/admin/payments-details.tpl.php:175
|
487 |
#: templates/checkout-billing-form.tpl.php:87
|
488 |
#, fuzzy
|
489 |
msgid "City"
|
490 |
msgstr "Stadt"
|
491 |
|
492 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
493 |
+
#: templates/admin/payments-details.tpl.php:171
|
494 |
#, fuzzy
|
495 |
msgid "State"
|
496 |
msgstr "Status"
|
497 |
|
498 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
499 |
+
#: templates/admin/payments-details.tpl.php:167
|
500 |
#: templates/checkout-billing-form.tpl.php:102
|
501 |
#, fuzzy
|
502 |
msgid "Country"
|
503 |
msgstr "Land"
|
504 |
|
505 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
506 |
+
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:179
|
507 |
msgid "ZIP Code"
|
508 |
msgstr "Postleitzahl"
|
509 |
|
574 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
575 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
576 |
#: templates/admin/payments-note.tpl.php:14
|
577 |
+
#: templates/admin/themes-item.tpl.php:51
|
578 |
#: templates/parts/listing-buttons.tpl.php:31
|
579 |
#, fuzzy
|
580 |
msgid "Delete"
|
591 |
msgstr "Preise Verwalten"
|
592 |
|
593 |
#. translators: %s: Sample business name
|
594 |
+
#: includes/admin/csv-import.php:136
|
595 |
#, fuzzy
|
596 |
msgid "Business %s"
|
597 |
msgstr "Geschäft %s"
|
598 |
|
599 |
+
#: includes/admin/csv-import.php:183
|
600 |
+
msgid "Download Example"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: includes/admin/csv-import.php:185
|
604 |
#, fuzzy
|
605 |
msgid "Example CSV Import File"
|
606 |
msgstr "Beispiel CSV Import Datei"
|
607 |
|
608 |
+
#: includes/admin/csv-import.php:358 includes/helpers/class-app.php:232
|
|
|
|
|
|
|
|
|
609 |
#: includes/helpers/class-app.php:244
|
610 |
msgid "You are not allowed to do that."
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/admin/csv-import.php:451
|
614 |
#, fuzzy
|
615 |
msgid "There was an error uploading the file:"
|
616 |
msgstr "Beim hochladen der CSV-Datei ist ein Fehler aufgetreten."
|
617 |
|
618 |
+
#: includes/admin/csv-import.php:456
|
619 |
#, fuzzy
|
620 |
msgid "Please upload the correct file type."
|
621 |
msgstr "Die hochgeladene Datei ist nicht im CSV Format."
|
655 |
|
656 |
#: includes/admin/helpers/class-modules-list.php:226
|
657 |
#: includes/controllers/class-smtp.php:317
|
658 |
+
#: templates/admin/themes-item.tpl.php:59
|
659 |
#, fuzzy
|
660 |
msgid "Activate"
|
661 |
msgstr "Aktiviere Lizenz"
|
744 |
|
745 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
746 |
#: includes/fields/class-fieldtypes-social.php:135
|
747 |
+
#: templates/admin/csv-import.tpl.php:314
|
748 |
#, fuzzy
|
749 |
msgid "Type"
|
750 |
msgstr "Typ"
|
751 |
|
752 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
753 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:93
|
754 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:110
|
755 |
msgid "Edit"
|
756 |
msgstr "Bearbeiten"
|
757 |
|
760 |
msgid "Are you sure you want to delete that field?"
|
761 |
msgstr "Bist du sicher, dass du das Feld \"%s\" löschen möchtest?"
|
762 |
|
763 |
+
#: includes/admin/helpers/tables/class-payments-table.php:143
|
764 |
+
#, fuzzy
|
765 |
+
msgid "View Payment"
|
766 |
+
msgstr "Bezahlung"
|
767 |
+
|
768 |
#: includes/admin/page-debug.php:40
|
769 |
#, fuzzy
|
770 |
msgid "Plugin Settings"
|
780 |
msgstr ""
|
781 |
|
782 |
#: includes/admin/page-debug.php:159
|
783 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:76
|
784 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:99
|
785 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:114
|
786 |
#, fuzzy
|
787 |
msgid "OK"
|
788 |
msgstr "OK"
|
793 |
|
794 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
795 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
796 |
+
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:151
|
797 |
#: templates/listing-contactform.tpl.php:33
|
798 |
#: templates/listing-flagging-form.tpl.php:39
|
799 |
#, fuzzy
|
1417 |
msgstr ""
|
1418 |
|
1419 |
#: includes/class-assets.php:195
|
1420 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:77
|
1421 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:100
|
1422 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:115
|
1423 |
#: templates/admin/settings-email.tpl.php:103
|
1424 |
#: templates/admin/settings-reset.tpl.php:8
|
1425 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
1853 |
msgid "Select List"
|
1854 |
msgstr "Liste auswählen"
|
1855 |
|
1856 |
+
#: includes/fields/class-fieldtypes-select.php:117
|
1857 |
#, fuzzy
|
1858 |
msgid "-- Choose One --"
|
1859 |
msgstr "-- Auswählen --"
|
1860 |
|
1861 |
+
#: includes/fields/class-fieldtypes-select.php:144
|
1862 |
#, fuzzy
|
1863 |
msgid "-- Choose Terms --"
|
1864 |
msgstr "-- Bedingungen auswählen --"
|
1865 |
|
1866 |
+
#: includes/fields/class-fieldtypes-select.php:210
|
1867 |
msgid "— None —"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1871 |
#, fuzzy
|
1872 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1873 |
msgstr ""
|
1874 |
"Feldoptionen (für ausgewählte Listen, Radiobutton und Kontrollkästchen)"
|
1875 |
|
1876 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1877 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1878 |
#: templates/admin/fees-form.tpl.php:58
|
1879 |
#, fuzzy
|
1880 |
msgid "required"
|
1881 |
msgstr "Pflichtfeld"
|
1882 |
|
1883 |
+
#: includes/fields/class-fieldtypes-select.php:269
|
1884 |
msgid "One option per line"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: includes/fields/class-fieldtypes-select.php:279
|
1888 |
#, fuzzy
|
1889 |
msgid "Allow empty selection on search?"
|
1890 |
msgstr "Erlaube leere Auswahl bei Suche?"
|
1891 |
|
1892 |
+
#: includes/fields/class-fieldtypes-select.php:297
|
1893 |
#, fuzzy
|
1894 |
msgid "Field list of options is required."
|
1895 |
msgstr "Feldliste von Optionen wird benötigt."
|
1983 |
msgid "Short Description"
|
1984 |
msgstr "Kurze Geschäftsbeschreibung"
|
1985 |
|
1986 |
+
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:123
|
1987 |
#, fuzzy
|
1988 |
msgid "Description"
|
1989 |
msgstr "Beschreibung"
|
2036 |
msgid "Telephone Number Validator"
|
2037 |
msgstr "Ganze Nummern Validierung"
|
2038 |
|
2039 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:313
|
2040 |
#, fuzzy
|
2041 |
msgid "Field"
|
2042 |
msgstr "Feld"
|
2374 |
"our IP address 52.0.78.177 to your allow list."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: includes/licensing.php:645
|
2378 |
+
msgid "Download Premium"
|
2379 |
+
msgstr ""
|
2380 |
+
|
2381 |
+
#: includes/licensing.php:695
|
2382 |
#, fuzzy
|
2383 |
msgid "Business Directory license key is missing."
|
2384 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
2385 |
|
2386 |
+
#: includes/licensing.php:696
|
2387 |
#, fuzzy
|
2388 |
msgid "Business Directory license key has expired"
|
2389 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
2390 |
|
2391 |
+
#: includes/licensing.php:697
|
2392 |
#, fuzzy
|
2393 |
msgid "Could not verify Business Directory license."
|
2394 |
msgstr "Hilf Business Directory zu unterstützen"
|
2395 |
|
2396 |
+
#: includes/licensing.php:698
|
2397 |
+
msgid ""
|
2398 |
+
"You have modules installed, but Business Directory Premium is missing. "
|
2399 |
+
"Install this plugin for extra features and easy license management."
|
2400 |
+
msgstr ""
|
2401 |
+
|
2402 |
+
#: includes/licensing.php:709
|
2403 |
#, fuzzy
|
2404 |
msgid "Review license keys"
|
2405 |
msgstr "Erneuere Lizenzschlüssel"
|
2406 |
|
2407 |
+
#: includes/licensing.php:824
|
2408 |
msgid "Missing data. Please reload this page and try again."
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: includes/licensing.php:829
|
2412 |
#, fuzzy
|
2413 |
msgid "Please enter a license key."
|
2414 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
2726 |
msgid "Disable email notifications during import"
|
2727 |
msgstr "E-Mail-Benachrichtigungen"
|
2728 |
|
2729 |
+
#: templates/admin/csv-import.tpl.php:291
|
2730 |
#, fuzzy
|
2731 |
+
msgid "CSV File Formatting"
|
2732 |
+
msgstr "CSV-Datei Einstellungen"
|
2733 |
+
|
2734 |
+
#: templates/admin/csv-import.tpl.php:296
|
2735 |
+
msgid ""
|
2736 |
+
"The following are the header names to use in your CSV file for your current "
|
2737 |
+
"setup. The headers in your CSV file must EXACTLY match (case and "
|
2738 |
+
"punctuation) the names listed here. Fields such as categories or tags can "
|
2739 |
+
"appear multiple times in the file."
|
2740 |
+
msgstr ""
|
2741 |
+
|
2742 |
+
#: templates/admin/csv-import.tpl.php:303
|
2743 |
msgid ""
|
2744 |
+
"<a href=\"%s\">See an example CSV import file</a> to see how your file "
|
2745 |
+
"should be formatted."
|
|
|
|
|
2746 |
msgstr ""
|
|
|
|
|
|
|
|
|
2747 |
|
2748 |
+
#: templates/admin/csv-import.tpl.php:312
|
2749 |
#, fuzzy
|
2750 |
msgid "Header name/label"
|
2751 |
msgstr "Kopfname/Bezeichnung"
|
2752 |
|
2753 |
+
#: templates/admin/csv-import.tpl.php:315
|
2754 |
#, fuzzy
|
2755 |
msgid "Required?"
|
2756 |
msgstr "Pflichtfeld?"
|
2757 |
|
2758 |
+
#: templates/admin/csv-import.tpl.php:316
|
2759 |
#, fuzzy
|
2760 |
msgid "Multivalued?"
|
2761 |
msgstr "Mehrfachwert?"
|
2762 |
|
2763 |
+
#: templates/admin/csv-import.tpl.php:348
|
2764 |
#, fuzzy
|
2765 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2766 |
msgstr "Semikolon getrennte Liste der Eintragsbilder (aus der ZIP Datei)"
|
2767 |
|
2768 |
+
#: templates/admin/csv-import.tpl.php:355
|
2769 |
#, fuzzy
|
2770 |
msgid "Listing owner's username"
|
2771 |
msgstr "Benutzername des Authors"
|
2997 |
msgid "Plan"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:125
|
3001 |
#: templates/plan-selection-plan.tpl.php:41
|
3002 |
#, fuzzy
|
3003 |
msgid "Recurring"
|
3004 |
msgstr "(wiederkehrend)"
|
3005 |
|
3006 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:155
|
3007 |
#, fuzzy
|
3008 |
msgid "Renew listing"
|
3009 |
msgstr "Eintrag erneuern"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
#: templates/admin/payments-details.tpl.php:52
|
3037 |
+
#: templates/admin/payments-details.tpl.php:94
|
3038 |
#, fuzzy
|
3039 |
msgid "Payment ID"
|
3040 |
msgstr "Bezahlung"
|
3060 |
msgid "(Not yet set)"
|
3061 |
msgstr "Noch nicht registriert?"
|
3062 |
|
3063 |
+
#: templates/admin/payments-details.tpl.php:89
|
3064 |
+
msgid "- Test Mode"
|
3065 |
+
msgstr ""
|
3066 |
+
|
3067 |
+
#: templates/admin/payments-details.tpl.php:105
|
3068 |
#, fuzzy
|
3069 |
msgid "Delete Payment"
|
3070 |
msgstr "Bezahlung zurückweisen"
|
3071 |
|
3072 |
+
#: templates/admin/payments-details.tpl.php:107
|
3073 |
#, fuzzy
|
3074 |
msgid "Save Payment"
|
3075 |
msgstr "Bezahlung"
|
3076 |
|
3077 |
+
#: templates/admin/payments-details.tpl.php:118
|
3078 |
#, fuzzy
|
3079 |
msgid "Details"
|
3080 |
msgstr "+ Details"
|
3081 |
|
3082 |
+
#: templates/admin/payments-details.tpl.php:122
|
3083 |
#, fuzzy
|
3084 |
msgid "Item Type"
|
3085 |
msgstr "Feldtyp"
|
3086 |
|
3087 |
+
#: templates/admin/payments-details.tpl.php:135
|
3088 |
#: templates/payment/payment_items.tpl.php:23
|
3089 |
#, fuzzy
|
3090 |
msgid "Total"
|
3091 |
msgstr "Gesamt"
|
3092 |
|
3093 |
+
#: templates/admin/payments-details.tpl.php:146
|
3094 |
#, fuzzy
|
3095 |
msgid "Customer Details"
|
3096 |
msgstr "Aktuelle Preisdetails"
|
3097 |
|
3098 |
+
#: templates/admin/payments-details.tpl.php:156
|
3099 |
#: templates/checkout-billing-form.tpl.php:17
|
3100 |
#, fuzzy
|
3101 |
msgid "First Name"
|
3102 |
msgstr "Name:"
|
3103 |
|
3104 |
+
#: templates/admin/payments-details.tpl.php:161
|
3105 |
#: templates/checkout-billing-form.tpl.php:22
|
3106 |
#, fuzzy
|
3107 |
msgid "Last Name"
|
3108 |
msgstr "Name:"
|
3109 |
|
3110 |
+
#: templates/admin/payments-details.tpl.php:183
|
3111 |
#, fuzzy
|
3112 |
msgid "Address Line 1"
|
3113 |
msgstr "Adresszeile 1:"
|
3114 |
|
3115 |
+
#: templates/admin/payments-details.tpl.php:187
|
3116 |
#: templates/checkout-billing-form.tpl.php:81
|
3117 |
#, fuzzy
|
3118 |
msgid "Address Line 2"
|
3119 |
msgstr "Adresszeile 2:"
|
3120 |
|
3121 |
+
#: templates/admin/payments-details.tpl.php:196
|
3122 |
msgid "Notes & Log"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
#: templates/admin/payments-details.tpl.php:201
|
3126 |
msgid "No notes."
|
3127 |
msgstr ""
|
3128 |
|
3129 |
+
#: templates/admin/payments-details.tpl.php:221
|
3130 |
#, fuzzy
|
3131 |
msgid "Add Note"
|
3132 |
msgstr "Preis Erstellen"
|
3292 |
msgid "Upload"
|
3293 |
msgstr "File Upload Module"
|
3294 |
|
3295 |
+
#: templates/admin/themes-item.tpl.php:6
|
3296 |
+
#, fuzzy
|
3297 |
+
msgid "Missing License"
|
3298 |
+
msgstr "Eintrag Titel:"
|
3299 |
+
|
3300 |
+
#: templates/admin/themes-item.tpl.php:8
|
3301 |
#, fuzzy
|
3302 |
msgid "Inactive"
|
3303 |
msgstr "Nur Aktiv"
|
3304 |
|
3305 |
+
#: templates/admin/themes-item.tpl.php:18
|
3306 |
#, fuzzy
|
3307 |
msgid "Updating theme..."
|
3308 |
msgstr "Theme wird aktualisiert…"
|
3309 |
|
3310 |
+
#: templates/admin/themes-item.tpl.php:18
|
3311 |
#, fuzzy
|
3312 |
msgid "Theme updated."
|
3313 |
msgstr "Preis aktualisiert."
|
3314 |
|
3315 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3316 |
+
#: templates/admin/themes-item.tpl.php:23
|
3317 |
#, fuzzy
|
3318 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3319 |
msgstr "neue Version verfügbar (<b>%s</b>). <a>Jetzt aktualisieren</a>."
|
4732 |
msgid "All"
|
4733 |
msgstr "Alle"
|
4734 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4735 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4736 |
msgctxt "form-fields admin"
|
4737 |
msgid "Form fields updated."
|
4828 |
msgid "In Listing"
|
4829 |
msgstr "Im Eintrag"
|
4830 |
|
4831 |
+
#: includes/fields/class-fieldtypes-checkbox.php:98
|
4832 |
#, fuzzy
|
4833 |
msgctxt "form-fields admin"
|
4834 |
msgid "Select All"
|
4835 |
msgstr "Liste auswählen"
|
4836 |
|
4837 |
+
#: includes/fields/class-fieldtypes-checkbox.php:116
|
4838 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:91
|
4839 |
msgctxt "form-fields admin"
|
4840 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4841 |
msgstr ""
|
4842 |
"Feldoptionen (für ausgewählte Listen, Radiobutton und Kontrollkästchen)"
|
4843 |
|
4844 |
+
#: includes/fields/class-fieldtypes-checkbox.php:128
|
4845 |
msgctxt "form-fields admin"
|
4846 |
msgid "Include \"Select all\"?"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
+
#: includes/fields/class-fieldtypes-checkbox.php:132
|
4850 |
msgctxt "form-fields admin"
|
4851 |
msgid "Display \"Select all\" option among options above."
|
4852 |
msgstr ""
|
4853 |
|
4854 |
+
#: includes/fields/class-fieldtypes-checkbox.php:148
|
4855 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:118
|
4856 |
msgctxt "form-fields admin"
|
4857 |
msgid "Field list of options is required."
|
4858 |
msgstr "Feldliste von Optionen wird benötigt."
|
6783 |
msgid "← Return to CSV Export"
|
6784 |
msgstr "← Zurück nach CSV Export"
|
6785 |
|
6786 |
+
#: includes/admin/csv-import.php:178
|
6787 |
msgctxt "admin csv-import"
|
6788 |
msgid "Whatever"
|
6789 |
msgstr "BeispielText"
|
6790 |
|
6791 |
+
#: includes/admin/csv-import.php:372
|
6792 |
msgctxt "admin csv-import"
|
6793 |
msgid "Please upload or select a CSV file."
|
6794 |
msgstr "Die hochgeladene Datei ist nicht im CSV Format."
|
6795 |
|
6796 |
+
#: includes/admin/csv-import.php:397
|
6797 |
msgctxt "admin csv-import"
|
6798 |
msgid ""
|
6799 |
"An error was detected while validating the CSV file for import. Please fix "
|
6802 |
"Beim überprüfen der der CSV-Datei wurde ein Fehler festgestellt. Bitte "
|
6803 |
"beheben sie diesen, bevor Sie mit dem Importieren fortfahren."
|
6804 |
|
6805 |
+
#: includes/admin/csv-import.php:406
|
6806 |
msgctxt "admin csv-import"
|
6807 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6808 |
msgstr ""
|
7021 |
msgid "Import Listings"
|
7022 |
msgstr "Einträge importieren"
|
7023 |
|
7024 |
+
#: templates/admin/csv-import.tpl.php:341
|
7025 |
#, fuzzy
|
7026 |
msgctxt "admin csv-import"
|
7027 |
msgid ""
|
7031 |
"Tag des Eintragende formatiert als YYYY-MM-DD. Benutze diese Spalte, wenn "
|
7032 |
"Einträge aus externen Quellen hinzugefügt oder aktualisiert werden."
|
7033 |
|
7034 |
+
#: templates/admin/csv-import.tpl.php:362
|
7035 |
msgctxt "admin csv-import"
|
7036 |
msgid ""
|
7037 |
"Internal Sequence ID used to allow listing updates from external sources."
|
7039 |
"Interne Sequenz ID wird benutzt um Aktualisierungen von Einträgen aus "
|
7040 |
"externer Quellen durchzuführen."
|
7041 |
|
7042 |
+
#: templates/admin/csv-import.tpl.php:369
|
7043 |
msgctxt "admin csv-import"
|
7044 |
msgid ""
|
7045 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
7048 |
"Tag des Eintragende formatiert als YYYY-MM-DD. Benutze diese Spalte, wenn "
|
7049 |
"Einträge aus externen Quellen hinzugefügt oder aktualisiert werden."
|
7050 |
|
7051 |
+
#: includes/admin/csv-import.php:328
|
7052 |
#, fuzzy
|
7053 |
msgctxt "csv import"
|
7054 |
msgid ""
|
7092 |
msgid "Plan Details"
|
7093 |
msgstr "Details planen"
|
7094 |
|
7095 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:51
|
7096 |
msgctxt "listing metabox"
|
7097 |
msgid "Change plan"
|
7098 |
msgstr ""
|
7099 |
|
7100 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:105
|
7101 |
#, fuzzy
|
7102 |
msgctxt "listing metabox"
|
7103 |
msgid "# of images"
|
7833 |
msgid "Send Message to listing owner"
|
7834 |
msgstr "Nachricht an den Anbieter"
|
7835 |
|
7836 |
+
#: includes/controllers/pages/class-main.php:14
|
7837 |
msgctxt "templates"
|
7838 |
msgid ""
|
7839 |
"There are no categories assigned to the business directory yet. You need to "
|
7848 |
"nicht erstellt werden kann. Einträge können nicht erstellt werden bis ein "
|
7849 |
"Kategorie zugewiesen wurde."
|
7850 |
|
7851 |
+
#: includes/controllers/pages/class-main.php:16
|
7852 |
msgctxt "templates"
|
7853 |
msgid "There are currently no listings in the directory."
|
7854 |
msgstr "Keine Einträge im Verzeichnis vorhanden. "
|
7855 |
|
7856 |
+
#: includes/controllers/pages/class-main.php:28
|
7857 |
msgctxt "templates"
|
7858 |
msgid ""
|
7859 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
8325 |
msgid "The e-mail address you chose for your account is already in use."
|
8326 |
msgstr ""
|
8327 |
|
8328 |
+
#: includes/models/class-payment.php:286
|
8329 |
#, fuzzy
|
8330 |
msgctxt "submit listing"
|
8331 |
msgid "Listing submitted by admin. Payment skipped."
|
8428 |
"Dieses Formularfeld kann nicht gelöscht werden, weil es ein Pflichtfeld ist, "
|
8429 |
"damit das Modul richtig funktioniert."
|
8430 |
|
8431 |
+
#: includes/fields/class-fieldtypes-checkbox.php:52
|
8432 |
#, fuzzy
|
8433 |
msgctxt "checkbox form field"
|
8434 |
msgid "Select all"
|
8708 |
msgid "The server returned a 403 Forbidden error."
|
8709 |
msgstr ""
|
8710 |
|
8711 |
+
#: includes/licensing.php:846
|
8712 |
msgctxt "licensing"
|
8713 |
msgid "Could not activate license: %s."
|
8714 |
msgstr "Konnte Lizenz nicht aktivieren: %s"
|
8715 |
|
8716 |
+
#: includes/licensing.php:851
|
8717 |
msgctxt "licensing"
|
8718 |
msgid "License activated"
|
8719 |
msgstr "Lizenz aktiviert"
|
8720 |
|
8721 |
+
#: includes/licensing.php:883
|
8722 |
msgctxt "licensing"
|
8723 |
msgid "Could not deactivate license: %s."
|
8724 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
8725 |
|
8726 |
+
#: includes/licensing.php:885
|
8727 |
msgctxt "licensing"
|
8728 |
msgid "License deactivated"
|
8729 |
msgstr "Lizenz deaktiviert"
|
8730 |
|
8731 |
#. translators: "<module-name>" version <version-number> is not...
|
8732 |
+
#: includes/licensing.php:1125
|
8733 |
msgctxt "deprecation"
|
8734 |
msgid ""
|
8735 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8748 |
msgstr[0] "%d Bild erlaubt."
|
8749 |
msgstr[1] "%d Bilder erlaubt."
|
8750 |
|
8751 |
+
#: includes/models/class-fee-plan.php:410
|
8752 |
#, fuzzy
|
8753 |
msgctxt "fees-api"
|
8754 |
msgid "Plan label is required."
|
8755 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
8756 |
|
8757 |
+
#: includes/models/class-fee-plan.php:416
|
8758 |
msgctxt "fees-api"
|
8759 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8760 |
msgstr ""
|
8761 |
"Preis Eintrag Zeitraum muss eine Nummer kleiner als 10 Jahre sein (3650 "
|
8762 |
"Tage)."
|
8763 |
|
8764 |
+
#: includes/models/class-fee-plan.php:421
|
8765 |
msgctxt "fees-api"
|
8766 |
msgid ""
|
8767 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
8769 |
"<a>plan</a> appropriately."
|
8770 |
msgstr ""
|
8771 |
|
8772 |
+
#: includes/models/class-fee-plan.php:424
|
8773 |
msgctxt "fees-api"
|
8774 |
msgid ""
|
8775 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8776 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
8777 |
msgstr ""
|
8778 |
|
8779 |
+
#: includes/models/class-payment.php:109
|
8780 |
msgctxt "payment"
|
8781 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8782 |
msgstr ""
|
8783 |
|
8784 |
+
#: includes/models/class-payment.php:157
|
8785 |
#, fuzzy
|
8786 |
msgctxt "payment"
|
8787 |
msgid "Initial payment (\"%s\")"
|
8788 |
msgstr "Initialbezahlung"
|
8789 |
|
8790 |
+
#: includes/models/class-payment.php:160
|
8791 |
#, fuzzy
|
8792 |
msgctxt "payment"
|
8793 |
msgid "Renewal payment (\"%s\")"
|
8794 |
msgstr "Bezahlung zurückweisen"
|
8795 |
|
8796 |
+
#: includes/models/class-payment.php:403
|
8797 |
#, fuzzy
|
8798 |
msgctxt "payment"
|
8799 |
msgid "Pending"
|
8800 |
msgstr "Ausstehend"
|
8801 |
|
8802 |
+
#: includes/models/class-payment.php:404
|
8803 |
msgctxt "payment"
|
8804 |
msgid "Failed"
|
8805 |
msgstr ""
|
8806 |
|
8807 |
+
#: includes/models/class-payment.php:405
|
8808 |
#, fuzzy
|
8809 |
msgctxt "payment"
|
8810 |
msgid "Completed"
|
8811 |
msgstr "Abgeschlossen"
|
8812 |
|
8813 |
+
#: includes/models/class-payment.php:406
|
8814 |
#, fuzzy
|
8815 |
msgctxt "payment"
|
8816 |
msgid "Canceled"
|
8817 |
msgstr "Abgebrochen"
|
8818 |
|
8819 |
+
#: includes/models/class-payment.php:407
|
8820 |
msgctxt "payment"
|
8821 |
msgid "On Hold"
|
8822 |
msgstr ""
|
8823 |
|
8824 |
+
#: includes/models/class-payment.php:408
|
8825 |
msgctxt "payment"
|
8826 |
msgid "Refunded"
|
8827 |
msgstr ""
|
8828 |
|
8829 |
+
#: includes/models/class-payment.php:172
|
8830 |
msgctxt "payment summary"
|
8831 |
msgid "%s. Admin Posted."
|
8832 |
msgstr ""
|
8833 |
|
8834 |
+
#: includes/models/class-payment.php:174
|
8835 |
#, fuzzy
|
8836 |
msgctxt "payment summary"
|
8837 |
msgid "%s. Imported Listing."
|
8858 |
msgid "File type \"%s\" is not allowed"
|
8859 |
msgstr "Dateityp \"%s\" ist nicht erlaubt"
|
8860 |
|
8861 |
+
#: includes/utils.php:668
|
8862 |
msgctxt "utils"
|
8863 |
msgid ""
|
8864 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8992 |
"we'll answer it within 24 hours most days."
|
8993 |
msgstr ""
|
8994 |
|
8995 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
8996 |
#, fuzzy
|
8997 |
msgctxt "admin infometabox"
|
8998 |
msgid "Renewal url (copy & paste)"
|
8999 |
msgstr "URL Erneuern (kopieren & einfügen)"
|
9000 |
|
9001 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
9002 |
msgctxt "admin infometabox"
|
9003 |
msgid "Get renewal URL"
|
9004 |
msgstr ""
|
9005 |
|
9006 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:149
|
9007 |
#, fuzzy
|
9008 |
msgctxt "admin infometabox"
|
9009 |
msgid "Send renewal e-mail"
|
9216 |
msgid "Continue"
|
9217 |
msgstr "Weiter"
|
9218 |
|
9219 |
+
#, fuzzy
|
9220 |
+
#~ msgid ""
|
9221 |
+
#~ "The following are the valid header names to be used in the CSV file. "
|
9222 |
+
#~ "Multivalued fields (such as category or tags) can appear multiple times "
|
9223 |
+
#~ "in the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> "
|
9224 |
+
#~ "to see how an import file should look like."
|
9225 |
+
#~ msgstr ""
|
9226 |
+
#~ "Folgendes sind Spaltennamen die in der CSV-Datei verwendet werden. "
|
9227 |
+
#~ "Mehrfach belegte Felder (so wie Kategorien oder Tags) können öfters in "
|
9228 |
+
#~ "der Datei erscheinen. Klicken Sie <a href=\"%s\">\"CSV Beispieldatei "
|
9229 |
+
#~ "anschauen\"</a>, um zu sehen wie eine Importdatei aufgebaut sein muss."
|
9230 |
+
|
9231 |
+
#, fuzzy
|
9232 |
+
#~ msgctxt "payments admin"
|
9233 |
+
#~ msgid "View Payment"
|
9234 |
+
#~ msgstr "Bezahlhistorie"
|
9235 |
+
|
9236 |
#, fuzzy
|
9237 |
#~ msgctxt "uninstall"
|
9238 |
#~ msgid "Please choose an option."
|
languages/business-directory-plugin-en_US.po
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
# Copyright (C) 2013
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
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"
|
@@ -223,15 +223,14 @@ msgid "See Example"
|
|
223 |
msgstr ""
|
224 |
|
225 |
#: includes/admin/controllers/class-admin-csv.php:54
|
226 |
-
#: templates/admin/csv-import.tpl.php:291
|
227 |
msgid "Help"
|
228 |
msgstr ""
|
229 |
|
230 |
#: includes/admin/controllers/class-admin-fees.php:46
|
231 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
232 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
233 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
234 |
-
#: templates/admin/payments-details.tpl.php:
|
235 |
#: templates/email/listing-payment-completed.tpl.php:21
|
236 |
#: templates/payment/payment_items.tpl.php:5
|
237 |
msgid "Amount"
|
@@ -297,7 +296,7 @@ msgid "Listing Reports"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/controllers/class-admin-listings.php:268
|
300 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
301 |
msgid "Expires on"
|
302 |
msgstr ""
|
303 |
|
@@ -307,7 +306,7 @@ msgstr ""
|
|
307 |
|
308 |
#: includes/admin/controllers/class-admin-listings.php:339
|
309 |
#: includes/helpers/class-listing-display-helper.php:137
|
310 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
311 |
msgid "Featured"
|
312 |
msgstr ""
|
313 |
|
@@ -324,15 +323,15 @@ msgid "Delete Listing"
|
|
324 |
msgstr ""
|
325 |
|
326 |
#: includes/admin/controllers/class-admin-listings.php:733
|
327 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
328 |
msgid "Never"
|
329 |
msgstr ""
|
330 |
|
331 |
#: includes/admin/controllers/class-admin-listings.php:744
|
332 |
#: includes/admin/controllers/class-admin-listings.php:745
|
333 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
334 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
335 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
336 |
msgid "Yes"
|
337 |
msgstr ""
|
338 |
|
@@ -340,8 +339,8 @@ msgstr ""
|
|
340 |
#: includes/admin/controllers/class-admin-listings.php:745
|
341 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
342 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
343 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
344 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
345 |
msgid "No"
|
346 |
msgstr ""
|
347 |
|
@@ -405,24 +404,24 @@ msgid "Address 2"
|
|
405 |
msgstr ""
|
406 |
|
407 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
408 |
-
#: templates/admin/payments-details.tpl.php:
|
409 |
#: templates/checkout-billing-form.tpl.php:87
|
410 |
msgid "City"
|
411 |
msgstr ""
|
412 |
|
413 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
414 |
-
#: templates/admin/payments-details.tpl.php:
|
415 |
msgid "State"
|
416 |
msgstr ""
|
417 |
|
418 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
419 |
-
#: templates/admin/payments-details.tpl.php:
|
420 |
#: templates/checkout-billing-form.tpl.php:102
|
421 |
msgid "Country"
|
422 |
msgstr ""
|
423 |
|
424 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
425 |
-
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:
|
426 |
msgid "ZIP Code"
|
427 |
msgstr ""
|
428 |
|
@@ -484,7 +483,7 @@ msgstr ""
|
|
484 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
485 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
486 |
#: templates/admin/payments-note.tpl.php:14
|
487 |
-
#: templates/admin/themes-item.tpl.php:
|
488 |
#: templates/parts/listing-buttons.tpl.php:31
|
489 |
msgid "Delete"
|
490 |
msgstr ""
|
@@ -498,28 +497,28 @@ msgid "Themes"
|
|
498 |
msgstr ""
|
499 |
|
500 |
#. translators: %s: Sample business name
|
501 |
-
#: includes/admin/csv-import.php:
|
502 |
msgid "Business %s"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: includes/admin/csv-import.php:
|
506 |
-
msgid "Example
|
507 |
msgstr ""
|
508 |
|
509 |
#: includes/admin/csv-import.php:185
|
510 |
-
msgid "
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: includes/admin/csv-import.php:
|
514 |
#: includes/helpers/class-app.php:244
|
515 |
msgid "You are not allowed to do that."
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: includes/admin/csv-import.php:
|
519 |
msgid "There was an error uploading the file:"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: includes/admin/csv-import.php:
|
523 |
msgid "Please upload the correct file type."
|
524 |
msgstr ""
|
525 |
|
@@ -553,7 +552,7 @@ msgstr ""
|
|
553 |
|
554 |
#: includes/admin/helpers/class-modules-list.php:226
|
555 |
#: includes/controllers/class-smtp.php:317
|
556 |
-
#: templates/admin/themes-item.tpl.php:
|
557 |
msgid "Activate"
|
558 |
msgstr ""
|
559 |
|
@@ -626,13 +625,13 @@ msgstr ""
|
|
626 |
|
627 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
628 |
#: includes/fields/class-fieldtypes-social.php:135
|
629 |
-
#: templates/admin/csv-import.tpl.php:
|
630 |
msgid "Type"
|
631 |
msgstr ""
|
632 |
|
633 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
634 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
635 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
636 |
msgid "Edit"
|
637 |
msgstr ""
|
638 |
|
@@ -640,6 +639,10 @@ msgstr ""
|
|
640 |
msgid "Are you sure you want to delete that field?"
|
641 |
msgstr ""
|
642 |
|
|
|
|
|
|
|
|
|
643 |
#: includes/admin/page-debug.php:40
|
644 |
msgid "Plugin Settings"
|
645 |
msgstr ""
|
@@ -653,9 +656,9 @@ msgid "Plugin Info"
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: includes/admin/page-debug.php:159
|
656 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
657 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
658 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
659 |
msgid "OK"
|
660 |
msgstr ""
|
661 |
|
@@ -665,7 +668,7 @@ msgstr ""
|
|
665 |
|
666 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
667 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
668 |
-
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:
|
669 |
#: templates/listing-contactform.tpl.php:33
|
670 |
#: templates/listing-flagging-form.tpl.php:39
|
671 |
msgid "Email"
|
@@ -1197,9 +1200,9 @@ msgid ""
|
|
1197 |
msgstr ""
|
1198 |
|
1199 |
#: includes/class-assets.php:195
|
1200 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1201 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1202 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1203 |
#: templates/admin/settings-email.tpl.php:103
|
1204 |
#: templates/admin/settings-reset.tpl.php:8
|
1205 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
@@ -1588,37 +1591,37 @@ msgstr ""
|
|
1588 |
msgid "Select List"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1592 |
msgid "-- Choose One --"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1596 |
msgid "-- Choose Terms --"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1600 |
msgid "— None —"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1604 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1608 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1609 |
#: templates/admin/fees-form.tpl.php:58
|
1610 |
msgid "required"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1614 |
msgid "One option per line"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1618 |
msgid "Allow empty selection on search?"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1622 |
msgid "Field list of options is required."
|
1623 |
msgstr ""
|
1624 |
|
@@ -1695,7 +1698,7 @@ msgstr ""
|
|
1695 |
msgid "Short Description"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:
|
1699 |
msgid "Description"
|
1700 |
msgstr ""
|
1701 |
|
@@ -1739,7 +1742,7 @@ msgstr ""
|
|
1739 |
msgid "Telephone Number Validator"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
1743 |
msgid "Field"
|
1744 |
msgstr ""
|
1745 |
|
@@ -2028,27 +2031,37 @@ msgid ""
|
|
2028 |
"our IP address 52.0.78.177 to your allow list."
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
2032 |
msgid "Business Directory license key is missing."
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: includes/licensing.php:
|
2036 |
msgid "Business Directory license key has expired"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: includes/licensing.php:
|
2040 |
msgid "Could not verify Business Directory license."
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2044 |
msgid "Review license keys"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: includes/licensing.php:
|
2048 |
msgid "Missing data. Please reload this page and try again."
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: includes/licensing.php:
|
2052 |
msgid "Please enter a license key."
|
2053 |
msgstr ""
|
2054 |
|
@@ -2304,31 +2317,41 @@ msgstr ""
|
|
2304 |
msgid "Disable email notifications during import"
|
2305 |
msgstr ""
|
2306 |
|
|
|
|
|
|
|
|
|
2307 |
#: templates/admin/csv-import.tpl.php:296
|
2308 |
msgid ""
|
2309 |
-
"The following are the
|
2310 |
-
"
|
2311 |
-
"the
|
2312 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: templates/admin/csv-import.tpl.php:
|
2316 |
msgid "Header name/label"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: templates/admin/csv-import.tpl.php:
|
2320 |
msgid "Required?"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: templates/admin/csv-import.tpl.php:
|
2324 |
msgid "Multivalued?"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: templates/admin/csv-import.tpl.php:
|
2328 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: templates/admin/csv-import.tpl.php:
|
2332 |
msgid "Listing owner's username"
|
2333 |
msgstr ""
|
2334 |
|
@@ -2519,12 +2542,12 @@ msgstr ""
|
|
2519 |
msgid "Plan"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2523 |
#: templates/plan-selection-plan.tpl.php:41
|
2524 |
msgid "Recurring"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2528 |
msgid "Renew listing"
|
2529 |
msgstr ""
|
2530 |
|
@@ -2550,7 +2573,7 @@ msgid "Overview"
|
|
2550 |
msgstr ""
|
2551 |
|
2552 |
#: templates/admin/payments-details.tpl.php:52
|
2553 |
-
#: templates/admin/payments-details.tpl.php:
|
2554 |
msgid "Payment ID"
|
2555 |
msgstr ""
|
2556 |
|
@@ -2571,59 +2594,63 @@ msgstr ""
|
|
2571 |
msgid "(Not yet set)"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: templates/admin/payments-details.tpl.php:
|
|
|
|
|
|
|
|
|
2575 |
msgid "Delete Payment"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: templates/admin/payments-details.tpl.php:
|
2579 |
msgid "Save Payment"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: templates/admin/payments-details.tpl.php:
|
2583 |
msgid "Details"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: templates/admin/payments-details.tpl.php:
|
2587 |
msgid "Item Type"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: templates/admin/payments-details.tpl.php:
|
2591 |
#: templates/payment/payment_items.tpl.php:23
|
2592 |
msgid "Total"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: templates/admin/payments-details.tpl.php:
|
2596 |
msgid "Customer Details"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: templates/admin/payments-details.tpl.php:
|
2600 |
#: templates/checkout-billing-form.tpl.php:17
|
2601 |
msgid "First Name"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: templates/admin/payments-details.tpl.php:
|
2605 |
#: templates/checkout-billing-form.tpl.php:22
|
2606 |
msgid "Last Name"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: templates/admin/payments-details.tpl.php:
|
2610 |
msgid "Address Line 1"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: templates/admin/payments-details.tpl.php:
|
2614 |
#: templates/checkout-billing-form.tpl.php:81
|
2615 |
msgid "Address Line 2"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: templates/admin/payments-details.tpl.php:
|
2619 |
msgid "Notes & Log"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: templates/admin/payments-details.tpl.php:
|
2623 |
msgid "No notes."
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: templates/admin/payments-details.tpl.php:
|
2627 |
msgid "Add Note"
|
2628 |
msgstr ""
|
2629 |
|
@@ -2763,20 +2790,24 @@ msgstr ""
|
|
2763 |
msgid "Upload"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: templates/admin/themes-item.tpl.php:
|
|
|
|
|
|
|
|
|
2767 |
msgid "Inactive"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: templates/admin/themes-item.tpl.php:
|
2771 |
msgid "Updating theme..."
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: templates/admin/themes-item.tpl.php:
|
2775 |
msgid "Theme updated."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
2779 |
-
#: templates/admin/themes-item.tpl.php:
|
2780 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2781 |
msgstr ""
|
2782 |
|
@@ -4003,11 +4034,6 @@ msgctxt "payments admin"
|
|
4003 |
msgid "All"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: includes/admin/helpers/tables/class-payments-table.php:134
|
4007 |
-
msgctxt "payments admin"
|
4008 |
-
msgid "View Payment History"
|
4009 |
-
msgstr ""
|
4010 |
-
|
4011 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4012 |
msgctxt "form-fields admin"
|
4013 |
msgid "Form fields updated."
|
@@ -4097,29 +4123,29 @@ msgctxt "form-fields admin"
|
|
4097 |
msgid "In Listing"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4101 |
msgctxt "form-fields admin"
|
4102 |
msgid "Select All"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4106 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4107 |
msgctxt "form-fields admin"
|
4108 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4112 |
msgctxt "form-fields admin"
|
4113 |
msgid "Include \"Select all\"?"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4117 |
msgctxt "form-fields admin"
|
4118 |
msgid "Display \"Select all\" option among options above."
|
4119 |
msgstr ""
|
4120 |
|
4121 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4122 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4123 |
msgctxt "form-fields admin"
|
4124 |
msgid "Field list of options is required."
|
4125 |
msgstr ""
|
@@ -5841,24 +5867,24 @@ msgctxt "admin csv-export"
|
|
5841 |
msgid "← Return to CSV Export"
|
5842 |
msgstr ""
|
5843 |
|
5844 |
-
#: includes/admin/csv-import.php:
|
5845 |
msgctxt "admin csv-import"
|
5846 |
msgid "Whatever"
|
5847 |
msgstr ""
|
5848 |
|
5849 |
-
#: includes/admin/csv-import.php:
|
5850 |
msgctxt "admin csv-import"
|
5851 |
msgid "Please upload or select a CSV file."
|
5852 |
msgstr ""
|
5853 |
|
5854 |
-
#: includes/admin/csv-import.php:
|
5855 |
msgctxt "admin csv-import"
|
5856 |
msgid ""
|
5857 |
"An error was detected while validating the CSV file for import. Please fix "
|
5858 |
"this before proceeding."
|
5859 |
msgstr ""
|
5860 |
|
5861 |
-
#: includes/admin/csv-import.php:
|
5862 |
msgctxt "admin csv-import"
|
5863 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
5864 |
msgstr ""
|
@@ -6061,27 +6087,27 @@ msgctxt "admin csv-import"
|
|
6061 |
msgid "Import Listings"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
-
#: templates/admin/csv-import.tpl.php:
|
6065 |
msgctxt "admin csv-import"
|
6066 |
msgid ""
|
6067 |
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
6068 |
"updating listings from external sources."
|
6069 |
msgstr ""
|
6070 |
|
6071 |
-
#: templates/admin/csv-import.tpl.php:
|
6072 |
msgctxt "admin csv-import"
|
6073 |
msgid ""
|
6074 |
"Internal Sequence ID used to allow listing updates from external sources."
|
6075 |
msgstr ""
|
6076 |
|
6077 |
-
#: templates/admin/csv-import.tpl.php:
|
6078 |
msgctxt "admin csv-import"
|
6079 |
msgid ""
|
6080 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
6081 |
"adding or updating listings from external sources."
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#: includes/admin/csv-import.php:
|
6085 |
msgctxt "csv import"
|
6086 |
msgid ""
|
6087 |
"A valid temporary directory with write permissions is required for CSV "
|
@@ -6114,12 +6140,12 @@ msgctxt "listing metabox"
|
|
6114 |
msgid "Plan Details"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
6118 |
msgctxt "listing metabox"
|
6119 |
msgid "Change plan"
|
6120 |
msgstr ""
|
6121 |
|
6122 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
6123 |
msgctxt "listing metabox"
|
6124 |
msgid "# of images"
|
6125 |
msgstr ""
|
@@ -6787,7 +6813,7 @@ msgctxt "templates"
|
|
6787 |
msgid "Send Message to listing owner"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
-
#: includes/controllers/pages/class-main.php:
|
6791 |
msgctxt "templates"
|
6792 |
msgid ""
|
6793 |
"There are no categories assigned to the business directory yet. You need to "
|
@@ -6797,12 +6823,12 @@ msgid ""
|
|
6797 |
"categories to the business directory."
|
6798 |
msgstr ""
|
6799 |
|
6800 |
-
#: includes/controllers/pages/class-main.php:
|
6801 |
msgctxt "templates"
|
6802 |
msgid "There are currently no listings in the directory."
|
6803 |
msgstr ""
|
6804 |
|
6805 |
-
#: includes/controllers/pages/class-main.php:
|
6806 |
msgctxt "templates"
|
6807 |
msgid ""
|
6808 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
@@ -7219,7 +7245,7 @@ msgctxt "submit listing"
|
|
7219 |
msgid "The e-mail address you chose for your account is already in use."
|
7220 |
msgstr ""
|
7221 |
|
7222 |
-
#: includes/models/class-payment.php:
|
7223 |
msgctxt "submit listing"
|
7224 |
msgid "Listing submitted by admin. Payment skipped."
|
7225 |
msgstr ""
|
@@ -7317,7 +7343,7 @@ msgid ""
|
|
7317 |
"work."
|
7318 |
msgstr ""
|
7319 |
|
7320 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
7321 |
msgctxt "checkbox form field"
|
7322 |
msgid "Select all"
|
7323 |
msgstr ""
|
@@ -7577,28 +7603,28 @@ msgctxt "licensing"
|
|
7577 |
msgid "The server returned a 403 Forbidden error."
|
7578 |
msgstr ""
|
7579 |
|
7580 |
-
#: includes/licensing.php:
|
7581 |
msgctxt "licensing"
|
7582 |
msgid "Could not activate license: %s."
|
7583 |
msgstr ""
|
7584 |
|
7585 |
-
#: includes/licensing.php:
|
7586 |
msgctxt "licensing"
|
7587 |
msgid "License activated"
|
7588 |
msgstr ""
|
7589 |
|
7590 |
-
#: includes/licensing.php:
|
7591 |
msgctxt "licensing"
|
7592 |
msgid "Could not deactivate license: %s."
|
7593 |
msgstr ""
|
7594 |
|
7595 |
-
#: includes/licensing.php:
|
7596 |
msgctxt "licensing"
|
7597 |
msgid "License deactivated"
|
7598 |
msgstr ""
|
7599 |
|
7600 |
#. translators: "<module-name>" version <version-number> is not...
|
7601 |
-
#: includes/licensing.php:
|
7602 |
msgctxt "deprecation"
|
7603 |
msgid ""
|
7604 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -7617,17 +7643,17 @@ msgid_plural "%d images allowed."
|
|
7617 |
msgstr[0] ""
|
7618 |
msgstr[1] ""
|
7619 |
|
7620 |
-
#: includes/models/class-fee-plan.php:
|
7621 |
msgctxt "fees-api"
|
7622 |
msgid "Plan label is required."
|
7623 |
msgstr ""
|
7624 |
|
7625 |
-
#: includes/models/class-fee-plan.php:
|
7626 |
msgctxt "fees-api"
|
7627 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
7628 |
msgstr ""
|
7629 |
|
7630 |
-
#: includes/models/class-fee-plan.php:
|
7631 |
msgctxt "fees-api"
|
7632 |
msgid ""
|
7633 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
@@ -7635,64 +7661,64 @@ msgid ""
|
|
7635 |
"<a>plan</a> appropriately."
|
7636 |
msgstr ""
|
7637 |
|
7638 |
-
#: includes/models/class-fee-plan.php:
|
7639 |
msgctxt "fees-api"
|
7640 |
msgid ""
|
7641 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
7642 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
7643 |
msgstr ""
|
7644 |
|
7645 |
-
#: includes/models/class-payment.php:
|
7646 |
msgctxt "payment"
|
7647 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
7648 |
msgstr ""
|
7649 |
|
7650 |
-
#: includes/models/class-payment.php:
|
7651 |
msgctxt "payment"
|
7652 |
msgid "Initial payment (\"%s\")"
|
7653 |
msgstr ""
|
7654 |
|
7655 |
-
#: includes/models/class-payment.php:
|
7656 |
msgctxt "payment"
|
7657 |
msgid "Renewal payment (\"%s\")"
|
7658 |
msgstr ""
|
7659 |
|
7660 |
-
#: includes/models/class-payment.php:
|
7661 |
msgctxt "payment"
|
7662 |
msgid "Pending"
|
7663 |
msgstr ""
|
7664 |
|
7665 |
-
#: includes/models/class-payment.php:
|
7666 |
msgctxt "payment"
|
7667 |
msgid "Failed"
|
7668 |
msgstr ""
|
7669 |
|
7670 |
-
#: includes/models/class-payment.php:
|
7671 |
msgctxt "payment"
|
7672 |
msgid "Completed"
|
7673 |
msgstr ""
|
7674 |
|
7675 |
-
#: includes/models/class-payment.php:
|
7676 |
msgctxt "payment"
|
7677 |
msgid "Canceled"
|
7678 |
msgstr ""
|
7679 |
|
7680 |
-
#: includes/models/class-payment.php:
|
7681 |
msgctxt "payment"
|
7682 |
msgid "On Hold"
|
7683 |
msgstr ""
|
7684 |
|
7685 |
-
#: includes/models/class-payment.php:
|
7686 |
msgctxt "payment"
|
7687 |
msgid "Refunded"
|
7688 |
msgstr ""
|
7689 |
|
7690 |
-
#: includes/models/class-payment.php:
|
7691 |
msgctxt "payment summary"
|
7692 |
msgid "%s. Admin Posted."
|
7693 |
msgstr ""
|
7694 |
|
7695 |
-
#: includes/models/class-payment.php:
|
7696 |
msgctxt "payment summary"
|
7697 |
msgid "%s. Imported Listing."
|
7698 |
msgstr ""
|
@@ -7717,7 +7743,7 @@ msgctxt "utils"
|
|
7717 |
msgid "File type \"%s\" is not allowed"
|
7718 |
msgstr ""
|
7719 |
|
7720 |
-
#: includes/utils.php:
|
7721 |
msgctxt "utils"
|
7722 |
msgid ""
|
7723 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -7846,17 +7872,17 @@ msgid ""
|
|
7846 |
"we'll answer it within 24 hours most days."
|
7847 |
msgstr ""
|
7848 |
|
7849 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7850 |
msgctxt "admin infometabox"
|
7851 |
msgid "Renewal url (copy & paste)"
|
7852 |
msgstr ""
|
7853 |
|
7854 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7855 |
msgctxt "admin infometabox"
|
7856 |
msgid "Get renewal URL"
|
7857 |
msgstr ""
|
7858 |
|
7859 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7860 |
msgctxt "admin infometabox"
|
7861 |
msgid "Send renewal e-mail"
|
7862 |
msgstr ""
|
1 |
+
# Copyright (C) 2013
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
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-11-03 17:40:34+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"
|
223 |
msgstr ""
|
224 |
|
225 |
#: includes/admin/controllers/class-admin-csv.php:54
|
|
|
226 |
msgid "Help"
|
227 |
msgstr ""
|
228 |
|
229 |
#: includes/admin/controllers/class-admin-fees.php:46
|
230 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
231 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
232 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:81
|
233 |
+
#: templates/admin/payments-details.tpl.php:124
|
234 |
#: templates/email/listing-payment-completed.tpl.php:21
|
235 |
#: templates/payment/payment_items.tpl.php:5
|
236 |
msgid "Amount"
|
296 |
msgstr ""
|
297 |
|
298 |
#: includes/admin/controllers/class-admin-listings.php:268
|
299 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:87
|
300 |
msgid "Expires on"
|
301 |
msgstr ""
|
302 |
|
306 |
|
307 |
#: includes/admin/controllers/class-admin-listings.php:339
|
308 |
#: includes/helpers/class-listing-display-helper.php:137
|
309 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:118
|
310 |
msgid "Featured"
|
311 |
msgstr ""
|
312 |
|
323 |
msgstr ""
|
324 |
|
325 |
#: includes/admin/controllers/class-admin-listings.php:733
|
326 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:96
|
327 |
msgid "Never"
|
328 |
msgstr ""
|
329 |
|
330 |
#: includes/admin/controllers/class-admin-listings.php:744
|
331 |
#: includes/admin/controllers/class-admin-listings.php:745
|
332 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
333 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
334 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
335 |
msgid "Yes"
|
336 |
msgstr ""
|
337 |
|
339 |
#: includes/admin/controllers/class-admin-listings.php:745
|
340 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
341 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
342 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
343 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
344 |
msgid "No"
|
345 |
msgstr ""
|
346 |
|
404 |
msgstr ""
|
405 |
|
406 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
407 |
+
#: templates/admin/payments-details.tpl.php:175
|
408 |
#: templates/checkout-billing-form.tpl.php:87
|
409 |
msgid "City"
|
410 |
msgstr ""
|
411 |
|
412 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
413 |
+
#: templates/admin/payments-details.tpl.php:171
|
414 |
msgid "State"
|
415 |
msgstr ""
|
416 |
|
417 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
418 |
+
#: templates/admin/payments-details.tpl.php:167
|
419 |
#: templates/checkout-billing-form.tpl.php:102
|
420 |
msgid "Country"
|
421 |
msgstr ""
|
422 |
|
423 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
424 |
+
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:179
|
425 |
msgid "ZIP Code"
|
426 |
msgstr ""
|
427 |
|
483 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
484 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
485 |
#: templates/admin/payments-note.tpl.php:14
|
486 |
+
#: templates/admin/themes-item.tpl.php:51
|
487 |
#: templates/parts/listing-buttons.tpl.php:31
|
488 |
msgid "Delete"
|
489 |
msgstr ""
|
497 |
msgstr ""
|
498 |
|
499 |
#. translators: %s: Sample business name
|
500 |
+
#: includes/admin/csv-import.php:136
|
501 |
msgid "Business %s"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/admin/csv-import.php:183
|
505 |
+
msgid "Download Example"
|
506 |
msgstr ""
|
507 |
|
508 |
#: includes/admin/csv-import.php:185
|
509 |
+
msgid "Example CSV Import File"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/admin/csv-import.php:358 includes/helpers/class-app.php:232
|
513 |
#: includes/helpers/class-app.php:244
|
514 |
msgid "You are not allowed to do that."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/admin/csv-import.php:451
|
518 |
msgid "There was an error uploading the file:"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/admin/csv-import.php:456
|
522 |
msgid "Please upload the correct file type."
|
523 |
msgstr ""
|
524 |
|
552 |
|
553 |
#: includes/admin/helpers/class-modules-list.php:226
|
554 |
#: includes/controllers/class-smtp.php:317
|
555 |
+
#: templates/admin/themes-item.tpl.php:59
|
556 |
msgid "Activate"
|
557 |
msgstr ""
|
558 |
|
625 |
|
626 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
627 |
#: includes/fields/class-fieldtypes-social.php:135
|
628 |
+
#: templates/admin/csv-import.tpl.php:314
|
629 |
msgid "Type"
|
630 |
msgstr ""
|
631 |
|
632 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
633 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:93
|
634 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:110
|
635 |
msgid "Edit"
|
636 |
msgstr ""
|
637 |
|
639 |
msgid "Are you sure you want to delete that field?"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: includes/admin/helpers/tables/class-payments-table.php:143
|
643 |
+
msgid "View Payment"
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
#: includes/admin/page-debug.php:40
|
647 |
msgid "Plugin Settings"
|
648 |
msgstr ""
|
656 |
msgstr ""
|
657 |
|
658 |
#: includes/admin/page-debug.php:159
|
659 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:76
|
660 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:99
|
661 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:114
|
662 |
msgid "OK"
|
663 |
msgstr ""
|
664 |
|
668 |
|
669 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
670 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
671 |
+
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:151
|
672 |
#: templates/listing-contactform.tpl.php:33
|
673 |
#: templates/listing-flagging-form.tpl.php:39
|
674 |
msgid "Email"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
#: includes/class-assets.php:195
|
1203 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:77
|
1204 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:100
|
1205 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:115
|
1206 |
#: templates/admin/settings-email.tpl.php:103
|
1207 |
#: templates/admin/settings-reset.tpl.php:8
|
1208 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
1591 |
msgid "Select List"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: includes/fields/class-fieldtypes-select.php:117
|
1595 |
msgid "-- Choose One --"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: includes/fields/class-fieldtypes-select.php:144
|
1599 |
msgid "-- Choose Terms --"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: includes/fields/class-fieldtypes-select.php:210
|
1603 |
msgid "— None —"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1607 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1611 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1612 |
#: templates/admin/fees-form.tpl.php:58
|
1613 |
msgid "required"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: includes/fields/class-fieldtypes-select.php:269
|
1617 |
msgid "One option per line"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: includes/fields/class-fieldtypes-select.php:279
|
1621 |
msgid "Allow empty selection on search?"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: includes/fields/class-fieldtypes-select.php:297
|
1625 |
msgid "Field list of options is required."
|
1626 |
msgstr ""
|
1627 |
|
1698 |
msgid "Short Description"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:123
|
1702 |
msgid "Description"
|
1703 |
msgstr ""
|
1704 |
|
1742 |
msgid "Telephone Number Validator"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:313
|
1746 |
msgid "Field"
|
1747 |
msgstr ""
|
1748 |
|
2031 |
"our IP address 52.0.78.177 to your allow list."
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: includes/licensing.php:645
|
2035 |
+
msgid "Download Premium"
|
2036 |
+
msgstr ""
|
2037 |
+
|
2038 |
+
#: includes/licensing.php:695
|
2039 |
msgid "Business Directory license key is missing."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: includes/licensing.php:696
|
2043 |
msgid "Business Directory license key has expired"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: includes/licensing.php:697
|
2047 |
msgid "Could not verify Business Directory license."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: includes/licensing.php:698
|
2051 |
+
msgid ""
|
2052 |
+
"You have modules installed, but Business Directory Premium is missing. "
|
2053 |
+
"Install this plugin for extra features and easy license management."
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
#: includes/licensing.php:709
|
2057 |
msgid "Review license keys"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: includes/licensing.php:824
|
2061 |
msgid "Missing data. Please reload this page and try again."
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: includes/licensing.php:829
|
2065 |
msgid "Please enter a license key."
|
2066 |
msgstr ""
|
2067 |
|
2317 |
msgid "Disable email notifications during import"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: templates/admin/csv-import.tpl.php:291
|
2321 |
+
msgid "CSV File Formatting"
|
2322 |
+
msgstr ""
|
2323 |
+
|
2324 |
#: templates/admin/csv-import.tpl.php:296
|
2325 |
msgid ""
|
2326 |
+
"The following are the header names to use in your CSV file for your current "
|
2327 |
+
"setup. The headers in your CSV file must EXACTLY match (case and "
|
2328 |
+
"punctuation) the names listed here. Fields such as categories or tags can "
|
2329 |
+
"appear multiple times in the file."
|
2330 |
+
msgstr ""
|
2331 |
+
|
2332 |
+
#: templates/admin/csv-import.tpl.php:303
|
2333 |
+
msgid ""
|
2334 |
+
"<a href=\"%s\">See an example CSV import file</a> to see how your file "
|
2335 |
+
"should be formatted."
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: templates/admin/csv-import.tpl.php:312
|
2339 |
msgid "Header name/label"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: templates/admin/csv-import.tpl.php:315
|
2343 |
msgid "Required?"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: templates/admin/csv-import.tpl.php:316
|
2347 |
msgid "Multivalued?"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: templates/admin/csv-import.tpl.php:348
|
2351 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: templates/admin/csv-import.tpl.php:355
|
2355 |
msgid "Listing owner's username"
|
2356 |
msgstr ""
|
2357 |
|
2542 |
msgid "Plan"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:125
|
2546 |
#: templates/plan-selection-plan.tpl.php:41
|
2547 |
msgid "Recurring"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:155
|
2551 |
msgid "Renew listing"
|
2552 |
msgstr ""
|
2553 |
|
2573 |
msgstr ""
|
2574 |
|
2575 |
#: templates/admin/payments-details.tpl.php:52
|
2576 |
+
#: templates/admin/payments-details.tpl.php:94
|
2577 |
msgid "Payment ID"
|
2578 |
msgstr ""
|
2579 |
|
2594 |
msgid "(Not yet set)"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: templates/admin/payments-details.tpl.php:89
|
2598 |
+
msgid "- Test Mode"
|
2599 |
+
msgstr ""
|
2600 |
+
|
2601 |
+
#: templates/admin/payments-details.tpl.php:105
|
2602 |
msgid "Delete Payment"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: templates/admin/payments-details.tpl.php:107
|
2606 |
msgid "Save Payment"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: templates/admin/payments-details.tpl.php:118
|
2610 |
msgid "Details"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: templates/admin/payments-details.tpl.php:122
|
2614 |
msgid "Item Type"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
+
#: templates/admin/payments-details.tpl.php:135
|
2618 |
#: templates/payment/payment_items.tpl.php:23
|
2619 |
msgid "Total"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: templates/admin/payments-details.tpl.php:146
|
2623 |
msgid "Customer Details"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: templates/admin/payments-details.tpl.php:156
|
2627 |
#: templates/checkout-billing-form.tpl.php:17
|
2628 |
msgid "First Name"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: templates/admin/payments-details.tpl.php:161
|
2632 |
#: templates/checkout-billing-form.tpl.php:22
|
2633 |
msgid "Last Name"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: templates/admin/payments-details.tpl.php:183
|
2637 |
msgid "Address Line 1"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: templates/admin/payments-details.tpl.php:187
|
2641 |
#: templates/checkout-billing-form.tpl.php:81
|
2642 |
msgid "Address Line 2"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: templates/admin/payments-details.tpl.php:196
|
2646 |
msgid "Notes & Log"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: templates/admin/payments-details.tpl.php:201
|
2650 |
msgid "No notes."
|
2651 |
msgstr ""
|
2652 |
|
2653 |
+
#: templates/admin/payments-details.tpl.php:221
|
2654 |
msgid "Add Note"
|
2655 |
msgstr ""
|
2656 |
|
2790 |
msgid "Upload"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: templates/admin/themes-item.tpl.php:6
|
2794 |
+
msgid "Missing License"
|
2795 |
+
msgstr ""
|
2796 |
+
|
2797 |
+
#: templates/admin/themes-item.tpl.php:8
|
2798 |
msgid "Inactive"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
+
#: templates/admin/themes-item.tpl.php:18
|
2802 |
msgid "Updating theme..."
|
2803 |
msgstr ""
|
2804 |
|
2805 |
+
#: templates/admin/themes-item.tpl.php:18
|
2806 |
msgid "Theme updated."
|
2807 |
msgstr ""
|
2808 |
|
2809 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
2810 |
+
#: templates/admin/themes-item.tpl.php:23
|
2811 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2812 |
msgstr ""
|
2813 |
|
4034 |
msgid "All"
|
4035 |
msgstr ""
|
4036 |
|
|
|
|
|
|
|
|
|
|
|
4037 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4038 |
msgctxt "form-fields admin"
|
4039 |
msgid "Form fields updated."
|
4123 |
msgid "In Listing"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: includes/fields/class-fieldtypes-checkbox.php:98
|
4127 |
msgctxt "form-fields admin"
|
4128 |
msgid "Select All"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: includes/fields/class-fieldtypes-checkbox.php:116
|
4132 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:91
|
4133 |
msgctxt "form-fields admin"
|
4134 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: includes/fields/class-fieldtypes-checkbox.php:128
|
4138 |
msgctxt "form-fields admin"
|
4139 |
msgid "Include \"Select all\"?"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: includes/fields/class-fieldtypes-checkbox.php:132
|
4143 |
msgctxt "form-fields admin"
|
4144 |
msgid "Display \"Select all\" option among options above."
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: includes/fields/class-fieldtypes-checkbox.php:148
|
4148 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:118
|
4149 |
msgctxt "form-fields admin"
|
4150 |
msgid "Field list of options is required."
|
4151 |
msgstr ""
|
5867 |
msgid "← Return to CSV Export"
|
5868 |
msgstr ""
|
5869 |
|
5870 |
+
#: includes/admin/csv-import.php:178
|
5871 |
msgctxt "admin csv-import"
|
5872 |
msgid "Whatever"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: includes/admin/csv-import.php:372
|
5876 |
msgctxt "admin csv-import"
|
5877 |
msgid "Please upload or select a CSV file."
|
5878 |
msgstr ""
|
5879 |
|
5880 |
+
#: includes/admin/csv-import.php:397
|
5881 |
msgctxt "admin csv-import"
|
5882 |
msgid ""
|
5883 |
"An error was detected while validating the CSV file for import. Please fix "
|
5884 |
"this before proceeding."
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: includes/admin/csv-import.php:406
|
5888 |
msgctxt "admin csv-import"
|
5889 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
5890 |
msgstr ""
|
6087 |
msgid "Import Listings"
|
6088 |
msgstr ""
|
6089 |
|
6090 |
+
#: templates/admin/csv-import.tpl.php:341
|
6091 |
msgctxt "admin csv-import"
|
6092 |
msgid ""
|
6093 |
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
6094 |
"updating listings from external sources."
|
6095 |
msgstr ""
|
6096 |
|
6097 |
+
#: templates/admin/csv-import.tpl.php:362
|
6098 |
msgctxt "admin csv-import"
|
6099 |
msgid ""
|
6100 |
"Internal Sequence ID used to allow listing updates from external sources."
|
6101 |
msgstr ""
|
6102 |
|
6103 |
+
#: templates/admin/csv-import.tpl.php:369
|
6104 |
msgctxt "admin csv-import"
|
6105 |
msgid ""
|
6106 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
6107 |
"adding or updating listings from external sources."
|
6108 |
msgstr ""
|
6109 |
|
6110 |
+
#: includes/admin/csv-import.php:328
|
6111 |
msgctxt "csv import"
|
6112 |
msgid ""
|
6113 |
"A valid temporary directory with write permissions is required for CSV "
|
6140 |
msgid "Plan Details"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:51
|
6144 |
msgctxt "listing metabox"
|
6145 |
msgid "Change plan"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:105
|
6149 |
msgctxt "listing metabox"
|
6150 |
msgid "# of images"
|
6151 |
msgstr ""
|
6813 |
msgid "Send Message to listing owner"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: includes/controllers/pages/class-main.php:14
|
6817 |
msgctxt "templates"
|
6818 |
msgid ""
|
6819 |
"There are no categories assigned to the business directory yet. You need to "
|
6823 |
"categories to the business directory."
|
6824 |
msgstr ""
|
6825 |
|
6826 |
+
#: includes/controllers/pages/class-main.php:16
|
6827 |
msgctxt "templates"
|
6828 |
msgid "There are currently no listings in the directory."
|
6829 |
msgstr ""
|
6830 |
|
6831 |
+
#: includes/controllers/pages/class-main.php:28
|
6832 |
msgctxt "templates"
|
6833 |
msgid ""
|
6834 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
7245 |
msgid "The e-mail address you chose for your account is already in use."
|
7246 |
msgstr ""
|
7247 |
|
7248 |
+
#: includes/models/class-payment.php:286
|
7249 |
msgctxt "submit listing"
|
7250 |
msgid "Listing submitted by admin. Payment skipped."
|
7251 |
msgstr ""
|
7343 |
"work."
|
7344 |
msgstr ""
|
7345 |
|
7346 |
+
#: includes/fields/class-fieldtypes-checkbox.php:52
|
7347 |
msgctxt "checkbox form field"
|
7348 |
msgid "Select all"
|
7349 |
msgstr ""
|
7603 |
msgid "The server returned a 403 Forbidden error."
|
7604 |
msgstr ""
|
7605 |
|
7606 |
+
#: includes/licensing.php:846
|
7607 |
msgctxt "licensing"
|
7608 |
msgid "Could not activate license: %s."
|
7609 |
msgstr ""
|
7610 |
|
7611 |
+
#: includes/licensing.php:851
|
7612 |
msgctxt "licensing"
|
7613 |
msgid "License activated"
|
7614 |
msgstr ""
|
7615 |
|
7616 |
+
#: includes/licensing.php:883
|
7617 |
msgctxt "licensing"
|
7618 |
msgid "Could not deactivate license: %s."
|
7619 |
msgstr ""
|
7620 |
|
7621 |
+
#: includes/licensing.php:885
|
7622 |
msgctxt "licensing"
|
7623 |
msgid "License deactivated"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
#. translators: "<module-name>" version <version-number> is not...
|
7627 |
+
#: includes/licensing.php:1125
|
7628 |
msgctxt "deprecation"
|
7629 |
msgid ""
|
7630 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
7643 |
msgstr[0] ""
|
7644 |
msgstr[1] ""
|
7645 |
|
7646 |
+
#: includes/models/class-fee-plan.php:410
|
7647 |
msgctxt "fees-api"
|
7648 |
msgid "Plan label is required."
|
7649 |
msgstr ""
|
7650 |
|
7651 |
+
#: includes/models/class-fee-plan.php:416
|
7652 |
msgctxt "fees-api"
|
7653 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
7654 |
msgstr ""
|
7655 |
|
7656 |
+
#: includes/models/class-fee-plan.php:421
|
7657 |
msgctxt "fees-api"
|
7658 |
msgid ""
|
7659 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
7661 |
"<a>plan</a> appropriately."
|
7662 |
msgstr ""
|
7663 |
|
7664 |
+
#: includes/models/class-fee-plan.php:424
|
7665 |
msgctxt "fees-api"
|
7666 |
msgid ""
|
7667 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
7668 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
7669 |
msgstr ""
|
7670 |
|
7671 |
+
#: includes/models/class-payment.php:109
|
7672 |
msgctxt "payment"
|
7673 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
7674 |
msgstr ""
|
7675 |
|
7676 |
+
#: includes/models/class-payment.php:157
|
7677 |
msgctxt "payment"
|
7678 |
msgid "Initial payment (\"%s\")"
|
7679 |
msgstr ""
|
7680 |
|
7681 |
+
#: includes/models/class-payment.php:160
|
7682 |
msgctxt "payment"
|
7683 |
msgid "Renewal payment (\"%s\")"
|
7684 |
msgstr ""
|
7685 |
|
7686 |
+
#: includes/models/class-payment.php:403
|
7687 |
msgctxt "payment"
|
7688 |
msgid "Pending"
|
7689 |
msgstr ""
|
7690 |
|
7691 |
+
#: includes/models/class-payment.php:404
|
7692 |
msgctxt "payment"
|
7693 |
msgid "Failed"
|
7694 |
msgstr ""
|
7695 |
|
7696 |
+
#: includes/models/class-payment.php:405
|
7697 |
msgctxt "payment"
|
7698 |
msgid "Completed"
|
7699 |
msgstr ""
|
7700 |
|
7701 |
+
#: includes/models/class-payment.php:406
|
7702 |
msgctxt "payment"
|
7703 |
msgid "Canceled"
|
7704 |
msgstr ""
|
7705 |
|
7706 |
+
#: includes/models/class-payment.php:407
|
7707 |
msgctxt "payment"
|
7708 |
msgid "On Hold"
|
7709 |
msgstr ""
|
7710 |
|
7711 |
+
#: includes/models/class-payment.php:408
|
7712 |
msgctxt "payment"
|
7713 |
msgid "Refunded"
|
7714 |
msgstr ""
|
7715 |
|
7716 |
+
#: includes/models/class-payment.php:172
|
7717 |
msgctxt "payment summary"
|
7718 |
msgid "%s. Admin Posted."
|
7719 |
msgstr ""
|
7720 |
|
7721 |
+
#: includes/models/class-payment.php:174
|
7722 |
msgctxt "payment summary"
|
7723 |
msgid "%s. Imported Listing."
|
7724 |
msgstr ""
|
7743 |
msgid "File type \"%s\" is not allowed"
|
7744 |
msgstr ""
|
7745 |
|
7746 |
+
#: includes/utils.php:668
|
7747 |
msgctxt "utils"
|
7748 |
msgid ""
|
7749 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
7872 |
"we'll answer it within 24 hours most days."
|
7873 |
msgstr ""
|
7874 |
|
7875 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
7876 |
msgctxt "admin infometabox"
|
7877 |
msgid "Renewal url (copy & paste)"
|
7878 |
msgstr ""
|
7879 |
|
7880 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
7881 |
msgctxt "admin infometabox"
|
7882 |
msgid "Get renewal URL"
|
7883 |
msgstr ""
|
7884 |
|
7885 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:149
|
7886 |
msgctxt "admin infometabox"
|
7887 |
msgid "Send renewal e-mail"
|
7888 |
msgstr ""
|
languages/business-directory-plugin-fr_FR.mo
CHANGED
Binary file
|
languages/business-directory-plugin-fr_FR.po
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
# Copyright (C) 2013
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
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"
|
@@ -240,15 +240,14 @@ msgid "See Example"
|
|
240 |
msgstr ""
|
241 |
|
242 |
#: includes/admin/controllers/class-admin-csv.php:54
|
243 |
-
#: templates/admin/csv-import.tpl.php:291
|
244 |
msgid "Help"
|
245 |
msgstr "Aide"
|
246 |
|
247 |
#: includes/admin/controllers/class-admin-fees.php:46
|
248 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
249 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
250 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
251 |
-
#: templates/admin/payments-details.tpl.php:
|
252 |
#: templates/email/listing-payment-completed.tpl.php:21
|
253 |
#: templates/payment/payment_items.tpl.php:5
|
254 |
msgid "Amount"
|
@@ -318,7 +317,7 @@ msgid "Listing Reports"
|
|
318 |
msgstr "Une annonce expire"
|
319 |
|
320 |
#: includes/admin/controllers/class-admin-listings.php:268
|
321 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
322 |
msgid "Expires on"
|
323 |
msgstr "Expire le"
|
324 |
|
@@ -328,7 +327,7 @@ msgstr "Attributs"
|
|
328 |
|
329 |
#: includes/admin/controllers/class-admin-listings.php:339
|
330 |
#: includes/helpers/class-listing-display-helper.php:137
|
331 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
332 |
msgid "Featured"
|
333 |
msgstr "En vedette"
|
334 |
|
@@ -345,15 +344,15 @@ msgid "Delete Listing"
|
|
345 |
msgstr "Supprimer l'annonce"
|
346 |
|
347 |
#: includes/admin/controllers/class-admin-listings.php:733
|
348 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
349 |
msgid "Never"
|
350 |
msgstr "Jamais"
|
351 |
|
352 |
#: includes/admin/controllers/class-admin-listings.php:744
|
353 |
#: includes/admin/controllers/class-admin-listings.php:745
|
354 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
355 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
356 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
357 |
msgid "Yes"
|
358 |
msgstr "Oui"
|
359 |
|
@@ -361,8 +360,8 @@ msgstr "Oui"
|
|
361 |
#: includes/admin/controllers/class-admin-listings.php:745
|
362 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
363 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
364 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
365 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
366 |
msgid "No"
|
367 |
msgstr "Non"
|
368 |
|
@@ -428,24 +427,24 @@ msgid "Address 2"
|
|
428 |
msgstr "Complément d'adresse"
|
429 |
|
430 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
431 |
-
#: templates/admin/payments-details.tpl.php:
|
432 |
#: templates/checkout-billing-form.tpl.php:87
|
433 |
msgid "City"
|
434 |
msgstr "Ville"
|
435 |
|
436 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
437 |
-
#: templates/admin/payments-details.tpl.php:
|
438 |
msgid "State"
|
439 |
msgstr "Région"
|
440 |
|
441 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
442 |
-
#: templates/admin/payments-details.tpl.php:
|
443 |
#: templates/checkout-billing-form.tpl.php:102
|
444 |
msgid "Country"
|
445 |
msgstr "Pays"
|
446 |
|
447 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
448 |
-
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:
|
449 |
msgid "ZIP Code"
|
450 |
msgstr "Code postal"
|
451 |
|
@@ -512,7 +511,7 @@ msgstr "Déjà installé ?"
|
|
512 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
513 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
514 |
#: templates/admin/payments-note.tpl.php:14
|
515 |
-
#: templates/admin/themes-item.tpl.php:
|
516 |
#: templates/parts/listing-buttons.tpl.php:31
|
517 |
msgid "Delete"
|
518 |
msgstr "Effacer"
|
@@ -527,28 +526,28 @@ msgid "Themes"
|
|
527 |
msgstr "Thèmes"
|
528 |
|
529 |
#. translators: %s: Sample business name
|
530 |
-
#: includes/admin/csv-import.php:
|
531 |
msgid "Business %s"
|
532 |
msgstr "Professionnel %s"
|
533 |
|
534 |
-
#: includes/admin/csv-import.php:
|
535 |
-
msgid "Example
|
536 |
-
msgstr "
|
537 |
|
538 |
#: includes/admin/csv-import.php:185
|
539 |
-
msgid "
|
540 |
-
msgstr "
|
541 |
|
542 |
-
#: includes/admin/csv-import.php:
|
543 |
#: includes/helpers/class-app.php:244
|
544 |
msgid "You are not allowed to do that."
|
545 |
msgstr "Vous n'êtes pas autorisé·e à faire cela."
|
546 |
|
547 |
-
#: includes/admin/csv-import.php:
|
548 |
msgid "There was an error uploading the file:"
|
549 |
msgstr "Il y a eu une erreur lors du téléversement du fichier CSV :"
|
550 |
|
551 |
-
#: includes/admin/csv-import.php:
|
552 |
msgid "Please upload the correct file type."
|
553 |
msgstr "Veuillez uploader ou sélectionner un fichier CSV."
|
554 |
|
@@ -582,7 +581,7 @@ msgstr "Non installé"
|
|
582 |
|
583 |
#: includes/admin/helpers/class-modules-list.php:226
|
584 |
#: includes/controllers/class-smtp.php:317
|
585 |
-
#: templates/admin/themes-item.tpl.php:
|
586 |
msgid "Activate"
|
587 |
msgstr "Activer"
|
588 |
|
@@ -658,13 +657,13 @@ msgstr "Défaut"
|
|
658 |
|
659 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
660 |
#: includes/fields/class-fieldtypes-social.php:135
|
661 |
-
#: templates/admin/csv-import.tpl.php:
|
662 |
msgid "Type"
|
663 |
msgstr "Type"
|
664 |
|
665 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
666 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
667 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
668 |
msgid "Edit"
|
669 |
msgstr "Editer"
|
670 |
|
@@ -672,6 +671,11 @@ msgstr "Editer"
|
|
672 |
msgid "Are you sure you want to delete that field?"
|
673 |
msgstr "Etes-vous sûr de vouloir effacer ce champ?"
|
674 |
|
|
|
|
|
|
|
|
|
|
|
675 |
#: includes/admin/page-debug.php:40
|
676 |
msgid "Plugin Settings"
|
677 |
msgstr "Paramètres du plugin"
|
@@ -685,9 +689,9 @@ msgid "Plugin Info"
|
|
685 |
msgstr "Informations du plugin"
|
686 |
|
687 |
#: includes/admin/page-debug.php:159
|
688 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
689 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
690 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
691 |
msgid "OK"
|
692 |
msgstr "OK"
|
693 |
|
@@ -697,7 +701,7 @@ msgstr "Tables manquantes : %s"
|
|
697 |
|
698 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
699 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
700 |
-
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:
|
701 |
#: templates/listing-contactform.tpl.php:33
|
702 |
#: templates/listing-flagging-form.tpl.php:39
|
703 |
msgid "Email"
|
@@ -1315,9 +1319,9 @@ msgstr ""
|
|
1315 |
"faire mieux ?"
|
1316 |
|
1317 |
#: includes/class-assets.php:195
|
1318 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1319 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1320 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1321 |
#: templates/admin/settings-email.tpl.php:103
|
1322 |
#: templates/admin/settings-reset.tpl.php:8
|
1323 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
@@ -1740,39 +1744,39 @@ msgstr "Sélectionnez un média"
|
|
1740 |
msgid "Select List"
|
1741 |
msgstr "Sélectionnez une annonce"
|
1742 |
|
1743 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1744 |
msgid "-- Choose One --"
|
1745 |
msgstr "-- Choisissez --"
|
1746 |
|
1747 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1748 |
msgid "-- Choose Terms --"
|
1749 |
msgstr "-- Choisissez les conditions --"
|
1750 |
|
1751 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1752 |
msgid "— None —"
|
1753 |
msgstr "— Aucun —"
|
1754 |
|
1755 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1756 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1757 |
msgstr ""
|
1758 |
"Options du champ (pour sélectionner des annonces, des boutons radio et cases "
|
1759 |
"à cocher)."
|
1760 |
|
1761 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1762 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1763 |
#: templates/admin/fees-form.tpl.php:58
|
1764 |
msgid "required"
|
1765 |
msgstr "requis"
|
1766 |
|
1767 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1768 |
msgid "One option per line"
|
1769 |
msgstr "Une option par ligne"
|
1770 |
|
1771 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1772 |
msgid "Allow empty selection on search?"
|
1773 |
msgstr "Permettre la sélection vide sur la recherche?"
|
1774 |
|
1775 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1776 |
msgid "Field list of options is required."
|
1777 |
msgstr "La liste des options est requise."
|
1778 |
|
@@ -1851,7 +1855,7 @@ msgstr "Catégorie d'annonce"
|
|
1851 |
msgid "Short Description"
|
1852 |
msgstr "Brève description"
|
1853 |
|
1854 |
-
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:
|
1855 |
msgid "Description"
|
1856 |
msgstr "Description"
|
1857 |
|
@@ -1895,7 +1899,7 @@ msgstr "Validateur de nombre de mots"
|
|
1895 |
msgid "Telephone Number Validator"
|
1896 |
msgstr "Validateur de numéro de téléphone"
|
1897 |
|
1898 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
1899 |
msgid "Field"
|
1900 |
msgstr "Champ"
|
1901 |
|
@@ -2233,27 +2237,37 @@ msgstr ""
|
|
2233 |
"hébergeur et lui demander d'ajouter notre adresse IP<ip-address> à votre "
|
2234 |
"liste d'autorisation."
|
2235 |
|
2236 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
2237 |
msgid "Business Directory license key is missing."
|
2238 |
msgstr "Business Directory - Clé de licence manquante."
|
2239 |
|
2240 |
-
#: includes/licensing.php:
|
2241 |
msgid "Business Directory license key has expired"
|
2242 |
msgstr "Business Directory - Clé de licence expirée"
|
2243 |
|
2244 |
-
#: includes/licensing.php:
|
2245 |
msgid "Could not verify Business Directory license."
|
2246 |
msgstr "Impossible de vérifier la licence de l'annuaire professionnel."
|
2247 |
|
2248 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2249 |
msgid "Review license keys"
|
2250 |
msgstr "Renouveller la clé de licence"
|
2251 |
|
2252 |
-
#: includes/licensing.php:
|
2253 |
msgid "Missing data. Please reload this page and try again."
|
2254 |
msgstr "Données manquantes. Veuillez recharger cette page et réessayer."
|
2255 |
|
2256 |
-
#: includes/licensing.php:
|
2257 |
msgid "Please enter a license key."
|
2258 |
msgstr "S'il vous plaît entrer une clé de licence."
|
2259 |
|
@@ -2536,38 +2550,44 @@ msgstr ""
|
|
2536 |
msgid "Disable email notifications during import"
|
2537 |
msgstr "Désactiver les notifications par e-mail durant l'importation"
|
2538 |
|
|
|
|
|
|
|
|
|
|
|
2539 |
#: templates/admin/csv-import.tpl.php:296
|
2540 |
msgid ""
|
2541 |
-
"The following are the
|
2542 |
-
"
|
2543 |
-
"the
|
2544 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
2545 |
msgstr ""
|
2546 |
-
"Voici les noms d'en-tête pouvant être utilisées dans le fichier CSV. Champs "
|
2547 |
-
"à valeurs multiples (tels que catégorie ou tags) peuvent apparaître "
|
2548 |
-
"plusieurs fois dans le fichier. Cliquez sur <a href=\"%s\">\"Voir un exemple "
|
2549 |
-
"d'un fichier CSV d'importation \" </a> afin de voir à quoi un fichier "
|
2550 |
-
"d'importation devrait ressembler."
|
2551 |
|
2552 |
-
#: templates/admin/csv-import.tpl.php:
|
2553 |
msgid "Header name/label"
|
2554 |
msgstr "Titre/Etiquette de l'en-tête"
|
2555 |
|
2556 |
-
#: templates/admin/csv-import.tpl.php:
|
2557 |
msgid "Required?"
|
2558 |
msgstr "Requis ?"
|
2559 |
|
2560 |
-
#: templates/admin/csv-import.tpl.php:
|
2561 |
msgid "Multivalued?"
|
2562 |
msgstr "Valeurs multiples ?"
|
2563 |
|
2564 |
-
#: templates/admin/csv-import.tpl.php:
|
2565 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2566 |
msgstr ""
|
2567 |
"Liste séparée de la cotation des images par un point-virgule (à partir du "
|
2568 |
"fichier ZIP)"
|
2569 |
|
2570 |
-
#: templates/admin/csv-import.tpl.php:
|
2571 |
#, fuzzy
|
2572 |
msgid "Listing owner's username"
|
2573 |
msgstr "Nom d'utilisateur de l'auteur de l'annonce"
|
@@ -2775,12 +2795,12 @@ msgstr "Dernière date de renouvellement"
|
|
2775 |
msgid "Plan"
|
2776 |
msgstr "Abonnement"
|
2777 |
|
2778 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2779 |
#: templates/plan-selection-plan.tpl.php:41
|
2780 |
msgid "Recurring"
|
2781 |
msgstr "Récurrent"
|
2782 |
|
2783 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2784 |
#, fuzzy
|
2785 |
msgid "Renew listing"
|
2786 |
msgstr "Renouveler l'annonce"
|
@@ -2808,7 +2828,7 @@ msgid "Overview"
|
|
2808 |
msgstr "Aperçu"
|
2809 |
|
2810 |
#: templates/admin/payments-details.tpl.php:52
|
2811 |
-
#: templates/admin/payments-details.tpl.php:
|
2812 |
msgid "Payment ID"
|
2813 |
msgstr "ID de paiement"
|
2814 |
|
@@ -2829,59 +2849,63 @@ msgstr "Passerelle"
|
|
2829 |
msgid "(Not yet set)"
|
2830 |
msgstr "(Pas encore inscrit)"
|
2831 |
|
2832 |
-
#: templates/admin/payments-details.tpl.php:
|
|
|
|
|
|
|
|
|
2833 |
msgid "Delete Payment"
|
2834 |
msgstr "Supprimer le paiement"
|
2835 |
|
2836 |
-
#: templates/admin/payments-details.tpl.php:
|
2837 |
msgid "Save Payment"
|
2838 |
msgstr "Enregistrer le paiement"
|
2839 |
|
2840 |
-
#: templates/admin/payments-details.tpl.php:
|
2841 |
msgid "Details"
|
2842 |
msgstr "Détails"
|
2843 |
|
2844 |
-
#: templates/admin/payments-details.tpl.php:
|
2845 |
msgid "Item Type"
|
2846 |
msgstr "Type d'élément"
|
2847 |
|
2848 |
-
#: templates/admin/payments-details.tpl.php:
|
2849 |
#: templates/payment/payment_items.tpl.php:23
|
2850 |
msgid "Total"
|
2851 |
msgstr "Total"
|
2852 |
|
2853 |
-
#: templates/admin/payments-details.tpl.php:
|
2854 |
msgid "Customer Details"
|
2855 |
msgstr "Détails du client"
|
2856 |
|
2857 |
-
#: templates/admin/payments-details.tpl.php:
|
2858 |
#: templates/checkout-billing-form.tpl.php:17
|
2859 |
msgid "First Name"
|
2860 |
msgstr "Prénom"
|
2861 |
|
2862 |
-
#: templates/admin/payments-details.tpl.php:
|
2863 |
#: templates/checkout-billing-form.tpl.php:22
|
2864 |
msgid "Last Name"
|
2865 |
msgstr "Nom"
|
2866 |
|
2867 |
-
#: templates/admin/payments-details.tpl.php:
|
2868 |
msgid "Address Line 1"
|
2869 |
msgstr "Adresse ligne 1"
|
2870 |
|
2871 |
-
#: templates/admin/payments-details.tpl.php:
|
2872 |
#: templates/checkout-billing-form.tpl.php:81
|
2873 |
msgid "Address Line 2"
|
2874 |
msgstr "Adresse ligne 2"
|
2875 |
|
2876 |
-
#: templates/admin/payments-details.tpl.php:
|
2877 |
msgid "Notes & Log"
|
2878 |
msgstr "Notes et registre"
|
2879 |
|
2880 |
-
#: templates/admin/payments-details.tpl.php:
|
2881 |
msgid "No notes."
|
2882 |
msgstr "Pas de notes."
|
2883 |
|
2884 |
-
#: templates/admin/payments-details.tpl.php:
|
2885 |
msgid "Add Note"
|
2886 |
msgstr "Ajouter une note"
|
2887 |
|
@@ -3038,20 +3062,25 @@ msgstr "Archive du Thème Business Directory (Fichier zip)"
|
|
3038 |
msgid "Upload"
|
3039 |
msgstr "Téléverser"
|
3040 |
|
3041 |
-
#: templates/admin/themes-item.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
3042 |
msgid "Inactive"
|
3043 |
msgstr "Inactif"
|
3044 |
|
3045 |
-
#: templates/admin/themes-item.tpl.php:
|
3046 |
msgid "Updating theme..."
|
3047 |
msgstr "Mise à jour du thème..."
|
3048 |
|
3049 |
-
#: templates/admin/themes-item.tpl.php:
|
3050 |
msgid "Theme updated."
|
3051 |
msgstr "Thème mis à jour."
|
3052 |
|
3053 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3054 |
-
#: templates/admin/themes-item.tpl.php:
|
3055 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3056 |
msgstr "Nouvelle version disponible. %1$s Mettre à jour maintenant. %2$s"
|
3057 |
|
@@ -4381,11 +4410,6 @@ msgctxt "payments admin"
|
|
4381 |
msgid "All"
|
4382 |
msgstr "Tous"
|
4383 |
|
4384 |
-
#: includes/admin/helpers/tables/class-payments-table.php:134
|
4385 |
-
msgctxt "payments admin"
|
4386 |
-
msgid "View Payment History"
|
4387 |
-
msgstr "Voir l'historique des paiements"
|
4388 |
-
|
4389 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4390 |
msgctxt "form-fields admin"
|
4391 |
msgid "Form fields updated."
|
@@ -4482,31 +4506,31 @@ msgctxt "form-fields admin"
|
|
4482 |
msgid "In Listing"
|
4483 |
msgstr "Dans l'annonce"
|
4484 |
|
4485 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4486 |
msgctxt "form-fields admin"
|
4487 |
msgid "Select All"
|
4488 |
msgstr "Tout sélectionner"
|
4489 |
|
4490 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4491 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4492 |
msgctxt "form-fields admin"
|
4493 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4494 |
msgstr ""
|
4495 |
"Options de champ (pour les listes de sélection, les boutons radio et les "
|
4496 |
"cases à cocher)."
|
4497 |
|
4498 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4499 |
msgctxt "form-fields admin"
|
4500 |
msgid "Include \"Select all\"?"
|
4501 |
msgstr "Inclure l'option \"Tout Sélectionner\" ?"
|
4502 |
|
4503 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4504 |
msgctxt "form-fields admin"
|
4505 |
msgid "Display \"Select all\" option among options above."
|
4506 |
msgstr "Afficher l'option \"Tout Sélectionner\" parmi les options ci-dessus."
|
4507 |
|
4508 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4509 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4510 |
msgctxt "form-fields admin"
|
4511 |
msgid "Field list of options is required."
|
4512 |
msgstr "La liste des options est obligatoire."
|
@@ -6350,17 +6374,17 @@ msgctxt "admin csv-export"
|
|
6350 |
msgid "← Return to CSV Export"
|
6351 |
msgstr "←Retourner vers l'export CSV"
|
6352 |
|
6353 |
-
#: includes/admin/csv-import.php:
|
6354 |
msgctxt "admin csv-import"
|
6355 |
msgid "Whatever"
|
6356 |
msgstr "Peu importe"
|
6357 |
|
6358 |
-
#: includes/admin/csv-import.php:
|
6359 |
msgctxt "admin csv-import"
|
6360 |
msgid "Please upload or select a CSV file."
|
6361 |
msgstr "Veuillez uploader ou sélectionner un fichier CSV."
|
6362 |
|
6363 |
-
#: includes/admin/csv-import.php:
|
6364 |
msgctxt "admin csv-import"
|
6365 |
msgid ""
|
6366 |
"An error was detected while validating the CSV file for import. Please fix "
|
@@ -6369,7 +6393,7 @@ msgstr ""
|
|
6369 |
"Une erreur a été décelée lors de la validation du fichier CSV pour "
|
6370 |
"l'importation. Merci de résoudre ce problème avant de continuer."
|
6371 |
|
6372 |
-
#: includes/admin/csv-import.php:
|
6373 |
msgctxt "admin csv-import"
|
6374 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6375 |
msgstr ""
|
@@ -6586,7 +6610,7 @@ msgctxt "admin csv-import"
|
|
6586 |
msgid "Import Listings"
|
6587 |
msgstr "Importation des listes"
|
6588 |
|
6589 |
-
#: templates/admin/csv-import.tpl.php:
|
6590 |
msgctxt "admin csv-import"
|
6591 |
msgid ""
|
6592 |
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
@@ -6595,7 +6619,7 @@ msgstr ""
|
|
6595 |
"ID de frais (entier) associé à une annonce. Utilisez cette colonne lors de "
|
6596 |
"l'ajout ou la mise à jour annonces provenant de sources externes."
|
6597 |
|
6598 |
-
#: templates/admin/csv-import.tpl.php:
|
6599 |
msgctxt "admin csv-import"
|
6600 |
msgid ""
|
6601 |
"Internal Sequence ID used to allow listing updates from external sources."
|
@@ -6603,7 +6627,7 @@ msgstr ""
|
|
6603 |
"ID interne de séquence utilisé pour permettre l'annonce des mises à jour "
|
6604 |
"provenant de sources externes."
|
6605 |
|
6606 |
-
#: templates/admin/csv-import.tpl.php:
|
6607 |
msgctxt "admin csv-import"
|
6608 |
msgid ""
|
6609 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
@@ -6613,7 +6637,7 @@ msgstr ""
|
|
6613 |
"colonne lors de l'ajout ou la mise à jour annonces provenant de sources "
|
6614 |
"externes."
|
6615 |
|
6616 |
-
#: includes/admin/csv-import.php:
|
6617 |
msgctxt "csv import"
|
6618 |
msgid ""
|
6619 |
"A valid temporary directory with write permissions is required for CSV "
|
@@ -6651,12 +6675,12 @@ msgctxt "listing metabox"
|
|
6651 |
msgid "Plan Details"
|
6652 |
msgstr "Détails de l'abonnement"
|
6653 |
|
6654 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
6655 |
msgctxt "listing metabox"
|
6656 |
msgid "Change plan"
|
6657 |
msgstr "Changer d'abonnement"
|
6658 |
|
6659 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
6660 |
msgctxt "listing metabox"
|
6661 |
msgid "# of images"
|
6662 |
msgstr "# des images"
|
@@ -7381,7 +7405,7 @@ msgctxt "templates"
|
|
7381 |
msgid "Send Message to listing owner"
|
7382 |
msgstr "Envoyer un message au propriétaire de l'annonce"
|
7383 |
|
7384 |
-
#: includes/controllers/pages/class-main.php:
|
7385 |
msgctxt "templates"
|
7386 |
msgid ""
|
7387 |
"There are no categories assigned to the business directory yet. You need to "
|
@@ -7396,12 +7420,12 @@ msgstr ""
|
|
7396 |
"peuvent ajouter leur annonce pour le moment. Les annonces ne peuvent pas "
|
7397 |
"être ajoutées tant que vous n'avez pas attribué des catégories à l'annuaire."
|
7398 |
|
7399 |
-
#: includes/controllers/pages/class-main.php:
|
7400 |
msgctxt "templates"
|
7401 |
msgid "There are currently no listings in the directory."
|
7402 |
msgstr "Il n'y a actuellement aucune annonce dans l'annuaire."
|
7403 |
|
7404 |
-
#: includes/controllers/pages/class-main.php:
|
7405 |
msgctxt "templates"
|
7406 |
msgid ""
|
7407 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
@@ -7865,7 +7889,7 @@ msgid "The e-mail address you chose for your account is already in use."
|
|
7865 |
msgstr ""
|
7866 |
"L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
|
7867 |
|
7868 |
-
#: includes/models/class-payment.php:
|
7869 |
msgctxt "submit listing"
|
7870 |
msgid "Listing submitted by admin. Payment skipped."
|
7871 |
msgstr "Annonce soumis par un admin. Paiement sauté."
|
@@ -7969,7 +7993,7 @@ msgstr ""
|
|
7969 |
"Ce champ de formulaire ne peut pas être supprimé car il est nécessaire pour "
|
7970 |
"que le plugin fonctionne."
|
7971 |
|
7972 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
7973 |
msgctxt "checkbox form field"
|
7974 |
msgid "Select all"
|
7975 |
msgstr "Tout sélectionner"
|
@@ -8266,28 +8290,28 @@ msgctxt "licensing"
|
|
8266 |
msgid "The server returned a 403 Forbidden error."
|
8267 |
msgstr "Le serveur a renvoyé une erreur 403 Forbidden."
|
8268 |
|
8269 |
-
#: includes/licensing.php:
|
8270 |
msgctxt "licensing"
|
8271 |
msgid "Could not activate license: %s."
|
8272 |
msgstr "Impossible d'activer la licence: %s."
|
8273 |
|
8274 |
-
#: includes/licensing.php:
|
8275 |
msgctxt "licensing"
|
8276 |
msgid "License activated"
|
8277 |
msgstr "Licence activée"
|
8278 |
|
8279 |
-
#: includes/licensing.php:
|
8280 |
msgctxt "licensing"
|
8281 |
msgid "Could not deactivate license: %s."
|
8282 |
msgstr "Impossible de désactiver la licence: %s."
|
8283 |
|
8284 |
-
#: includes/licensing.php:
|
8285 |
msgctxt "licensing"
|
8286 |
msgid "License deactivated"
|
8287 |
msgstr "Licence désactivée"
|
8288 |
|
8289 |
#. translators: "<module-name>" version <version-number> is not...
|
8290 |
-
#: includes/licensing.php:
|
8291 |
msgctxt "deprecation"
|
8292 |
msgid ""
|
8293 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8308,19 +8332,19 @@ msgid_plural "%d images allowed."
|
|
8308 |
msgstr[0] "%d Image autorisée."
|
8309 |
msgstr[1] "%d Images autorisées."
|
8310 |
|
8311 |
-
#: includes/models/class-fee-plan.php:
|
8312 |
msgctxt "fees-api"
|
8313 |
msgid "Plan label is required."
|
8314 |
msgstr "Le titre du plan est requis."
|
8315 |
|
8316 |
-
#: includes/models/class-fee-plan.php:
|
8317 |
msgctxt "fees-api"
|
8318 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8319 |
msgstr ""
|
8320 |
"La durée des frais d'annonce doit être un nombre inférieur à 10 ans (3650 "
|
8321 |
"jours)."
|
8322 |
|
8323 |
-
#: includes/models/class-fee-plan.php:
|
8324 |
msgctxt "fees-api"
|
8325 |
msgid ""
|
8326 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
@@ -8331,7 +8355,7 @@ msgstr ""
|
|
8331 |
"durée à l'annonce à renouveler (ex: 30 jours). Pour éviter les erreurs avec "
|
8332 |
"les annonces, merci d'éditer <a>l'abonnement</a> de manière appropriée."
|
8333 |
|
8334 |
-
#: includes/models/class-fee-plan.php:
|
8335 |
msgctxt "fees-api"
|
8336 |
msgid ""
|
8337 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
@@ -8341,57 +8365,57 @@ msgstr ""
|
|
8341 |
"plan. Pour éviter des erreurs avec les annonces, merci d'éditer "
|
8342 |
"<a>l'abonnement</a> de manière appropriée."
|
8343 |
|
8344 |
-
#: includes/models/class-payment.php:
|
8345 |
msgctxt "payment"
|
8346 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8347 |
msgstr "L'état de paiement a changé de \"%1$s\" à \"%2$s\"."
|
8348 |
|
8349 |
-
#: includes/models/class-payment.php:
|
8350 |
msgctxt "payment"
|
8351 |
msgid "Initial payment (\"%s\")"
|
8352 |
msgstr "Paiement Initial"
|
8353 |
|
8354 |
-
#: includes/models/class-payment.php:
|
8355 |
msgctxt "payment"
|
8356 |
msgid "Renewal payment (\"%s\")"
|
8357 |
msgstr "Renouvellement Paiement (\"%s\")"
|
8358 |
|
8359 |
-
#: includes/models/class-payment.php:
|
8360 |
msgctxt "payment"
|
8361 |
msgid "Pending"
|
8362 |
msgstr "En attente"
|
8363 |
|
8364 |
-
#: includes/models/class-payment.php:
|
8365 |
msgctxt "payment"
|
8366 |
msgid "Failed"
|
8367 |
msgstr "Échoué"
|
8368 |
|
8369 |
-
#: includes/models/class-payment.php:
|
8370 |
msgctxt "payment"
|
8371 |
msgid "Completed"
|
8372 |
msgstr "Terminé"
|
8373 |
|
8374 |
-
#: includes/models/class-payment.php:
|
8375 |
msgctxt "payment"
|
8376 |
msgid "Canceled"
|
8377 |
msgstr "Annulé"
|
8378 |
|
8379 |
-
#: includes/models/class-payment.php:
|
8380 |
msgctxt "payment"
|
8381 |
msgid "On Hold"
|
8382 |
msgstr "En attente"
|
8383 |
|
8384 |
-
#: includes/models/class-payment.php:
|
8385 |
msgctxt "payment"
|
8386 |
msgid "Refunded"
|
8387 |
msgstr "Remboursé"
|
8388 |
|
8389 |
-
#: includes/models/class-payment.php:
|
8390 |
msgctxt "payment summary"
|
8391 |
msgid "%s. Admin Posted."
|
8392 |
msgstr "%s. Administrateur publié."
|
8393 |
|
8394 |
-
#: includes/models/class-payment.php:
|
8395 |
msgctxt "payment summary"
|
8396 |
msgid "%s. Imported Listing."
|
8397 |
msgstr "%s. annonces importées."
|
@@ -8416,7 +8440,7 @@ msgctxt "utils"
|
|
8416 |
msgid "File type \"%s\" is not allowed"
|
8417 |
msgstr "Le type de fichier \"%s\" n'est pas autorisé"
|
8418 |
|
8419 |
-
#: includes/utils.php:
|
8420 |
msgctxt "utils"
|
8421 |
msgid ""
|
8422 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8556,17 +8580,17 @@ msgstr ""
|
|
8556 |
"Si vous avez des questions, merci de poster un commentaire sur le <a>forum "
|
8557 |
"de support</a> et nous donnerons une réponse dans les 24h."
|
8558 |
|
8559 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8560 |
msgctxt "admin infometabox"
|
8561 |
msgid "Renewal url (copy & paste)"
|
8562 |
msgstr "URL de renouvellement (copier-coller)"
|
8563 |
|
8564 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8565 |
msgctxt "admin infometabox"
|
8566 |
msgid "Get renewal URL"
|
8567 |
msgstr "Obtenir l'URL de renouvellement de l'annonce"
|
8568 |
|
8569 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8570 |
msgctxt "admin infometabox"
|
8571 |
msgid "Send renewal e-mail"
|
8572 |
msgstr "Envoyer un e-mail de renouvellement à l'utilisateur"
|
@@ -8776,6 +8800,25 @@ msgctxt "send-access-keys"
|
|
8776 |
msgid "Continue"
|
8777 |
msgstr "Continuer"
|
8778 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8779 |
#~ msgctxt "uninstall"
|
8780 |
#~ msgid "Please choose an option."
|
8781 |
#~ msgstr "Sélectionnez une option."
|
1 |
+
# Copyright (C) 2013
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
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-11-03 17:40:34+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"
|
240 |
msgstr ""
|
241 |
|
242 |
#: includes/admin/controllers/class-admin-csv.php:54
|
|
|
243 |
msgid "Help"
|
244 |
msgstr "Aide"
|
245 |
|
246 |
#: includes/admin/controllers/class-admin-fees.php:46
|
247 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
248 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
249 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:81
|
250 |
+
#: templates/admin/payments-details.tpl.php:124
|
251 |
#: templates/email/listing-payment-completed.tpl.php:21
|
252 |
#: templates/payment/payment_items.tpl.php:5
|
253 |
msgid "Amount"
|
317 |
msgstr "Une annonce expire"
|
318 |
|
319 |
#: includes/admin/controllers/class-admin-listings.php:268
|
320 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:87
|
321 |
msgid "Expires on"
|
322 |
msgstr "Expire le"
|
323 |
|
327 |
|
328 |
#: includes/admin/controllers/class-admin-listings.php:339
|
329 |
#: includes/helpers/class-listing-display-helper.php:137
|
330 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:118
|
331 |
msgid "Featured"
|
332 |
msgstr "En vedette"
|
333 |
|
344 |
msgstr "Supprimer l'annonce"
|
345 |
|
346 |
#: includes/admin/controllers/class-admin-listings.php:733
|
347 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:96
|
348 |
msgid "Never"
|
349 |
msgstr "Jamais"
|
350 |
|
351 |
#: includes/admin/controllers/class-admin-listings.php:744
|
352 |
#: includes/admin/controllers/class-admin-listings.php:745
|
353 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
354 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
355 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
356 |
msgid "Yes"
|
357 |
msgstr "Oui"
|
358 |
|
360 |
#: includes/admin/controllers/class-admin-listings.php:745
|
361 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
362 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
363 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
364 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
365 |
msgid "No"
|
366 |
msgstr "Non"
|
367 |
|
427 |
msgstr "Complément d'adresse"
|
428 |
|
429 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
430 |
+
#: templates/admin/payments-details.tpl.php:175
|
431 |
#: templates/checkout-billing-form.tpl.php:87
|
432 |
msgid "City"
|
433 |
msgstr "Ville"
|
434 |
|
435 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
436 |
+
#: templates/admin/payments-details.tpl.php:171
|
437 |
msgid "State"
|
438 |
msgstr "Région"
|
439 |
|
440 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
441 |
+
#: templates/admin/payments-details.tpl.php:167
|
442 |
#: templates/checkout-billing-form.tpl.php:102
|
443 |
msgid "Country"
|
444 |
msgstr "Pays"
|
445 |
|
446 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
447 |
+
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:179
|
448 |
msgid "ZIP Code"
|
449 |
msgstr "Code postal"
|
450 |
|
511 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
512 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
513 |
#: templates/admin/payments-note.tpl.php:14
|
514 |
+
#: templates/admin/themes-item.tpl.php:51
|
515 |
#: templates/parts/listing-buttons.tpl.php:31
|
516 |
msgid "Delete"
|
517 |
msgstr "Effacer"
|
526 |
msgstr "Thèmes"
|
527 |
|
528 |
#. translators: %s: Sample business name
|
529 |
+
#: includes/admin/csv-import.php:136
|
530 |
msgid "Business %s"
|
531 |
msgstr "Professionnel %s"
|
532 |
|
533 |
+
#: includes/admin/csv-import.php:183
|
534 |
+
msgid "Download Example"
|
535 |
+
msgstr ""
|
536 |
|
537 |
#: includes/admin/csv-import.php:185
|
538 |
+
msgid "Example CSV Import File"
|
539 |
+
msgstr "Exemple de fichier d'import CSV"
|
540 |
|
541 |
+
#: includes/admin/csv-import.php:358 includes/helpers/class-app.php:232
|
542 |
#: includes/helpers/class-app.php:244
|
543 |
msgid "You are not allowed to do that."
|
544 |
msgstr "Vous n'êtes pas autorisé·e à faire cela."
|
545 |
|
546 |
+
#: includes/admin/csv-import.php:451
|
547 |
msgid "There was an error uploading the file:"
|
548 |
msgstr "Il y a eu une erreur lors du téléversement du fichier CSV :"
|
549 |
|
550 |
+
#: includes/admin/csv-import.php:456
|
551 |
msgid "Please upload the correct file type."
|
552 |
msgstr "Veuillez uploader ou sélectionner un fichier CSV."
|
553 |
|
581 |
|
582 |
#: includes/admin/helpers/class-modules-list.php:226
|
583 |
#: includes/controllers/class-smtp.php:317
|
584 |
+
#: templates/admin/themes-item.tpl.php:59
|
585 |
msgid "Activate"
|
586 |
msgstr "Activer"
|
587 |
|
657 |
|
658 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
659 |
#: includes/fields/class-fieldtypes-social.php:135
|
660 |
+
#: templates/admin/csv-import.tpl.php:314
|
661 |
msgid "Type"
|
662 |
msgstr "Type"
|
663 |
|
664 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
665 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:93
|
666 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:110
|
667 |
msgid "Edit"
|
668 |
msgstr "Editer"
|
669 |
|
671 |
msgid "Are you sure you want to delete that field?"
|
672 |
msgstr "Etes-vous sûr de vouloir effacer ce champ?"
|
673 |
|
674 |
+
#: includes/admin/helpers/tables/class-payments-table.php:143
|
675 |
+
#, fuzzy
|
676 |
+
msgid "View Payment"
|
677 |
+
msgstr "Voir le Paiement"
|
678 |
+
|
679 |
#: includes/admin/page-debug.php:40
|
680 |
msgid "Plugin Settings"
|
681 |
msgstr "Paramètres du plugin"
|
689 |
msgstr "Informations du plugin"
|
690 |
|
691 |
#: includes/admin/page-debug.php:159
|
692 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:76
|
693 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:99
|
694 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:114
|
695 |
msgid "OK"
|
696 |
msgstr "OK"
|
697 |
|
701 |
|
702 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
703 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
704 |
+
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:151
|
705 |
#: templates/listing-contactform.tpl.php:33
|
706 |
#: templates/listing-flagging-form.tpl.php:39
|
707 |
msgid "Email"
|
1319 |
"faire mieux ?"
|
1320 |
|
1321 |
#: includes/class-assets.php:195
|
1322 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:77
|
1323 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:100
|
1324 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:115
|
1325 |
#: templates/admin/settings-email.tpl.php:103
|
1326 |
#: templates/admin/settings-reset.tpl.php:8
|
1327 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
1744 |
msgid "Select List"
|
1745 |
msgstr "Sélectionnez une annonce"
|
1746 |
|
1747 |
+
#: includes/fields/class-fieldtypes-select.php:117
|
1748 |
msgid "-- Choose One --"
|
1749 |
msgstr "-- Choisissez --"
|
1750 |
|
1751 |
+
#: includes/fields/class-fieldtypes-select.php:144
|
1752 |
msgid "-- Choose Terms --"
|
1753 |
msgstr "-- Choisissez les conditions --"
|
1754 |
|
1755 |
+
#: includes/fields/class-fieldtypes-select.php:210
|
1756 |
msgid "— None —"
|
1757 |
msgstr "— Aucun —"
|
1758 |
|
1759 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1760 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1761 |
msgstr ""
|
1762 |
"Options du champ (pour sélectionner des annonces, des boutons radio et cases "
|
1763 |
"à cocher)."
|
1764 |
|
1765 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1766 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1767 |
#: templates/admin/fees-form.tpl.php:58
|
1768 |
msgid "required"
|
1769 |
msgstr "requis"
|
1770 |
|
1771 |
+
#: includes/fields/class-fieldtypes-select.php:269
|
1772 |
msgid "One option per line"
|
1773 |
msgstr "Une option par ligne"
|
1774 |
|
1775 |
+
#: includes/fields/class-fieldtypes-select.php:279
|
1776 |
msgid "Allow empty selection on search?"
|
1777 |
msgstr "Permettre la sélection vide sur la recherche?"
|
1778 |
|
1779 |
+
#: includes/fields/class-fieldtypes-select.php:297
|
1780 |
msgid "Field list of options is required."
|
1781 |
msgstr "La liste des options est requise."
|
1782 |
|
1855 |
msgid "Short Description"
|
1856 |
msgstr "Brève description"
|
1857 |
|
1858 |
+
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:123
|
1859 |
msgid "Description"
|
1860 |
msgstr "Description"
|
1861 |
|
1899 |
msgid "Telephone Number Validator"
|
1900 |
msgstr "Validateur de numéro de téléphone"
|
1901 |
|
1902 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:313
|
1903 |
msgid "Field"
|
1904 |
msgstr "Champ"
|
1905 |
|
2237 |
"hébergeur et lui demander d'ajouter notre adresse IP<ip-address> à votre "
|
2238 |
"liste d'autorisation."
|
2239 |
|
2240 |
+
#: includes/licensing.php:645
|
2241 |
+
msgid "Download Premium"
|
2242 |
+
msgstr ""
|
2243 |
+
|
2244 |
+
#: includes/licensing.php:695
|
2245 |
msgid "Business Directory license key is missing."
|
2246 |
msgstr "Business Directory - Clé de licence manquante."
|
2247 |
|
2248 |
+
#: includes/licensing.php:696
|
2249 |
msgid "Business Directory license key has expired"
|
2250 |
msgstr "Business Directory - Clé de licence expirée"
|
2251 |
|
2252 |
+
#: includes/licensing.php:697
|
2253 |
msgid "Could not verify Business Directory license."
|
2254 |
msgstr "Impossible de vérifier la licence de l'annuaire professionnel."
|
2255 |
|
2256 |
+
#: includes/licensing.php:698
|
2257 |
+
msgid ""
|
2258 |
+
"You have modules installed, but Business Directory Premium is missing. "
|
2259 |
+
"Install this plugin for extra features and easy license management."
|
2260 |
+
msgstr ""
|
2261 |
+
|
2262 |
+
#: includes/licensing.php:709
|
2263 |
msgid "Review license keys"
|
2264 |
msgstr "Renouveller la clé de licence"
|
2265 |
|
2266 |
+
#: includes/licensing.php:824
|
2267 |
msgid "Missing data. Please reload this page and try again."
|
2268 |
msgstr "Données manquantes. Veuillez recharger cette page et réessayer."
|
2269 |
|
2270 |
+
#: includes/licensing.php:829
|
2271 |
msgid "Please enter a license key."
|
2272 |
msgstr "S'il vous plaît entrer une clé de licence."
|
2273 |
|
2550 |
msgid "Disable email notifications during import"
|
2551 |
msgstr "Désactiver les notifications par e-mail durant l'importation"
|
2552 |
|
2553 |
+
#: templates/admin/csv-import.tpl.php:291
|
2554 |
+
#, fuzzy
|
2555 |
+
msgid "CSV File Formatting"
|
2556 |
+
msgstr "Paramètres des fichiers CSV"
|
2557 |
+
|
2558 |
#: templates/admin/csv-import.tpl.php:296
|
2559 |
msgid ""
|
2560 |
+
"The following are the header names to use in your CSV file for your current "
|
2561 |
+
"setup. The headers in your CSV file must EXACTLY match (case and "
|
2562 |
+
"punctuation) the names listed here. Fields such as categories or tags can "
|
2563 |
+
"appear multiple times in the file."
|
2564 |
+
msgstr ""
|
2565 |
+
|
2566 |
+
#: templates/admin/csv-import.tpl.php:303
|
2567 |
+
msgid ""
|
2568 |
+
"<a href=\"%s\">See an example CSV import file</a> to see how your file "
|
2569 |
+
"should be formatted."
|
2570 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
2571 |
|
2572 |
+
#: templates/admin/csv-import.tpl.php:312
|
2573 |
msgid "Header name/label"
|
2574 |
msgstr "Titre/Etiquette de l'en-tête"
|
2575 |
|
2576 |
+
#: templates/admin/csv-import.tpl.php:315
|
2577 |
msgid "Required?"
|
2578 |
msgstr "Requis ?"
|
2579 |
|
2580 |
+
#: templates/admin/csv-import.tpl.php:316
|
2581 |
msgid "Multivalued?"
|
2582 |
msgstr "Valeurs multiples ?"
|
2583 |
|
2584 |
+
#: templates/admin/csv-import.tpl.php:348
|
2585 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2586 |
msgstr ""
|
2587 |
"Liste séparée de la cotation des images par un point-virgule (à partir du "
|
2588 |
"fichier ZIP)"
|
2589 |
|
2590 |
+
#: templates/admin/csv-import.tpl.php:355
|
2591 |
#, fuzzy
|
2592 |
msgid "Listing owner's username"
|
2593 |
msgstr "Nom d'utilisateur de l'auteur de l'annonce"
|
2795 |
msgid "Plan"
|
2796 |
msgstr "Abonnement"
|
2797 |
|
2798 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:125
|
2799 |
#: templates/plan-selection-plan.tpl.php:41
|
2800 |
msgid "Recurring"
|
2801 |
msgstr "Récurrent"
|
2802 |
|
2803 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:155
|
2804 |
#, fuzzy
|
2805 |
msgid "Renew listing"
|
2806 |
msgstr "Renouveler l'annonce"
|
2828 |
msgstr "Aperçu"
|
2829 |
|
2830 |
#: templates/admin/payments-details.tpl.php:52
|
2831 |
+
#: templates/admin/payments-details.tpl.php:94
|
2832 |
msgid "Payment ID"
|
2833 |
msgstr "ID de paiement"
|
2834 |
|
2849 |
msgid "(Not yet set)"
|
2850 |
msgstr "(Pas encore inscrit)"
|
2851 |
|
2852 |
+
#: templates/admin/payments-details.tpl.php:89
|
2853 |
+
msgid "- Test Mode"
|
2854 |
+
msgstr ""
|
2855 |
+
|
2856 |
+
#: templates/admin/payments-details.tpl.php:105
|
2857 |
msgid "Delete Payment"
|
2858 |
msgstr "Supprimer le paiement"
|
2859 |
|
2860 |
+
#: templates/admin/payments-details.tpl.php:107
|
2861 |
msgid "Save Payment"
|
2862 |
msgstr "Enregistrer le paiement"
|
2863 |
|
2864 |
+
#: templates/admin/payments-details.tpl.php:118
|
2865 |
msgid "Details"
|
2866 |
msgstr "Détails"
|
2867 |
|
2868 |
+
#: templates/admin/payments-details.tpl.php:122
|
2869 |
msgid "Item Type"
|
2870 |
msgstr "Type d'élément"
|
2871 |
|
2872 |
+
#: templates/admin/payments-details.tpl.php:135
|
2873 |
#: templates/payment/payment_items.tpl.php:23
|
2874 |
msgid "Total"
|
2875 |
msgstr "Total"
|
2876 |
|
2877 |
+
#: templates/admin/payments-details.tpl.php:146
|
2878 |
msgid "Customer Details"
|
2879 |
msgstr "Détails du client"
|
2880 |
|
2881 |
+
#: templates/admin/payments-details.tpl.php:156
|
2882 |
#: templates/checkout-billing-form.tpl.php:17
|
2883 |
msgid "First Name"
|
2884 |
msgstr "Prénom"
|
2885 |
|
2886 |
+
#: templates/admin/payments-details.tpl.php:161
|
2887 |
#: templates/checkout-billing-form.tpl.php:22
|
2888 |
msgid "Last Name"
|
2889 |
msgstr "Nom"
|
2890 |
|
2891 |
+
#: templates/admin/payments-details.tpl.php:183
|
2892 |
msgid "Address Line 1"
|
2893 |
msgstr "Adresse ligne 1"
|
2894 |
|
2895 |
+
#: templates/admin/payments-details.tpl.php:187
|
2896 |
#: templates/checkout-billing-form.tpl.php:81
|
2897 |
msgid "Address Line 2"
|
2898 |
msgstr "Adresse ligne 2"
|
2899 |
|
2900 |
+
#: templates/admin/payments-details.tpl.php:196
|
2901 |
msgid "Notes & Log"
|
2902 |
msgstr "Notes et registre"
|
2903 |
|
2904 |
+
#: templates/admin/payments-details.tpl.php:201
|
2905 |
msgid "No notes."
|
2906 |
msgstr "Pas de notes."
|
2907 |
|
2908 |
+
#: templates/admin/payments-details.tpl.php:221
|
2909 |
msgid "Add Note"
|
2910 |
msgstr "Ajouter une note"
|
2911 |
|
3062 |
msgid "Upload"
|
3063 |
msgstr "Téléverser"
|
3064 |
|
3065 |
+
#: templates/admin/themes-item.tpl.php:6
|
3066 |
+
#, fuzzy
|
3067 |
+
msgid "Missing License"
|
3068 |
+
msgstr "Durée de l'annonce"
|
3069 |
+
|
3070 |
+
#: templates/admin/themes-item.tpl.php:8
|
3071 |
msgid "Inactive"
|
3072 |
msgstr "Inactif"
|
3073 |
|
3074 |
+
#: templates/admin/themes-item.tpl.php:18
|
3075 |
msgid "Updating theme..."
|
3076 |
msgstr "Mise à jour du thème..."
|
3077 |
|
3078 |
+
#: templates/admin/themes-item.tpl.php:18
|
3079 |
msgid "Theme updated."
|
3080 |
msgstr "Thème mis à jour."
|
3081 |
|
3082 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3083 |
+
#: templates/admin/themes-item.tpl.php:23
|
3084 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3085 |
msgstr "Nouvelle version disponible. %1$s Mettre à jour maintenant. %2$s"
|
3086 |
|
4410 |
msgid "All"
|
4411 |
msgstr "Tous"
|
4412 |
|
|
|
|
|
|
|
|
|
|
|
4413 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4414 |
msgctxt "form-fields admin"
|
4415 |
msgid "Form fields updated."
|
4506 |
msgid "In Listing"
|
4507 |
msgstr "Dans l'annonce"
|
4508 |
|
4509 |
+
#: includes/fields/class-fieldtypes-checkbox.php:98
|
4510 |
msgctxt "form-fields admin"
|
4511 |
msgid "Select All"
|
4512 |
msgstr "Tout sélectionner"
|
4513 |
|
4514 |
+
#: includes/fields/class-fieldtypes-checkbox.php:116
|
4515 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:91
|
4516 |
msgctxt "form-fields admin"
|
4517 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4518 |
msgstr ""
|
4519 |
"Options de champ (pour les listes de sélection, les boutons radio et les "
|
4520 |
"cases à cocher)."
|
4521 |
|
4522 |
+
#: includes/fields/class-fieldtypes-checkbox.php:128
|
4523 |
msgctxt "form-fields admin"
|
4524 |
msgid "Include \"Select all\"?"
|
4525 |
msgstr "Inclure l'option \"Tout Sélectionner\" ?"
|
4526 |
|
4527 |
+
#: includes/fields/class-fieldtypes-checkbox.php:132
|
4528 |
msgctxt "form-fields admin"
|
4529 |
msgid "Display \"Select all\" option among options above."
|
4530 |
msgstr "Afficher l'option \"Tout Sélectionner\" parmi les options ci-dessus."
|
4531 |
|
4532 |
+
#: includes/fields/class-fieldtypes-checkbox.php:148
|
4533 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:118
|
4534 |
msgctxt "form-fields admin"
|
4535 |
msgid "Field list of options is required."
|
4536 |
msgstr "La liste des options est obligatoire."
|
6374 |
msgid "← Return to CSV Export"
|
6375 |
msgstr "←Retourner vers l'export CSV"
|
6376 |
|
6377 |
+
#: includes/admin/csv-import.php:178
|
6378 |
msgctxt "admin csv-import"
|
6379 |
msgid "Whatever"
|
6380 |
msgstr "Peu importe"
|
6381 |
|
6382 |
+
#: includes/admin/csv-import.php:372
|
6383 |
msgctxt "admin csv-import"
|
6384 |
msgid "Please upload or select a CSV file."
|
6385 |
msgstr "Veuillez uploader ou sélectionner un fichier CSV."
|
6386 |
|
6387 |
+
#: includes/admin/csv-import.php:397
|
6388 |
msgctxt "admin csv-import"
|
6389 |
msgid ""
|
6390 |
"An error was detected while validating the CSV file for import. Please fix "
|
6393 |
"Une erreur a été décelée lors de la validation du fichier CSV pour "
|
6394 |
"l'importation. Merci de résoudre ce problème avant de continuer."
|
6395 |
|
6396 |
+
#: includes/admin/csv-import.php:406
|
6397 |
msgctxt "admin csv-import"
|
6398 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6399 |
msgstr ""
|
6610 |
msgid "Import Listings"
|
6611 |
msgstr "Importation des listes"
|
6612 |
|
6613 |
+
#: templates/admin/csv-import.tpl.php:341
|
6614 |
msgctxt "admin csv-import"
|
6615 |
msgid ""
|
6616 |
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
6619 |
"ID de frais (entier) associé à une annonce. Utilisez cette colonne lors de "
|
6620 |
"l'ajout ou la mise à jour annonces provenant de sources externes."
|
6621 |
|
6622 |
+
#: templates/admin/csv-import.tpl.php:362
|
6623 |
msgctxt "admin csv-import"
|
6624 |
msgid ""
|
6625 |
"Internal Sequence ID used to allow listing updates from external sources."
|
6627 |
"ID interne de séquence utilisé pour permettre l'annonce des mises à jour "
|
6628 |
"provenant de sources externes."
|
6629 |
|
6630 |
+
#: templates/admin/csv-import.tpl.php:369
|
6631 |
msgctxt "admin csv-import"
|
6632 |
msgid ""
|
6633 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
6637 |
"colonne lors de l'ajout ou la mise à jour annonces provenant de sources "
|
6638 |
"externes."
|
6639 |
|
6640 |
+
#: includes/admin/csv-import.php:328
|
6641 |
msgctxt "csv import"
|
6642 |
msgid ""
|
6643 |
"A valid temporary directory with write permissions is required for CSV "
|
6675 |
msgid "Plan Details"
|
6676 |
msgstr "Détails de l'abonnement"
|
6677 |
|
6678 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:51
|
6679 |
msgctxt "listing metabox"
|
6680 |
msgid "Change plan"
|
6681 |
msgstr "Changer d'abonnement"
|
6682 |
|
6683 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:105
|
6684 |
msgctxt "listing metabox"
|
6685 |
msgid "# of images"
|
6686 |
msgstr "# des images"
|
7405 |
msgid "Send Message to listing owner"
|
7406 |
msgstr "Envoyer un message au propriétaire de l'annonce"
|
7407 |
|
7408 |
+
#: includes/controllers/pages/class-main.php:14
|
7409 |
msgctxt "templates"
|
7410 |
msgid ""
|
7411 |
"There are no categories assigned to the business directory yet. You need to "
|
7420 |
"peuvent ajouter leur annonce pour le moment. Les annonces ne peuvent pas "
|
7421 |
"être ajoutées tant que vous n'avez pas attribué des catégories à l'annuaire."
|
7422 |
|
7423 |
+
#: includes/controllers/pages/class-main.php:16
|
7424 |
msgctxt "templates"
|
7425 |
msgid "There are currently no listings in the directory."
|
7426 |
msgstr "Il n'y a actuellement aucune annonce dans l'annuaire."
|
7427 |
|
7428 |
+
#: includes/controllers/pages/class-main.php:28
|
7429 |
msgctxt "templates"
|
7430 |
msgid ""
|
7431 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
7889 |
msgstr ""
|
7890 |
"L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
|
7891 |
|
7892 |
+
#: includes/models/class-payment.php:286
|
7893 |
msgctxt "submit listing"
|
7894 |
msgid "Listing submitted by admin. Payment skipped."
|
7895 |
msgstr "Annonce soumis par un admin. Paiement sauté."
|
7993 |
"Ce champ de formulaire ne peut pas être supprimé car il est nécessaire pour "
|
7994 |
"que le plugin fonctionne."
|
7995 |
|
7996 |
+
#: includes/fields/class-fieldtypes-checkbox.php:52
|
7997 |
msgctxt "checkbox form field"
|
7998 |
msgid "Select all"
|
7999 |
msgstr "Tout sélectionner"
|
8290 |
msgid "The server returned a 403 Forbidden error."
|
8291 |
msgstr "Le serveur a renvoyé une erreur 403 Forbidden."
|
8292 |
|
8293 |
+
#: includes/licensing.php:846
|
8294 |
msgctxt "licensing"
|
8295 |
msgid "Could not activate license: %s."
|
8296 |
msgstr "Impossible d'activer la licence: %s."
|
8297 |
|
8298 |
+
#: includes/licensing.php:851
|
8299 |
msgctxt "licensing"
|
8300 |
msgid "License activated"
|
8301 |
msgstr "Licence activée"
|
8302 |
|
8303 |
+
#: includes/licensing.php:883
|
8304 |
msgctxt "licensing"
|
8305 |
msgid "Could not deactivate license: %s."
|
8306 |
msgstr "Impossible de désactiver la licence: %s."
|
8307 |
|
8308 |
+
#: includes/licensing.php:885
|
8309 |
msgctxt "licensing"
|
8310 |
msgid "License deactivated"
|
8311 |
msgstr "Licence désactivée"
|
8312 |
|
8313 |
#. translators: "<module-name>" version <version-number> is not...
|
8314 |
+
#: includes/licensing.php:1125
|
8315 |
msgctxt "deprecation"
|
8316 |
msgid ""
|
8317 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8332 |
msgstr[0] "%d Image autorisée."
|
8333 |
msgstr[1] "%d Images autorisées."
|
8334 |
|
8335 |
+
#: includes/models/class-fee-plan.php:410
|
8336 |
msgctxt "fees-api"
|
8337 |
msgid "Plan label is required."
|
8338 |
msgstr "Le titre du plan est requis."
|
8339 |
|
8340 |
+
#: includes/models/class-fee-plan.php:416
|
8341 |
msgctxt "fees-api"
|
8342 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8343 |
msgstr ""
|
8344 |
"La durée des frais d'annonce doit être un nombre inférieur à 10 ans (3650 "
|
8345 |
"jours)."
|
8346 |
|
8347 |
+
#: includes/models/class-fee-plan.php:421
|
8348 |
msgctxt "fees-api"
|
8349 |
msgid ""
|
8350 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
8355 |
"durée à l'annonce à renouveler (ex: 30 jours). Pour éviter les erreurs avec "
|
8356 |
"les annonces, merci d'éditer <a>l'abonnement</a> de manière appropriée."
|
8357 |
|
8358 |
+
#: includes/models/class-fee-plan.php:424
|
8359 |
msgctxt "fees-api"
|
8360 |
msgid ""
|
8361 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8365 |
"plan. Pour éviter des erreurs avec les annonces, merci d'éditer "
|
8366 |
"<a>l'abonnement</a> de manière appropriée."
|
8367 |
|
8368 |
+
#: includes/models/class-payment.php:109
|
8369 |
msgctxt "payment"
|
8370 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8371 |
msgstr "L'état de paiement a changé de \"%1$s\" à \"%2$s\"."
|
8372 |
|
8373 |
+
#: includes/models/class-payment.php:157
|
8374 |
msgctxt "payment"
|
8375 |
msgid "Initial payment (\"%s\")"
|
8376 |
msgstr "Paiement Initial"
|
8377 |
|
8378 |
+
#: includes/models/class-payment.php:160
|
8379 |
msgctxt "payment"
|
8380 |
msgid "Renewal payment (\"%s\")"
|
8381 |
msgstr "Renouvellement Paiement (\"%s\")"
|
8382 |
|
8383 |
+
#: includes/models/class-payment.php:403
|
8384 |
msgctxt "payment"
|
8385 |
msgid "Pending"
|
8386 |
msgstr "En attente"
|
8387 |
|
8388 |
+
#: includes/models/class-payment.php:404
|
8389 |
msgctxt "payment"
|
8390 |
msgid "Failed"
|
8391 |
msgstr "Échoué"
|
8392 |
|
8393 |
+
#: includes/models/class-payment.php:405
|
8394 |
msgctxt "payment"
|
8395 |
msgid "Completed"
|
8396 |
msgstr "Terminé"
|
8397 |
|
8398 |
+
#: includes/models/class-payment.php:406
|
8399 |
msgctxt "payment"
|
8400 |
msgid "Canceled"
|
8401 |
msgstr "Annulé"
|
8402 |
|
8403 |
+
#: includes/models/class-payment.php:407
|
8404 |
msgctxt "payment"
|
8405 |
msgid "On Hold"
|
8406 |
msgstr "En attente"
|
8407 |
|
8408 |
+
#: includes/models/class-payment.php:408
|
8409 |
msgctxt "payment"
|
8410 |
msgid "Refunded"
|
8411 |
msgstr "Remboursé"
|
8412 |
|
8413 |
+
#: includes/models/class-payment.php:172
|
8414 |
msgctxt "payment summary"
|
8415 |
msgid "%s. Admin Posted."
|
8416 |
msgstr "%s. Administrateur publié."
|
8417 |
|
8418 |
+
#: includes/models/class-payment.php:174
|
8419 |
msgctxt "payment summary"
|
8420 |
msgid "%s. Imported Listing."
|
8421 |
msgstr "%s. annonces importées."
|
8440 |
msgid "File type \"%s\" is not allowed"
|
8441 |
msgstr "Le type de fichier \"%s\" n'est pas autorisé"
|
8442 |
|
8443 |
+
#: includes/utils.php:668
|
8444 |
msgctxt "utils"
|
8445 |
msgid ""
|
8446 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8580 |
"Si vous avez des questions, merci de poster un commentaire sur le <a>forum "
|
8581 |
"de support</a> et nous donnerons une réponse dans les 24h."
|
8582 |
|
8583 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
8584 |
msgctxt "admin infometabox"
|
8585 |
msgid "Renewal url (copy & paste)"
|
8586 |
msgstr "URL de renouvellement (copier-coller)"
|
8587 |
|
8588 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
8589 |
msgctxt "admin infometabox"
|
8590 |
msgid "Get renewal URL"
|
8591 |
msgstr "Obtenir l'URL de renouvellement de l'annonce"
|
8592 |
|
8593 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:149
|
8594 |
msgctxt "admin infometabox"
|
8595 |
msgid "Send renewal e-mail"
|
8596 |
msgstr "Envoyer un e-mail de renouvellement à l'utilisateur"
|
8800 |
msgid "Continue"
|
8801 |
msgstr "Continuer"
|
8802 |
|
8803 |
+
#~ msgid "Go Back"
|
8804 |
+
#~ msgstr "Revenir en arrière"
|
8805 |
+
|
8806 |
+
#~ msgid ""
|
8807 |
+
#~ "The following are the valid header names to be used in the CSV file. "
|
8808 |
+
#~ "Multivalued fields (such as category or tags) can appear multiple times "
|
8809 |
+
#~ "in the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> "
|
8810 |
+
#~ "to see how an import file should look like."
|
8811 |
+
#~ msgstr ""
|
8812 |
+
#~ "Voici les noms d'en-tête pouvant être utilisées dans le fichier CSV. "
|
8813 |
+
#~ "Champs à valeurs multiples (tels que catégorie ou tags) peuvent "
|
8814 |
+
#~ "apparaître plusieurs fois dans le fichier. Cliquez sur <a href=\"%s\">"
|
8815 |
+
#~ "\"Voir un exemple d'un fichier CSV d'importation \" </a> afin de voir à "
|
8816 |
+
#~ "quoi un fichier d'importation devrait ressembler."
|
8817 |
+
|
8818 |
+
#~ msgctxt "payments admin"
|
8819 |
+
#~ msgid "View Payment"
|
8820 |
+
#~ msgstr "Voir l'historique des paiements"
|
8821 |
+
|
8822 |
#~ msgctxt "uninstall"
|
8823 |
#~ msgid "Please choose an option."
|
8824 |
#~ msgstr "Sélectionnez une option."
|
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"
|
@@ -275,7 +275,6 @@ msgid "See Example"
|
|
275 |
msgstr ""
|
276 |
|
277 |
#: includes/admin/controllers/class-admin-csv.php:54
|
278 |
-
#: templates/admin/csv-import.tpl.php:291
|
279 |
#, fuzzy
|
280 |
msgid "Help"
|
281 |
msgstr "Aiuto"
|
@@ -283,8 +282,8 @@ msgstr "Aiuto"
|
|
283 |
#: includes/admin/controllers/class-admin-fees.php:46
|
284 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
285 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
286 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
287 |
-
#: templates/admin/payments-details.tpl.php:
|
288 |
#: templates/email/listing-payment-completed.tpl.php:21
|
289 |
#: templates/payment/payment_items.tpl.php:5
|
290 |
#, fuzzy
|
@@ -358,7 +357,7 @@ msgid "Listing Reports"
|
|
358 |
msgstr "Reports Annuncio"
|
359 |
|
360 |
#: includes/admin/controllers/class-admin-listings.php:268
|
361 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
362 |
msgid "Expires on"
|
363 |
msgstr "Scade il"
|
364 |
|
@@ -368,7 +367,7 @@ msgstr "Attributi"
|
|
368 |
|
369 |
#: includes/admin/controllers/class-admin-listings.php:339
|
370 |
#: includes/helpers/class-listing-display-helper.php:137
|
371 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
372 |
#, fuzzy
|
373 |
msgid "Featured"
|
374 |
msgstr "In evidenza"
|
@@ -386,7 +385,7 @@ msgid "Delete Listing"
|
|
386 |
msgstr "Elimina Annuncio"
|
387 |
|
388 |
#: includes/admin/controllers/class-admin-listings.php:733
|
389 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
390 |
#, fuzzy
|
391 |
msgid "Never"
|
392 |
msgstr "Mai"
|
@@ -394,8 +393,8 @@ msgstr "Mai"
|
|
394 |
#: includes/admin/controllers/class-admin-listings.php:744
|
395 |
#: includes/admin/controllers/class-admin-listings.php:745
|
396 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
397 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
398 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
399 |
#, fuzzy
|
400 |
msgid "Yes"
|
401 |
msgstr "Si"
|
@@ -404,8 +403,8 @@ msgstr "Si"
|
|
404 |
#: includes/admin/controllers/class-admin-listings.php:745
|
405 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
406 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
407 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
408 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
409 |
#, fuzzy
|
410 |
msgid "No"
|
411 |
msgstr "No"
|
@@ -484,27 +483,27 @@ msgid "Address 2"
|
|
484 |
msgstr "Indirizzo"
|
485 |
|
486 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
487 |
-
#: templates/admin/payments-details.tpl.php:
|
488 |
#: templates/checkout-billing-form.tpl.php:87
|
489 |
#, fuzzy
|
490 |
msgid "City"
|
491 |
msgstr "Città"
|
492 |
|
493 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
494 |
-
#: templates/admin/payments-details.tpl.php:
|
495 |
#, fuzzy
|
496 |
msgid "State"
|
497 |
msgstr "Stato"
|
498 |
|
499 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
500 |
-
#: templates/admin/payments-details.tpl.php:
|
501 |
#: templates/checkout-billing-form.tpl.php:102
|
502 |
#, fuzzy
|
503 |
msgid "Country"
|
504 |
msgstr "Nazione"
|
505 |
|
506 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
507 |
-
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:
|
508 |
msgid "ZIP Code"
|
509 |
msgstr "Codice Postale"
|
510 |
|
@@ -574,7 +573,7 @@ msgstr "Già installato."
|
|
574 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
575 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
576 |
#: templates/admin/payments-note.tpl.php:14
|
577 |
-
#: templates/admin/themes-item.tpl.php:
|
578 |
#: templates/parts/listing-buttons.tpl.php:31
|
579 |
#, fuzzy
|
580 |
msgid "Delete"
|
@@ -591,31 +590,31 @@ msgid "Themes"
|
|
591 |
msgstr "Temi"
|
592 |
|
593 |
#. translators: %s: Sample business name
|
594 |
-
#: includes/admin/csv-import.php:
|
595 |
#, fuzzy
|
596 |
msgid "Business %s"
|
597 |
msgstr "Affari %s"
|
598 |
|
599 |
-
#: includes/admin/csv-import.php:
|
|
|
|
|
|
|
|
|
600 |
#, fuzzy
|
601 |
msgid "Example CSV Import File"
|
602 |
msgstr "Esempio di file di importazione CSV"
|
603 |
|
604 |
-
#: includes/admin/csv-import.php:
|
605 |
-
msgid "Go Back"
|
606 |
-
msgstr ""
|
607 |
-
|
608 |
-
#: includes/admin/csv-import.php:333 includes/helpers/class-app.php:232
|
609 |
#: includes/helpers/class-app.php:244
|
610 |
msgid "You are not allowed to do that."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/admin/csv-import.php:
|
614 |
#, fuzzy
|
615 |
msgid "There was an error uploading the file:"
|
616 |
msgstr "C'è stato un errore nel caricare il file CSV."
|
617 |
|
618 |
-
#: includes/admin/csv-import.php:
|
619 |
#, fuzzy
|
620 |
msgid "Please upload the correct file type."
|
621 |
msgstr "Si prega di caricare o selezionare un file CSV."
|
@@ -655,7 +654,7 @@ msgstr "Non installato"
|
|
655 |
|
656 |
#: includes/admin/helpers/class-modules-list.php:226
|
657 |
#: includes/controllers/class-smtp.php:317
|
658 |
-
#: templates/admin/themes-item.tpl.php:
|
659 |
#, fuzzy
|
660 |
msgid "Activate"
|
661 |
msgstr "Attiva"
|
@@ -744,14 +743,14 @@ msgstr "Canone predefinito"
|
|
744 |
|
745 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
746 |
#: includes/fields/class-fieldtypes-social.php:135
|
747 |
-
#: templates/admin/csv-import.tpl.php:
|
748 |
#, fuzzy
|
749 |
msgid "Type"
|
750 |
msgstr "Tipo"
|
751 |
|
752 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
753 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
754 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
755 |
#, fuzzy
|
756 |
msgid "Edit"
|
757 |
msgstr "Modifica"
|
@@ -761,6 +760,11 @@ msgstr "Modifica"
|
|
761 |
msgid "Are you sure you want to delete that field?"
|
762 |
msgstr "Sei sicuro di voler cancellare il campo \"%s\"?"
|
763 |
|
|
|
|
|
|
|
|
|
|
|
764 |
#: includes/admin/page-debug.php:40
|
765 |
#, fuzzy
|
766 |
msgid "Plugin Settings"
|
@@ -776,9 +780,9 @@ msgid "Plugin Info"
|
|
776 |
msgstr ""
|
777 |
|
778 |
#: includes/admin/page-debug.php:159
|
779 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
780 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
781 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
782 |
#, fuzzy
|
783 |
msgid "OK"
|
784 |
msgstr "OK"
|
@@ -789,7 +793,7 @@ msgstr "Tabelle mancanti: %s"
|
|
789 |
|
790 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
791 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
792 |
-
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:
|
793 |
#: templates/listing-contactform.tpl.php:33
|
794 |
#: templates/listing-flagging-form.tpl.php:39
|
795 |
#, fuzzy
|
@@ -1448,9 +1452,9 @@ msgid ""
|
|
1448 |
msgstr ""
|
1449 |
|
1450 |
#: includes/class-assets.php:195
|
1451 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1452 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1453 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1454 |
#: templates/admin/settings-email.tpl.php:103
|
1455 |
#: templates/admin/settings-reset.tpl.php:8
|
1456 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
@@ -1894,45 +1898,45 @@ msgstr "Seleziona tutto"
|
|
1894 |
msgid "Select List"
|
1895 |
msgstr "Seleziona l'elenco"
|
1896 |
|
1897 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1898 |
#, fuzzy
|
1899 |
msgid "-- Choose One --"
|
1900 |
msgstr "-- Scegli un prodotto --"
|
1901 |
|
1902 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1903 |
#, fuzzy
|
1904 |
msgid "-- Choose Terms --"
|
1905 |
msgstr "-- Scegli i termini --"
|
1906 |
|
1907 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1908 |
#, fuzzy
|
1909 |
msgid "— None —"
|
1910 |
msgstr "- Nessuno -"
|
1911 |
|
1912 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1913 |
#, fuzzy
|
1914 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1915 |
msgstr ""
|
1916 |
"Opzioni di campo (per elenchi di selezione, pulsanti di selezione e caselle "
|
1917 |
"di controllo)."
|
1918 |
|
1919 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1920 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1921 |
#: templates/admin/fees-form.tpl.php:58
|
1922 |
#, fuzzy
|
1923 |
msgid "required"
|
1924 |
msgstr "richiesto"
|
1925 |
|
1926 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1927 |
msgid "One option per line"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1931 |
#, fuzzy
|
1932 |
msgid "Allow empty selection on search?"
|
1933 |
msgstr "Consenti la selezione vuota nella ricerca?"
|
1934 |
|
1935 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1936 |
#, fuzzy
|
1937 |
msgid "Field list of options is required."
|
1938 |
msgstr "È necessario disporre di un campo di opzioni."
|
@@ -2030,7 +2034,7 @@ msgstr "Categorie di annunci"
|
|
2030 |
msgid "Short Description"
|
2031 |
msgstr "Descrizione breve"
|
2032 |
|
2033 |
-
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:
|
2034 |
#, fuzzy
|
2035 |
msgid "Description"
|
2036 |
msgstr "Descrizione"
|
@@ -2084,7 +2088,7 @@ msgstr "Validatore del conteggio delle parole"
|
|
2084 |
msgid "Telephone Number Validator"
|
2085 |
msgstr "Validatore di numero intero"
|
2086 |
|
2087 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
2088 |
#, fuzzy
|
2089 |
msgid "Field"
|
2090 |
msgstr "Campo"
|
@@ -2437,31 +2441,41 @@ msgstr ""
|
|
2437 |
"support-link> e chiedi loro di aggiungere il tuo indirizzo IP <ip-"
|
2438 |
"address>alla whitelist."
|
2439 |
|
2440 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
2441 |
#, fuzzy
|
2442 |
msgid "Business Directory license key is missing."
|
2443 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2444 |
|
2445 |
-
#: includes/licensing.php:
|
2446 |
#, fuzzy
|
2447 |
msgid "Business Directory license key has expired"
|
2448 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2449 |
|
2450 |
-
#: includes/licensing.php:
|
2451 |
#, fuzzy
|
2452 |
msgid "Could not verify Business Directory license."
|
2453 |
msgstr "Aiuta a migliorare la directory aziendale"
|
2454 |
|
2455 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2456 |
#, fuzzy
|
2457 |
msgid "Review license keys"
|
2458 |
msgstr "Rivedere le mie chiavi di licenza"
|
2459 |
|
2460 |
-
#: includes/licensing.php:
|
2461 |
msgid "Missing data. Please reload this page and try again."
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: includes/licensing.php:
|
2465 |
#, fuzzy
|
2466 |
msgid "Please enter a license key."
|
2467 |
msgstr "Per favore inserisci una chiave di licenza."
|
@@ -2793,41 +2807,46 @@ msgstr ""
|
|
2793 |
msgid "Disable email notifications during import"
|
2794 |
msgstr "Disattiva le notifiche di posta elettronica durante l'importazione?"
|
2795 |
|
2796 |
-
#: templates/admin/csv-import.tpl.php:
|
2797 |
#, fuzzy
|
|
|
|
|
|
|
|
|
2798 |
msgid ""
|
2799 |
-
"The following are the
|
2800 |
-
"
|
2801 |
-
"the
|
2802 |
-
"
|
2803 |
msgstr ""
|
2804 |
-
"Di seguito sono riportati i nomi di intestazione validi da utilizzare nel "
|
2805 |
-
"file CSV. I campi multivalore (ad esempio categoria o tag) possono essere "
|
2806 |
-
"visualizzati più volte nel file. Clicva <a href=\"%s\">\"Vedi un esempio di "
|
2807 |
-
"file di importazione CSV\"</a> Per vedere come un file di importazione deve "
|
2808 |
-
"essere."
|
2809 |
|
2810 |
-
#: templates/admin/csv-import.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2811 |
#, fuzzy
|
2812 |
msgid "Header name/label"
|
2813 |
msgstr "Nome intestazione / etichetta"
|
2814 |
|
2815 |
-
#: templates/admin/csv-import.tpl.php:
|
2816 |
#, fuzzy
|
2817 |
msgid "Required?"
|
2818 |
msgstr "Necessario?"
|
2819 |
|
2820 |
-
#: templates/admin/csv-import.tpl.php:
|
2821 |
#, fuzzy
|
2822 |
msgid "Multivalued?"
|
2823 |
msgstr "Multivalore?"
|
2824 |
|
2825 |
-
#: templates/admin/csv-import.tpl.php:
|
2826 |
#, fuzzy
|
2827 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2828 |
msgstr "Elenco separato di immagini (dal file ZIP)"
|
2829 |
|
2830 |
-
#: templates/admin/csv-import.tpl.php:
|
2831 |
#, fuzzy
|
2832 |
msgid "Listing owner's username"
|
2833 |
msgstr "Elenco degli utenti"
|
@@ -3069,13 +3088,13 @@ msgstr "Ultima data di rinnovo"
|
|
3069 |
msgid "Plan"
|
3070 |
msgstr "Piano tariffario"
|
3071 |
|
3072 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
3073 |
#: templates/plan-selection-plan.tpl.php:41
|
3074 |
#, fuzzy
|
3075 |
msgid "Recurring"
|
3076 |
msgstr "Ricorrente"
|
3077 |
|
3078 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
3079 |
#, fuzzy
|
3080 |
msgid "Renew listing"
|
3081 |
msgstr "Rinnova l'elenco"
|
@@ -3107,7 +3126,7 @@ msgid "Overview"
|
|
3107 |
msgstr "Panoramica"
|
3108 |
|
3109 |
#: templates/admin/payments-details.tpl.php:52
|
3110 |
-
#: templates/admin/payments-details.tpl.php:
|
3111 |
#, fuzzy
|
3112 |
msgid "Payment ID"
|
3113 |
msgstr "ID Pagamento:"
|
@@ -3133,71 +3152,75 @@ msgstr "& Gateway:"
|
|
3133 |
msgid "(Not yet set)"
|
3134 |
msgstr "(Non ancora impostato)"
|
3135 |
|
3136 |
-
#: templates/admin/payments-details.tpl.php:
|
|
|
|
|
|
|
|
|
3137 |
#, fuzzy
|
3138 |
msgid "Delete Payment"
|
3139 |
msgstr "Elimina Pagamento"
|
3140 |
|
3141 |
-
#: templates/admin/payments-details.tpl.php:
|
3142 |
#, fuzzy
|
3143 |
msgid "Save Payment"
|
3144 |
msgstr "Salva Pagamento"
|
3145 |
|
3146 |
-
#: templates/admin/payments-details.tpl.php:
|
3147 |
#, fuzzy
|
3148 |
msgid "Details"
|
3149 |
msgstr "Dettagli"
|
3150 |
|
3151 |
-
#: templates/admin/payments-details.tpl.php:
|
3152 |
#, fuzzy
|
3153 |
msgid "Item Type"
|
3154 |
msgstr "Tipo di elemento"
|
3155 |
|
3156 |
-
#: templates/admin/payments-details.tpl.php:
|
3157 |
#: templates/payment/payment_items.tpl.php:23
|
3158 |
#, fuzzy
|
3159 |
msgid "Total"
|
3160 |
msgstr "Totale"
|
3161 |
|
3162 |
-
#: templates/admin/payments-details.tpl.php:
|
3163 |
#, fuzzy
|
3164 |
msgid "Customer Details"
|
3165 |
msgstr "Dettagli Cliente"
|
3166 |
|
3167 |
-
#: templates/admin/payments-details.tpl.php:
|
3168 |
#: templates/checkout-billing-form.tpl.php:17
|
3169 |
#, fuzzy
|
3170 |
msgid "First Name"
|
3171 |
msgstr "Nome"
|
3172 |
|
3173 |
-
#: templates/admin/payments-details.tpl.php:
|
3174 |
#: templates/checkout-billing-form.tpl.php:22
|
3175 |
#, fuzzy
|
3176 |
msgid "Last Name"
|
3177 |
msgstr "Cognome"
|
3178 |
|
3179 |
-
#: templates/admin/payments-details.tpl.php:
|
3180 |
#, fuzzy
|
3181 |
msgid "Address Line 1"
|
3182 |
msgstr "Indirizzo 1:"
|
3183 |
|
3184 |
-
#: templates/admin/payments-details.tpl.php:
|
3185 |
#: templates/checkout-billing-form.tpl.php:81
|
3186 |
#, fuzzy
|
3187 |
msgid "Address Line 2"
|
3188 |
msgstr "Indirizzo 2"
|
3189 |
|
3190 |
-
#: templates/admin/payments-details.tpl.php:
|
3191 |
#, fuzzy
|
3192 |
msgid "Notes & Log"
|
3193 |
msgstr "Note e registro"
|
3194 |
|
3195 |
-
#: templates/admin/payments-details.tpl.php:
|
3196 |
#, fuzzy
|
3197 |
msgid "No notes."
|
3198 |
msgstr "Niente note."
|
3199 |
|
3200 |
-
#: templates/admin/payments-details.tpl.php:
|
3201 |
#, fuzzy
|
3202 |
msgid "Add Note"
|
3203 |
msgstr "Aggiungi nota"
|
@@ -3376,23 +3399,28 @@ msgstr "Archivio temi BD (file ZIP)"
|
|
3376 |
msgid "Upload"
|
3377 |
msgstr "Modulo di caricamento file"
|
3378 |
|
3379 |
-
#: templates/admin/themes-item.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
3380 |
#, fuzzy
|
3381 |
msgid "Inactive"
|
3382 |
msgstr "Attivo"
|
3383 |
|
3384 |
-
#: templates/admin/themes-item.tpl.php:
|
3385 |
#, fuzzy
|
3386 |
msgid "Updating theme..."
|
3387 |
msgstr "Aggiornamento del tema....."
|
3388 |
|
3389 |
-
#: templates/admin/themes-item.tpl.php:
|
3390 |
#, fuzzy
|
3391 |
msgid "Theme updated."
|
3392 |
msgstr "Tema aggiornato."
|
3393 |
|
3394 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3395 |
-
#: templates/admin/themes-item.tpl.php:
|
3396 |
#, fuzzy
|
3397 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3398 |
msgstr "Nuova versione disponibile (<b>%s</b>).. <a>Aggiorna ora.</a>"
|
@@ -4808,11 +4836,6 @@ msgctxt "payments admin"
|
|
4808 |
msgid "All"
|
4809 |
msgstr "Tutti"
|
4810 |
|
4811 |
-
#: includes/admin/helpers/tables/class-payments-table.php:134
|
4812 |
-
msgctxt "payments admin"
|
4813 |
-
msgid "View Payment History"
|
4814 |
-
msgstr "Visualizza la cronologia dei pagamenti"
|
4815 |
-
|
4816 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4817 |
msgctxt "form-fields admin"
|
4818 |
msgid "Form fields updated."
|
@@ -4908,31 +4931,31 @@ msgctxt "form-fields admin"
|
|
4908 |
msgid "In Listing"
|
4909 |
msgstr "Annuncio"
|
4910 |
|
4911 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4912 |
msgctxt "form-fields admin"
|
4913 |
msgid "Select All"
|
4914 |
msgstr "Seleziona tutto"
|
4915 |
|
4916 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4917 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4918 |
msgctxt "form-fields admin"
|
4919 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4920 |
msgstr ""
|
4921 |
"Opzioni di campo (per elenchi di selezione, pulsanti di selezione e caselle "
|
4922 |
"di controllo)."
|
4923 |
|
4924 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4925 |
msgctxt "form-fields admin"
|
4926 |
msgid "Include \"Select all\"?"
|
4927 |
msgstr "Includere \"Seleziona tutto\"?"
|
4928 |
|
4929 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4930 |
msgctxt "form-fields admin"
|
4931 |
msgid "Display \"Select all\" option among options above."
|
4932 |
msgstr "Visualizza l'opzione \"Seleziona tutto\" tra le opzioni di cui sopra."
|
4933 |
|
4934 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4935 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4936 |
msgctxt "form-fields admin"
|
4937 |
msgid "Field list of options is required."
|
4938 |
msgstr "È necessario disporre di un campo di opzioni."
|
@@ -6823,17 +6846,17 @@ msgctxt "admin csv-export"
|
|
6823 |
msgid "← Return to CSV Export"
|
6824 |
msgstr "← Ritorna all'esportazione di CSV"
|
6825 |
|
6826 |
-
#: includes/admin/csv-import.php:
|
6827 |
msgctxt "admin csv-import"
|
6828 |
msgid "Whatever"
|
6829 |
msgstr "Sarà..."
|
6830 |
|
6831 |
-
#: includes/admin/csv-import.php:
|
6832 |
msgctxt "admin csv-import"
|
6833 |
msgid "Please upload or select a CSV file."
|
6834 |
msgstr "Si prega di caricare o selezionare un file CSV."
|
6835 |
|
6836 |
-
#: includes/admin/csv-import.php:
|
6837 |
msgctxt "admin csv-import"
|
6838 |
msgid ""
|
6839 |
"An error was detected while validating the CSV file for import. Please fix "
|
@@ -6842,7 +6865,7 @@ msgstr ""
|
|
6842 |
"È stato rilevato un errore durante la convalida del file CSV per "
|
6843 |
"l'importazione. Si prega di risolvere il problema prima di procedere."
|
6844 |
|
6845 |
-
#: includes/admin/csv-import.php:
|
6846 |
msgctxt "admin csv-import"
|
6847 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6848 |
msgstr ""
|
@@ -7062,7 +7085,7 @@ msgctxt "admin csv-import"
|
|
7062 |
msgid "Import Listings"
|
7063 |
msgstr "Importa Annunci"
|
7064 |
|
7065 |
-
#: templates/admin/csv-import.tpl.php:
|
7066 |
msgctxt "admin csv-import"
|
7067 |
msgid ""
|
7068 |
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
@@ -7071,7 +7094,7 @@ msgstr ""
|
|
7071 |
"Fee ID (numero intero) associato ad un elenco. Utilizzare questa colonna per "
|
7072 |
"aggiungere o aggiornare gli elenchi da fonti esterne."
|
7073 |
|
7074 |
-
#: templates/admin/csv-import.tpl.php:
|
7075 |
msgctxt "admin csv-import"
|
7076 |
msgid ""
|
7077 |
"Internal Sequence ID used to allow listing updates from external sources."
|
@@ -7079,7 +7102,7 @@ msgstr ""
|
|
7079 |
"ID di sequenza interna utilizzata per consentire l'elenco degli "
|
7080 |
"aggiornamenti da fonti esterne."
|
7081 |
|
7082 |
-
#: templates/admin/csv-import.tpl.php:
|
7083 |
msgctxt "admin csv-import"
|
7084 |
msgid ""
|
7085 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
@@ -7088,7 +7111,7 @@ msgstr ""
|
|
7088 |
"Data della scadenza dell'Annuncio formattata come YYYY-MM-DD. Utilizza "
|
7089 |
"questa colonna quando aggiungi o aggiorni gli elenchi da sorgenti esterne."
|
7090 |
|
7091 |
-
#: includes/admin/csv-import.php:
|
7092 |
#, fuzzy
|
7093 |
msgctxt "csv import"
|
7094 |
msgid ""
|
@@ -7127,12 +7150,12 @@ msgctxt "listing metabox"
|
|
7127 |
msgid "Plan Details"
|
7128 |
msgstr "Dettagli del piano"
|
7129 |
|
7130 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7131 |
msgctxt "listing metabox"
|
7132 |
msgid "Change plan"
|
7133 |
msgstr "Cambia piano"
|
7134 |
|
7135 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7136 |
msgctxt "listing metabox"
|
7137 |
msgid "# of images"
|
7138 |
msgstr "# di immagini"
|
@@ -7878,7 +7901,7 @@ msgctxt "templates"
|
|
7878 |
msgid "Send Message to listing owner"
|
7879 |
msgstr "Invia messaggio al proprietario dell'elenco"
|
7880 |
|
7881 |
-
#: includes/controllers/pages/class-main.php:
|
7882 |
msgctxt "templates"
|
7883 |
msgid ""
|
7884 |
"There are no categories assigned to the business directory yet. You need to "
|
@@ -7894,12 +7917,12 @@ msgstr ""
|
|
7894 |
"essere aggiunti fino a quando non si assegnano le categorie all'elenco "
|
7895 |
"aziendale."
|
7896 |
|
7897 |
-
#: includes/controllers/pages/class-main.php:
|
7898 |
msgctxt "templates"
|
7899 |
msgid "There are currently no listings in the directory."
|
7900 |
msgstr "Al momento non ci sono annunci nell'elenco."
|
7901 |
|
7902 |
-
#: includes/controllers/pages/class-main.php:
|
7903 |
msgctxt "templates"
|
7904 |
msgid ""
|
7905 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
@@ -8364,7 +8387,7 @@ msgctxt "submit listing"
|
|
8364 |
msgid "The e-mail address you chose for your account is already in use."
|
8365 |
msgstr "L'indirizzo e-mail scelto per il tuo account è già in uso."
|
8366 |
|
8367 |
-
#: includes/models/class-payment.php:
|
8368 |
msgctxt "submit listing"
|
8369 |
msgid "Listing submitted by admin. Payment skipped."
|
8370 |
msgstr "Annuncio presentato da admin. Pagamento saltato."
|
@@ -8466,7 +8489,7 @@ msgstr ""
|
|
8466 |
"Questo campo del form non può essere cancellato perché è necessario perché "
|
8467 |
"il plugin funzioni."
|
8468 |
|
8469 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
8470 |
msgctxt "checkbox form field"
|
8471 |
msgid "Select all"
|
8472 |
msgstr "Seleziona tutto"
|
@@ -8768,28 +8791,28 @@ msgctxt "licensing"
|
|
8768 |
msgid "The server returned a 403 Forbidden error."
|
8769 |
msgstr "Il server ha restituito un errore 403 Forbidden error."
|
8770 |
|
8771 |
-
#: includes/licensing.php:
|
8772 |
msgctxt "licensing"
|
8773 |
msgid "Could not activate license: %s."
|
8774 |
msgstr "Impossibile attivare la licenza: %s."
|
8775 |
|
8776 |
-
#: includes/licensing.php:
|
8777 |
msgctxt "licensing"
|
8778 |
msgid "License activated"
|
8779 |
msgstr "Licenza attivata"
|
8780 |
|
8781 |
-
#: includes/licensing.php:
|
8782 |
msgctxt "licensing"
|
8783 |
msgid "Could not deactivate license: %s."
|
8784 |
msgstr "Impossibile disattivare la licenza: %s."
|
8785 |
|
8786 |
-
#: includes/licensing.php:
|
8787 |
msgctxt "licensing"
|
8788 |
msgid "License deactivated"
|
8789 |
msgstr "Licenza disattivata"
|
8790 |
|
8791 |
#. translators: "<module-name>" version <version-number> is not...
|
8792 |
-
#: includes/licensing.php:
|
8793 |
msgctxt "deprecation"
|
8794 |
msgid ""
|
8795 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8810,19 +8833,19 @@ msgid_plural "%d images allowed."
|
|
8810 |
msgstr[0] "%d immagine consentita."
|
8811 |
msgstr[1] "%d immagini consentite."
|
8812 |
|
8813 |
-
#: includes/models/class-fee-plan.php:
|
8814 |
#, fuzzy
|
8815 |
msgctxt "fees-api"
|
8816 |
msgid "Plan label is required."
|
8817 |
msgstr "È richiesta l'etichetta del campo."
|
8818 |
|
8819 |
-
#: includes/models/class-fee-plan.php:
|
8820 |
msgctxt "fees-api"
|
8821 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8822 |
msgstr ""
|
8823 |
"Il canone per l'annuncio deve essere inferiore a 10 anni (3650 giorni)."
|
8824 |
|
8825 |
-
#: includes/models/class-fee-plan.php:
|
8826 |
#, fuzzy
|
8827 |
msgctxt "fees-api"
|
8828 |
msgid ""
|
@@ -8835,7 +8858,7 @@ msgstr ""
|
|
8835 |
"l'inserimento dell'annuncio, si prega di modificare il <a>piano tariffario</"
|
8836 |
"a> in modo appropriato."
|
8837 |
|
8838 |
-
#: includes/models/class-fee-plan.php:
|
8839 |
#, fuzzy
|
8840 |
msgctxt "fees-api"
|
8841 |
msgid ""
|
@@ -8847,58 +8870,58 @@ msgstr ""
|
|
8847 |
"l'inserimento nell'elenco, si prega di modificare il <a>piano tariffario</a> "
|
8848 |
"in modo appropriato."
|
8849 |
|
8850 |
-
#: includes/models/class-payment.php:
|
8851 |
#, fuzzy
|
8852 |
msgctxt "payment"
|
8853 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8854 |
msgstr "Lo stato del pagamento è cambiato da \"%s\" a \"%s\"."
|
8855 |
|
8856 |
-
#: includes/models/class-payment.php:
|
8857 |
msgctxt "payment"
|
8858 |
msgid "Initial payment (\"%s\")"
|
8859 |
msgstr "Pagamento iniziale (\"%s\")"
|
8860 |
|
8861 |
-
#: includes/models/class-payment.php:
|
8862 |
msgctxt "payment"
|
8863 |
msgid "Renewal payment (\"%s\")"
|
8864 |
msgstr "Pagamento del rinnovo (\"%s\")"
|
8865 |
|
8866 |
-
#: includes/models/class-payment.php:
|
8867 |
msgctxt "payment"
|
8868 |
msgid "Pending"
|
8869 |
msgstr "In attesa"
|
8870 |
|
8871 |
-
#: includes/models/class-payment.php:
|
8872 |
msgctxt "payment"
|
8873 |
msgid "Failed"
|
8874 |
msgstr "Fallito"
|
8875 |
|
8876 |
-
#: includes/models/class-payment.php:
|
8877 |
msgctxt "payment"
|
8878 |
msgid "Completed"
|
8879 |
msgstr "Completato"
|
8880 |
|
8881 |
-
#: includes/models/class-payment.php:
|
8882 |
msgctxt "payment"
|
8883 |
msgid "Canceled"
|
8884 |
msgstr "Annullato"
|
8885 |
|
8886 |
-
#: includes/models/class-payment.php:
|
8887 |
msgctxt "payment"
|
8888 |
msgid "On Hold"
|
8889 |
msgstr "In attesa"
|
8890 |
|
8891 |
-
#: includes/models/class-payment.php:
|
8892 |
msgctxt "payment"
|
8893 |
msgid "Refunded"
|
8894 |
msgstr "Rimborsato"
|
8895 |
|
8896 |
-
#: includes/models/class-payment.php:
|
8897 |
msgctxt "payment summary"
|
8898 |
msgid "%s. Admin Posted."
|
8899 |
msgstr "%s. Pubblicato dall'Amministratore"
|
8900 |
|
8901 |
-
#: includes/models/class-payment.php:
|
8902 |
msgctxt "payment summary"
|
8903 |
msgid "%s. Imported Listing."
|
8904 |
msgstr "%s. Annuncio importato"
|
@@ -8923,7 +8946,7 @@ msgctxt "utils"
|
|
8923 |
msgid "File type \"%s\" is not allowed"
|
8924 |
msgstr "Il tipo di file \"%s\" non è consentito"
|
8925 |
|
8926 |
-
#: includes/utils.php:
|
8927 |
msgctxt "utils"
|
8928 |
msgid ""
|
8929 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -9057,17 +9080,17 @@ msgid ""
|
|
9057 |
"we'll answer it within 24 hours most days."
|
9058 |
msgstr ""
|
9059 |
|
9060 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
9061 |
msgctxt "admin infometabox"
|
9062 |
msgid "Renewal url (copy & paste)"
|
9063 |
msgstr "Url di rinnovo (copia e incolla)"
|
9064 |
|
9065 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
9066 |
msgctxt "admin infometabox"
|
9067 |
msgid "Get renewal URL"
|
9068 |
msgstr "Ottenere l'URL di rinnovo"
|
9069 |
|
9070 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
9071 |
msgctxt "admin infometabox"
|
9072 |
msgid "Send renewal e-mail"
|
9073 |
msgstr "Inviare l'e-mail di rinnovo"
|
@@ -9276,6 +9299,23 @@ msgctxt "send-access-keys"
|
|
9276 |
msgid "Continue"
|
9277 |
msgstr "Continua"
|
9278 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9279 |
#~ msgctxt "uninstall"
|
9280 |
#~ msgid "Please choose an option."
|
9281 |
#~ msgstr "Selezionare un’opzione."
|
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-11-03 17:40:34+00:00\n"
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
275 |
msgstr ""
|
276 |
|
277 |
#: includes/admin/controllers/class-admin-csv.php:54
|
|
|
278 |
#, fuzzy
|
279 |
msgid "Help"
|
280 |
msgstr "Aiuto"
|
282 |
#: includes/admin/controllers/class-admin-fees.php:46
|
283 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
284 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
285 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:81
|
286 |
+
#: templates/admin/payments-details.tpl.php:124
|
287 |
#: templates/email/listing-payment-completed.tpl.php:21
|
288 |
#: templates/payment/payment_items.tpl.php:5
|
289 |
#, fuzzy
|
357 |
msgstr "Reports Annuncio"
|
358 |
|
359 |
#: includes/admin/controllers/class-admin-listings.php:268
|
360 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:87
|
361 |
msgid "Expires on"
|
362 |
msgstr "Scade il"
|
363 |
|
367 |
|
368 |
#: includes/admin/controllers/class-admin-listings.php:339
|
369 |
#: includes/helpers/class-listing-display-helper.php:137
|
370 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:118
|
371 |
#, fuzzy
|
372 |
msgid "Featured"
|
373 |
msgstr "In evidenza"
|
385 |
msgstr "Elimina Annuncio"
|
386 |
|
387 |
#: includes/admin/controllers/class-admin-listings.php:733
|
388 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:96
|
389 |
#, fuzzy
|
390 |
msgid "Never"
|
391 |
msgstr "Mai"
|
393 |
#: includes/admin/controllers/class-admin-listings.php:744
|
394 |
#: includes/admin/controllers/class-admin-listings.php:745
|
395 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
396 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
397 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
398 |
#, fuzzy
|
399 |
msgid "Yes"
|
400 |
msgstr "Si"
|
403 |
#: includes/admin/controllers/class-admin-listings.php:745
|
404 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
405 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
406 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
407 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
408 |
#, fuzzy
|
409 |
msgid "No"
|
410 |
msgstr "No"
|
483 |
msgstr "Indirizzo"
|
484 |
|
485 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
486 |
+
#: templates/admin/payments-details.tpl.php:175
|
487 |
#: templates/checkout-billing-form.tpl.php:87
|
488 |
#, fuzzy
|
489 |
msgid "City"
|
490 |
msgstr "Città"
|
491 |
|
492 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
493 |
+
#: templates/admin/payments-details.tpl.php:171
|
494 |
#, fuzzy
|
495 |
msgid "State"
|
496 |
msgstr "Stato"
|
497 |
|
498 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
499 |
+
#: templates/admin/payments-details.tpl.php:167
|
500 |
#: templates/checkout-billing-form.tpl.php:102
|
501 |
#, fuzzy
|
502 |
msgid "Country"
|
503 |
msgstr "Nazione"
|
504 |
|
505 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
506 |
+
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:179
|
507 |
msgid "ZIP Code"
|
508 |
msgstr "Codice Postale"
|
509 |
|
573 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
574 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
575 |
#: templates/admin/payments-note.tpl.php:14
|
576 |
+
#: templates/admin/themes-item.tpl.php:51
|
577 |
#: templates/parts/listing-buttons.tpl.php:31
|
578 |
#, fuzzy
|
579 |
msgid "Delete"
|
590 |
msgstr "Temi"
|
591 |
|
592 |
#. translators: %s: Sample business name
|
593 |
+
#: includes/admin/csv-import.php:136
|
594 |
#, fuzzy
|
595 |
msgid "Business %s"
|
596 |
msgstr "Affari %s"
|
597 |
|
598 |
+
#: includes/admin/csv-import.php:183
|
599 |
+
msgid "Download Example"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: includes/admin/csv-import.php:185
|
603 |
#, fuzzy
|
604 |
msgid "Example CSV Import File"
|
605 |
msgstr "Esempio di file di importazione CSV"
|
606 |
|
607 |
+
#: includes/admin/csv-import.php:358 includes/helpers/class-app.php:232
|
|
|
|
|
|
|
|
|
608 |
#: includes/helpers/class-app.php:244
|
609 |
msgid "You are not allowed to do that."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/admin/csv-import.php:451
|
613 |
#, fuzzy
|
614 |
msgid "There was an error uploading the file:"
|
615 |
msgstr "C'è stato un errore nel caricare il file CSV."
|
616 |
|
617 |
+
#: includes/admin/csv-import.php:456
|
618 |
#, fuzzy
|
619 |
msgid "Please upload the correct file type."
|
620 |
msgstr "Si prega di caricare o selezionare un file CSV."
|
654 |
|
655 |
#: includes/admin/helpers/class-modules-list.php:226
|
656 |
#: includes/controllers/class-smtp.php:317
|
657 |
+
#: templates/admin/themes-item.tpl.php:59
|
658 |
#, fuzzy
|
659 |
msgid "Activate"
|
660 |
msgstr "Attiva"
|
743 |
|
744 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
745 |
#: includes/fields/class-fieldtypes-social.php:135
|
746 |
+
#: templates/admin/csv-import.tpl.php:314
|
747 |
#, fuzzy
|
748 |
msgid "Type"
|
749 |
msgstr "Tipo"
|
750 |
|
751 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
752 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:93
|
753 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:110
|
754 |
#, fuzzy
|
755 |
msgid "Edit"
|
756 |
msgstr "Modifica"
|
760 |
msgid "Are you sure you want to delete that field?"
|
761 |
msgstr "Sei sicuro di voler cancellare il campo \"%s\"?"
|
762 |
|
763 |
+
#: includes/admin/helpers/tables/class-payments-table.php:143
|
764 |
+
#, fuzzy
|
765 |
+
msgid "View Payment"
|
766 |
+
msgstr "Visualizza pagamento"
|
767 |
+
|
768 |
#: includes/admin/page-debug.php:40
|
769 |
#, fuzzy
|
770 |
msgid "Plugin Settings"
|
780 |
msgstr ""
|
781 |
|
782 |
#: includes/admin/page-debug.php:159
|
783 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:76
|
784 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:99
|
785 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:114
|
786 |
#, fuzzy
|
787 |
msgid "OK"
|
788 |
msgstr "OK"
|
793 |
|
794 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
795 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
796 |
+
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:151
|
797 |
#: templates/listing-contactform.tpl.php:33
|
798 |
#: templates/listing-flagging-form.tpl.php:39
|
799 |
#, fuzzy
|
1452 |
msgstr ""
|
1453 |
|
1454 |
#: includes/class-assets.php:195
|
1455 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:77
|
1456 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:100
|
1457 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:115
|
1458 |
#: templates/admin/settings-email.tpl.php:103
|
1459 |
#: templates/admin/settings-reset.tpl.php:8
|
1460 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
1898 |
msgid "Select List"
|
1899 |
msgstr "Seleziona l'elenco"
|
1900 |
|
1901 |
+
#: includes/fields/class-fieldtypes-select.php:117
|
1902 |
#, fuzzy
|
1903 |
msgid "-- Choose One --"
|
1904 |
msgstr "-- Scegli un prodotto --"
|
1905 |
|
1906 |
+
#: includes/fields/class-fieldtypes-select.php:144
|
1907 |
#, fuzzy
|
1908 |
msgid "-- Choose Terms --"
|
1909 |
msgstr "-- Scegli i termini --"
|
1910 |
|
1911 |
+
#: includes/fields/class-fieldtypes-select.php:210
|
1912 |
#, fuzzy
|
1913 |
msgid "— None —"
|
1914 |
msgstr "- Nessuno -"
|
1915 |
|
1916 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1917 |
#, fuzzy
|
1918 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1919 |
msgstr ""
|
1920 |
"Opzioni di campo (per elenchi di selezione, pulsanti di selezione e caselle "
|
1921 |
"di controllo)."
|
1922 |
|
1923 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1924 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1925 |
#: templates/admin/fees-form.tpl.php:58
|
1926 |
#, fuzzy
|
1927 |
msgid "required"
|
1928 |
msgstr "richiesto"
|
1929 |
|
1930 |
+
#: includes/fields/class-fieldtypes-select.php:269
|
1931 |
msgid "One option per line"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: includes/fields/class-fieldtypes-select.php:279
|
1935 |
#, fuzzy
|
1936 |
msgid "Allow empty selection on search?"
|
1937 |
msgstr "Consenti la selezione vuota nella ricerca?"
|
1938 |
|
1939 |
+
#: includes/fields/class-fieldtypes-select.php:297
|
1940 |
#, fuzzy
|
1941 |
msgid "Field list of options is required."
|
1942 |
msgstr "È necessario disporre di un campo di opzioni."
|
2034 |
msgid "Short Description"
|
2035 |
msgstr "Descrizione breve"
|
2036 |
|
2037 |
+
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:123
|
2038 |
#, fuzzy
|
2039 |
msgid "Description"
|
2040 |
msgstr "Descrizione"
|
2088 |
msgid "Telephone Number Validator"
|
2089 |
msgstr "Validatore di numero intero"
|
2090 |
|
2091 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:313
|
2092 |
#, fuzzy
|
2093 |
msgid "Field"
|
2094 |
msgstr "Campo"
|
2441 |
"support-link> e chiedi loro di aggiungere il tuo indirizzo IP <ip-"
|
2442 |
"address>alla whitelist."
|
2443 |
|
2444 |
+
#: includes/licensing.php:645
|
2445 |
+
msgid "Download Premium"
|
2446 |
+
msgstr ""
|
2447 |
+
|
2448 |
+
#: includes/licensing.php:695
|
2449 |
#, fuzzy
|
2450 |
msgid "Business Directory license key is missing."
|
2451 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2452 |
|
2453 |
+
#: includes/licensing.php:696
|
2454 |
#, fuzzy
|
2455 |
msgid "Business Directory license key has expired"
|
2456 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2457 |
|
2458 |
+
#: includes/licensing.php:697
|
2459 |
#, fuzzy
|
2460 |
msgid "Could not verify Business Directory license."
|
2461 |
msgstr "Aiuta a migliorare la directory aziendale"
|
2462 |
|
2463 |
+
#: includes/licensing.php:698
|
2464 |
+
msgid ""
|
2465 |
+
"You have modules installed, but Business Directory Premium is missing. "
|
2466 |
+
"Install this plugin for extra features and easy license management."
|
2467 |
+
msgstr ""
|
2468 |
+
|
2469 |
+
#: includes/licensing.php:709
|
2470 |
#, fuzzy
|
2471 |
msgid "Review license keys"
|
2472 |
msgstr "Rivedere le mie chiavi di licenza"
|
2473 |
|
2474 |
+
#: includes/licensing.php:824
|
2475 |
msgid "Missing data. Please reload this page and try again."
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: includes/licensing.php:829
|
2479 |
#, fuzzy
|
2480 |
msgid "Please enter a license key."
|
2481 |
msgstr "Per favore inserisci una chiave di licenza."
|
2807 |
msgid "Disable email notifications during import"
|
2808 |
msgstr "Disattiva le notifiche di posta elettronica durante l'importazione?"
|
2809 |
|
2810 |
+
#: templates/admin/csv-import.tpl.php:291
|
2811 |
#, fuzzy
|
2812 |
+
msgid "CSV File Formatting"
|
2813 |
+
msgstr "Impostazioni file CSV"
|
2814 |
+
|
2815 |
+
#: templates/admin/csv-import.tpl.php:296
|
2816 |
msgid ""
|
2817 |
+
"The following are the header names to use in your CSV file for your current "
|
2818 |
+
"setup. The headers in your CSV file must EXACTLY match (case and "
|
2819 |
+
"punctuation) the names listed here. Fields such as categories or tags can "
|
2820 |
+
"appear multiple times in the file."
|
2821 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
2822 |
|
2823 |
+
#: templates/admin/csv-import.tpl.php:303
|
2824 |
+
msgid ""
|
2825 |
+
"<a href=\"%s\">See an example CSV import file</a> to see how your file "
|
2826 |
+
"should be formatted."
|
2827 |
+
msgstr ""
|
2828 |
+
|
2829 |
+
#: templates/admin/csv-import.tpl.php:312
|
2830 |
#, fuzzy
|
2831 |
msgid "Header name/label"
|
2832 |
msgstr "Nome intestazione / etichetta"
|
2833 |
|
2834 |
+
#: templates/admin/csv-import.tpl.php:315
|
2835 |
#, fuzzy
|
2836 |
msgid "Required?"
|
2837 |
msgstr "Necessario?"
|
2838 |
|
2839 |
+
#: templates/admin/csv-import.tpl.php:316
|
2840 |
#, fuzzy
|
2841 |
msgid "Multivalued?"
|
2842 |
msgstr "Multivalore?"
|
2843 |
|
2844 |
+
#: templates/admin/csv-import.tpl.php:348
|
2845 |
#, fuzzy
|
2846 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2847 |
msgstr "Elenco separato di immagini (dal file ZIP)"
|
2848 |
|
2849 |
+
#: templates/admin/csv-import.tpl.php:355
|
2850 |
#, fuzzy
|
2851 |
msgid "Listing owner's username"
|
2852 |
msgstr "Elenco degli utenti"
|
3088 |
msgid "Plan"
|
3089 |
msgstr "Piano tariffario"
|
3090 |
|
3091 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:125
|
3092 |
#: templates/plan-selection-plan.tpl.php:41
|
3093 |
#, fuzzy
|
3094 |
msgid "Recurring"
|
3095 |
msgstr "Ricorrente"
|
3096 |
|
3097 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:155
|
3098 |
#, fuzzy
|
3099 |
msgid "Renew listing"
|
3100 |
msgstr "Rinnova l'elenco"
|
3126 |
msgstr "Panoramica"
|
3127 |
|
3128 |
#: templates/admin/payments-details.tpl.php:52
|
3129 |
+
#: templates/admin/payments-details.tpl.php:94
|
3130 |
#, fuzzy
|
3131 |
msgid "Payment ID"
|
3132 |
msgstr "ID Pagamento:"
|
3152 |
msgid "(Not yet set)"
|
3153 |
msgstr "(Non ancora impostato)"
|
3154 |
|
3155 |
+
#: templates/admin/payments-details.tpl.php:89
|
3156 |
+
msgid "- Test Mode"
|
3157 |
+
msgstr ""
|
3158 |
+
|
3159 |
+
#: templates/admin/payments-details.tpl.php:105
|
3160 |
#, fuzzy
|
3161 |
msgid "Delete Payment"
|
3162 |
msgstr "Elimina Pagamento"
|
3163 |
|
3164 |
+
#: templates/admin/payments-details.tpl.php:107
|
3165 |
#, fuzzy
|
3166 |
msgid "Save Payment"
|
3167 |
msgstr "Salva Pagamento"
|
3168 |
|
3169 |
+
#: templates/admin/payments-details.tpl.php:118
|
3170 |
#, fuzzy
|
3171 |
msgid "Details"
|
3172 |
msgstr "Dettagli"
|
3173 |
|
3174 |
+
#: templates/admin/payments-details.tpl.php:122
|
3175 |
#, fuzzy
|
3176 |
msgid "Item Type"
|
3177 |
msgstr "Tipo di elemento"
|
3178 |
|
3179 |
+
#: templates/admin/payments-details.tpl.php:135
|
3180 |
#: templates/payment/payment_items.tpl.php:23
|
3181 |
#, fuzzy
|
3182 |
msgid "Total"
|
3183 |
msgstr "Totale"
|
3184 |
|
3185 |
+
#: templates/admin/payments-details.tpl.php:146
|
3186 |
#, fuzzy
|
3187 |
msgid "Customer Details"
|
3188 |
msgstr "Dettagli Cliente"
|
3189 |
|
3190 |
+
#: templates/admin/payments-details.tpl.php:156
|
3191 |
#: templates/checkout-billing-form.tpl.php:17
|
3192 |
#, fuzzy
|
3193 |
msgid "First Name"
|
3194 |
msgstr "Nome"
|
3195 |
|
3196 |
+
#: templates/admin/payments-details.tpl.php:161
|
3197 |
#: templates/checkout-billing-form.tpl.php:22
|
3198 |
#, fuzzy
|
3199 |
msgid "Last Name"
|
3200 |
msgstr "Cognome"
|
3201 |
|
3202 |
+
#: templates/admin/payments-details.tpl.php:183
|
3203 |
#, fuzzy
|
3204 |
msgid "Address Line 1"
|
3205 |
msgstr "Indirizzo 1:"
|
3206 |
|
3207 |
+
#: templates/admin/payments-details.tpl.php:187
|
3208 |
#: templates/checkout-billing-form.tpl.php:81
|
3209 |
#, fuzzy
|
3210 |
msgid "Address Line 2"
|
3211 |
msgstr "Indirizzo 2"
|
3212 |
|
3213 |
+
#: templates/admin/payments-details.tpl.php:196
|
3214 |
#, fuzzy
|
3215 |
msgid "Notes & Log"
|
3216 |
msgstr "Note e registro"
|
3217 |
|
3218 |
+
#: templates/admin/payments-details.tpl.php:201
|
3219 |
#, fuzzy
|
3220 |
msgid "No notes."
|
3221 |
msgstr "Niente note."
|
3222 |
|
3223 |
+
#: templates/admin/payments-details.tpl.php:221
|
3224 |
#, fuzzy
|
3225 |
msgid "Add Note"
|
3226 |
msgstr "Aggiungi nota"
|
3399 |
msgid "Upload"
|
3400 |
msgstr "Modulo di caricamento file"
|
3401 |
|
3402 |
+
#: templates/admin/themes-item.tpl.php:6
|
3403 |
+
#, fuzzy
|
3404 |
+
msgid "Missing License"
|
3405 |
+
msgstr "Calendario degli annunci"
|
3406 |
+
|
3407 |
+
#: templates/admin/themes-item.tpl.php:8
|
3408 |
#, fuzzy
|
3409 |
msgid "Inactive"
|
3410 |
msgstr "Attivo"
|
3411 |
|
3412 |
+
#: templates/admin/themes-item.tpl.php:18
|
3413 |
#, fuzzy
|
3414 |
msgid "Updating theme..."
|
3415 |
msgstr "Aggiornamento del tema....."
|
3416 |
|
3417 |
+
#: templates/admin/themes-item.tpl.php:18
|
3418 |
#, fuzzy
|
3419 |
msgid "Theme updated."
|
3420 |
msgstr "Tema aggiornato."
|
3421 |
|
3422 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3423 |
+
#: templates/admin/themes-item.tpl.php:23
|
3424 |
#, fuzzy
|
3425 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3426 |
msgstr "Nuova versione disponibile (<b>%s</b>).. <a>Aggiorna ora.</a>"
|
4836 |
msgid "All"
|
4837 |
msgstr "Tutti"
|
4838 |
|
|
|
|
|
|
|
|
|
|
|
4839 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4840 |
msgctxt "form-fields admin"
|
4841 |
msgid "Form fields updated."
|
4931 |
msgid "In Listing"
|
4932 |
msgstr "Annuncio"
|
4933 |
|
4934 |
+
#: includes/fields/class-fieldtypes-checkbox.php:98
|
4935 |
msgctxt "form-fields admin"
|
4936 |
msgid "Select All"
|
4937 |
msgstr "Seleziona tutto"
|
4938 |
|
4939 |
+
#: includes/fields/class-fieldtypes-checkbox.php:116
|
4940 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:91
|
4941 |
msgctxt "form-fields admin"
|
4942 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4943 |
msgstr ""
|
4944 |
"Opzioni di campo (per elenchi di selezione, pulsanti di selezione e caselle "
|
4945 |
"di controllo)."
|
4946 |
|
4947 |
+
#: includes/fields/class-fieldtypes-checkbox.php:128
|
4948 |
msgctxt "form-fields admin"
|
4949 |
msgid "Include \"Select all\"?"
|
4950 |
msgstr "Includere \"Seleziona tutto\"?"
|
4951 |
|
4952 |
+
#: includes/fields/class-fieldtypes-checkbox.php:132
|
4953 |
msgctxt "form-fields admin"
|
4954 |
msgid "Display \"Select all\" option among options above."
|
4955 |
msgstr "Visualizza l'opzione \"Seleziona tutto\" tra le opzioni di cui sopra."
|
4956 |
|
4957 |
+
#: includes/fields/class-fieldtypes-checkbox.php:148
|
4958 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:118
|
4959 |
msgctxt "form-fields admin"
|
4960 |
msgid "Field list of options is required."
|
4961 |
msgstr "È necessario disporre di un campo di opzioni."
|
6846 |
msgid "← Return to CSV Export"
|
6847 |
msgstr "← Ritorna all'esportazione di CSV"
|
6848 |
|
6849 |
+
#: includes/admin/csv-import.php:178
|
6850 |
msgctxt "admin csv-import"
|
6851 |
msgid "Whatever"
|
6852 |
msgstr "Sarà..."
|
6853 |
|
6854 |
+
#: includes/admin/csv-import.php:372
|
6855 |
msgctxt "admin csv-import"
|
6856 |
msgid "Please upload or select a CSV file."
|
6857 |
msgstr "Si prega di caricare o selezionare un file CSV."
|
6858 |
|
6859 |
+
#: includes/admin/csv-import.php:397
|
6860 |
msgctxt "admin csv-import"
|
6861 |
msgid ""
|
6862 |
"An error was detected while validating the CSV file for import. Please fix "
|
6865 |
"È stato rilevato un errore durante la convalida del file CSV per "
|
6866 |
"l'importazione. Si prega di risolvere il problema prima di procedere."
|
6867 |
|
6868 |
+
#: includes/admin/csv-import.php:406
|
6869 |
msgctxt "admin csv-import"
|
6870 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6871 |
msgstr ""
|
7085 |
msgid "Import Listings"
|
7086 |
msgstr "Importa Annunci"
|
7087 |
|
7088 |
+
#: templates/admin/csv-import.tpl.php:341
|
7089 |
msgctxt "admin csv-import"
|
7090 |
msgid ""
|
7091 |
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
7094 |
"Fee ID (numero intero) associato ad un elenco. Utilizzare questa colonna per "
|
7095 |
"aggiungere o aggiornare gli elenchi da fonti esterne."
|
7096 |
|
7097 |
+
#: templates/admin/csv-import.tpl.php:362
|
7098 |
msgctxt "admin csv-import"
|
7099 |
msgid ""
|
7100 |
"Internal Sequence ID used to allow listing updates from external sources."
|
7102 |
"ID di sequenza interna utilizzata per consentire l'elenco degli "
|
7103 |
"aggiornamenti da fonti esterne."
|
7104 |
|
7105 |
+
#: templates/admin/csv-import.tpl.php:369
|
7106 |
msgctxt "admin csv-import"
|
7107 |
msgid ""
|
7108 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
7111 |
"Data della scadenza dell'Annuncio formattata come YYYY-MM-DD. Utilizza "
|
7112 |
"questa colonna quando aggiungi o aggiorni gli elenchi da sorgenti esterne."
|
7113 |
|
7114 |
+
#: includes/admin/csv-import.php:328
|
7115 |
#, fuzzy
|
7116 |
msgctxt "csv import"
|
7117 |
msgid ""
|
7150 |
msgid "Plan Details"
|
7151 |
msgstr "Dettagli del piano"
|
7152 |
|
7153 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:51
|
7154 |
msgctxt "listing metabox"
|
7155 |
msgid "Change plan"
|
7156 |
msgstr "Cambia piano"
|
7157 |
|
7158 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:105
|
7159 |
msgctxt "listing metabox"
|
7160 |
msgid "# of images"
|
7161 |
msgstr "# di immagini"
|
7901 |
msgid "Send Message to listing owner"
|
7902 |
msgstr "Invia messaggio al proprietario dell'elenco"
|
7903 |
|
7904 |
+
#: includes/controllers/pages/class-main.php:14
|
7905 |
msgctxt "templates"
|
7906 |
msgid ""
|
7907 |
"There are no categories assigned to the business directory yet. You need to "
|
7917 |
"essere aggiunti fino a quando non si assegnano le categorie all'elenco "
|
7918 |
"aziendale."
|
7919 |
|
7920 |
+
#: includes/controllers/pages/class-main.php:16
|
7921 |
msgctxt "templates"
|
7922 |
msgid "There are currently no listings in the directory."
|
7923 |
msgstr "Al momento non ci sono annunci nell'elenco."
|
7924 |
|
7925 |
+
#: includes/controllers/pages/class-main.php:28
|
7926 |
msgctxt "templates"
|
7927 |
msgid ""
|
7928 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
8387 |
msgid "The e-mail address you chose for your account is already in use."
|
8388 |
msgstr "L'indirizzo e-mail scelto per il tuo account è già in uso."
|
8389 |
|
8390 |
+
#: includes/models/class-payment.php:286
|
8391 |
msgctxt "submit listing"
|
8392 |
msgid "Listing submitted by admin. Payment skipped."
|
8393 |
msgstr "Annuncio presentato da admin. Pagamento saltato."
|
8489 |
"Questo campo del form non può essere cancellato perché è necessario perché "
|
8490 |
"il plugin funzioni."
|
8491 |
|
8492 |
+
#: includes/fields/class-fieldtypes-checkbox.php:52
|
8493 |
msgctxt "checkbox form field"
|
8494 |
msgid "Select all"
|
8495 |
msgstr "Seleziona tutto"
|
8791 |
msgid "The server returned a 403 Forbidden error."
|
8792 |
msgstr "Il server ha restituito un errore 403 Forbidden error."
|
8793 |
|
8794 |
+
#: includes/licensing.php:846
|
8795 |
msgctxt "licensing"
|
8796 |
msgid "Could not activate license: %s."
|
8797 |
msgstr "Impossibile attivare la licenza: %s."
|
8798 |
|
8799 |
+
#: includes/licensing.php:851
|
8800 |
msgctxt "licensing"
|
8801 |
msgid "License activated"
|
8802 |
msgstr "Licenza attivata"
|
8803 |
|
8804 |
+
#: includes/licensing.php:883
|
8805 |
msgctxt "licensing"
|
8806 |
msgid "Could not deactivate license: %s."
|
8807 |
msgstr "Impossibile disattivare la licenza: %s."
|
8808 |
|
8809 |
+
#: includes/licensing.php:885
|
8810 |
msgctxt "licensing"
|
8811 |
msgid "License deactivated"
|
8812 |
msgstr "Licenza disattivata"
|
8813 |
|
8814 |
#. translators: "<module-name>" version <version-number> is not...
|
8815 |
+
#: includes/licensing.php:1125
|
8816 |
msgctxt "deprecation"
|
8817 |
msgid ""
|
8818 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8833 |
msgstr[0] "%d immagine consentita."
|
8834 |
msgstr[1] "%d immagini consentite."
|
8835 |
|
8836 |
+
#: includes/models/class-fee-plan.php:410
|
8837 |
#, fuzzy
|
8838 |
msgctxt "fees-api"
|
8839 |
msgid "Plan label is required."
|
8840 |
msgstr "È richiesta l'etichetta del campo."
|
8841 |
|
8842 |
+
#: includes/models/class-fee-plan.php:416
|
8843 |
msgctxt "fees-api"
|
8844 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8845 |
msgstr ""
|
8846 |
"Il canone per l'annuncio deve essere inferiore a 10 anni (3650 giorni)."
|
8847 |
|
8848 |
+
#: includes/models/class-fee-plan.php:421
|
8849 |
#, fuzzy
|
8850 |
msgctxt "fees-api"
|
8851 |
msgid ""
|
8858 |
"l'inserimento dell'annuncio, si prega di modificare il <a>piano tariffario</"
|
8859 |
"a> in modo appropriato."
|
8860 |
|
8861 |
+
#: includes/models/class-fee-plan.php:424
|
8862 |
#, fuzzy
|
8863 |
msgctxt "fees-api"
|
8864 |
msgid ""
|
8870 |
"l'inserimento nell'elenco, si prega di modificare il <a>piano tariffario</a> "
|
8871 |
"in modo appropriato."
|
8872 |
|
8873 |
+
#: includes/models/class-payment.php:109
|
8874 |
#, fuzzy
|
8875 |
msgctxt "payment"
|
8876 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8877 |
msgstr "Lo stato del pagamento è cambiato da \"%s\" a \"%s\"."
|
8878 |
|
8879 |
+
#: includes/models/class-payment.php:157
|
8880 |
msgctxt "payment"
|
8881 |
msgid "Initial payment (\"%s\")"
|
8882 |
msgstr "Pagamento iniziale (\"%s\")"
|
8883 |
|
8884 |
+
#: includes/models/class-payment.php:160
|
8885 |
msgctxt "payment"
|
8886 |
msgid "Renewal payment (\"%s\")"
|
8887 |
msgstr "Pagamento del rinnovo (\"%s\")"
|
8888 |
|
8889 |
+
#: includes/models/class-payment.php:403
|
8890 |
msgctxt "payment"
|
8891 |
msgid "Pending"
|
8892 |
msgstr "In attesa"
|
8893 |
|
8894 |
+
#: includes/models/class-payment.php:404
|
8895 |
msgctxt "payment"
|
8896 |
msgid "Failed"
|
8897 |
msgstr "Fallito"
|
8898 |
|
8899 |
+
#: includes/models/class-payment.php:405
|
8900 |
msgctxt "payment"
|
8901 |
msgid "Completed"
|
8902 |
msgstr "Completato"
|
8903 |
|
8904 |
+
#: includes/models/class-payment.php:406
|
8905 |
msgctxt "payment"
|
8906 |
msgid "Canceled"
|
8907 |
msgstr "Annullato"
|
8908 |
|
8909 |
+
#: includes/models/class-payment.php:407
|
8910 |
msgctxt "payment"
|
8911 |
msgid "On Hold"
|
8912 |
msgstr "In attesa"
|
8913 |
|
8914 |
+
#: includes/models/class-payment.php:408
|
8915 |
msgctxt "payment"
|
8916 |
msgid "Refunded"
|
8917 |
msgstr "Rimborsato"
|
8918 |
|
8919 |
+
#: includes/models/class-payment.php:172
|
8920 |
msgctxt "payment summary"
|
8921 |
msgid "%s. Admin Posted."
|
8922 |
msgstr "%s. Pubblicato dall'Amministratore"
|
8923 |
|
8924 |
+
#: includes/models/class-payment.php:174
|
8925 |
msgctxt "payment summary"
|
8926 |
msgid "%s. Imported Listing."
|
8927 |
msgstr "%s. Annuncio importato"
|
8946 |
msgid "File type \"%s\" is not allowed"
|
8947 |
msgstr "Il tipo di file \"%s\" non è consentito"
|
8948 |
|
8949 |
+
#: includes/utils.php:668
|
8950 |
msgctxt "utils"
|
8951 |
msgid ""
|
8952 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
9080 |
"we'll answer it within 24 hours most days."
|
9081 |
msgstr ""
|
9082 |
|
9083 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
9084 |
msgctxt "admin infometabox"
|
9085 |
msgid "Renewal url (copy & paste)"
|
9086 |
msgstr "Url di rinnovo (copia e incolla)"
|
9087 |
|
9088 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
9089 |
msgctxt "admin infometabox"
|
9090 |
msgid "Get renewal URL"
|
9091 |
msgstr "Ottenere l'URL di rinnovo"
|
9092 |
|
9093 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:149
|
9094 |
msgctxt "admin infometabox"
|
9095 |
msgid "Send renewal e-mail"
|
9096 |
msgstr "Inviare l'e-mail di rinnovo"
|
9299 |
msgid "Continue"
|
9300 |
msgstr "Continua"
|
9301 |
|
9302 |
+
#, fuzzy
|
9303 |
+
#~ msgid ""
|
9304 |
+
#~ "The following are the valid header names to be used in the CSV file. "
|
9305 |
+
#~ "Multivalued fields (such as category or tags) can appear multiple times "
|
9306 |
+
#~ "in the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> "
|
9307 |
+
#~ "to see how an import file should look like."
|
9308 |
+
#~ msgstr ""
|
9309 |
+
#~ "Di seguito sono riportati i nomi di intestazione validi da utilizzare nel "
|
9310 |
+
#~ "file CSV. I campi multivalore (ad esempio categoria o tag) possono essere "
|
9311 |
+
#~ "visualizzati più volte nel file. Clicva <a href=\"%s\">\"Vedi un esempio "
|
9312 |
+
#~ "di file di importazione CSV\"</a> Per vedere come un file di importazione "
|
9313 |
+
#~ "deve essere."
|
9314 |
+
|
9315 |
+
#~ msgctxt "payments admin"
|
9316 |
+
#~ msgid "View Payment"
|
9317 |
+
#~ msgstr "Visualizza la cronologia dei pagamenti"
|
9318 |
+
|
9319 |
#~ msgctxt "uninstall"
|
9320 |
#~ msgid "Please choose an option."
|
9321 |
#~ msgstr "Selezionare un’opzione."
|
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"
|
@@ -245,15 +245,14 @@ msgid "See Example"
|
|
245 |
msgstr ""
|
246 |
|
247 |
#: includes/admin/controllers/class-admin-csv.php:54
|
248 |
-
#: templates/admin/csv-import.tpl.php:291
|
249 |
msgid "Help"
|
250 |
msgstr ""
|
251 |
|
252 |
#: includes/admin/controllers/class-admin-fees.php:46
|
253 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
254 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
255 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
256 |
-
#: templates/admin/payments-details.tpl.php:
|
257 |
#: templates/email/listing-payment-completed.tpl.php:21
|
258 |
#: templates/payment/payment_items.tpl.php:5
|
259 |
#, fuzzy
|
@@ -329,7 +328,7 @@ msgid "Listing Reports"
|
|
329 |
msgstr "Een registratie verloopt."
|
330 |
|
331 |
#: includes/admin/controllers/class-admin-listings.php:268
|
332 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
333 |
#, fuzzy
|
334 |
msgid "Expires on"
|
335 |
msgstr "Verlopen"
|
@@ -341,7 +340,7 @@ msgstr "Veld attributen"
|
|
341 |
|
342 |
#: includes/admin/controllers/class-admin-listings.php:339
|
343 |
#: includes/helpers/class-listing-display-helper.php:137
|
344 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
345 |
#, fuzzy
|
346 |
msgid "Featured"
|
347 |
msgstr "Aanbieding/sticky"
|
@@ -359,7 +358,7 @@ msgid "Delete Listing"
|
|
359 |
msgstr "Registratie verwijderen"
|
360 |
|
361 |
#: includes/admin/controllers/class-admin-listings.php:733
|
362 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
363 |
#, fuzzy
|
364 |
msgid "Never"
|
365 |
msgstr "nooit"
|
@@ -367,8 +366,8 @@ msgstr "nooit"
|
|
367 |
#: includes/admin/controllers/class-admin-listings.php:744
|
368 |
#: includes/admin/controllers/class-admin-listings.php:745
|
369 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
370 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
371 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
372 |
#, fuzzy
|
373 |
msgid "Yes"
|
374 |
msgstr "Ja"
|
@@ -377,8 +376,8 @@ msgstr "Ja"
|
|
377 |
#: includes/admin/controllers/class-admin-listings.php:745
|
378 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
379 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
380 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
381 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
382 |
#, fuzzy
|
383 |
msgid "No"
|
384 |
msgstr "Nee"
|
@@ -451,27 +450,27 @@ msgid "Address 2"
|
|
451 |
msgstr "Adres"
|
452 |
|
453 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
454 |
-
#: templates/admin/payments-details.tpl.php:
|
455 |
#: templates/checkout-billing-form.tpl.php:87
|
456 |
#, fuzzy
|
457 |
msgid "City"
|
458 |
msgstr "Stad"
|
459 |
|
460 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
461 |
-
#: templates/admin/payments-details.tpl.php:
|
462 |
#, fuzzy
|
463 |
msgid "State"
|
464 |
msgstr "Provincie"
|
465 |
|
466 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
467 |
-
#: templates/admin/payments-details.tpl.php:
|
468 |
#: templates/checkout-billing-form.tpl.php:102
|
469 |
#, fuzzy
|
470 |
msgid "Country"
|
471 |
msgstr "Land"
|
472 |
|
473 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
474 |
-
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:
|
475 |
msgid "ZIP Code"
|
476 |
msgstr ""
|
477 |
|
@@ -538,7 +537,7 @@ msgstr ""
|
|
538 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
539 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
540 |
#: templates/admin/payments-note.tpl.php:14
|
541 |
-
#: templates/admin/themes-item.tpl.php:
|
542 |
#: templates/parts/listing-buttons.tpl.php:31
|
543 |
#, fuzzy
|
544 |
msgid "Delete"
|
@@ -555,29 +554,29 @@ msgid "Themes"
|
|
555 |
msgstr "Thema's"
|
556 |
|
557 |
#. translators: %s: Sample business name
|
558 |
-
#: includes/admin/csv-import.php:
|
559 |
#, fuzzy
|
560 |
msgid "Business %s"
|
561 |
msgstr "Business Directory - Zoeken"
|
562 |
|
563 |
-
#: includes/admin/csv-import.php:
|
564 |
-
msgid "Example
|
565 |
msgstr ""
|
566 |
|
567 |
#: includes/admin/csv-import.php:185
|
568 |
-
msgid "
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/admin/csv-import.php:
|
572 |
#: includes/helpers/class-app.php:244
|
573 |
msgid "You are not allowed to do that."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: includes/admin/csv-import.php:
|
577 |
msgid "There was an error uploading the file:"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: includes/admin/csv-import.php:
|
581 |
msgid "Please upload the correct file type."
|
582 |
msgstr ""
|
583 |
|
@@ -616,7 +615,7 @@ msgstr "Geinstalleerd: %s"
|
|
616 |
|
617 |
#: includes/admin/helpers/class-modules-list.php:226
|
618 |
#: includes/controllers/class-smtp.php:317
|
619 |
-
#: templates/admin/themes-item.tpl.php:
|
620 |
#, fuzzy
|
621 |
msgid "Activate"
|
622 |
msgstr "Actief"
|
@@ -699,14 +698,14 @@ msgstr "Standaard kosten"
|
|
699 |
|
700 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
701 |
#: includes/fields/class-fieldtypes-social.php:135
|
702 |
-
#: templates/admin/csv-import.tpl.php:
|
703 |
#, fuzzy
|
704 |
msgid "Type"
|
705 |
msgstr "Type"
|
706 |
|
707 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
708 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
709 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
710 |
#, fuzzy
|
711 |
msgid "Edit"
|
712 |
msgstr "Bewerk"
|
@@ -716,6 +715,11 @@ msgstr "Bewerk"
|
|
716 |
msgid "Are you sure you want to delete that field?"
|
717 |
msgstr "Weet je zeker dat je \"%s\" veld wilt verwijderen?"
|
718 |
|
|
|
|
|
|
|
|
|
|
|
719 |
#: includes/admin/page-debug.php:40
|
720 |
#, fuzzy
|
721 |
msgid "Plugin Settings"
|
@@ -731,9 +735,9 @@ msgid "Plugin Info"
|
|
731 |
msgstr ""
|
732 |
|
733 |
#: includes/admin/page-debug.php:159
|
734 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
735 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
736 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
737 |
#, fuzzy
|
738 |
msgid "OK"
|
739 |
msgstr "OK"
|
@@ -744,7 +748,7 @@ msgstr "Missende tabellen: %s"
|
|
744 |
|
745 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
746 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
747 |
-
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:
|
748 |
#: templates/listing-contactform.tpl.php:33
|
749 |
#: templates/listing-flagging-form.tpl.php:39
|
750 |
#, fuzzy
|
@@ -1361,9 +1365,9 @@ msgid ""
|
|
1361 |
msgstr ""
|
1362 |
|
1363 |
#: includes/class-assets.php:195
|
1364 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1365 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1366 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1367 |
#: templates/admin/settings-email.tpl.php:103
|
1368 |
#: templates/admin/settings-reset.tpl.php:8
|
1369 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
@@ -1780,41 +1784,41 @@ msgstr "Selecteer lijst"
|
|
1780 |
msgid "Select List"
|
1781 |
msgstr "Selecteer lijst"
|
1782 |
|
1783 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1784 |
#, fuzzy
|
1785 |
msgid "-- Choose One --"
|
1786 |
msgstr "-- =Kies er een --"
|
1787 |
|
1788 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1789 |
#, fuzzy
|
1790 |
msgid "-- Choose Terms --"
|
1791 |
msgstr "-- Kies termen --"
|
1792 |
|
1793 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1794 |
#, fuzzy
|
1795 |
msgid "— None —"
|
1796 |
msgstr "— Geen —"
|
1797 |
|
1798 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1799 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1803 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1804 |
#: templates/admin/fees-form.tpl.php:58
|
1805 |
#, fuzzy
|
1806 |
msgid "required"
|
1807 |
msgstr "vereist"
|
1808 |
|
1809 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1810 |
msgid "One option per line"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1814 |
msgid "Allow empty selection on search?"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1818 |
#, fuzzy
|
1819 |
msgid "Field list of options is required."
|
1820 |
msgstr "Is veld vereist?"
|
@@ -1903,7 +1907,7 @@ msgstr "Titel registratie"
|
|
1903 |
msgid "Short Description"
|
1904 |
msgstr "Veld omschrijving"
|
1905 |
|
1906 |
-
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:
|
1907 |
#, fuzzy
|
1908 |
msgid "Description"
|
1909 |
msgstr "Veld omschrijving"
|
@@ -1950,7 +1954,7 @@ msgstr ""
|
|
1950 |
msgid "Telephone Number Validator"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
1954 |
#, fuzzy
|
1955 |
msgid "Field"
|
1956 |
msgstr "Veld"
|
@@ -2255,30 +2259,40 @@ msgid ""
|
|
2255 |
"our IP address 52.0.78.177 to your allow list."
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
2259 |
#, fuzzy
|
2260 |
msgid "Business Directory license key is missing."
|
2261 |
msgstr "Business Directory - Zoeken"
|
2262 |
|
2263 |
-
#: includes/licensing.php:
|
2264 |
#, fuzzy
|
2265 |
msgid "Business Directory license key has expired"
|
2266 |
msgstr "Business Directory - Zoeken"
|
2267 |
|
2268 |
-
#: includes/licensing.php:
|
2269 |
#, fuzzy
|
2270 |
msgid "Could not verify Business Directory license."
|
2271 |
msgstr "Business Directory instellingen"
|
2272 |
|
2273 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2274 |
msgid "Review license keys"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: includes/licensing.php:
|
2278 |
msgid "Missing data. Please reload this page and try again."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: includes/licensing.php:
|
2282 |
msgid "Please enter a license key."
|
2283 |
msgstr ""
|
2284 |
|
@@ -2558,32 +2572,43 @@ msgstr ""
|
|
2558 |
msgid "Disable email notifications during import"
|
2559 |
msgstr "E-Mail Notificaties"
|
2560 |
|
|
|
|
|
|
|
|
|
|
|
2561 |
#: templates/admin/csv-import.tpl.php:296
|
2562 |
msgid ""
|
2563 |
-
"The following are the
|
2564 |
-
"
|
2565 |
-
"the
|
2566 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: templates/admin/csv-import.tpl.php:
|
2570 |
msgid "Header name/label"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: templates/admin/csv-import.tpl.php:
|
2574 |
#, fuzzy
|
2575 |
msgid "Required?"
|
2576 |
msgstr "Vereist?"
|
2577 |
|
2578 |
-
#: templates/admin/csv-import.tpl.php:
|
2579 |
msgid "Multivalued?"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: templates/admin/csv-import.tpl.php:
|
2583 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: templates/admin/csv-import.tpl.php:
|
2587 |
#, fuzzy
|
2588 |
msgid "Listing owner's username"
|
2589 |
msgstr "Naam auteur"
|
@@ -2796,13 +2821,13 @@ msgstr "Beelden bij de registratie"
|
|
2796 |
msgid "Plan"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2800 |
#: templates/plan-selection-plan.tpl.php:41
|
2801 |
#, fuzzy
|
2802 |
msgid "Recurring"
|
2803 |
msgstr "Terug naar registratie."
|
2804 |
|
2805 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2806 |
#, fuzzy
|
2807 |
msgid "Renew listing"
|
2808 |
msgstr "Vernieuw registratie"
|
@@ -2833,7 +2858,7 @@ msgid "Overview"
|
|
2833 |
msgstr ""
|
2834 |
|
2835 |
#: templates/admin/payments-details.tpl.php:52
|
2836 |
-
#: templates/admin/payments-details.tpl.php:
|
2837 |
#, fuzzy
|
2838 |
msgid "Payment ID"
|
2839 |
msgstr "Betaling"
|
@@ -2856,69 +2881,73 @@ msgstr ""
|
|
2856 |
msgid "(Not yet set)"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: templates/admin/payments-details.tpl.php:
|
|
|
|
|
|
|
|
|
2860 |
#, fuzzy
|
2861 |
msgid "Delete Payment"
|
2862 |
msgstr "Verwijder beeld"
|
2863 |
|
2864 |
-
#: templates/admin/payments-details.tpl.php:
|
2865 |
#, fuzzy
|
2866 |
msgid "Save Payment"
|
2867 |
msgstr "Betaling"
|
2868 |
|
2869 |
-
#: templates/admin/payments-details.tpl.php:
|
2870 |
#, fuzzy
|
2871 |
msgid "Details"
|
2872 |
msgstr "Details kosten"
|
2873 |
|
2874 |
-
#: templates/admin/payments-details.tpl.php:
|
2875 |
#, fuzzy
|
2876 |
msgid "Item Type"
|
2877 |
msgstr "Veld type"
|
2878 |
|
2879 |
-
#: templates/admin/payments-details.tpl.php:
|
2880 |
#: templates/payment/payment_items.tpl.php:23
|
2881 |
#, fuzzy
|
2882 |
msgid "Total"
|
2883 |
msgstr "Totaal"
|
2884 |
|
2885 |
-
#: templates/admin/payments-details.tpl.php:
|
2886 |
#, fuzzy
|
2887 |
msgid "Customer Details"
|
2888 |
msgstr "Details kosten"
|
2889 |
|
2890 |
-
#: templates/admin/payments-details.tpl.php:
|
2891 |
#: templates/checkout-billing-form.tpl.php:17
|
2892 |
#, fuzzy
|
2893 |
msgid "First Name"
|
2894 |
msgstr "Jouw naam"
|
2895 |
|
2896 |
-
#: templates/admin/payments-details.tpl.php:
|
2897 |
#: templates/checkout-billing-form.tpl.php:22
|
2898 |
#, fuzzy
|
2899 |
msgid "Last Name"
|
2900 |
msgstr "Naam"
|
2901 |
|
2902 |
-
#: templates/admin/payments-details.tpl.php:
|
2903 |
#, fuzzy
|
2904 |
msgid "Address Line 1"
|
2905 |
msgstr "Adres"
|
2906 |
|
2907 |
-
#: templates/admin/payments-details.tpl.php:
|
2908 |
#: templates/checkout-billing-form.tpl.php:81
|
2909 |
#, fuzzy
|
2910 |
msgid "Address Line 2"
|
2911 |
msgstr "Adres"
|
2912 |
|
2913 |
-
#: templates/admin/payments-details.tpl.php:
|
2914 |
msgid "Notes & Log"
|
2915 |
msgstr ""
|
2916 |
|
2917 |
-
#: templates/admin/payments-details.tpl.php:
|
2918 |
msgid "No notes."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#: templates/admin/payments-details.tpl.php:
|
2922 |
#, fuzzy
|
2923 |
msgid "Add Note"
|
2924 |
msgstr "Veld toevoegen "
|
@@ -3074,23 +3103,28 @@ msgstr "Business Directory - Zoeken"
|
|
3074 |
msgid "Upload"
|
3075 |
msgstr "Beelden uploaden"
|
3076 |
|
3077 |
-
#: templates/admin/themes-item.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
3078 |
#, fuzzy
|
3079 |
msgid "Inactive"
|
3080 |
msgstr "Actief"
|
3081 |
|
3082 |
-
#: templates/admin/themes-item.tpl.php:
|
3083 |
#, fuzzy
|
3084 |
msgid "Updating theme..."
|
3085 |
msgstr "Thema bijwerken..."
|
3086 |
|
3087 |
-
#: templates/admin/themes-item.tpl.php:
|
3088 |
#, fuzzy
|
3089 |
msgid "Theme updated."
|
3090 |
msgstr "Thema bijgewerkt."
|
3091 |
|
3092 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3093 |
-
#: templates/admin/themes-item.tpl.php:
|
3094 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3095 |
msgstr ""
|
3096 |
|
@@ -4426,11 +4460,6 @@ msgctxt "payments admin"
|
|
4426 |
msgid "All"
|
4427 |
msgstr "Alle"
|
4428 |
|
4429 |
-
#: includes/admin/helpers/tables/class-payments-table.php:134
|
4430 |
-
msgctxt "payments admin"
|
4431 |
-
msgid "View Payment History"
|
4432 |
-
msgstr ""
|
4433 |
-
|
4434 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4435 |
msgctxt "form-fields admin"
|
4436 |
msgid "Form fields updated."
|
@@ -4522,30 +4551,30 @@ msgctxt "form-fields admin"
|
|
4522 |
msgid "In Listing"
|
4523 |
msgstr "In vermelding"
|
4524 |
|
4525 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4526 |
#, fuzzy
|
4527 |
msgctxt "form-fields admin"
|
4528 |
msgid "Select All"
|
4529 |
msgstr "Selecteer lijst"
|
4530 |
|
4531 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4532 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4533 |
msgctxt "form-fields admin"
|
4534 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4538 |
msgctxt "form-fields admin"
|
4539 |
msgid "Include \"Select all\"?"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4543 |
msgctxt "form-fields admin"
|
4544 |
msgid "Display \"Select all\" option among options above."
|
4545 |
msgstr ""
|
4546 |
|
4547 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4548 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4549 |
msgctxt "form-fields admin"
|
4550 |
msgid "Field list of options is required."
|
4551 |
msgstr ""
|
@@ -6418,24 +6447,24 @@ msgctxt "admin csv-export"
|
|
6418 |
msgid "← Return to CSV Export"
|
6419 |
msgstr ""
|
6420 |
|
6421 |
-
#: includes/admin/csv-import.php:
|
6422 |
msgctxt "admin csv-import"
|
6423 |
msgid "Whatever"
|
6424 |
msgstr "Wat dan ook"
|
6425 |
|
6426 |
-
#: includes/admin/csv-import.php:
|
6427 |
msgctxt "admin csv-import"
|
6428 |
msgid "Please upload or select a CSV file."
|
6429 |
msgstr ""
|
6430 |
|
6431 |
-
#: includes/admin/csv-import.php:
|
6432 |
msgctxt "admin csv-import"
|
6433 |
msgid ""
|
6434 |
"An error was detected while validating the CSV file for import. Please fix "
|
6435 |
"this before proceeding."
|
6436 |
msgstr ""
|
6437 |
|
6438 |
-
#: includes/admin/csv-import.php:
|
6439 |
msgctxt "admin csv-import"
|
6440 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6441 |
msgstr ""
|
@@ -6639,27 +6668,27 @@ msgctxt "admin csv-import"
|
|
6639 |
msgid "Import Listings"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: templates/admin/csv-import.tpl.php:
|
6643 |
msgctxt "admin csv-import"
|
6644 |
msgid ""
|
6645 |
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
6646 |
"updating listings from external sources."
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#: templates/admin/csv-import.tpl.php:
|
6650 |
msgctxt "admin csv-import"
|
6651 |
msgid ""
|
6652 |
"Internal Sequence ID used to allow listing updates from external sources."
|
6653 |
msgstr ""
|
6654 |
|
6655 |
-
#: templates/admin/csv-import.tpl.php:
|
6656 |
msgctxt "admin csv-import"
|
6657 |
msgid ""
|
6658 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
6659 |
"adding or updating listings from external sources."
|
6660 |
msgstr ""
|
6661 |
|
6662 |
-
#: includes/admin/csv-import.php:
|
6663 |
msgctxt "csv import"
|
6664 |
msgid ""
|
6665 |
"A valid temporary directory with write permissions is required for CSV "
|
@@ -6695,12 +6724,12 @@ msgctxt "listing metabox"
|
|
6695 |
msgid "Plan Details"
|
6696 |
msgstr "Details kosten"
|
6697 |
|
6698 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
6699 |
msgctxt "listing metabox"
|
6700 |
msgid "Change plan"
|
6701 |
msgstr ""
|
6702 |
|
6703 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
6704 |
#, fuzzy
|
6705 |
msgctxt "listing metabox"
|
6706 |
msgid "# of images"
|
@@ -7395,7 +7424,7 @@ msgctxt "templates"
|
|
7395 |
msgid "Send Message to listing owner"
|
7396 |
msgstr "Stuur boodschap naar geregistreerde"
|
7397 |
|
7398 |
-
#: includes/controllers/pages/class-main.php:
|
7399 |
msgctxt "templates"
|
7400 |
msgid ""
|
7401 |
"There are no categories assigned to the business directory yet. You need to "
|
@@ -7405,12 +7434,12 @@ msgid ""
|
|
7405 |
"categories to the business directory."
|
7406 |
msgstr ""
|
7407 |
|
7408 |
-
#: includes/controllers/pages/class-main.php:
|
7409 |
msgctxt "templates"
|
7410 |
msgid "There are currently no listings in the directory."
|
7411 |
msgstr ""
|
7412 |
|
7413 |
-
#: includes/controllers/pages/class-main.php:
|
7414 |
msgctxt "templates"
|
7415 |
msgid ""
|
7416 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
@@ -7856,7 +7885,7 @@ msgctxt "submit listing"
|
|
7856 |
msgid "The e-mail address you chose for your account is already in use."
|
7857 |
msgstr ""
|
7858 |
|
7859 |
-
#: includes/models/class-payment.php:
|
7860 |
msgctxt "submit listing"
|
7861 |
msgid "Listing submitted by admin. Payment skipped."
|
7862 |
msgstr ""
|
@@ -7955,7 +7984,7 @@ msgid ""
|
|
7955 |
"work."
|
7956 |
msgstr ""
|
7957 |
|
7958 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
7959 |
#, fuzzy
|
7960 |
msgctxt "checkbox form field"
|
7961 |
msgid "Select all"
|
@@ -8223,28 +8252,28 @@ msgctxt "licensing"
|
|
8223 |
msgid "The server returned a 403 Forbidden error."
|
8224 |
msgstr ""
|
8225 |
|
8226 |
-
#: includes/licensing.php:
|
8227 |
msgctxt "licensing"
|
8228 |
msgid "Could not activate license: %s."
|
8229 |
msgstr ""
|
8230 |
|
8231 |
-
#: includes/licensing.php:
|
8232 |
msgctxt "licensing"
|
8233 |
msgid "License activated"
|
8234 |
msgstr ""
|
8235 |
|
8236 |
-
#: includes/licensing.php:
|
8237 |
msgctxt "licensing"
|
8238 |
msgid "Could not deactivate license: %s."
|
8239 |
msgstr ""
|
8240 |
|
8241 |
-
#: includes/licensing.php:
|
8242 |
msgctxt "licensing"
|
8243 |
msgid "License deactivated"
|
8244 |
msgstr ""
|
8245 |
|
8246 |
#. translators: "<module-name>" version <version-number> is not...
|
8247 |
-
#: includes/licensing.php:
|
8248 |
msgctxt "deprecation"
|
8249 |
msgid ""
|
8250 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8264,20 +8293,20 @@ msgid_plural "%d images allowed."
|
|
8264 |
msgstr[0] "%d beeld"
|
8265 |
msgstr[1] "%d beelden"
|
8266 |
|
8267 |
-
#: includes/models/class-fee-plan.php:
|
8268 |
#, fuzzy
|
8269 |
msgctxt "fees-api"
|
8270 |
msgid "Plan label is required."
|
8271 |
msgstr "Dit veld is vereist."
|
8272 |
|
8273 |
-
#: includes/models/class-fee-plan.php:
|
8274 |
msgctxt "fees-api"
|
8275 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8276 |
msgstr ""
|
8277 |
"Betaalde registratie vertoningstijd als nummer, minder dan 10 jaar (3650 "
|
8278 |
"dagen)."
|
8279 |
|
8280 |
-
#: includes/models/class-fee-plan.php:
|
8281 |
msgctxt "fees-api"
|
8282 |
msgid ""
|
8283 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
@@ -8285,67 +8314,67 @@ msgid ""
|
|
8285 |
"<a>plan</a> appropriately."
|
8286 |
msgstr ""
|
8287 |
|
8288 |
-
#: includes/models/class-fee-plan.php:
|
8289 |
msgctxt "fees-api"
|
8290 |
msgid ""
|
8291 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8292 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
8293 |
msgstr ""
|
8294 |
|
8295 |
-
#: includes/models/class-payment.php:
|
8296 |
msgctxt "payment"
|
8297 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8298 |
msgstr ""
|
8299 |
|
8300 |
-
#: includes/models/class-payment.php:
|
8301 |
msgctxt "payment"
|
8302 |
msgid "Initial payment (\"%s\")"
|
8303 |
msgstr ""
|
8304 |
|
8305 |
-
#: includes/models/class-payment.php:
|
8306 |
msgctxt "payment"
|
8307 |
msgid "Renewal payment (\"%s\")"
|
8308 |
msgstr ""
|
8309 |
|
8310 |
-
#: includes/models/class-payment.php:
|
8311 |
#, fuzzy
|
8312 |
msgctxt "payment"
|
8313 |
msgid "Pending"
|
8314 |
msgstr "In Afwachting"
|
8315 |
|
8316 |
-
#: includes/models/class-payment.php:
|
8317 |
msgctxt "payment"
|
8318 |
msgid "Failed"
|
8319 |
msgstr ""
|
8320 |
|
8321 |
-
#: includes/models/class-payment.php:
|
8322 |
#, fuzzy
|
8323 |
msgctxt "payment"
|
8324 |
msgid "Completed"
|
8325 |
msgstr "Afgerond"
|
8326 |
|
8327 |
-
#: includes/models/class-payment.php:
|
8328 |
#, fuzzy
|
8329 |
msgctxt "payment"
|
8330 |
msgid "Canceled"
|
8331 |
msgstr "Gecancelled"
|
8332 |
|
8333 |
-
#: includes/models/class-payment.php:
|
8334 |
msgctxt "payment"
|
8335 |
msgid "On Hold"
|
8336 |
msgstr ""
|
8337 |
|
8338 |
-
#: includes/models/class-payment.php:
|
8339 |
msgctxt "payment"
|
8340 |
msgid "Refunded"
|
8341 |
msgstr ""
|
8342 |
|
8343 |
-
#: includes/models/class-payment.php:
|
8344 |
msgctxt "payment summary"
|
8345 |
msgid "%s. Admin Posted."
|
8346 |
msgstr ""
|
8347 |
|
8348 |
-
#: includes/models/class-payment.php:
|
8349 |
#, fuzzy
|
8350 |
msgctxt "payment summary"
|
8351 |
msgid "%s. Imported Listing."
|
@@ -8372,7 +8401,7 @@ msgctxt "utils"
|
|
8372 |
msgid "File type \"%s\" is not allowed"
|
8373 |
msgstr ""
|
8374 |
|
8375 |
-
#: includes/utils.php:
|
8376 |
msgctxt "utils"
|
8377 |
msgid ""
|
8378 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8502,17 +8531,17 @@ msgid ""
|
|
8502 |
"we'll answer it within 24 hours most days."
|
8503 |
msgstr ""
|
8504 |
|
8505 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8506 |
msgctxt "admin infometabox"
|
8507 |
msgid "Renewal url (copy & paste)"
|
8508 |
msgstr ""
|
8509 |
|
8510 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8511 |
msgctxt "admin infometabox"
|
8512 |
msgid "Get renewal URL"
|
8513 |
msgstr ""
|
8514 |
|
8515 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8516 |
msgctxt "admin infometabox"
|
8517 |
msgid "Send renewal e-mail"
|
8518 |
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-11-03 17:40:34+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"
|
245 |
msgstr ""
|
246 |
|
247 |
#: includes/admin/controllers/class-admin-csv.php:54
|
|
|
248 |
msgid "Help"
|
249 |
msgstr ""
|
250 |
|
251 |
#: includes/admin/controllers/class-admin-fees.php:46
|
252 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
253 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
254 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:81
|
255 |
+
#: templates/admin/payments-details.tpl.php:124
|
256 |
#: templates/email/listing-payment-completed.tpl.php:21
|
257 |
#: templates/payment/payment_items.tpl.php:5
|
258 |
#, fuzzy
|
328 |
msgstr "Een registratie verloopt."
|
329 |
|
330 |
#: includes/admin/controllers/class-admin-listings.php:268
|
331 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:87
|
332 |
#, fuzzy
|
333 |
msgid "Expires on"
|
334 |
msgstr "Verlopen"
|
340 |
|
341 |
#: includes/admin/controllers/class-admin-listings.php:339
|
342 |
#: includes/helpers/class-listing-display-helper.php:137
|
343 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:118
|
344 |
#, fuzzy
|
345 |
msgid "Featured"
|
346 |
msgstr "Aanbieding/sticky"
|
358 |
msgstr "Registratie verwijderen"
|
359 |
|
360 |
#: includes/admin/controllers/class-admin-listings.php:733
|
361 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:96
|
362 |
#, fuzzy
|
363 |
msgid "Never"
|
364 |
msgstr "nooit"
|
366 |
#: includes/admin/controllers/class-admin-listings.php:744
|
367 |
#: includes/admin/controllers/class-admin-listings.php:745
|
368 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
369 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
370 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
371 |
#, fuzzy
|
372 |
msgid "Yes"
|
373 |
msgstr "Ja"
|
376 |
#: includes/admin/controllers/class-admin-listings.php:745
|
377 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
378 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
379 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
380 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
381 |
#, fuzzy
|
382 |
msgid "No"
|
383 |
msgstr "Nee"
|
450 |
msgstr "Adres"
|
451 |
|
452 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
453 |
+
#: templates/admin/payments-details.tpl.php:175
|
454 |
#: templates/checkout-billing-form.tpl.php:87
|
455 |
#, fuzzy
|
456 |
msgid "City"
|
457 |
msgstr "Stad"
|
458 |
|
459 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
460 |
+
#: templates/admin/payments-details.tpl.php:171
|
461 |
#, fuzzy
|
462 |
msgid "State"
|
463 |
msgstr "Provincie"
|
464 |
|
465 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
466 |
+
#: templates/admin/payments-details.tpl.php:167
|
467 |
#: templates/checkout-billing-form.tpl.php:102
|
468 |
#, fuzzy
|
469 |
msgid "Country"
|
470 |
msgstr "Land"
|
471 |
|
472 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
473 |
+
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:179
|
474 |
msgid "ZIP Code"
|
475 |
msgstr ""
|
476 |
|
537 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
538 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
539 |
#: templates/admin/payments-note.tpl.php:14
|
540 |
+
#: templates/admin/themes-item.tpl.php:51
|
541 |
#: templates/parts/listing-buttons.tpl.php:31
|
542 |
#, fuzzy
|
543 |
msgid "Delete"
|
554 |
msgstr "Thema's"
|
555 |
|
556 |
#. translators: %s: Sample business name
|
557 |
+
#: includes/admin/csv-import.php:136
|
558 |
#, fuzzy
|
559 |
msgid "Business %s"
|
560 |
msgstr "Business Directory - Zoeken"
|
561 |
|
562 |
+
#: includes/admin/csv-import.php:183
|
563 |
+
msgid "Download Example"
|
564 |
msgstr ""
|
565 |
|
566 |
#: includes/admin/csv-import.php:185
|
567 |
+
msgid "Example CSV Import File"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/admin/csv-import.php:358 includes/helpers/class-app.php:232
|
571 |
#: includes/helpers/class-app.php:244
|
572 |
msgid "You are not allowed to do that."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: includes/admin/csv-import.php:451
|
576 |
msgid "There was an error uploading the file:"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: includes/admin/csv-import.php:456
|
580 |
msgid "Please upload the correct file type."
|
581 |
msgstr ""
|
582 |
|
615 |
|
616 |
#: includes/admin/helpers/class-modules-list.php:226
|
617 |
#: includes/controllers/class-smtp.php:317
|
618 |
+
#: templates/admin/themes-item.tpl.php:59
|
619 |
#, fuzzy
|
620 |
msgid "Activate"
|
621 |
msgstr "Actief"
|
698 |
|
699 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
700 |
#: includes/fields/class-fieldtypes-social.php:135
|
701 |
+
#: templates/admin/csv-import.tpl.php:314
|
702 |
#, fuzzy
|
703 |
msgid "Type"
|
704 |
msgstr "Type"
|
705 |
|
706 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
707 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:93
|
708 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:110
|
709 |
#, fuzzy
|
710 |
msgid "Edit"
|
711 |
msgstr "Bewerk"
|
715 |
msgid "Are you sure you want to delete that field?"
|
716 |
msgstr "Weet je zeker dat je \"%s\" veld wilt verwijderen?"
|
717 |
|
718 |
+
#: includes/admin/helpers/tables/class-payments-table.php:143
|
719 |
+
#, fuzzy
|
720 |
+
msgid "View Payment"
|
721 |
+
msgstr "Betaling"
|
722 |
+
|
723 |
#: includes/admin/page-debug.php:40
|
724 |
#, fuzzy
|
725 |
msgid "Plugin Settings"
|
735 |
msgstr ""
|
736 |
|
737 |
#: includes/admin/page-debug.php:159
|
738 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:76
|
739 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:99
|
740 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:114
|
741 |
#, fuzzy
|
742 |
msgid "OK"
|
743 |
msgstr "OK"
|
748 |
|
749 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
750 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
751 |
+
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:151
|
752 |
#: templates/listing-contactform.tpl.php:33
|
753 |
#: templates/listing-flagging-form.tpl.php:39
|
754 |
#, fuzzy
|
1365 |
msgstr ""
|
1366 |
|
1367 |
#: includes/class-assets.php:195
|
1368 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:77
|
1369 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:100
|
1370 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:115
|
1371 |
#: templates/admin/settings-email.tpl.php:103
|
1372 |
#: templates/admin/settings-reset.tpl.php:8
|
1373 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
1784 |
msgid "Select List"
|
1785 |
msgstr "Selecteer lijst"
|
1786 |
|
1787 |
+
#: includes/fields/class-fieldtypes-select.php:117
|
1788 |
#, fuzzy
|
1789 |
msgid "-- Choose One --"
|
1790 |
msgstr "-- =Kies er een --"
|
1791 |
|
1792 |
+
#: includes/fields/class-fieldtypes-select.php:144
|
1793 |
#, fuzzy
|
1794 |
msgid "-- Choose Terms --"
|
1795 |
msgstr "-- Kies termen --"
|
1796 |
|
1797 |
+
#: includes/fields/class-fieldtypes-select.php:210
|
1798 |
#, fuzzy
|
1799 |
msgid "— None —"
|
1800 |
msgstr "— Geen —"
|
1801 |
|
1802 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1803 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1807 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1808 |
#: templates/admin/fees-form.tpl.php:58
|
1809 |
#, fuzzy
|
1810 |
msgid "required"
|
1811 |
msgstr "vereist"
|
1812 |
|
1813 |
+
#: includes/fields/class-fieldtypes-select.php:269
|
1814 |
msgid "One option per line"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: includes/fields/class-fieldtypes-select.php:279
|
1818 |
msgid "Allow empty selection on search?"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: includes/fields/class-fieldtypes-select.php:297
|
1822 |
#, fuzzy
|
1823 |
msgid "Field list of options is required."
|
1824 |
msgstr "Is veld vereist?"
|
1907 |
msgid "Short Description"
|
1908 |
msgstr "Veld omschrijving"
|
1909 |
|
1910 |
+
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:123
|
1911 |
#, fuzzy
|
1912 |
msgid "Description"
|
1913 |
msgstr "Veld omschrijving"
|
1954 |
msgid "Telephone Number Validator"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:313
|
1958 |
#, fuzzy
|
1959 |
msgid "Field"
|
1960 |
msgstr "Veld"
|
2259 |
"our IP address 52.0.78.177 to your allow list."
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: includes/licensing.php:645
|
2263 |
+
msgid "Download Premium"
|
2264 |
+
msgstr ""
|
2265 |
+
|
2266 |
+
#: includes/licensing.php:695
|
2267 |
#, fuzzy
|
2268 |
msgid "Business Directory license key is missing."
|
2269 |
msgstr "Business Directory - Zoeken"
|
2270 |
|
2271 |
+
#: includes/licensing.php:696
|
2272 |
#, fuzzy
|
2273 |
msgid "Business Directory license key has expired"
|
2274 |
msgstr "Business Directory - Zoeken"
|
2275 |
|
2276 |
+
#: includes/licensing.php:697
|
2277 |
#, fuzzy
|
2278 |
msgid "Could not verify Business Directory license."
|
2279 |
msgstr "Business Directory instellingen"
|
2280 |
|
2281 |
+
#: includes/licensing.php:698
|
2282 |
+
msgid ""
|
2283 |
+
"You have modules installed, but Business Directory Premium is missing. "
|
2284 |
+
"Install this plugin for extra features and easy license management."
|
2285 |
+
msgstr ""
|
2286 |
+
|
2287 |
+
#: includes/licensing.php:709
|
2288 |
msgid "Review license keys"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: includes/licensing.php:824
|
2292 |
msgid "Missing data. Please reload this page and try again."
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: includes/licensing.php:829
|
2296 |
msgid "Please enter a license key."
|
2297 |
msgstr ""
|
2298 |
|
2572 |
msgid "Disable email notifications during import"
|
2573 |
msgstr "E-Mail Notificaties"
|
2574 |
|
2575 |
+
#: templates/admin/csv-import.tpl.php:291
|
2576 |
+
#, fuzzy
|
2577 |
+
msgid "CSV File Formatting"
|
2578 |
+
msgstr "Instellingen"
|
2579 |
+
|
2580 |
#: templates/admin/csv-import.tpl.php:296
|
2581 |
msgid ""
|
2582 |
+
"The following are the header names to use in your CSV file for your current "
|
2583 |
+
"setup. The headers in your CSV file must EXACTLY match (case and "
|
2584 |
+
"punctuation) the names listed here. Fields such as categories or tags can "
|
2585 |
+
"appear multiple times in the file."
|
2586 |
+
msgstr ""
|
2587 |
+
|
2588 |
+
#: templates/admin/csv-import.tpl.php:303
|
2589 |
+
msgid ""
|
2590 |
+
"<a href=\"%s\">See an example CSV import file</a> to see how your file "
|
2591 |
+
"should be formatted."
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: templates/admin/csv-import.tpl.php:312
|
2595 |
msgid "Header name/label"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: templates/admin/csv-import.tpl.php:315
|
2599 |
#, fuzzy
|
2600 |
msgid "Required?"
|
2601 |
msgstr "Vereist?"
|
2602 |
|
2603 |
+
#: templates/admin/csv-import.tpl.php:316
|
2604 |
msgid "Multivalued?"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: templates/admin/csv-import.tpl.php:348
|
2608 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: templates/admin/csv-import.tpl.php:355
|
2612 |
#, fuzzy
|
2613 |
msgid "Listing owner's username"
|
2614 |
msgstr "Naam auteur"
|
2821 |
msgid "Plan"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:125
|
2825 |
#: templates/plan-selection-plan.tpl.php:41
|
2826 |
#, fuzzy
|
2827 |
msgid "Recurring"
|
2828 |
msgstr "Terug naar registratie."
|
2829 |
|
2830 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:155
|
2831 |
#, fuzzy
|
2832 |
msgid "Renew listing"
|
2833 |
msgstr "Vernieuw registratie"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
#: templates/admin/payments-details.tpl.php:52
|
2861 |
+
#: templates/admin/payments-details.tpl.php:94
|
2862 |
#, fuzzy
|
2863 |
msgid "Payment ID"
|
2864 |
msgstr "Betaling"
|
2881 |
msgid "(Not yet set)"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: templates/admin/payments-details.tpl.php:89
|
2885 |
+
msgid "- Test Mode"
|
2886 |
+
msgstr ""
|
2887 |
+
|
2888 |
+
#: templates/admin/payments-details.tpl.php:105
|
2889 |
#, fuzzy
|
2890 |
msgid "Delete Payment"
|
2891 |
msgstr "Verwijder beeld"
|
2892 |
|
2893 |
+
#: templates/admin/payments-details.tpl.php:107
|
2894 |
#, fuzzy
|
2895 |
msgid "Save Payment"
|
2896 |
msgstr "Betaling"
|
2897 |
|
2898 |
+
#: templates/admin/payments-details.tpl.php:118
|
2899 |
#, fuzzy
|
2900 |
msgid "Details"
|
2901 |
msgstr "Details kosten"
|
2902 |
|
2903 |
+
#: templates/admin/payments-details.tpl.php:122
|
2904 |
#, fuzzy
|
2905 |
msgid "Item Type"
|
2906 |
msgstr "Veld type"
|
2907 |
|
2908 |
+
#: templates/admin/payments-details.tpl.php:135
|
2909 |
#: templates/payment/payment_items.tpl.php:23
|
2910 |
#, fuzzy
|
2911 |
msgid "Total"
|
2912 |
msgstr "Totaal"
|
2913 |
|
2914 |
+
#: templates/admin/payments-details.tpl.php:146
|
2915 |
#, fuzzy
|
2916 |
msgid "Customer Details"
|
2917 |
msgstr "Details kosten"
|
2918 |
|
2919 |
+
#: templates/admin/payments-details.tpl.php:156
|
2920 |
#: templates/checkout-billing-form.tpl.php:17
|
2921 |
#, fuzzy
|
2922 |
msgid "First Name"
|
2923 |
msgstr "Jouw naam"
|
2924 |
|
2925 |
+
#: templates/admin/payments-details.tpl.php:161
|
2926 |
#: templates/checkout-billing-form.tpl.php:22
|
2927 |
#, fuzzy
|
2928 |
msgid "Last Name"
|
2929 |
msgstr "Naam"
|
2930 |
|
2931 |
+
#: templates/admin/payments-details.tpl.php:183
|
2932 |
#, fuzzy
|
2933 |
msgid "Address Line 1"
|
2934 |
msgstr "Adres"
|
2935 |
|
2936 |
+
#: templates/admin/payments-details.tpl.php:187
|
2937 |
#: templates/checkout-billing-form.tpl.php:81
|
2938 |
#, fuzzy
|
2939 |
msgid "Address Line 2"
|
2940 |
msgstr "Adres"
|
2941 |
|
2942 |
+
#: templates/admin/payments-details.tpl.php:196
|
2943 |
msgid "Notes & Log"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: templates/admin/payments-details.tpl.php:201
|
2947 |
msgid "No notes."
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: templates/admin/payments-details.tpl.php:221
|
2951 |
#, fuzzy
|
2952 |
msgid "Add Note"
|
2953 |
msgstr "Veld toevoegen "
|
3103 |
msgid "Upload"
|
3104 |
msgstr "Beelden uploaden"
|
3105 |
|
3106 |
+
#: templates/admin/themes-item.tpl.php:6
|
3107 |
+
#, fuzzy
|
3108 |
+
msgid "Missing License"
|
3109 |
+
msgstr "Registratie titel:"
|
3110 |
+
|
3111 |
+
#: templates/admin/themes-item.tpl.php:8
|
3112 |
#, fuzzy
|
3113 |
msgid "Inactive"
|
3114 |
msgstr "Actief"
|
3115 |
|
3116 |
+
#: templates/admin/themes-item.tpl.php:18
|
3117 |
#, fuzzy
|
3118 |
msgid "Updating theme..."
|
3119 |
msgstr "Thema bijwerken..."
|
3120 |
|
3121 |
+
#: templates/admin/themes-item.tpl.php:18
|
3122 |
#, fuzzy
|
3123 |
msgid "Theme updated."
|
3124 |
msgstr "Thema bijgewerkt."
|
3125 |
|
3126 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3127 |
+
#: templates/admin/themes-item.tpl.php:23
|
3128 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3129 |
msgstr ""
|
3130 |
|
4460 |
msgid "All"
|
4461 |
msgstr "Alle"
|
4462 |
|
|
|
|
|
|
|
|
|
|
|
4463 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4464 |
msgctxt "form-fields admin"
|
4465 |
msgid "Form fields updated."
|
4551 |
msgid "In Listing"
|
4552 |
msgstr "In vermelding"
|
4553 |
|
4554 |
+
#: includes/fields/class-fieldtypes-checkbox.php:98
|
4555 |
#, fuzzy
|
4556 |
msgctxt "form-fields admin"
|
4557 |
msgid "Select All"
|
4558 |
msgstr "Selecteer lijst"
|
4559 |
|
4560 |
+
#: includes/fields/class-fieldtypes-checkbox.php:116
|
4561 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:91
|
4562 |
msgctxt "form-fields admin"
|
4563 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: includes/fields/class-fieldtypes-checkbox.php:128
|
4567 |
msgctxt "form-fields admin"
|
4568 |
msgid "Include \"Select all\"?"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: includes/fields/class-fieldtypes-checkbox.php:132
|
4572 |
msgctxt "form-fields admin"
|
4573 |
msgid "Display \"Select all\" option among options above."
|
4574 |
msgstr ""
|
4575 |
|
4576 |
+
#: includes/fields/class-fieldtypes-checkbox.php:148
|
4577 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:118
|
4578 |
msgctxt "form-fields admin"
|
4579 |
msgid "Field list of options is required."
|
4580 |
msgstr ""
|
6447 |
msgid "← Return to CSV Export"
|
6448 |
msgstr ""
|
6449 |
|
6450 |
+
#: includes/admin/csv-import.php:178
|
6451 |
msgctxt "admin csv-import"
|
6452 |
msgid "Whatever"
|
6453 |
msgstr "Wat dan ook"
|
6454 |
|
6455 |
+
#: includes/admin/csv-import.php:372
|
6456 |
msgctxt "admin csv-import"
|
6457 |
msgid "Please upload or select a CSV file."
|
6458 |
msgstr ""
|
6459 |
|
6460 |
+
#: includes/admin/csv-import.php:397
|
6461 |
msgctxt "admin csv-import"
|
6462 |
msgid ""
|
6463 |
"An error was detected while validating the CSV file for import. Please fix "
|
6464 |
"this before proceeding."
|
6465 |
msgstr ""
|
6466 |
|
6467 |
+
#: includes/admin/csv-import.php:406
|
6468 |
msgctxt "admin csv-import"
|
6469 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6470 |
msgstr ""
|
6668 |
msgid "Import Listings"
|
6669 |
msgstr ""
|
6670 |
|
6671 |
+
#: templates/admin/csv-import.tpl.php:341
|
6672 |
msgctxt "admin csv-import"
|
6673 |
msgid ""
|
6674 |
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
6675 |
"updating listings from external sources."
|
6676 |
msgstr ""
|
6677 |
|
6678 |
+
#: templates/admin/csv-import.tpl.php:362
|
6679 |
msgctxt "admin csv-import"
|
6680 |
msgid ""
|
6681 |
"Internal Sequence ID used to allow listing updates from external sources."
|
6682 |
msgstr ""
|
6683 |
|
6684 |
+
#: templates/admin/csv-import.tpl.php:369
|
6685 |
msgctxt "admin csv-import"
|
6686 |
msgid ""
|
6687 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
6688 |
"adding or updating listings from external sources."
|
6689 |
msgstr ""
|
6690 |
|
6691 |
+
#: includes/admin/csv-import.php:328
|
6692 |
msgctxt "csv import"
|
6693 |
msgid ""
|
6694 |
"A valid temporary directory with write permissions is required for CSV "
|
6724 |
msgid "Plan Details"
|
6725 |
msgstr "Details kosten"
|
6726 |
|
6727 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:51
|
6728 |
msgctxt "listing metabox"
|
6729 |
msgid "Change plan"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:105
|
6733 |
#, fuzzy
|
6734 |
msgctxt "listing metabox"
|
6735 |
msgid "# of images"
|
7424 |
msgid "Send Message to listing owner"
|
7425 |
msgstr "Stuur boodschap naar geregistreerde"
|
7426 |
|
7427 |
+
#: includes/controllers/pages/class-main.php:14
|
7428 |
msgctxt "templates"
|
7429 |
msgid ""
|
7430 |
"There are no categories assigned to the business directory yet. You need to "
|
7434 |
"categories to the business directory."
|
7435 |
msgstr ""
|
7436 |
|
7437 |
+
#: includes/controllers/pages/class-main.php:16
|
7438 |
msgctxt "templates"
|
7439 |
msgid "There are currently no listings in the directory."
|
7440 |
msgstr ""
|
7441 |
|
7442 |
+
#: includes/controllers/pages/class-main.php:28
|
7443 |
msgctxt "templates"
|
7444 |
msgid ""
|
7445 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
7885 |
msgid "The e-mail address you chose for your account is already in use."
|
7886 |
msgstr ""
|
7887 |
|
7888 |
+
#: includes/models/class-payment.php:286
|
7889 |
msgctxt "submit listing"
|
7890 |
msgid "Listing submitted by admin. Payment skipped."
|
7891 |
msgstr ""
|
7984 |
"work."
|
7985 |
msgstr ""
|
7986 |
|
7987 |
+
#: includes/fields/class-fieldtypes-checkbox.php:52
|
7988 |
#, fuzzy
|
7989 |
msgctxt "checkbox form field"
|
7990 |
msgid "Select all"
|
8252 |
msgid "The server returned a 403 Forbidden error."
|
8253 |
msgstr ""
|
8254 |
|
8255 |
+
#: includes/licensing.php:846
|
8256 |
msgctxt "licensing"
|
8257 |
msgid "Could not activate license: %s."
|
8258 |
msgstr ""
|
8259 |
|
8260 |
+
#: includes/licensing.php:851
|
8261 |
msgctxt "licensing"
|
8262 |
msgid "License activated"
|
8263 |
msgstr ""
|
8264 |
|
8265 |
+
#: includes/licensing.php:883
|
8266 |
msgctxt "licensing"
|
8267 |
msgid "Could not deactivate license: %s."
|
8268 |
msgstr ""
|
8269 |
|
8270 |
+
#: includes/licensing.php:885
|
8271 |
msgctxt "licensing"
|
8272 |
msgid "License deactivated"
|
8273 |
msgstr ""
|
8274 |
|
8275 |
#. translators: "<module-name>" version <version-number> is not...
|
8276 |
+
#: includes/licensing.php:1125
|
8277 |
msgctxt "deprecation"
|
8278 |
msgid ""
|
8279 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8293 |
msgstr[0] "%d beeld"
|
8294 |
msgstr[1] "%d beelden"
|
8295 |
|
8296 |
+
#: includes/models/class-fee-plan.php:410
|
8297 |
#, fuzzy
|
8298 |
msgctxt "fees-api"
|
8299 |
msgid "Plan label is required."
|
8300 |
msgstr "Dit veld is vereist."
|
8301 |
|
8302 |
+
#: includes/models/class-fee-plan.php:416
|
8303 |
msgctxt "fees-api"
|
8304 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8305 |
msgstr ""
|
8306 |
"Betaalde registratie vertoningstijd als nummer, minder dan 10 jaar (3650 "
|
8307 |
"dagen)."
|
8308 |
|
8309 |
+
#: includes/models/class-fee-plan.php:421
|
8310 |
msgctxt "fees-api"
|
8311 |
msgid ""
|
8312 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
8314 |
"<a>plan</a> appropriately."
|
8315 |
msgstr ""
|
8316 |
|
8317 |
+
#: includes/models/class-fee-plan.php:424
|
8318 |
msgctxt "fees-api"
|
8319 |
msgid ""
|
8320 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8321 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
8322 |
msgstr ""
|
8323 |
|
8324 |
+
#: includes/models/class-payment.php:109
|
8325 |
msgctxt "payment"
|
8326 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8327 |
msgstr ""
|
8328 |
|
8329 |
+
#: includes/models/class-payment.php:157
|
8330 |
msgctxt "payment"
|
8331 |
msgid "Initial payment (\"%s\")"
|
8332 |
msgstr ""
|
8333 |
|
8334 |
+
#: includes/models/class-payment.php:160
|
8335 |
msgctxt "payment"
|
8336 |
msgid "Renewal payment (\"%s\")"
|
8337 |
msgstr ""
|
8338 |
|
8339 |
+
#: includes/models/class-payment.php:403
|
8340 |
#, fuzzy
|
8341 |
msgctxt "payment"
|
8342 |
msgid "Pending"
|
8343 |
msgstr "In Afwachting"
|
8344 |
|
8345 |
+
#: includes/models/class-payment.php:404
|
8346 |
msgctxt "payment"
|
8347 |
msgid "Failed"
|
8348 |
msgstr ""
|
8349 |
|
8350 |
+
#: includes/models/class-payment.php:405
|
8351 |
#, fuzzy
|
8352 |
msgctxt "payment"
|
8353 |
msgid "Completed"
|
8354 |
msgstr "Afgerond"
|
8355 |
|
8356 |
+
#: includes/models/class-payment.php:406
|
8357 |
#, fuzzy
|
8358 |
msgctxt "payment"
|
8359 |
msgid "Canceled"
|
8360 |
msgstr "Gecancelled"
|
8361 |
|
8362 |
+
#: includes/models/class-payment.php:407
|
8363 |
msgctxt "payment"
|
8364 |
msgid "On Hold"
|
8365 |
msgstr ""
|
8366 |
|
8367 |
+
#: includes/models/class-payment.php:408
|
8368 |
msgctxt "payment"
|
8369 |
msgid "Refunded"
|
8370 |
msgstr ""
|
8371 |
|
8372 |
+
#: includes/models/class-payment.php:172
|
8373 |
msgctxt "payment summary"
|
8374 |
msgid "%s. Admin Posted."
|
8375 |
msgstr ""
|
8376 |
|
8377 |
+
#: includes/models/class-payment.php:174
|
8378 |
#, fuzzy
|
8379 |
msgctxt "payment summary"
|
8380 |
msgid "%s. Imported Listing."
|
8401 |
msgid "File type \"%s\" is not allowed"
|
8402 |
msgstr ""
|
8403 |
|
8404 |
+
#: includes/utils.php:668
|
8405 |
msgctxt "utils"
|
8406 |
msgid ""
|
8407 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8531 |
"we'll answer it within 24 hours most days."
|
8532 |
msgstr ""
|
8533 |
|
8534 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
8535 |
msgctxt "admin infometabox"
|
8536 |
msgid "Renewal url (copy & paste)"
|
8537 |
msgstr ""
|
8538 |
|
8539 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
8540 |
msgctxt "admin infometabox"
|
8541 |
msgid "Get renewal URL"
|
8542 |
msgstr ""
|
8543 |
|
8544 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:149
|
8545 |
msgctxt "admin infometabox"
|
8546 |
msgid "Send renewal e-mail"
|
8547 |
msgstr ""
|
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"
|
@@ -311,7 +311,6 @@ msgstr ""
|
|
311 |
|
312 |
# @ WPBDM
|
313 |
#: includes/admin/controllers/class-admin-csv.php:54
|
314 |
-
#: templates/admin/csv-import.tpl.php:291
|
315 |
#, fuzzy
|
316 |
msgid "Help"
|
317 |
msgstr "Pomoc"
|
@@ -320,8 +319,8 @@ msgstr "Pomoc"
|
|
320 |
#: includes/admin/controllers/class-admin-fees.php:46
|
321 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
322 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
323 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
324 |
-
#: templates/admin/payments-details.tpl.php:
|
325 |
#: templates/email/listing-payment-completed.tpl.php:21
|
326 |
#: templates/payment/payment_items.tpl.php:5
|
327 |
#, fuzzy
|
@@ -408,7 +407,7 @@ msgstr "Upłynął okres ważności oferty."
|
|
408 |
|
409 |
# @ WPBDM
|
410 |
#: includes/admin/controllers/class-admin-listings.php:268
|
411 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
412 |
#, fuzzy
|
413 |
msgid "Expires on"
|
414 |
msgstr "Upłynął okres ważności "
|
@@ -422,7 +421,7 @@ msgstr "Atrybuty pola"
|
|
422 |
# @ WPBDM
|
423 |
#: includes/admin/controllers/class-admin-listings.php:339
|
424 |
#: includes/helpers/class-listing-display-helper.php:137
|
425 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
426 |
#, fuzzy
|
427 |
msgid "Featured"
|
428 |
msgstr "Status wyróżnienia (naklejka)"
|
@@ -443,7 +442,7 @@ msgstr "Usuń Ofertę"
|
|
443 |
|
444 |
# @ WPBDM
|
445 |
#: includes/admin/controllers/class-admin-listings.php:733
|
446 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
447 |
#, fuzzy
|
448 |
msgid "Never"
|
449 |
msgstr "nigdy"
|
@@ -451,8 +450,8 @@ msgstr "nigdy"
|
|
451 |
#: includes/admin/controllers/class-admin-listings.php:744
|
452 |
#: includes/admin/controllers/class-admin-listings.php:745
|
453 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
454 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
455 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
456 |
msgid "Yes"
|
457 |
msgstr ""
|
458 |
|
@@ -461,8 +460,8 @@ msgstr ""
|
|
461 |
#: includes/admin/controllers/class-admin-listings.php:745
|
462 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
463 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
464 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
465 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
466 |
#, fuzzy
|
467 |
msgid "No"
|
468 |
msgstr "LIS"
|
@@ -550,7 +549,7 @@ msgstr "Adres e-mail:"
|
|
550 |
|
551 |
# @ WPBDM
|
552 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
553 |
-
#: templates/admin/payments-details.tpl.php:
|
554 |
#: templates/checkout-billing-form.tpl.php:87
|
555 |
#, fuzzy
|
556 |
msgid "City"
|
@@ -558,21 +557,21 @@ msgstr "Miasto:"
|
|
558 |
|
559 |
# @ WPBDM
|
560 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
561 |
-
#: templates/admin/payments-details.tpl.php:
|
562 |
#, fuzzy
|
563 |
msgid "State"
|
564 |
msgstr "Województwo:"
|
565 |
|
566 |
# @ WPBDM
|
567 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
568 |
-
#: templates/admin/payments-details.tpl.php:
|
569 |
#: templates/checkout-billing-form.tpl.php:102
|
570 |
#, fuzzy
|
571 |
msgid "Country"
|
572 |
msgstr "Kraj:"
|
573 |
|
574 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
575 |
-
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:
|
576 |
msgid "ZIP Code"
|
577 |
msgstr ""
|
578 |
|
@@ -649,7 +648,7 @@ msgstr "Już zainstalowano."
|
|
649 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
650 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
651 |
#: templates/admin/payments-note.tpl.php:14
|
652 |
-
#: templates/admin/themes-item.tpl.php:
|
653 |
#: templates/parts/listing-buttons.tpl.php:31
|
654 |
#, fuzzy
|
655 |
msgid "Delete"
|
@@ -667,34 +666,34 @@ msgstr ""
|
|
667 |
|
668 |
# @ WPBDM
|
669 |
#. translators: %s: Sample business name
|
670 |
-
#: includes/admin/csv-import.php:
|
671 |
#, fuzzy
|
672 |
msgid "Business %s"
|
673 |
msgstr "Firmy %s"
|
674 |
|
|
|
|
|
|
|
|
|
675 |
# @ WPBDM
|
676 |
-
#: includes/admin/csv-import.php:
|
677 |
#, fuzzy
|
678 |
msgid "Example CSV Import File"
|
679 |
msgstr "Przykład importowanego pliku CSV"
|
680 |
|
681 |
-
#: includes/admin/csv-import.php:
|
682 |
-
msgid "Go Back"
|
683 |
-
msgstr ""
|
684 |
-
|
685 |
-
#: includes/admin/csv-import.php:333 includes/helpers/class-app.php:232
|
686 |
#: includes/helpers/class-app.php:244
|
687 |
msgid "You are not allowed to do that."
|
688 |
msgstr ""
|
689 |
|
690 |
# @ WPBDM
|
691 |
-
#: includes/admin/csv-import.php:
|
692 |
#, fuzzy
|
693 |
msgid "There was an error uploading the file:"
|
694 |
msgstr "Błąd podczas przesyłania pliku CSV."
|
695 |
|
696 |
# @ WPBDM
|
697 |
-
#: includes/admin/csv-import.php:
|
698 |
#, fuzzy
|
699 |
msgid "Please upload the correct file type."
|
700 |
msgstr "Proszę załadować nowy lub wybrać istniejący plik CSV."
|
@@ -740,7 +739,7 @@ msgstr "Nie zainstalowane"
|
|
740 |
# @ WPBDM
|
741 |
#: includes/admin/helpers/class-modules-list.php:226
|
742 |
#: includes/controllers/class-smtp.php:317
|
743 |
-
#: templates/admin/themes-item.tpl.php:
|
744 |
#, fuzzy
|
745 |
msgid "Activate"
|
746 |
msgstr "Aktywacja Licencji"
|
@@ -837,15 +836,15 @@ msgstr "Usuń abonament"
|
|
837 |
# @ WPBDM
|
838 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
839 |
#: includes/fields/class-fieldtypes-social.php:135
|
840 |
-
#: templates/admin/csv-import.tpl.php:
|
841 |
#, fuzzy
|
842 |
msgid "Type"
|
843 |
msgstr "Rodzaj"
|
844 |
|
845 |
# @ WPBDM
|
846 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
847 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
848 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
849 |
msgid "Edit"
|
850 |
msgstr "Edytuj"
|
851 |
|
@@ -855,6 +854,12 @@ msgstr "Edytuj"
|
|
855 |
msgid "Are you sure you want to delete that field?"
|
856 |
msgstr "Jesteś pewien, że chcesz usunąć pole \"%s\"?"
|
857 |
|
|
|
|
|
|
|
|
|
|
|
|
|
858 |
# @ WPBDM
|
859 |
#: includes/admin/page-debug.php:40
|
860 |
#, fuzzy
|
@@ -873,9 +878,9 @@ msgstr ""
|
|
873 |
|
874 |
# @ WPBDM
|
875 |
#: includes/admin/page-debug.php:159
|
876 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
877 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
878 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
879 |
#, fuzzy
|
880 |
msgid "OK"
|
881 |
msgstr "Wszystko w porządku"
|
@@ -888,7 +893,7 @@ msgstr "Oferty otagowane: %s"
|
|
888 |
# @ WPBDM
|
889 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
890 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
891 |
-
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:
|
892 |
#: templates/listing-contactform.tpl.php:33
|
893 |
#: templates/listing-flagging-form.tpl.php:39
|
894 |
#, fuzzy
|
@@ -1586,9 +1591,9 @@ msgstr ""
|
|
1586 |
|
1587 |
# @ WPBDM
|
1588 |
#: includes/class-assets.php:195
|
1589 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1590 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1591 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1592 |
#: templates/admin/settings-email.tpl.php:103
|
1593 |
#: templates/admin/settings-reset.tpl.php:8
|
1594 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
@@ -2070,48 +2075,48 @@ msgid "Select List"
|
|
2070 |
msgstr "Lista Wyboru"
|
2071 |
|
2072 |
# @ WPBDM
|
2073 |
-
#: includes/fields/class-fieldtypes-select.php:
|
2074 |
#, fuzzy
|
2075 |
msgid "-- Choose One --"
|
2076 |
msgstr "-- Wybierz Jeden --"
|
2077 |
|
2078 |
# @ WPBDM
|
2079 |
-
#: includes/fields/class-fieldtypes-select.php:
|
2080 |
#, fuzzy
|
2081 |
msgid "-- Choose Terms --"
|
2082 |
msgstr "-- Wybierz Warunki --"
|
2083 |
|
2084 |
-
#: includes/fields/class-fieldtypes-select.php:
|
2085 |
msgid "— None —"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
# @ WPBDM
|
2089 |
-
#: includes/fields/class-fieldtypes-select.php:
|
2090 |
#, fuzzy
|
2091 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
2092 |
msgstr "Opcje Pola (aby wybrać listy, przycisk radio i czeklisty)."
|
2093 |
|
2094 |
# @ default
|
2095 |
# @ WPBDM
|
2096 |
-
#: includes/fields/class-fieldtypes-select.php:
|
2097 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
2098 |
#: templates/admin/fees-form.tpl.php:58
|
2099 |
#, fuzzy
|
2100 |
msgid "required"
|
2101 |
msgstr "Wymagane"
|
2102 |
|
2103 |
-
#: includes/fields/class-fieldtypes-select.php:
|
2104 |
msgid "One option per line"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
# @ WPBDM
|
2108 |
-
#: includes/fields/class-fieldtypes-select.php:
|
2109 |
#, fuzzy
|
2110 |
msgid "Allow empty selection on search?"
|
2111 |
msgstr "Zezwolić na wyszukiwanie pustych pól wyborów?"
|
2112 |
|
2113 |
# @ WPBDM
|
2114 |
-
#: includes/fields/class-fieldtypes-select.php:
|
2115 |
#, fuzzy
|
2116 |
msgid "Field list of options is required."
|
2117 |
msgstr "Pole listy opcji wymagane."
|
@@ -2222,7 +2227,7 @@ msgid "Short Description"
|
|
2222 |
msgstr "Krótke Info"
|
2223 |
|
2224 |
# @ WPBDM
|
2225 |
-
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:
|
2226 |
#, fuzzy
|
2227 |
msgid "Description"
|
2228 |
msgstr "Opis pola"
|
@@ -2284,7 +2289,7 @@ msgid "Telephone Number Validator"
|
|
2284 |
msgstr "Weryfikator liczb całkowitych"
|
2285 |
|
2286 |
# @ WPBDM
|
2287 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
2288 |
#, fuzzy
|
2289 |
msgid "Field"
|
2290 |
msgstr "Pole"
|
@@ -2667,36 +2672,46 @@ msgid ""
|
|
2667 |
"our IP address 52.0.78.177 to your allow list."
|
2668 |
msgstr ""
|
2669 |
|
|
|
|
|
|
|
|
|
2670 |
# @ WPBDM
|
2671 |
-
#: includes/licensing.php:
|
2672 |
#, fuzzy
|
2673 |
msgid "Business Directory license key is missing."
|
2674 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2675 |
|
2676 |
# @ WPBDM
|
2677 |
-
#: includes/licensing.php:
|
2678 |
#, fuzzy
|
2679 |
msgid "Business Directory license key has expired"
|
2680 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2681 |
|
2682 |
# @ WPBDM
|
2683 |
-
#: includes/licensing.php:
|
2684 |
#, fuzzy
|
2685 |
msgid "Could not verify Business Directory license."
|
2686 |
msgstr "Pomóż doskonalić Katalog Firm"
|
2687 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2688 |
# @ WPBDM
|
2689 |
-
#: includes/licensing.php:
|
2690 |
#, fuzzy
|
2691 |
msgid "Review license keys"
|
2692 |
msgstr "Odśwież Klucz Licencji"
|
2693 |
|
2694 |
-
#: includes/licensing.php:
|
2695 |
msgid "Missing data. Please reload this page and try again."
|
2696 |
msgstr ""
|
2697 |
|
2698 |
# @ WPBDM
|
2699 |
-
#: includes/licensing.php:
|
2700 |
#, fuzzy
|
2701 |
msgid "Please enter a license key."
|
2702 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
@@ -3048,45 +3063,51 @@ msgid "Disable email notifications during import"
|
|
3048 |
msgstr "Wyłączyć powiadomienia e-mail podczas importu?"
|
3049 |
|
3050 |
# @ WPBDM
|
3051 |
-
#: templates/admin/csv-import.tpl.php:
|
3052 |
#, fuzzy
|
|
|
|
|
|
|
|
|
3053 |
msgid ""
|
3054 |
-
"The following are the
|
3055 |
-
"
|
3056 |
-
"the
|
3057 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
3058 |
msgstr ""
|
3059 |
-
"Proszę się upewnić, że wartości są prawidłowe dla nagłówków w pliku CSV. "
|
3060 |
-
"Pola wielowartościowe (takie jak kategoria lub tagi) może pojawić się wiele "
|
3061 |
-
"razy w pliku. Kliknij <a href=\"%s\">\"Zobacz przykładowy plik importu CSV"
|
3062 |
-
"\"</a> aby zobaczyć, jak powinien wyglądać plik importu."
|
3063 |
|
3064 |
# @ WPBDM
|
3065 |
-
#: templates/admin/csv-import.tpl.php:
|
3066 |
#, fuzzy
|
3067 |
msgid "Header name/label"
|
3068 |
msgstr "Nagłówek/Etykieta"
|
3069 |
|
3070 |
# @ WPBDM
|
3071 |
-
#: templates/admin/csv-import.tpl.php:
|
3072 |
#, fuzzy
|
3073 |
msgid "Required?"
|
3074 |
msgstr "Wymagane?"
|
3075 |
|
3076 |
# @ WPBDM
|
3077 |
-
#: templates/admin/csv-import.tpl.php:
|
3078 |
#, fuzzy
|
3079 |
msgid "Multivalued?"
|
3080 |
msgstr "Wielowartościowe?"
|
3081 |
|
3082 |
# @ WPBDM
|
3083 |
-
#: templates/admin/csv-import.tpl.php:
|
3084 |
#, fuzzy
|
3085 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
3086 |
msgstr "Lista rozdzielonych średnikami obrazów oferty (z pliku ZIP)"
|
3087 |
|
3088 |
# @ WPBDM
|
3089 |
-
#: templates/admin/csv-import.tpl.php:
|
3090 |
#, fuzzy
|
3091 |
msgid "Listing owner's username"
|
3092 |
msgstr "Autor oferty - Nazwa Użytkownika"
|
@@ -3342,14 +3363,14 @@ msgid "Plan"
|
|
3342 |
msgstr ""
|
3343 |
|
3344 |
# @ WPBDM
|
3345 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
3346 |
#: templates/plan-selection-plan.tpl.php:41
|
3347 |
#, fuzzy
|
3348 |
msgid "Recurring"
|
3349 |
msgstr "(powtarzające się)"
|
3350 |
|
3351 |
# @ WPBDM
|
3352 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
3353 |
#, fuzzy
|
3354 |
msgid "Renew listing"
|
3355 |
msgstr "Odnów Ofertę"
|
@@ -3385,7 +3406,7 @@ msgstr ""
|
|
3385 |
|
3386 |
# @ WPBDM
|
3387 |
#: templates/admin/payments-details.tpl.php:52
|
3388 |
-
#: templates/admin/payments-details.tpl.php:
|
3389 |
#, fuzzy
|
3390 |
msgid "Payment ID"
|
3391 |
msgstr "Płatność"
|
@@ -3415,80 +3436,84 @@ msgstr "Bramka"
|
|
3415 |
msgid "(Not yet set)"
|
3416 |
msgstr "Nie jesteś jeszcze zarejestrowany?"
|
3417 |
|
|
|
|
|
|
|
|
|
3418 |
# @ WPBDM
|
3419 |
-
#: templates/admin/payments-details.tpl.php:
|
3420 |
#, fuzzy
|
3421 |
msgid "Delete Payment"
|
3422 |
msgstr "Odrzucenie płatności"
|
3423 |
|
3424 |
# @ WPBDM
|
3425 |
-
#: templates/admin/payments-details.tpl.php:
|
3426 |
#, fuzzy
|
3427 |
msgid "Save Payment"
|
3428 |
msgstr "Płatność"
|
3429 |
|
3430 |
# @ WPBDM
|
3431 |
-
#: templates/admin/payments-details.tpl.php:
|
3432 |
#, fuzzy
|
3433 |
msgid "Details"
|
3434 |
msgstr "+ Szczegóły"
|
3435 |
|
3436 |
# @ WPBDM
|
3437 |
-
#: templates/admin/payments-details.tpl.php:
|
3438 |
#, fuzzy
|
3439 |
msgid "Item Type"
|
3440 |
msgstr "Rodzaj pola"
|
3441 |
|
3442 |
# @ WPBDM
|
3443 |
-
#: templates/admin/payments-details.tpl.php:
|
3444 |
#: templates/payment/payment_items.tpl.php:23
|
3445 |
#, fuzzy
|
3446 |
msgid "Total"
|
3447 |
msgstr "Całkowity koszt"
|
3448 |
|
3449 |
# @ WPBDM
|
3450 |
-
#: templates/admin/payments-details.tpl.php:
|
3451 |
#, fuzzy
|
3452 |
msgid "Customer Details"
|
3453 |
msgstr "Aktualne Szczegóły Abonamentu"
|
3454 |
|
3455 |
# @ WPBDM
|
3456 |
-
#: templates/admin/payments-details.tpl.php:
|
3457 |
#: templates/checkout-billing-form.tpl.php:17
|
3458 |
#, fuzzy
|
3459 |
msgid "First Name"
|
3460 |
msgstr "Nazwisko:"
|
3461 |
|
3462 |
# @ WPBDM
|
3463 |
-
#: templates/admin/payments-details.tpl.php:
|
3464 |
#: templates/checkout-billing-form.tpl.php:22
|
3465 |
#, fuzzy
|
3466 |
msgid "Last Name"
|
3467 |
msgstr "Imię:"
|
3468 |
|
3469 |
# @ WPBDM
|
3470 |
-
#: templates/admin/payments-details.tpl.php:
|
3471 |
#, fuzzy
|
3472 |
msgid "Address Line 1"
|
3473 |
msgstr "Adres - linia1:"
|
3474 |
|
3475 |
# @ WPBDM
|
3476 |
-
#: templates/admin/payments-details.tpl.php:
|
3477 |
#: templates/checkout-billing-form.tpl.php:81
|
3478 |
#, fuzzy
|
3479 |
msgid "Address Line 2"
|
3480 |
msgstr "Adres - linia2:"
|
3481 |
|
3482 |
-
#: templates/admin/payments-details.tpl.php:
|
3483 |
msgid "Notes & Log"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: templates/admin/payments-details.tpl.php:
|
3487 |
msgid "No notes."
|
3488 |
msgstr ""
|
3489 |
|
3490 |
# @ WPBDM
|
3491 |
-
#: templates/admin/payments-details.tpl.php:
|
3492 |
#, fuzzy
|
3493 |
msgid "Add Note"
|
3494 |
msgstr "Dodaj abonament"
|
@@ -3672,23 +3697,29 @@ msgid "Upload"
|
|
3672 |
msgstr "Moduł przesyłania plików"
|
3673 |
|
3674 |
# @ WPBDM
|
3675 |
-
#: templates/admin/themes-item.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3676 |
#, fuzzy
|
3677 |
msgid "Inactive"
|
3678 |
msgstr "Tylko aktywne"
|
3679 |
|
3680 |
-
#: templates/admin/themes-item.tpl.php:
|
3681 |
msgid "Updating theme..."
|
3682 |
msgstr ""
|
3683 |
|
3684 |
# @ WPBDM
|
3685 |
-
#: templates/admin/themes-item.tpl.php:
|
3686 |
#, fuzzy
|
3687 |
msgid "Theme updated."
|
3688 |
msgstr "Abonament zaktualizowany"
|
3689 |
|
3690 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3691 |
-
#: templates/admin/themes-item.tpl.php:
|
3692 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3693 |
msgstr ""
|
3694 |
|
@@ -5251,13 +5282,6 @@ msgctxt "payments admin"
|
|
5251 |
msgid "All"
|
5252 |
msgstr "Wszystkie"
|
5253 |
|
5254 |
-
# @ WPBDM
|
5255 |
-
#: includes/admin/helpers/tables/class-payments-table.php:134
|
5256 |
-
#, fuzzy
|
5257 |
-
msgctxt "payments admin"
|
5258 |
-
msgid "View Payment History"
|
5259 |
-
msgstr "Historia płatności"
|
5260 |
-
|
5261 |
# @ WPBDM
|
5262 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
5263 |
msgctxt "form-fields admin"
|
@@ -5366,32 +5390,32 @@ msgid "In Listing"
|
|
5366 |
msgstr "W ofertach"
|
5367 |
|
5368 |
# @ WPBDM
|
5369 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
5370 |
#, fuzzy
|
5371 |
msgctxt "form-fields admin"
|
5372 |
msgid "Select All"
|
5373 |
msgstr "Lista Wyboru"
|
5374 |
|
5375 |
# @ WPBDM
|
5376 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
5377 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
5378 |
msgctxt "form-fields admin"
|
5379 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
5380 |
msgstr "Opcje Pola (aby wybrać listy, przycisk radio i czeklisty)."
|
5381 |
|
5382 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
5383 |
msgctxt "form-fields admin"
|
5384 |
msgid "Include \"Select all\"?"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
5388 |
msgctxt "form-fields admin"
|
5389 |
msgid "Display \"Select all\" option among options above."
|
5390 |
msgstr ""
|
5391 |
|
5392 |
# @ WPBDM
|
5393 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
5394 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
5395 |
msgctxt "form-fields admin"
|
5396 |
msgid "Field list of options is required."
|
5397 |
msgstr "Pole listy opcji wymagane."
|
@@ -7556,19 +7580,19 @@ msgid "← Return to CSV Export"
|
|
7556 |
msgstr "← Powrót do CSV Eksport"
|
7557 |
|
7558 |
# @ WPBDM
|
7559 |
-
#: includes/admin/csv-import.php:
|
7560 |
msgctxt "admin csv-import"
|
7561 |
msgid "Whatever"
|
7562 |
msgstr "Cokolwiek"
|
7563 |
|
7564 |
# @ WPBDM
|
7565 |
-
#: includes/admin/csv-import.php:
|
7566 |
msgctxt "admin csv-import"
|
7567 |
msgid "Please upload or select a CSV file."
|
7568 |
msgstr "Proszę załadować nowy lub wybrać istniejący plik CSV."
|
7569 |
|
7570 |
# @ WPBDM
|
7571 |
-
#: includes/admin/csv-import.php:
|
7572 |
msgctxt "admin csv-import"
|
7573 |
msgid ""
|
7574 |
"An error was detected while validating the CSV file for import. Please fix "
|
@@ -7578,7 +7602,7 @@ msgstr ""
|
|
7578 |
"sprawdzić przed kontynuacją."
|
7579 |
|
7580 |
# @ WPBDM
|
7581 |
-
#: includes/admin/csv-import.php:
|
7582 |
msgctxt "admin csv-import"
|
7583 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
7584 |
msgstr ""
|
@@ -7826,7 +7850,7 @@ msgid "Import Listings"
|
|
7826 |
msgstr "Import ofert"
|
7827 |
|
7828 |
# @ WPBDM
|
7829 |
-
#: templates/admin/csv-import.tpl.php:
|
7830 |
#, fuzzy
|
7831 |
msgctxt "admin csv-import"
|
7832 |
msgid ""
|
@@ -7837,7 +7861,7 @@ msgstr ""
|
|
7837 |
"podczas dodawania lub aktualizowania oferty ze źródeł zewnętrznych."
|
7838 |
|
7839 |
# @ WPBDM
|
7840 |
-
#: templates/admin/csv-import.tpl.php:
|
7841 |
msgctxt "admin csv-import"
|
7842 |
msgid ""
|
7843 |
"Internal Sequence ID used to allow listing updates from external sources."
|
@@ -7846,7 +7870,7 @@ msgstr ""
|
|
7846 |
"ofercie aktualizacji ze źródeł zewnętrznych."
|
7847 |
|
7848 |
# @ WPBDM
|
7849 |
-
#: templates/admin/csv-import.tpl.php:
|
7850 |
msgctxt "admin csv-import"
|
7851 |
msgid ""
|
7852 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
@@ -7856,7 +7880,7 @@ msgstr ""
|
|
7856 |
"podczas dodawania lub aktualizowania oferty ze źródeł zewnętrznych."
|
7857 |
|
7858 |
# @ csv import
|
7859 |
-
#: includes/admin/csv-import.php:
|
7860 |
#, fuzzy
|
7861 |
msgctxt "csv import"
|
7862 |
msgid ""
|
@@ -7905,13 +7929,13 @@ msgctxt "listing metabox"
|
|
7905 |
msgid "Plan Details"
|
7906 |
msgstr "Szczegóły Planu"
|
7907 |
|
7908 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7909 |
msgctxt "listing metabox"
|
7910 |
msgid "Change plan"
|
7911 |
msgstr ""
|
7912 |
|
7913 |
# @ WPBDM
|
7914 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7915 |
#, fuzzy
|
7916 |
msgctxt "listing metabox"
|
7917 |
msgid "# of images"
|
@@ -8737,7 +8761,7 @@ msgid "Send Message to listing owner"
|
|
8737 |
msgstr "Wyślij wiadomość do właściciela oferty"
|
8738 |
|
8739 |
# @ WPBDM
|
8740 |
-
#: includes/controllers/pages/class-main.php:
|
8741 |
msgctxt "templates"
|
8742 |
msgid ""
|
8743 |
"There are no categories assigned to the business directory yet. You need to "
|
@@ -8753,13 +8777,13 @@ msgstr ""
|
|
8753 |
"przypisania kategorii do Katalogu Firm."
|
8754 |
|
8755 |
# @ WPBDM
|
8756 |
-
#: includes/controllers/pages/class-main.php:
|
8757 |
msgctxt "templates"
|
8758 |
msgid "There are currently no listings in the directory."
|
8759 |
msgstr "Chwilowo brak ofert w Katalogu."
|
8760 |
|
8761 |
# @ WPBDM
|
8762 |
-
#: includes/controllers/pages/class-main.php:
|
8763 |
msgctxt "templates"
|
8764 |
msgid ""
|
8765 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
@@ -9287,7 +9311,7 @@ msgid "The e-mail address you chose for your account is already in use."
|
|
9287 |
msgstr ""
|
9288 |
|
9289 |
# @ WPBDM
|
9290 |
-
#: includes/models/class-payment.php:
|
9291 |
#, fuzzy
|
9292 |
msgctxt "submit listing"
|
9293 |
msgid "Listing submitted by admin. Payment skipped."
|
@@ -9407,7 +9431,7 @@ msgstr ""
|
|
9407 |
"działania pluginu."
|
9408 |
|
9409 |
# @ WPBDM
|
9410 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
9411 |
#, fuzzy
|
9412 |
msgctxt "checkbox form field"
|
9413 |
msgid "Select all"
|
@@ -9709,31 +9733,31 @@ msgid "The server returned a 403 Forbidden error."
|
|
9709 |
msgstr ""
|
9710 |
|
9711 |
# @ WPBDM
|
9712 |
-
#: includes/licensing.php:
|
9713 |
msgctxt "licensing"
|
9714 |
msgid "Could not activate license: %s."
|
9715 |
msgstr "Nie możemy aktywować Licencji: %s."
|
9716 |
|
9717 |
# @ WPBDM
|
9718 |
-
#: includes/licensing.php:
|
9719 |
msgctxt "licensing"
|
9720 |
msgid "License activated"
|
9721 |
msgstr "Licencja została aktywowana"
|
9722 |
|
9723 |
# @ WPBDM
|
9724 |
-
#: includes/licensing.php:
|
9725 |
msgctxt "licensing"
|
9726 |
msgid "Could not deactivate license: %s."
|
9727 |
msgstr "Nie możemy deaktywować Licencji: %s."
|
9728 |
|
9729 |
# @ WPBDM
|
9730 |
-
#: includes/licensing.php:
|
9731 |
msgctxt "licensing"
|
9732 |
msgid "License deactivated"
|
9733 |
msgstr "Licencja deaktywowana"
|
9734 |
|
9735 |
#. translators: "<module-name>" version <version-number> is not...
|
9736 |
-
#: includes/licensing.php:
|
9737 |
msgctxt "deprecation"
|
9738 |
msgid ""
|
9739 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -9758,21 +9782,21 @@ msgstr[1] "Liczba dozwolonych obrazów"
|
|
9758 |
msgstr[2] "Liczba dozwolonych obrazów"
|
9759 |
|
9760 |
# @ WPBDM
|
9761 |
-
#: includes/models/class-fee-plan.php:
|
9762 |
#, fuzzy
|
9763 |
msgctxt "fees-api"
|
9764 |
msgid "Plan label is required."
|
9765 |
msgstr "Etykieta pola jest wymagana."
|
9766 |
|
9767 |
# @ WPBDM
|
9768 |
-
#: includes/models/class-fee-plan.php:
|
9769 |
msgctxt "fees-api"
|
9770 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
9771 |
msgstr ""
|
9772 |
"Abonament dla okresu ważności oferty musi zawierać się w liczbie dodatniej, "
|
9773 |
"całkowitej."
|
9774 |
|
9775 |
-
#: includes/models/class-fee-plan.php:
|
9776 |
msgctxt "fees-api"
|
9777 |
msgid ""
|
9778 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
@@ -9780,75 +9804,75 @@ msgid ""
|
|
9780 |
"<a>plan</a> appropriately."
|
9781 |
msgstr ""
|
9782 |
|
9783 |
-
#: includes/models/class-fee-plan.php:
|
9784 |
msgctxt "fees-api"
|
9785 |
msgid ""
|
9786 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
9787 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
9788 |
msgstr ""
|
9789 |
|
9790 |
-
#: includes/models/class-payment.php:
|
9791 |
msgctxt "payment"
|
9792 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
9793 |
msgstr ""
|
9794 |
|
9795 |
# @ WPBDM
|
9796 |
-
#: includes/models/class-payment.php:
|
9797 |
#, fuzzy
|
9798 |
msgctxt "payment"
|
9799 |
msgid "Initial payment (\"%s\")"
|
9800 |
msgstr "Inicjacja Płatności"
|
9801 |
|
9802 |
# @ WPBDM
|
9803 |
-
#: includes/models/class-payment.php:
|
9804 |
#, fuzzy
|
9805 |
msgctxt "payment"
|
9806 |
msgid "Renewal payment (\"%s\")"
|
9807 |
msgstr "Odrzucenie płatności"
|
9808 |
|
9809 |
# @ WPBDM
|
9810 |
-
#: includes/models/class-payment.php:
|
9811 |
#, fuzzy
|
9812 |
msgctxt "payment"
|
9813 |
msgid "Pending"
|
9814 |
msgstr "Oczekujące"
|
9815 |
|
9816 |
-
#: includes/models/class-payment.php:
|
9817 |
msgctxt "payment"
|
9818 |
msgid "Failed"
|
9819 |
msgstr ""
|
9820 |
|
9821 |
# @ WPBDM
|
9822 |
-
#: includes/models/class-payment.php:
|
9823 |
#, fuzzy
|
9824 |
msgctxt "payment"
|
9825 |
msgid "Completed"
|
9826 |
msgstr "Zakończona"
|
9827 |
|
9828 |
# @ WPBDM
|
9829 |
-
#: includes/models/class-payment.php:
|
9830 |
#, fuzzy
|
9831 |
msgctxt "payment"
|
9832 |
msgid "Canceled"
|
9833 |
msgstr "Anulowana"
|
9834 |
|
9835 |
-
#: includes/models/class-payment.php:
|
9836 |
msgctxt "payment"
|
9837 |
msgid "On Hold"
|
9838 |
msgstr ""
|
9839 |
|
9840 |
-
#: includes/models/class-payment.php:
|
9841 |
msgctxt "payment"
|
9842 |
msgid "Refunded"
|
9843 |
msgstr ""
|
9844 |
|
9845 |
-
#: includes/models/class-payment.php:
|
9846 |
msgctxt "payment summary"
|
9847 |
msgid "%s. Admin Posted."
|
9848 |
msgstr ""
|
9849 |
|
9850 |
# @ WPBDM
|
9851 |
-
#: includes/models/class-payment.php:
|
9852 |
#, fuzzy
|
9853 |
msgctxt "payment summary"
|
9854 |
msgid "%s. Imported Listing."
|
@@ -9880,7 +9904,7 @@ msgid "File type \"%s\" is not allowed"
|
|
9880 |
msgstr "Pliki typu \"%s\" , nie są dozwolone"
|
9881 |
|
9882 |
# @ WPBDM
|
9883 |
-
#: includes/utils.php:
|
9884 |
msgctxt "utils"
|
9885 |
msgid ""
|
9886 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -10032,19 +10056,19 @@ msgid ""
|
|
10032 |
msgstr ""
|
10033 |
|
10034 |
# @ WPBDM
|
10035 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
10036 |
#, fuzzy
|
10037 |
msgctxt "admin infometabox"
|
10038 |
msgid "Renewal url (copy & paste)"
|
10039 |
msgstr "Adres URL odnowienia (kopiuj i wklej)"
|
10040 |
|
10041 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
10042 |
msgctxt "admin infometabox"
|
10043 |
msgid "Get renewal URL"
|
10044 |
msgstr ""
|
10045 |
|
10046 |
# @ WPBDM
|
10047 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
10048 |
#, fuzzy
|
10049 |
msgctxt "admin infometabox"
|
10050 |
msgid "Send renewal e-mail"
|
@@ -10297,6 +10321,25 @@ msgctxt "send-access-keys"
|
|
10297 |
msgid "Continue"
|
10298 |
msgstr "Kontynuacja"
|
10299 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10300 |
# @ WPBDM
|
10301 |
#, fuzzy
|
10302 |
#~ msgctxt "uninstall"
|
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-11-03 17:40:34+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"
|
311 |
|
312 |
# @ WPBDM
|
313 |
#: includes/admin/controllers/class-admin-csv.php:54
|
|
|
314 |
#, fuzzy
|
315 |
msgid "Help"
|
316 |
msgstr "Pomoc"
|
319 |
#: includes/admin/controllers/class-admin-fees.php:46
|
320 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
321 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
322 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:81
|
323 |
+
#: templates/admin/payments-details.tpl.php:124
|
324 |
#: templates/email/listing-payment-completed.tpl.php:21
|
325 |
#: templates/payment/payment_items.tpl.php:5
|
326 |
#, fuzzy
|
407 |
|
408 |
# @ WPBDM
|
409 |
#: includes/admin/controllers/class-admin-listings.php:268
|
410 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:87
|
411 |
#, fuzzy
|
412 |
msgid "Expires on"
|
413 |
msgstr "Upłynął okres ważności "
|
421 |
# @ WPBDM
|
422 |
#: includes/admin/controllers/class-admin-listings.php:339
|
423 |
#: includes/helpers/class-listing-display-helper.php:137
|
424 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:118
|
425 |
#, fuzzy
|
426 |
msgid "Featured"
|
427 |
msgstr "Status wyróżnienia (naklejka)"
|
442 |
|
443 |
# @ WPBDM
|
444 |
#: includes/admin/controllers/class-admin-listings.php:733
|
445 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:96
|
446 |
#, fuzzy
|
447 |
msgid "Never"
|
448 |
msgstr "nigdy"
|
450 |
#: includes/admin/controllers/class-admin-listings.php:744
|
451 |
#: includes/admin/controllers/class-admin-listings.php:745
|
452 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
453 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
454 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
455 |
msgid "Yes"
|
456 |
msgstr ""
|
457 |
|
460 |
#: includes/admin/controllers/class-admin-listings.php:745
|
461 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
462 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
463 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
464 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
465 |
#, fuzzy
|
466 |
msgid "No"
|
467 |
msgstr "LIS"
|
549 |
|
550 |
# @ WPBDM
|
551 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
552 |
+
#: templates/admin/payments-details.tpl.php:175
|
553 |
#: templates/checkout-billing-form.tpl.php:87
|
554 |
#, fuzzy
|
555 |
msgid "City"
|
557 |
|
558 |
# @ WPBDM
|
559 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
560 |
+
#: templates/admin/payments-details.tpl.php:171
|
561 |
#, fuzzy
|
562 |
msgid "State"
|
563 |
msgstr "Województwo:"
|
564 |
|
565 |
# @ WPBDM
|
566 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
567 |
+
#: templates/admin/payments-details.tpl.php:167
|
568 |
#: templates/checkout-billing-form.tpl.php:102
|
569 |
#, fuzzy
|
570 |
msgid "Country"
|
571 |
msgstr "Kraj:"
|
572 |
|
573 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
574 |
+
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:179
|
575 |
msgid "ZIP Code"
|
576 |
msgstr ""
|
577 |
|
648 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
649 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
650 |
#: templates/admin/payments-note.tpl.php:14
|
651 |
+
#: templates/admin/themes-item.tpl.php:51
|
652 |
#: templates/parts/listing-buttons.tpl.php:31
|
653 |
#, fuzzy
|
654 |
msgid "Delete"
|
666 |
|
667 |
# @ WPBDM
|
668 |
#. translators: %s: Sample business name
|
669 |
+
#: includes/admin/csv-import.php:136
|
670 |
#, fuzzy
|
671 |
msgid "Business %s"
|
672 |
msgstr "Firmy %s"
|
673 |
|
674 |
+
#: includes/admin/csv-import.php:183
|
675 |
+
msgid "Download Example"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
# @ WPBDM
|
679 |
+
#: includes/admin/csv-import.php:185
|
680 |
#, fuzzy
|
681 |
msgid "Example CSV Import File"
|
682 |
msgstr "Przykład importowanego pliku CSV"
|
683 |
|
684 |
+
#: includes/admin/csv-import.php:358 includes/helpers/class-app.php:232
|
|
|
|
|
|
|
|
|
685 |
#: includes/helpers/class-app.php:244
|
686 |
msgid "You are not allowed to do that."
|
687 |
msgstr ""
|
688 |
|
689 |
# @ WPBDM
|
690 |
+
#: includes/admin/csv-import.php:451
|
691 |
#, fuzzy
|
692 |
msgid "There was an error uploading the file:"
|
693 |
msgstr "Błąd podczas przesyłania pliku CSV."
|
694 |
|
695 |
# @ WPBDM
|
696 |
+
#: includes/admin/csv-import.php:456
|
697 |
#, fuzzy
|
698 |
msgid "Please upload the correct file type."
|
699 |
msgstr "Proszę załadować nowy lub wybrać istniejący plik CSV."
|
739 |
# @ WPBDM
|
740 |
#: includes/admin/helpers/class-modules-list.php:226
|
741 |
#: includes/controllers/class-smtp.php:317
|
742 |
+
#: templates/admin/themes-item.tpl.php:59
|
743 |
#, fuzzy
|
744 |
msgid "Activate"
|
745 |
msgstr "Aktywacja Licencji"
|
836 |
# @ WPBDM
|
837 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
838 |
#: includes/fields/class-fieldtypes-social.php:135
|
839 |
+
#: templates/admin/csv-import.tpl.php:314
|
840 |
#, fuzzy
|
841 |
msgid "Type"
|
842 |
msgstr "Rodzaj"
|
843 |
|
844 |
# @ WPBDM
|
845 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
846 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:93
|
847 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:110
|
848 |
msgid "Edit"
|
849 |
msgstr "Edytuj"
|
850 |
|
854 |
msgid "Are you sure you want to delete that field?"
|
855 |
msgstr "Jesteś pewien, że chcesz usunąć pole \"%s\"?"
|
856 |
|
857 |
+
# @ WPBDM
|
858 |
+
#: includes/admin/helpers/tables/class-payments-table.php:143
|
859 |
+
#, fuzzy
|
860 |
+
msgid "View Payment"
|
861 |
+
msgstr "Płatność"
|
862 |
+
|
863 |
# @ WPBDM
|
864 |
#: includes/admin/page-debug.php:40
|
865 |
#, fuzzy
|
878 |
|
879 |
# @ WPBDM
|
880 |
#: includes/admin/page-debug.php:159
|
881 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:76
|
882 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:99
|
883 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:114
|
884 |
#, fuzzy
|
885 |
msgid "OK"
|
886 |
msgstr "Wszystko w porządku"
|
893 |
# @ WPBDM
|
894 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
895 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
896 |
+
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:151
|
897 |
#: templates/listing-contactform.tpl.php:33
|
898 |
#: templates/listing-flagging-form.tpl.php:39
|
899 |
#, fuzzy
|
1591 |
|
1592 |
# @ WPBDM
|
1593 |
#: includes/class-assets.php:195
|
1594 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:77
|
1595 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:100
|
1596 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:115
|
1597 |
#: templates/admin/settings-email.tpl.php:103
|
1598 |
#: templates/admin/settings-reset.tpl.php:8
|
1599 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
2075 |
msgstr "Lista Wyboru"
|
2076 |
|
2077 |
# @ WPBDM
|
2078 |
+
#: includes/fields/class-fieldtypes-select.php:117
|
2079 |
#, fuzzy
|
2080 |
msgid "-- Choose One --"
|
2081 |
msgstr "-- Wybierz Jeden --"
|
2082 |
|
2083 |
# @ WPBDM
|
2084 |
+
#: includes/fields/class-fieldtypes-select.php:144
|
2085 |
#, fuzzy
|
2086 |
msgid "-- Choose Terms --"
|
2087 |
msgstr "-- Wybierz Warunki --"
|
2088 |
|
2089 |
+
#: includes/fields/class-fieldtypes-select.php:210
|
2090 |
msgid "— None —"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
# @ WPBDM
|
2094 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
2095 |
#, fuzzy
|
2096 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
2097 |
msgstr "Opcje Pola (aby wybrać listy, przycisk radio i czeklisty)."
|
2098 |
|
2099 |
# @ default
|
2100 |
# @ WPBDM
|
2101 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
2102 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
2103 |
#: templates/admin/fees-form.tpl.php:58
|
2104 |
#, fuzzy
|
2105 |
msgid "required"
|
2106 |
msgstr "Wymagane"
|
2107 |
|
2108 |
+
#: includes/fields/class-fieldtypes-select.php:269
|
2109 |
msgid "One option per line"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
# @ WPBDM
|
2113 |
+
#: includes/fields/class-fieldtypes-select.php:279
|
2114 |
#, fuzzy
|
2115 |
msgid "Allow empty selection on search?"
|
2116 |
msgstr "Zezwolić na wyszukiwanie pustych pól wyborów?"
|
2117 |
|
2118 |
# @ WPBDM
|
2119 |
+
#: includes/fields/class-fieldtypes-select.php:297
|
2120 |
#, fuzzy
|
2121 |
msgid "Field list of options is required."
|
2122 |
msgstr "Pole listy opcji wymagane."
|
2227 |
msgstr "Krótke Info"
|
2228 |
|
2229 |
# @ WPBDM
|
2230 |
+
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:123
|
2231 |
#, fuzzy
|
2232 |
msgid "Description"
|
2233 |
msgstr "Opis pola"
|
2289 |
msgstr "Weryfikator liczb całkowitych"
|
2290 |
|
2291 |
# @ WPBDM
|
2292 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:313
|
2293 |
#, fuzzy
|
2294 |
msgid "Field"
|
2295 |
msgstr "Pole"
|
2672 |
"our IP address 52.0.78.177 to your allow list."
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: includes/licensing.php:645
|
2676 |
+
msgid "Download Premium"
|
2677 |
+
msgstr ""
|
2678 |
+
|
2679 |
# @ WPBDM
|
2680 |
+
#: includes/licensing.php:695
|
2681 |
#, fuzzy
|
2682 |
msgid "Business Directory license key is missing."
|
2683 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2684 |
|
2685 |
# @ WPBDM
|
2686 |
+
#: includes/licensing.php:696
|
2687 |
#, fuzzy
|
2688 |
msgid "Business Directory license key has expired"
|
2689 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2690 |
|
2691 |
# @ WPBDM
|
2692 |
+
#: includes/licensing.php:697
|
2693 |
#, fuzzy
|
2694 |
msgid "Could not verify Business Directory license."
|
2695 |
msgstr "Pomóż doskonalić Katalog Firm"
|
2696 |
|
2697 |
+
#: includes/licensing.php:698
|
2698 |
+
msgid ""
|
2699 |
+
"You have modules installed, but Business Directory Premium is missing. "
|
2700 |
+
"Install this plugin for extra features and easy license management."
|
2701 |
+
msgstr ""
|
2702 |
+
|
2703 |
# @ WPBDM
|
2704 |
+
#: includes/licensing.php:709
|
2705 |
#, fuzzy
|
2706 |
msgid "Review license keys"
|
2707 |
msgstr "Odśwież Klucz Licencji"
|
2708 |
|
2709 |
+
#: includes/licensing.php:824
|
2710 |
msgid "Missing data. Please reload this page and try again."
|
2711 |
msgstr ""
|
2712 |
|
2713 |
# @ WPBDM
|
2714 |
+
#: includes/licensing.php:829
|
2715 |
#, fuzzy
|
2716 |
msgid "Please enter a license key."
|
2717 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
3063 |
msgstr "Wyłączyć powiadomienia e-mail podczas importu?"
|
3064 |
|
3065 |
# @ WPBDM
|
3066 |
+
#: templates/admin/csv-import.tpl.php:291
|
3067 |
#, fuzzy
|
3068 |
+
msgid "CSV File Formatting"
|
3069 |
+
msgstr "Ustawienia pliku CSV"
|
3070 |
+
|
3071 |
+
#: templates/admin/csv-import.tpl.php:296
|
3072 |
msgid ""
|
3073 |
+
"The following are the header names to use in your CSV file for your current "
|
3074 |
+
"setup. The headers in your CSV file must EXACTLY match (case and "
|
3075 |
+
"punctuation) the names listed here. Fields such as categories or tags can "
|
3076 |
+
"appear multiple times in the file."
|
3077 |
+
msgstr ""
|
3078 |
+
|
3079 |
+
#: templates/admin/csv-import.tpl.php:303
|
3080 |
+
msgid ""
|
3081 |
+
"<a href=\"%s\">See an example CSV import file</a> to see how your file "
|
3082 |
+
"should be formatted."
|
3083 |
msgstr ""
|
|
|
|
|
|
|
|
|
3084 |
|
3085 |
# @ WPBDM
|
3086 |
+
#: templates/admin/csv-import.tpl.php:312
|
3087 |
#, fuzzy
|
3088 |
msgid "Header name/label"
|
3089 |
msgstr "Nagłówek/Etykieta"
|
3090 |
|
3091 |
# @ WPBDM
|
3092 |
+
#: templates/admin/csv-import.tpl.php:315
|
3093 |
#, fuzzy
|
3094 |
msgid "Required?"
|
3095 |
msgstr "Wymagane?"
|
3096 |
|
3097 |
# @ WPBDM
|
3098 |
+
#: templates/admin/csv-import.tpl.php:316
|
3099 |
#, fuzzy
|
3100 |
msgid "Multivalued?"
|
3101 |
msgstr "Wielowartościowe?"
|
3102 |
|
3103 |
# @ WPBDM
|
3104 |
+
#: templates/admin/csv-import.tpl.php:348
|
3105 |
#, fuzzy
|
3106 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
3107 |
msgstr "Lista rozdzielonych średnikami obrazów oferty (z pliku ZIP)"
|
3108 |
|
3109 |
# @ WPBDM
|
3110 |
+
#: templates/admin/csv-import.tpl.php:355
|
3111 |
#, fuzzy
|
3112 |
msgid "Listing owner's username"
|
3113 |
msgstr "Autor oferty - Nazwa Użytkownika"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
# @ WPBDM
|
3366 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:125
|
3367 |
#: templates/plan-selection-plan.tpl.php:41
|
3368 |
#, fuzzy
|
3369 |
msgid "Recurring"
|
3370 |
msgstr "(powtarzające się)"
|
3371 |
|
3372 |
# @ WPBDM
|
3373 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:155
|
3374 |
#, fuzzy
|
3375 |
msgid "Renew listing"
|
3376 |
msgstr "Odnów Ofertę"
|
3406 |
|
3407 |
# @ WPBDM
|
3408 |
#: templates/admin/payments-details.tpl.php:52
|
3409 |
+
#: templates/admin/payments-details.tpl.php:94
|
3410 |
#, fuzzy
|
3411 |
msgid "Payment ID"
|
3412 |
msgstr "Płatność"
|
3436 |
msgid "(Not yet set)"
|
3437 |
msgstr "Nie jesteś jeszcze zarejestrowany?"
|
3438 |
|
3439 |
+
#: templates/admin/payments-details.tpl.php:89
|
3440 |
+
msgid "- Test Mode"
|
3441 |
+
msgstr ""
|
3442 |
+
|
3443 |
# @ WPBDM
|
3444 |
+
#: templates/admin/payments-details.tpl.php:105
|
3445 |
#, fuzzy
|
3446 |
msgid "Delete Payment"
|
3447 |
msgstr "Odrzucenie płatności"
|
3448 |
|
3449 |
# @ WPBDM
|
3450 |
+
#: templates/admin/payments-details.tpl.php:107
|
3451 |
#, fuzzy
|
3452 |
msgid "Save Payment"
|
3453 |
msgstr "Płatność"
|
3454 |
|
3455 |
# @ WPBDM
|
3456 |
+
#: templates/admin/payments-details.tpl.php:118
|
3457 |
#, fuzzy
|
3458 |
msgid "Details"
|
3459 |
msgstr "+ Szczegóły"
|
3460 |
|
3461 |
# @ WPBDM
|
3462 |
+
#: templates/admin/payments-details.tpl.php:122
|
3463 |
#, fuzzy
|
3464 |
msgid "Item Type"
|
3465 |
msgstr "Rodzaj pola"
|
3466 |
|
3467 |
# @ WPBDM
|
3468 |
+
#: templates/admin/payments-details.tpl.php:135
|
3469 |
#: templates/payment/payment_items.tpl.php:23
|
3470 |
#, fuzzy
|
3471 |
msgid "Total"
|
3472 |
msgstr "Całkowity koszt"
|
3473 |
|
3474 |
# @ WPBDM
|
3475 |
+
#: templates/admin/payments-details.tpl.php:146
|
3476 |
#, fuzzy
|
3477 |
msgid "Customer Details"
|
3478 |
msgstr "Aktualne Szczegóły Abonamentu"
|
3479 |
|
3480 |
# @ WPBDM
|
3481 |
+
#: templates/admin/payments-details.tpl.php:156
|
3482 |
#: templates/checkout-billing-form.tpl.php:17
|
3483 |
#, fuzzy
|
3484 |
msgid "First Name"
|
3485 |
msgstr "Nazwisko:"
|
3486 |
|
3487 |
# @ WPBDM
|
3488 |
+
#: templates/admin/payments-details.tpl.php:161
|
3489 |
#: templates/checkout-billing-form.tpl.php:22
|
3490 |
#, fuzzy
|
3491 |
msgid "Last Name"
|
3492 |
msgstr "Imię:"
|
3493 |
|
3494 |
# @ WPBDM
|
3495 |
+
#: templates/admin/payments-details.tpl.php:183
|
3496 |
#, fuzzy
|
3497 |
msgid "Address Line 1"
|
3498 |
msgstr "Adres - linia1:"
|
3499 |
|
3500 |
# @ WPBDM
|
3501 |
+
#: templates/admin/payments-details.tpl.php:187
|
3502 |
#: templates/checkout-billing-form.tpl.php:81
|
3503 |
#, fuzzy
|
3504 |
msgid "Address Line 2"
|
3505 |
msgstr "Adres - linia2:"
|
3506 |
|
3507 |
+
#: templates/admin/payments-details.tpl.php:196
|
3508 |
msgid "Notes & Log"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: templates/admin/payments-details.tpl.php:201
|
3512 |
msgid "No notes."
|
3513 |
msgstr ""
|
3514 |
|
3515 |
# @ WPBDM
|
3516 |
+
#: templates/admin/payments-details.tpl.php:221
|
3517 |
#, fuzzy
|
3518 |
msgid "Add Note"
|
3519 |
msgstr "Dodaj abonament"
|
3697 |
msgstr "Moduł przesyłania plików"
|
3698 |
|
3699 |
# @ WPBDM
|
3700 |
+
#: templates/admin/themes-item.tpl.php:6
|
3701 |
+
#, fuzzy
|
3702 |
+
msgid "Missing License"
|
3703 |
+
msgstr "Nazwa Firmy:"
|
3704 |
+
|
3705 |
+
# @ WPBDM
|
3706 |
+
#: templates/admin/themes-item.tpl.php:8
|
3707 |
#, fuzzy
|
3708 |
msgid "Inactive"
|
3709 |
msgstr "Tylko aktywne"
|
3710 |
|
3711 |
+
#: templates/admin/themes-item.tpl.php:18
|
3712 |
msgid "Updating theme..."
|
3713 |
msgstr ""
|
3714 |
|
3715 |
# @ WPBDM
|
3716 |
+
#: templates/admin/themes-item.tpl.php:18
|
3717 |
#, fuzzy
|
3718 |
msgid "Theme updated."
|
3719 |
msgstr "Abonament zaktualizowany"
|
3720 |
|
3721 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3722 |
+
#: templates/admin/themes-item.tpl.php:23
|
3723 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3724 |
msgstr ""
|
3725 |
|
5282 |
msgid "All"
|
5283 |
msgstr "Wszystkie"
|
5284 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5285 |
# @ WPBDM
|
5286 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
5287 |
msgctxt "form-fields admin"
|
5390 |
msgstr "W ofertach"
|
5391 |
|
5392 |
# @ WPBDM
|
5393 |
+
#: includes/fields/class-fieldtypes-checkbox.php:98
|
5394 |
#, fuzzy
|
5395 |
msgctxt "form-fields admin"
|
5396 |
msgid "Select All"
|
5397 |
msgstr "Lista Wyboru"
|
5398 |
|
5399 |
# @ WPBDM
|
5400 |
+
#: includes/fields/class-fieldtypes-checkbox.php:116
|
5401 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:91
|
5402 |
msgctxt "form-fields admin"
|
5403 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
5404 |
msgstr "Opcje Pola (aby wybrać listy, przycisk radio i czeklisty)."
|
5405 |
|
5406 |
+
#: includes/fields/class-fieldtypes-checkbox.php:128
|
5407 |
msgctxt "form-fields admin"
|
5408 |
msgid "Include \"Select all\"?"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: includes/fields/class-fieldtypes-checkbox.php:132
|
5412 |
msgctxt "form-fields admin"
|
5413 |
msgid "Display \"Select all\" option among options above."
|
5414 |
msgstr ""
|
5415 |
|
5416 |
# @ WPBDM
|
5417 |
+
#: includes/fields/class-fieldtypes-checkbox.php:148
|
5418 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:118
|
5419 |
msgctxt "form-fields admin"
|
5420 |
msgid "Field list of options is required."
|
5421 |
msgstr "Pole listy opcji wymagane."
|
7580 |
msgstr "← Powrót do CSV Eksport"
|
7581 |
|
7582 |
# @ WPBDM
|
7583 |
+
#: includes/admin/csv-import.php:178
|
7584 |
msgctxt "admin csv-import"
|
7585 |
msgid "Whatever"
|
7586 |
msgstr "Cokolwiek"
|
7587 |
|
7588 |
# @ WPBDM
|
7589 |
+
#: includes/admin/csv-import.php:372
|
7590 |
msgctxt "admin csv-import"
|
7591 |
msgid "Please upload or select a CSV file."
|
7592 |
msgstr "Proszę załadować nowy lub wybrać istniejący plik CSV."
|
7593 |
|
7594 |
# @ WPBDM
|
7595 |
+
#: includes/admin/csv-import.php:397
|
7596 |
msgctxt "admin csv-import"
|
7597 |
msgid ""
|
7598 |
"An error was detected while validating the CSV file for import. Please fix "
|
7602 |
"sprawdzić przed kontynuacją."
|
7603 |
|
7604 |
# @ WPBDM
|
7605 |
+
#: includes/admin/csv-import.php:406
|
7606 |
msgctxt "admin csv-import"
|
7607 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
7608 |
msgstr ""
|
7850 |
msgstr "Import ofert"
|
7851 |
|
7852 |
# @ WPBDM
|
7853 |
+
#: templates/admin/csv-import.tpl.php:341
|
7854 |
#, fuzzy
|
7855 |
msgctxt "admin csv-import"
|
7856 |
msgid ""
|
7861 |
"podczas dodawania lub aktualizowania oferty ze źródeł zewnętrznych."
|
7862 |
|
7863 |
# @ WPBDM
|
7864 |
+
#: templates/admin/csv-import.tpl.php:362
|
7865 |
msgctxt "admin csv-import"
|
7866 |
msgid ""
|
7867 |
"Internal Sequence ID used to allow listing updates from external sources."
|
7870 |
"ofercie aktualizacji ze źródeł zewnętrznych."
|
7871 |
|
7872 |
# @ WPBDM
|
7873 |
+
#: templates/admin/csv-import.tpl.php:369
|
7874 |
msgctxt "admin csv-import"
|
7875 |
msgid ""
|
7876 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
7880 |
"podczas dodawania lub aktualizowania oferty ze źródeł zewnętrznych."
|
7881 |
|
7882 |
# @ csv import
|
7883 |
+
#: includes/admin/csv-import.php:328
|
7884 |
#, fuzzy
|
7885 |
msgctxt "csv import"
|
7886 |
msgid ""
|
7929 |
msgid "Plan Details"
|
7930 |
msgstr "Szczegóły Planu"
|
7931 |
|
7932 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:51
|
7933 |
msgctxt "listing metabox"
|
7934 |
msgid "Change plan"
|
7935 |
msgstr ""
|
7936 |
|
7937 |
# @ WPBDM
|
7938 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:105
|
7939 |
#, fuzzy
|
7940 |
msgctxt "listing metabox"
|
7941 |
msgid "# of images"
|
8761 |
msgstr "Wyślij wiadomość do właściciela oferty"
|
8762 |
|
8763 |
# @ WPBDM
|
8764 |
+
#: includes/controllers/pages/class-main.php:14
|
8765 |
msgctxt "templates"
|
8766 |
msgid ""
|
8767 |
"There are no categories assigned to the business directory yet. You need to "
|
8777 |
"przypisania kategorii do Katalogu Firm."
|
8778 |
|
8779 |
# @ WPBDM
|
8780 |
+
#: includes/controllers/pages/class-main.php:16
|
8781 |
msgctxt "templates"
|
8782 |
msgid "There are currently no listings in the directory."
|
8783 |
msgstr "Chwilowo brak ofert w Katalogu."
|
8784 |
|
8785 |
# @ WPBDM
|
8786 |
+
#: includes/controllers/pages/class-main.php:28
|
8787 |
msgctxt "templates"
|
8788 |
msgid ""
|
8789 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
9311 |
msgstr ""
|
9312 |
|
9313 |
# @ WPBDM
|
9314 |
+
#: includes/models/class-payment.php:286
|
9315 |
#, fuzzy
|
9316 |
msgctxt "submit listing"
|
9317 |
msgid "Listing submitted by admin. Payment skipped."
|
9431 |
"działania pluginu."
|
9432 |
|
9433 |
# @ WPBDM
|
9434 |
+
#: includes/fields/class-fieldtypes-checkbox.php:52
|
9435 |
#, fuzzy
|
9436 |
msgctxt "checkbox form field"
|
9437 |
msgid "Select all"
|
9733 |
msgstr ""
|
9734 |
|
9735 |
# @ WPBDM
|
9736 |
+
#: includes/licensing.php:846
|
9737 |
msgctxt "licensing"
|
9738 |
msgid "Could not activate license: %s."
|
9739 |
msgstr "Nie możemy aktywować Licencji: %s."
|
9740 |
|
9741 |
# @ WPBDM
|
9742 |
+
#: includes/licensing.php:851
|
9743 |
msgctxt "licensing"
|
9744 |
msgid "License activated"
|
9745 |
msgstr "Licencja została aktywowana"
|
9746 |
|
9747 |
# @ WPBDM
|
9748 |
+
#: includes/licensing.php:883
|
9749 |
msgctxt "licensing"
|
9750 |
msgid "Could not deactivate license: %s."
|
9751 |
msgstr "Nie możemy deaktywować Licencji: %s."
|
9752 |
|
9753 |
# @ WPBDM
|
9754 |
+
#: includes/licensing.php:885
|
9755 |
msgctxt "licensing"
|
9756 |
msgid "License deactivated"
|
9757 |
msgstr "Licencja deaktywowana"
|
9758 |
|
9759 |
#. translators: "<module-name>" version <version-number> is not...
|
9760 |
+
#: includes/licensing.php:1125
|
9761 |
msgctxt "deprecation"
|
9762 |
msgid ""
|
9763 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
9782 |
msgstr[2] "Liczba dozwolonych obrazów"
|
9783 |
|
9784 |
# @ WPBDM
|
9785 |
+
#: includes/models/class-fee-plan.php:410
|
9786 |
#, fuzzy
|
9787 |
msgctxt "fees-api"
|
9788 |
msgid "Plan label is required."
|
9789 |
msgstr "Etykieta pola jest wymagana."
|
9790 |
|
9791 |
# @ WPBDM
|
9792 |
+
#: includes/models/class-fee-plan.php:416
|
9793 |
msgctxt "fees-api"
|
9794 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
9795 |
msgstr ""
|
9796 |
"Abonament dla okresu ważności oferty musi zawierać się w liczbie dodatniej, "
|
9797 |
"całkowitej."
|
9798 |
|
9799 |
+
#: includes/models/class-fee-plan.php:421
|
9800 |
msgctxt "fees-api"
|
9801 |
msgid ""
|
9802 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
9804 |
"<a>plan</a> appropriately."
|
9805 |
msgstr ""
|
9806 |
|
9807 |
+
#: includes/models/class-fee-plan.php:424
|
9808 |
msgctxt "fees-api"
|
9809 |
msgid ""
|
9810 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
9811 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
9812 |
msgstr ""
|
9813 |
|
9814 |
+
#: includes/models/class-payment.php:109
|
9815 |
msgctxt "payment"
|
9816 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
9817 |
msgstr ""
|
9818 |
|
9819 |
# @ WPBDM
|
9820 |
+
#: includes/models/class-payment.php:157
|
9821 |
#, fuzzy
|
9822 |
msgctxt "payment"
|
9823 |
msgid "Initial payment (\"%s\")"
|
9824 |
msgstr "Inicjacja Płatności"
|
9825 |
|
9826 |
# @ WPBDM
|
9827 |
+
#: includes/models/class-payment.php:160
|
9828 |
#, fuzzy
|
9829 |
msgctxt "payment"
|
9830 |
msgid "Renewal payment (\"%s\")"
|
9831 |
msgstr "Odrzucenie płatności"
|
9832 |
|
9833 |
# @ WPBDM
|
9834 |
+
#: includes/models/class-payment.php:403
|
9835 |
#, fuzzy
|
9836 |
msgctxt "payment"
|
9837 |
msgid "Pending"
|
9838 |
msgstr "Oczekujące"
|
9839 |
|
9840 |
+
#: includes/models/class-payment.php:404
|
9841 |
msgctxt "payment"
|
9842 |
msgid "Failed"
|
9843 |
msgstr ""
|
9844 |
|
9845 |
# @ WPBDM
|
9846 |
+
#: includes/models/class-payment.php:405
|
9847 |
#, fuzzy
|
9848 |
msgctxt "payment"
|
9849 |
msgid "Completed"
|
9850 |
msgstr "Zakończona"
|
9851 |
|
9852 |
# @ WPBDM
|
9853 |
+
#: includes/models/class-payment.php:406
|
9854 |
#, fuzzy
|
9855 |
msgctxt "payment"
|
9856 |
msgid "Canceled"
|
9857 |
msgstr "Anulowana"
|
9858 |
|
9859 |
+
#: includes/models/class-payment.php:407
|
9860 |
msgctxt "payment"
|
9861 |
msgid "On Hold"
|
9862 |
msgstr ""
|
9863 |
|
9864 |
+
#: includes/models/class-payment.php:408
|
9865 |
msgctxt "payment"
|
9866 |
msgid "Refunded"
|
9867 |
msgstr ""
|
9868 |
|
9869 |
+
#: includes/models/class-payment.php:172
|
9870 |
msgctxt "payment summary"
|
9871 |
msgid "%s. Admin Posted."
|
9872 |
msgstr ""
|
9873 |
|
9874 |
# @ WPBDM
|
9875 |
+
#: includes/models/class-payment.php:174
|
9876 |
#, fuzzy
|
9877 |
msgctxt "payment summary"
|
9878 |
msgid "%s. Imported Listing."
|
9904 |
msgstr "Pliki typu \"%s\" , nie są dozwolone"
|
9905 |
|
9906 |
# @ WPBDM
|
9907 |
+
#: includes/utils.php:668
|
9908 |
msgctxt "utils"
|
9909 |
msgid ""
|
9910 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
10056 |
msgstr ""
|
10057 |
|
10058 |
# @ WPBDM
|
10059 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
10060 |
#, fuzzy
|
10061 |
msgctxt "admin infometabox"
|
10062 |
msgid "Renewal url (copy & paste)"
|
10063 |
msgstr "Adres URL odnowienia (kopiuj i wklej)"
|
10064 |
|
10065 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
10066 |
msgctxt "admin infometabox"
|
10067 |
msgid "Get renewal URL"
|
10068 |
msgstr ""
|
10069 |
|
10070 |
# @ WPBDM
|
10071 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:149
|
10072 |
#, fuzzy
|
10073 |
msgctxt "admin infometabox"
|
10074 |
msgid "Send renewal e-mail"
|
10321 |
msgid "Continue"
|
10322 |
msgstr "Kontynuacja"
|
10323 |
|
10324 |
+
# @ WPBDM
|
10325 |
+
#, fuzzy
|
10326 |
+
#~ msgid ""
|
10327 |
+
#~ "The following are the valid header names to be used in the CSV file. "
|
10328 |
+
#~ "Multivalued fields (such as category or tags) can appear multiple times "
|
10329 |
+
#~ "in the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> "
|
10330 |
+
#~ "to see how an import file should look like."
|
10331 |
+
#~ msgstr ""
|
10332 |
+
#~ "Proszę się upewnić, że wartości są prawidłowe dla nagłówków w pliku CSV. "
|
10333 |
+
#~ "Pola wielowartościowe (takie jak kategoria lub tagi) może pojawić się "
|
10334 |
+
#~ "wiele razy w pliku. Kliknij <a href=\"%s\">\"Zobacz przykładowy plik "
|
10335 |
+
#~ "importu CSV\"</a> aby zobaczyć, jak powinien wyglądać plik importu."
|
10336 |
+
|
10337 |
+
# @ WPBDM
|
10338 |
+
#, fuzzy
|
10339 |
+
#~ msgctxt "payments admin"
|
10340 |
+
#~ msgid "View Payment"
|
10341 |
+
#~ msgstr "Historia płatności"
|
10342 |
+
|
10343 |
# @ WPBDM
|
10344 |
#, fuzzy
|
10345 |
#~ msgctxt "uninstall"
|
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"
|
@@ -278,7 +278,6 @@ msgid "See Example"
|
|
278 |
msgstr ""
|
279 |
|
280 |
#: includes/admin/controllers/class-admin-csv.php:54
|
281 |
-
#: templates/admin/csv-import.tpl.php:291
|
282 |
#, fuzzy
|
283 |
msgid "Help"
|
284 |
msgstr "Подсказка"
|
@@ -286,8 +285,8 @@ msgstr "Подсказка"
|
|
286 |
#: includes/admin/controllers/class-admin-fees.php:46
|
287 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
288 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
289 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
290 |
-
#: templates/admin/payments-details.tpl.php:
|
291 |
#: templates/email/listing-payment-completed.tpl.php:21
|
292 |
#: templates/payment/payment_items.tpl.php:5
|
293 |
#, fuzzy
|
@@ -363,7 +362,7 @@ msgid "Listing Reports"
|
|
363 |
msgstr "Срок действия записи истёк"
|
364 |
|
365 |
#: includes/admin/controllers/class-admin-listings.php:268
|
366 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
367 |
#, fuzzy
|
368 |
msgid "Expires on"
|
369 |
msgstr "Истекает"
|
@@ -375,7 +374,7 @@ msgstr "Атрибуты"
|
|
375 |
|
376 |
#: includes/admin/controllers/class-admin-listings.php:339
|
377 |
#: includes/helpers/class-listing-display-helper.php:137
|
378 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
379 |
#, fuzzy
|
380 |
msgid "Featured"
|
381 |
msgstr "Статус \"Особая\""
|
@@ -393,7 +392,7 @@ msgid "Delete Listing"
|
|
393 |
msgstr "Удалить запись"
|
394 |
|
395 |
#: includes/admin/controllers/class-admin-listings.php:733
|
396 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
397 |
#, fuzzy
|
398 |
msgid "Never"
|
399 |
msgstr "никогда"
|
@@ -401,8 +400,8 @@ msgstr "никогда"
|
|
401 |
#: includes/admin/controllers/class-admin-listings.php:744
|
402 |
#: includes/admin/controllers/class-admin-listings.php:745
|
403 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
404 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
405 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
406 |
msgid "Yes"
|
407 |
msgstr ""
|
408 |
|
@@ -410,8 +409,8 @@ msgstr ""
|
|
410 |
#: includes/admin/controllers/class-admin-listings.php:745
|
411 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
412 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
413 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
414 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
415 |
#, fuzzy
|
416 |
msgid "No"
|
417 |
msgstr "Ноя"
|
@@ -488,27 +487,27 @@ msgid "Address 2"
|
|
488 |
msgstr "Адрес"
|
489 |
|
490 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
491 |
-
#: templates/admin/payments-details.tpl.php:
|
492 |
#: templates/checkout-billing-form.tpl.php:87
|
493 |
#, fuzzy
|
494 |
msgid "City"
|
495 |
msgstr "Город:"
|
496 |
|
497 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
498 |
-
#: templates/admin/payments-details.tpl.php:
|
499 |
#, fuzzy
|
500 |
msgid "State"
|
501 |
msgstr "Провинция/Штат:"
|
502 |
|
503 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
504 |
-
#: templates/admin/payments-details.tpl.php:
|
505 |
#: templates/checkout-billing-form.tpl.php:102
|
506 |
#, fuzzy
|
507 |
msgid "Country"
|
508 |
msgstr "Страна:"
|
509 |
|
510 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
511 |
-
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:
|
512 |
msgid "ZIP Code"
|
513 |
msgstr "Почтовый индекс"
|
514 |
|
@@ -579,7 +578,7 @@ msgstr "Уже устновлен."
|
|
579 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
580 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
581 |
#: templates/admin/payments-note.tpl.php:14
|
582 |
-
#: templates/admin/themes-item.tpl.php:
|
583 |
#: templates/parts/listing-buttons.tpl.php:31
|
584 |
#, fuzzy
|
585 |
msgid "Delete"
|
@@ -596,31 +595,31 @@ msgid "Themes"
|
|
596 |
msgstr "Темы"
|
597 |
|
598 |
#. translators: %s: Sample business name
|
599 |
-
#: includes/admin/csv-import.php:
|
600 |
#, fuzzy
|
601 |
msgid "Business %s"
|
602 |
msgstr "Запись %s"
|
603 |
|
604 |
-
#: includes/admin/csv-import.php:
|
|
|
|
|
|
|
|
|
605 |
#, fuzzy
|
606 |
msgid "Example CSV Import File"
|
607 |
msgstr "Образец файла импорта CSV"
|
608 |
|
609 |
-
#: includes/admin/csv-import.php:
|
610 |
-
msgid "Go Back"
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: includes/admin/csv-import.php:333 includes/helpers/class-app.php:232
|
614 |
#: includes/helpers/class-app.php:244
|
615 |
msgid "You are not allowed to do that."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: includes/admin/csv-import.php:
|
619 |
#, fuzzy
|
620 |
msgid "There was an error uploading the file:"
|
621 |
msgstr "Произошла ошибка при загрузке файла CSV."
|
622 |
|
623 |
-
#: includes/admin/csv-import.php:
|
624 |
#, fuzzy
|
625 |
msgid "Please upload the correct file type."
|
626 |
msgstr "Пожалуйста загрузите или выберите файл CSV."
|
@@ -660,7 +659,7 @@ msgstr "Не установлен"
|
|
660 |
|
661 |
#: includes/admin/helpers/class-modules-list.php:226
|
662 |
#: includes/controllers/class-smtp.php:317
|
663 |
-
#: templates/admin/themes-item.tpl.php:
|
664 |
#, fuzzy
|
665 |
msgid "Activate"
|
666 |
msgstr "Активировать"
|
@@ -744,14 +743,14 @@ msgstr "Удалить тариф"
|
|
744 |
|
745 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
746 |
#: includes/fields/class-fieldtypes-social.php:135
|
747 |
-
#: templates/admin/csv-import.tpl.php:
|
748 |
#, fuzzy
|
749 |
msgid "Type"
|
750 |
msgstr "Тип"
|
751 |
|
752 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
753 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
754 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
755 |
msgid "Edit"
|
756 |
msgstr "Изменить"
|
757 |
|
@@ -760,6 +759,11 @@ msgstr "Изменить"
|
|
760 |
msgid "Are you sure you want to delete that field?"
|
761 |
msgstr "Вы уверены, что хотите удалить поле \"%s\"?"
|
762 |
|
|
|
|
|
|
|
|
|
|
|
763 |
#: includes/admin/page-debug.php:40
|
764 |
#, fuzzy
|
765 |
msgid "Plugin Settings"
|
@@ -775,9 +779,9 @@ msgid "Plugin Info"
|
|
775 |
msgstr ""
|
776 |
|
777 |
#: includes/admin/page-debug.php:159
|
778 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
779 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
780 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
781 |
#, fuzzy
|
782 |
msgid "OK"
|
783 |
msgstr "OK"
|
@@ -788,7 +792,7 @@ msgstr "Отсутствующие таблицы: %s"
|
|
788 |
|
789 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
790 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
791 |
-
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:
|
792 |
#: templates/listing-contactform.tpl.php:33
|
793 |
#: templates/listing-flagging-form.tpl.php:39
|
794 |
#, fuzzy
|
@@ -1415,9 +1419,9 @@ msgid ""
|
|
1415 |
msgstr ""
|
1416 |
|
1417 |
#: includes/class-assets.php:195
|
1418 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1419 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1420 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1421 |
#: templates/admin/settings-email.tpl.php:103
|
1422 |
#: templates/admin/settings-reset.tpl.php:8
|
1423 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
@@ -1850,42 +1854,42 @@ msgstr "Список выбора"
|
|
1850 |
msgid "Select List"
|
1851 |
msgstr "Список выбора"
|
1852 |
|
1853 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1854 |
#, fuzzy
|
1855 |
msgid "-- Choose One --"
|
1856 |
msgstr "-- Выберите --"
|
1857 |
|
1858 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1859 |
#, fuzzy
|
1860 |
msgid "-- Choose Terms --"
|
1861 |
msgstr "-- Выберите --"
|
1862 |
|
1863 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1864 |
msgid "— None —"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1868 |
#, fuzzy
|
1869 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1870 |
msgstr "Параметры поля (для выбранных списков и кнопок)."
|
1871 |
|
1872 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1873 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1874 |
#: templates/admin/fees-form.tpl.php:58
|
1875 |
#, fuzzy
|
1876 |
msgid "required"
|
1877 |
msgstr "обязательно"
|
1878 |
|
1879 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1880 |
msgid "One option per line"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1884 |
#, fuzzy
|
1885 |
msgid "Allow empty selection on search?"
|
1886 |
msgstr "Разрешить поиск по пустой строке?"
|
1887 |
|
1888 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1889 |
#, fuzzy
|
1890 |
msgid "Field list of options is required."
|
1891 |
msgstr "Список вариантов поля обязателен."
|
@@ -1982,7 +1986,7 @@ msgstr "Название записи"
|
|
1982 |
msgid "Short Description"
|
1983 |
msgstr "Краткое описание"
|
1984 |
|
1985 |
-
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:
|
1986 |
#, fuzzy
|
1987 |
msgid "Description"
|
1988 |
msgstr "Описание"
|
@@ -2036,7 +2040,7 @@ msgstr "Проверка целого числа"
|
|
2036 |
msgid "Telephone Number Validator"
|
2037 |
msgstr "Проверка целого числа"
|
2038 |
|
2039 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
2040 |
#, fuzzy
|
2041 |
msgid "Field"
|
2042 |
msgstr "Поле"
|
@@ -2373,31 +2377,41 @@ msgid ""
|
|
2373 |
"our IP address 52.0.78.177 to your allow list."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
2377 |
#, fuzzy
|
2378 |
msgid "Business Directory license key is missing."
|
2379 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
2380 |
|
2381 |
-
#: includes/licensing.php:
|
2382 |
#, fuzzy
|
2383 |
msgid "Business Directory license key has expired"
|
2384 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
2385 |
|
2386 |
-
#: includes/licensing.php:
|
2387 |
#, fuzzy
|
2388 |
msgid "Could not verify Business Directory license."
|
2389 |
msgstr "Помогите нам улучшить Справочник Услуг"
|
2390 |
|
2391 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2392 |
#, fuzzy
|
2393 |
msgid "Review license keys"
|
2394 |
msgstr "Обновить лицензионный ключ"
|
2395 |
|
2396 |
-
#: includes/licensing.php:
|
2397 |
msgid "Missing data. Please reload this page and try again."
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: includes/licensing.php:
|
2401 |
#, fuzzy
|
2402 |
msgid "Please enter a license key."
|
2403 |
msgstr "Пожалуйста введите правильный электронный адрес."
|
@@ -2710,41 +2724,46 @@ msgstr ""
|
|
2710 |
msgid "Disable email notifications during import"
|
2711 |
msgstr "Оповещения по электронной почте:"
|
2712 |
|
2713 |
-
#: templates/admin/csv-import.tpl.php:
|
2714 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2715 |
msgid ""
|
2716 |
-
"
|
2717 |
-
"
|
2718 |
-
"the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see "
|
2719 |
-
"how an import file should look like."
|
2720 |
msgstr ""
|
2721 |
-
"Далее приведены правильные имена заголовков, которые будут использованы в "
|
2722 |
-
"файле CSV. поля со множественными значениями, такие как рубрики или метки, "
|
2723 |
-
"могут оказаться в файле в нескольких местах. Посмотрите на \"<a href=\"%s"
|
2724 |
-
"\">Образец файла CSV для импорта</a>\" чтобы узнать, как такой файл должен "
|
2725 |
-
"выглядеть."
|
2726 |
|
2727 |
-
#: templates/admin/csv-import.tpl.php:
|
2728 |
#, fuzzy
|
2729 |
msgid "Header name/label"
|
2730 |
msgstr "Имя или метка заголовка"
|
2731 |
|
2732 |
-
#: templates/admin/csv-import.tpl.php:
|
2733 |
#, fuzzy
|
2734 |
msgid "Required?"
|
2735 |
msgstr "Обязательно?"
|
2736 |
|
2737 |
-
#: templates/admin/csv-import.tpl.php:
|
2738 |
#, fuzzy
|
2739 |
msgid "Multivalued?"
|
2740 |
msgstr "Множественные значения?"
|
2741 |
|
2742 |
-
#: templates/admin/csv-import.tpl.php:
|
2743 |
#, fuzzy
|
2744 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2745 |
msgstr "Знак \"точка с запятой\" разделяет список изображений (в файле ZIP)"
|
2746 |
|
2747 |
-
#: templates/admin/csv-import.tpl.php:
|
2748 |
#, fuzzy
|
2749 |
msgid "Listing owner's username"
|
2750 |
msgstr "Учётная запись автора записи"
|
@@ -2969,13 +2988,13 @@ msgstr "Дата продления"
|
|
2969 |
msgid "Plan"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2973 |
#: templates/plan-selection-plan.tpl.php:41
|
2974 |
#, fuzzy
|
2975 |
msgid "Recurring"
|
2976 |
msgstr "(периодически)"
|
2977 |
|
2978 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2979 |
#, fuzzy
|
2980 |
msgid "Renew listing"
|
2981 |
msgstr "Продлить запись"
|
@@ -3006,7 +3025,7 @@ msgid "Overview"
|
|
3006 |
msgstr ""
|
3007 |
|
3008 |
#: templates/admin/payments-details.tpl.php:52
|
3009 |
-
#: templates/admin/payments-details.tpl.php:
|
3010 |
#, fuzzy
|
3011 |
msgid "Payment ID"
|
3012 |
msgstr "Оплата"
|
@@ -3032,69 +3051,73 @@ msgstr "Шлюз"
|
|
3032 |
msgid "(Not yet set)"
|
3033 |
msgstr "Ещё не зарегистрированы?"
|
3034 |
|
3035 |
-
#: templates/admin/payments-details.tpl.php:
|
|
|
|
|
|
|
|
|
3036 |
#, fuzzy
|
3037 |
msgid "Delete Payment"
|
3038 |
msgstr "Отказать в платеже"
|
3039 |
|
3040 |
-
#: templates/admin/payments-details.tpl.php:
|
3041 |
#, fuzzy
|
3042 |
msgid "Save Payment"
|
3043 |
msgstr "Оплата"
|
3044 |
|
3045 |
-
#: templates/admin/payments-details.tpl.php:
|
3046 |
#, fuzzy
|
3047 |
msgid "Details"
|
3048 |
msgstr "Тарифы"
|
3049 |
|
3050 |
-
#: templates/admin/payments-details.tpl.php:
|
3051 |
#, fuzzy
|
3052 |
msgid "Item Type"
|
3053 |
msgstr "Тип"
|
3054 |
|
3055 |
-
#: templates/admin/payments-details.tpl.php:
|
3056 |
#: templates/payment/payment_items.tpl.php:23
|
3057 |
#, fuzzy
|
3058 |
msgid "Total"
|
3059 |
msgstr "Всего"
|
3060 |
|
3061 |
-
#: templates/admin/payments-details.tpl.php:
|
3062 |
#, fuzzy
|
3063 |
msgid "Customer Details"
|
3064 |
msgstr "Детали текущего платежа"
|
3065 |
|
3066 |
-
#: templates/admin/payments-details.tpl.php:
|
3067 |
#: templates/checkout-billing-form.tpl.php:17
|
3068 |
#, fuzzy
|
3069 |
msgid "First Name"
|
3070 |
msgstr "Имя:"
|
3071 |
|
3072 |
-
#: templates/admin/payments-details.tpl.php:
|
3073 |
#: templates/checkout-billing-form.tpl.php:22
|
3074 |
#, fuzzy
|
3075 |
msgid "Last Name"
|
3076 |
msgstr "Фамилия:"
|
3077 |
|
3078 |
-
#: templates/admin/payments-details.tpl.php:
|
3079 |
#, fuzzy
|
3080 |
msgid "Address Line 1"
|
3081 |
msgstr "Адрес:"
|
3082 |
|
3083 |
-
#: templates/admin/payments-details.tpl.php:
|
3084 |
#: templates/checkout-billing-form.tpl.php:81
|
3085 |
#, fuzzy
|
3086 |
msgid "Address Line 2"
|
3087 |
msgstr "Адрес (дополнительно)"
|
3088 |
|
3089 |
-
#: templates/admin/payments-details.tpl.php:
|
3090 |
msgid "Notes & Log"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: templates/admin/payments-details.tpl.php:
|
3094 |
msgid "No notes."
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: templates/admin/payments-details.tpl.php:
|
3098 |
#, fuzzy
|
3099 |
msgid "Add Note"
|
3100 |
msgstr "Добавить тариф"
|
@@ -3258,23 +3281,28 @@ msgstr "Архив темы справочника (файл ZIP)"
|
|
3258 |
msgid "Upload"
|
3259 |
msgstr "Загрузка файлов"
|
3260 |
|
3261 |
-
#: templates/admin/themes-item.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
3262 |
#, fuzzy
|
3263 |
msgid "Inactive"
|
3264 |
msgstr "Активно:"
|
3265 |
|
3266 |
-
#: templates/admin/themes-item.tpl.php:
|
3267 |
#, fuzzy
|
3268 |
msgid "Updating theme..."
|
3269 |
msgstr "Тема обновляется..."
|
3270 |
|
3271 |
-
#: templates/admin/themes-item.tpl.php:
|
3272 |
#, fuzzy
|
3273 |
msgid "Theme updated."
|
3274 |
msgstr "Тема обновлена."
|
3275 |
|
3276 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3277 |
-
#: templates/admin/themes-item.tpl.php:
|
3278 |
#, fuzzy
|
3279 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3280 |
msgstr "Доступна новая версия - <b>%s</b>. <a>Обновите сейчас</a>."
|
@@ -4679,12 +4707,6 @@ msgctxt "payments admin"
|
|
4679 |
msgid "All"
|
4680 |
msgstr "Экспортировать всё"
|
4681 |
|
4682 |
-
#: includes/admin/helpers/tables/class-payments-table.php:134
|
4683 |
-
#, fuzzy
|
4684 |
-
msgctxt "payments admin"
|
4685 |
-
msgid "View Payment History"
|
4686 |
-
msgstr "История платежа"
|
4687 |
-
|
4688 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4689 |
msgctxt "form-fields admin"
|
4690 |
msgid "Form fields updated."
|
@@ -4781,30 +4803,30 @@ msgctxt "form-fields admin"
|
|
4781 |
msgid "In Listing"
|
4782 |
msgstr "В полном виде"
|
4783 |
|
4784 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4785 |
#, fuzzy
|
4786 |
msgctxt "form-fields admin"
|
4787 |
msgid "Select All"
|
4788 |
msgstr "Список выбора"
|
4789 |
|
4790 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4791 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4792 |
msgctxt "form-fields admin"
|
4793 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4794 |
msgstr "Параметры поля (для выбранных списков и кнопок)."
|
4795 |
|
4796 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4797 |
msgctxt "form-fields admin"
|
4798 |
msgid "Include \"Select all\"?"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4802 |
msgctxt "form-fields admin"
|
4803 |
msgid "Display \"Select all\" option among options above."
|
4804 |
msgstr ""
|
4805 |
|
4806 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4807 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4808 |
msgctxt "form-fields admin"
|
4809 |
msgid "Field list of options is required."
|
4810 |
msgstr "Список вариантов поля обязателен."
|
@@ -6759,17 +6781,17 @@ msgctxt "admin csv-export"
|
|
6759 |
msgid "← Return to CSV Export"
|
6760 |
msgstr "← Вернуться к экспорту CSV"
|
6761 |
|
6762 |
-
#: includes/admin/csv-import.php:
|
6763 |
msgctxt "admin csv-import"
|
6764 |
msgid "Whatever"
|
6765 |
msgstr "Ну ладно"
|
6766 |
|
6767 |
-
#: includes/admin/csv-import.php:
|
6768 |
msgctxt "admin csv-import"
|
6769 |
msgid "Please upload or select a CSV file."
|
6770 |
msgstr "Пожалуйста загрузите или выберите файл CSV."
|
6771 |
|
6772 |
-
#: includes/admin/csv-import.php:
|
6773 |
msgctxt "admin csv-import"
|
6774 |
msgid ""
|
6775 |
"An error was detected while validating the CSV file for import. Please fix "
|
@@ -6778,7 +6800,7 @@ msgstr ""
|
|
6778 |
"Произошла ошибка при проверке импортного файла CSV. Пожалуйста исправьте "
|
6779 |
"ошибки перед тем, как попытаться импортировать файл ещё раз."
|
6780 |
|
6781 |
-
#: includes/admin/csv-import.php:
|
6782 |
msgctxt "admin csv-import"
|
6783 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6784 |
msgstr ""
|
@@ -6992,7 +7014,7 @@ msgctxt "admin csv-import"
|
|
6992 |
msgid "Import Listings"
|
6993 |
msgstr "Импортировать записи"
|
6994 |
|
6995 |
-
#: templates/admin/csv-import.tpl.php:
|
6996 |
#, fuzzy
|
6997 |
msgctxt "admin csv-import"
|
6998 |
msgid ""
|
@@ -7002,7 +7024,7 @@ msgstr ""
|
|
7002 |
"Дата окончания срока действия отформатирована как ГГГГ-ММ-ДД. Используйте "
|
7003 |
"эту колонку при добавлении или изменении записей."
|
7004 |
|
7005 |
-
#: templates/admin/csv-import.tpl.php:
|
7006 |
msgctxt "admin csv-import"
|
7007 |
msgid ""
|
7008 |
"Internal Sequence ID used to allow listing updates from external sources."
|
@@ -7010,7 +7032,7 @@ msgstr ""
|
|
7010 |
"Был использован внутренний последовательный номер, чтобы позволить загрузку "
|
7011 |
"данных из справочника с другого сайта."
|
7012 |
|
7013 |
-
#: templates/admin/csv-import.tpl.php:
|
7014 |
msgctxt "admin csv-import"
|
7015 |
msgid ""
|
7016 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
@@ -7019,7 +7041,7 @@ msgstr ""
|
|
7019 |
"Дата окончания срока действия отформатирована как ГГГГ-ММ-ДД. Используйте "
|
7020 |
"эту колонку при добавлении или изменении записей."
|
7021 |
|
7022 |
-
#: includes/admin/csv-import.php:
|
7023 |
#, fuzzy
|
7024 |
msgctxt "csv import"
|
7025 |
msgid ""
|
@@ -7064,12 +7086,12 @@ msgctxt "listing metabox"
|
|
7064 |
msgid "Plan Details"
|
7065 |
msgstr "Детали плана"
|
7066 |
|
7067 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7068 |
msgctxt "listing metabox"
|
7069 |
msgid "Change plan"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7073 |
#, fuzzy
|
7074 |
msgctxt "listing metabox"
|
7075 |
msgid "# of images"
|
@@ -7811,7 +7833,7 @@ msgctxt "templates"
|
|
7811 |
msgid "Send Message to listing owner"
|
7812 |
msgstr "Послать сообщение автору записи"
|
7813 |
|
7814 |
-
#: includes/controllers/pages/class-main.php:
|
7815 |
msgctxt "templates"
|
7816 |
msgid ""
|
7817 |
"There are no categories assigned to the business directory yet. You need to "
|
@@ -7826,12 +7848,12 @@ msgstr ""
|
|
7826 |
"нет ни одной записи. Записи не могут быть добавлены пока не будут созданы "
|
7827 |
"рубрики."
|
7828 |
|
7829 |
-
#: includes/controllers/pages/class-main.php:
|
7830 |
msgctxt "templates"
|
7831 |
msgid "There are currently no listings in the directory."
|
7832 |
msgstr "В справочнике нет ни одного изображения."
|
7833 |
|
7834 |
-
#: includes/controllers/pages/class-main.php:
|
7835 |
msgctxt "templates"
|
7836 |
msgid ""
|
7837 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
@@ -8300,7 +8322,7 @@ msgctxt "submit listing"
|
|
8300 |
msgid "The e-mail address you chose for your account is already in use."
|
8301 |
msgstr ""
|
8302 |
|
8303 |
-
#: includes/models/class-payment.php:
|
8304 |
msgctxt "submit listing"
|
8305 |
msgid "Listing submitted by admin. Payment skipped."
|
8306 |
msgstr ""
|
@@ -8401,7 +8423,7 @@ msgid ""
|
|
8401 |
msgstr ""
|
8402 |
"Это поле формы нельзя удалить, так как оно требуется для работы плагина."
|
8403 |
|
8404 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
8405 |
#, fuzzy
|
8406 |
msgctxt "checkbox form field"
|
8407 |
msgid "Select all"
|
@@ -8676,28 +8698,28 @@ msgctxt "licensing"
|
|
8676 |
msgid "The server returned a 403 Forbidden error."
|
8677 |
msgstr ""
|
8678 |
|
8679 |
-
#: includes/licensing.php:
|
8680 |
msgctxt "licensing"
|
8681 |
msgid "Could not activate license: %s."
|
8682 |
msgstr "Не удалось активировать лицензию: %s."
|
8683 |
|
8684 |
-
#: includes/licensing.php:
|
8685 |
msgctxt "licensing"
|
8686 |
msgid "License activated"
|
8687 |
msgstr "Лицензия активирована"
|
8688 |
|
8689 |
-
#: includes/licensing.php:
|
8690 |
msgctxt "licensing"
|
8691 |
msgid "Could not deactivate license: %s."
|
8692 |
msgstr "Не удалось деактивировать лицензию: %s."
|
8693 |
|
8694 |
-
#: includes/licensing.php:
|
8695 |
msgctxt "licensing"
|
8696 |
msgid "License deactivated"
|
8697 |
msgstr "Лицензия была деактивирована."
|
8698 |
|
8699 |
#. translators: "<module-name>" version <version-number> is not...
|
8700 |
-
#: includes/licensing.php:
|
8701 |
msgctxt "deprecation"
|
8702 |
msgid ""
|
8703 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
@@ -8719,18 +8741,18 @@ msgstr[0] "Разрешено изображений"
|
|
8719 |
msgstr[1] "Разрешено изображений"
|
8720 |
msgstr[2] "Разрешено изображений"
|
8721 |
|
8722 |
-
#: includes/models/class-fee-plan.php:
|
8723 |
#, fuzzy
|
8724 |
msgctxt "fees-api"
|
8725 |
msgid "Plan label is required."
|
8726 |
msgstr "Метка поля обязательна."
|
8727 |
|
8728 |
-
#: includes/models/class-fee-plan.php:
|
8729 |
msgctxt "fees-api"
|
8730 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8731 |
msgstr "Срок действия тарифа должен быть меньше 10 лет (3650 дней)."
|
8732 |
|
8733 |
-
#: includes/models/class-fee-plan.php:
|
8734 |
msgctxt "fees-api"
|
8735 |
msgid ""
|
8736 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
@@ -8738,69 +8760,69 @@ msgid ""
|
|
8738 |
"<a>plan</a> appropriately."
|
8739 |
msgstr ""
|
8740 |
|
8741 |
-
#: includes/models/class-fee-plan.php:
|
8742 |
msgctxt "fees-api"
|
8743 |
msgid ""
|
8744 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8745 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
8746 |
msgstr ""
|
8747 |
|
8748 |
-
#: includes/models/class-payment.php:
|
8749 |
msgctxt "payment"
|
8750 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8751 |
msgstr ""
|
8752 |
|
8753 |
-
#: includes/models/class-payment.php:
|
8754 |
#, fuzzy
|
8755 |
msgctxt "payment"
|
8756 |
msgid "Initial payment (\"%s\")"
|
8757 |
msgstr "Начальный платёж"
|
8758 |
|
8759 |
-
#: includes/models/class-payment.php:
|
8760 |
#, fuzzy
|
8761 |
msgctxt "payment"
|
8762 |
msgid "Renewal payment (\"%s\")"
|
8763 |
msgstr "Отказать в платеже"
|
8764 |
|
8765 |
-
#: includes/models/class-payment.php:
|
8766 |
#, fuzzy
|
8767 |
msgctxt "payment"
|
8768 |
msgid "Pending"
|
8769 |
msgstr "Ожидается"
|
8770 |
|
8771 |
-
#: includes/models/class-payment.php:
|
8772 |
msgctxt "payment"
|
8773 |
msgid "Failed"
|
8774 |
msgstr ""
|
8775 |
|
8776 |
-
#: includes/models/class-payment.php:
|
8777 |
#, fuzzy
|
8778 |
msgctxt "payment"
|
8779 |
msgid "Completed"
|
8780 |
msgstr "Завершено"
|
8781 |
|
8782 |
-
#: includes/models/class-payment.php:
|
8783 |
#, fuzzy
|
8784 |
msgctxt "payment"
|
8785 |
msgid "Canceled"
|
8786 |
msgstr "Отменено"
|
8787 |
|
8788 |
-
#: includes/models/class-payment.php:
|
8789 |
msgctxt "payment"
|
8790 |
msgid "On Hold"
|
8791 |
msgstr ""
|
8792 |
|
8793 |
-
#: includes/models/class-payment.php:
|
8794 |
msgctxt "payment"
|
8795 |
msgid "Refunded"
|
8796 |
msgstr ""
|
8797 |
|
8798 |
-
#: includes/models/class-payment.php:
|
8799 |
msgctxt "payment summary"
|
8800 |
msgid "%s. Admin Posted."
|
8801 |
msgstr ""
|
8802 |
|
8803 |
-
#: includes/models/class-payment.php:
|
8804 |
#, fuzzy
|
8805 |
msgctxt "payment summary"
|
8806 |
msgid "%s. Imported Listing."
|
@@ -8827,7 +8849,7 @@ msgctxt "utils"
|
|
8827 |
msgid "File type \"%s\" is not allowed"
|
8828 |
msgstr "Файл типа \"%s\" не допускается к загрузке"
|
8829 |
|
8830 |
-
#: includes/utils.php:
|
8831 |
msgctxt "utils"
|
8832 |
msgid ""
|
8833 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8959,18 +8981,18 @@ msgid ""
|
|
8959 |
"we'll answer it within 24 hours most days."
|
8960 |
msgstr ""
|
8961 |
|
8962 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8963 |
#, fuzzy
|
8964 |
msgctxt "admin infometabox"
|
8965 |
msgid "Renewal url (copy & paste)"
|
8966 |
msgstr "Ссылка для продления (для копирования)"
|
8967 |
|
8968 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8969 |
msgctxt "admin infometabox"
|
8970 |
msgid "Get renewal URL"
|
8971 |
msgstr ""
|
8972 |
|
8973 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8974 |
#, fuzzy
|
8975 |
msgctxt "admin infometabox"
|
8976 |
msgid "Send renewal e-mail"
|
@@ -9186,6 +9208,24 @@ msgctxt "send-access-keys"
|
|
9186 |
msgid "Continue"
|
9187 |
msgstr "Далее"
|
9188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9189 |
#, fuzzy
|
9190 |
#~ msgctxt "uninstall"
|
9191 |
#~ msgid "Please choose an option."
|
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-11-03 17:40:34+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"
|
278 |
msgstr ""
|
279 |
|
280 |
#: includes/admin/controllers/class-admin-csv.php:54
|
|
|
281 |
#, fuzzy
|
282 |
msgid "Help"
|
283 |
msgstr "Подсказка"
|
285 |
#: includes/admin/controllers/class-admin-fees.php:46
|
286 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
287 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
288 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:81
|
289 |
+
#: templates/admin/payments-details.tpl.php:124
|
290 |
#: templates/email/listing-payment-completed.tpl.php:21
|
291 |
#: templates/payment/payment_items.tpl.php:5
|
292 |
#, fuzzy
|
362 |
msgstr "Срок действия записи истёк"
|
363 |
|
364 |
#: includes/admin/controllers/class-admin-listings.php:268
|
365 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:87
|
366 |
#, fuzzy
|
367 |
msgid "Expires on"
|
368 |
msgstr "Истекает"
|
374 |
|
375 |
#: includes/admin/controllers/class-admin-listings.php:339
|
376 |
#: includes/helpers/class-listing-display-helper.php:137
|
377 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:118
|
378 |
#, fuzzy
|
379 |
msgid "Featured"
|
380 |
msgstr "Статус \"Особая\""
|
392 |
msgstr "Удалить запись"
|
393 |
|
394 |
#: includes/admin/controllers/class-admin-listings.php:733
|
395 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:96
|
396 |
#, fuzzy
|
397 |
msgid "Never"
|
398 |
msgstr "никогда"
|
400 |
#: includes/admin/controllers/class-admin-listings.php:744
|
401 |
#: includes/admin/controllers/class-admin-listings.php:745
|
402 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
403 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
404 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
405 |
msgid "Yes"
|
406 |
msgstr ""
|
407 |
|
409 |
#: includes/admin/controllers/class-admin-listings.php:745
|
410 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
411 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
412 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
413 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
414 |
#, fuzzy
|
415 |
msgid "No"
|
416 |
msgstr "Ноя"
|
487 |
msgstr "Адрес"
|
488 |
|
489 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
490 |
+
#: templates/admin/payments-details.tpl.php:175
|
491 |
#: templates/checkout-billing-form.tpl.php:87
|
492 |
#, fuzzy
|
493 |
msgid "City"
|
494 |
msgstr "Город:"
|
495 |
|
496 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
497 |
+
#: templates/admin/payments-details.tpl.php:171
|
498 |
#, fuzzy
|
499 |
msgid "State"
|
500 |
msgstr "Провинция/Штат:"
|
501 |
|
502 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
503 |
+
#: templates/admin/payments-details.tpl.php:167
|
504 |
#: templates/checkout-billing-form.tpl.php:102
|
505 |
#, fuzzy
|
506 |
msgid "Country"
|
507 |
msgstr "Страна:"
|
508 |
|
509 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
510 |
+
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:179
|
511 |
msgid "ZIP Code"
|
512 |
msgstr "Почтовый индекс"
|
513 |
|
578 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
579 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
580 |
#: templates/admin/payments-note.tpl.php:14
|
581 |
+
#: templates/admin/themes-item.tpl.php:51
|
582 |
#: templates/parts/listing-buttons.tpl.php:31
|
583 |
#, fuzzy
|
584 |
msgid "Delete"
|
595 |
msgstr "Темы"
|
596 |
|
597 |
#. translators: %s: Sample business name
|
598 |
+
#: includes/admin/csv-import.php:136
|
599 |
#, fuzzy
|
600 |
msgid "Business %s"
|
601 |
msgstr "Запись %s"
|
602 |
|
603 |
+
#: includes/admin/csv-import.php:183
|
604 |
+
msgid "Download Example"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: includes/admin/csv-import.php:185
|
608 |
#, fuzzy
|
609 |
msgid "Example CSV Import File"
|
610 |
msgstr "Образец файла импорта CSV"
|
611 |
|
612 |
+
#: includes/admin/csv-import.php:358 includes/helpers/class-app.php:232
|
|
|
|
|
|
|
|
|
613 |
#: includes/helpers/class-app.php:244
|
614 |
msgid "You are not allowed to do that."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: includes/admin/csv-import.php:451
|
618 |
#, fuzzy
|
619 |
msgid "There was an error uploading the file:"
|
620 |
msgstr "Произошла ошибка при загрузке файла CSV."
|
621 |
|
622 |
+
#: includes/admin/csv-import.php:456
|
623 |
#, fuzzy
|
624 |
msgid "Please upload the correct file type."
|
625 |
msgstr "Пожалуйста загрузите или выберите файл CSV."
|
659 |
|
660 |
#: includes/admin/helpers/class-modules-list.php:226
|
661 |
#: includes/controllers/class-smtp.php:317
|
662 |
+
#: templates/admin/themes-item.tpl.php:59
|
663 |
#, fuzzy
|
664 |
msgid "Activate"
|
665 |
msgstr "Активировать"
|
743 |
|
744 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
745 |
#: includes/fields/class-fieldtypes-social.php:135
|
746 |
+
#: templates/admin/csv-import.tpl.php:314
|
747 |
#, fuzzy
|
748 |
msgid "Type"
|
749 |
msgstr "Тип"
|
750 |
|
751 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
752 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:93
|
753 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:110
|
754 |
msgid "Edit"
|
755 |
msgstr "Изменить"
|
756 |
|
759 |
msgid "Are you sure you want to delete that field?"
|
760 |
msgstr "Вы уверены, что хотите удалить поле \"%s\"?"
|
761 |
|
762 |
+
#: includes/admin/helpers/tables/class-payments-table.php:143
|
763 |
+
#, fuzzy
|
764 |
+
msgid "View Payment"
|
765 |
+
msgstr "Оплата"
|
766 |
+
|
767 |
#: includes/admin/page-debug.php:40
|
768 |
#, fuzzy
|
769 |
msgid "Plugin Settings"
|
779 |
msgstr ""
|
780 |
|
781 |
#: includes/admin/page-debug.php:159
|
782 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:76
|
783 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:99
|
784 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:114
|
785 |
#, fuzzy
|
786 |
msgid "OK"
|
787 |
msgstr "OK"
|
792 |
|
793 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
794 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
795 |
+
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:151
|
796 |
#: templates/listing-contactform.tpl.php:33
|
797 |
#: templates/listing-flagging-form.tpl.php:39
|
798 |
#, fuzzy
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#: includes/class-assets.php:195
|
1422 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:77
|
1423 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:100
|
1424 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:115
|
1425 |
#: templates/admin/settings-email.tpl.php:103
|
1426 |
#: templates/admin/settings-reset.tpl.php:8
|
1427 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
1854 |
msgid "Select List"
|
1855 |
msgstr "Список выбора"
|
1856 |
|
1857 |
+
#: includes/fields/class-fieldtypes-select.php:117
|
1858 |
#, fuzzy
|
1859 |
msgid "-- Choose One --"
|
1860 |
msgstr "-- Выберите --"
|
1861 |
|
1862 |
+
#: includes/fields/class-fieldtypes-select.php:144
|
1863 |
#, fuzzy
|
1864 |
msgid "-- Choose Terms --"
|
1865 |
msgstr "-- Выберите --"
|
1866 |
|
1867 |
+
#: includes/fields/class-fieldtypes-select.php:210
|
1868 |
msgid "— None —"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1872 |
#, fuzzy
|
1873 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1874 |
msgstr "Параметры поля (для выбранных списков и кнопок)."
|
1875 |
|
1876 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1877 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1878 |
#: templates/admin/fees-form.tpl.php:58
|
1879 |
#, fuzzy
|
1880 |
msgid "required"
|
1881 |
msgstr "обязательно"
|
1882 |
|
1883 |
+
#: includes/fields/class-fieldtypes-select.php:269
|
1884 |
msgid "One option per line"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: includes/fields/class-fieldtypes-select.php:279
|
1888 |
#, fuzzy
|
1889 |
msgid "Allow empty selection on search?"
|
1890 |
msgstr "Разрешить поиск по пустой строке?"
|
1891 |
|
1892 |
+
#: includes/fields/class-fieldtypes-select.php:297
|
1893 |
#, fuzzy
|
1894 |
msgid "Field list of options is required."
|
1895 |
msgstr "Список вариантов поля обязателен."
|
1986 |
msgid "Short Description"
|
1987 |
msgstr "Краткое описание"
|
1988 |
|
1989 |
+
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:123
|
1990 |
#, fuzzy
|
1991 |
msgid "Description"
|
1992 |
msgstr "Описание"
|
2040 |
msgid "Telephone Number Validator"
|
2041 |
msgstr "Проверка целого числа"
|
2042 |
|
2043 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:313
|
2044 |
#, fuzzy
|
2045 |
msgid "Field"
|
2046 |
msgstr "Поле"
|
2377 |
"our IP address 52.0.78.177 to your allow list."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: includes/licensing.php:645
|
2381 |
+
msgid "Download Premium"
|
2382 |
+
msgstr ""
|
2383 |
+
|
2384 |
+
#: includes/licensing.php:695
|
2385 |
#, fuzzy
|
2386 |
msgid "Business Directory license key is missing."
|
2387 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
2388 |
|
2389 |
+
#: includes/licensing.php:696
|
2390 |
#, fuzzy
|
2391 |
msgid "Business Directory license key has expired"
|
2392 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
2393 |
|
2394 |
+
#: includes/licensing.php:697
|
2395 |
#, fuzzy
|
2396 |
msgid "Could not verify Business Directory license."
|
2397 |
msgstr "Помогите нам улучшить Справочник Услуг"
|
2398 |
|
2399 |
+
#: includes/licensing.php:698
|
2400 |
+
msgid ""
|
2401 |
+
"You have modules installed, but Business Directory Premium is missing. "
|
2402 |
+
"Install this plugin for extra features and easy license management."
|
2403 |
+
msgstr ""
|
2404 |
+
|
2405 |
+
#: includes/licensing.php:709
|
2406 |
#, fuzzy
|
2407 |
msgid "Review license keys"
|
2408 |
msgstr "Обновить лицензионный ключ"
|
2409 |
|
2410 |
+
#: includes/licensing.php:824
|
2411 |
msgid "Missing data. Please reload this page and try again."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: includes/licensing.php:829
|
2415 |
#, fuzzy
|
2416 |
msgid "Please enter a license key."
|
2417 |
msgstr "Пожалуйста введите правильный электронный адрес."
|
2724 |
msgid "Disable email notifications during import"
|
2725 |
msgstr "Оповещения по электронной почте:"
|
2726 |
|
2727 |
+
#: templates/admin/csv-import.tpl.php:291
|
2728 |
#, fuzzy
|
2729 |
+
msgid "CSV File Formatting"
|
2730 |
+
msgstr "Настройки файла CSV"
|
2731 |
+
|
2732 |
+
#: templates/admin/csv-import.tpl.php:296
|
2733 |
+
msgid ""
|
2734 |
+
"The following are the header names to use in your CSV file for your current "
|
2735 |
+
"setup. The headers in your CSV file must EXACTLY match (case and "
|
2736 |
+
"punctuation) the names listed here. Fields such as categories or tags can "
|
2737 |
+
"appear multiple times in the file."
|
2738 |
+
msgstr ""
|
2739 |
+
|
2740 |
+
#: templates/admin/csv-import.tpl.php:303
|
2741 |
msgid ""
|
2742 |
+
"<a href=\"%s\">See an example CSV import file</a> to see how your file "
|
2743 |
+
"should be formatted."
|
|
|
|
|
2744 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
2745 |
|
2746 |
+
#: templates/admin/csv-import.tpl.php:312
|
2747 |
#, fuzzy
|
2748 |
msgid "Header name/label"
|
2749 |
msgstr "Имя или метка заголовка"
|
2750 |
|
2751 |
+
#: templates/admin/csv-import.tpl.php:315
|
2752 |
#, fuzzy
|
2753 |
msgid "Required?"
|
2754 |
msgstr "Обязательно?"
|
2755 |
|
2756 |
+
#: templates/admin/csv-import.tpl.php:316
|
2757 |
#, fuzzy
|
2758 |
msgid "Multivalued?"
|
2759 |
msgstr "Множественные значения?"
|
2760 |
|
2761 |
+
#: templates/admin/csv-import.tpl.php:348
|
2762 |
#, fuzzy
|
2763 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2764 |
msgstr "Знак \"точка с запятой\" разделяет список изображений (в файле ZIP)"
|
2765 |
|
2766 |
+
#: templates/admin/csv-import.tpl.php:355
|
2767 |
#, fuzzy
|
2768 |
msgid "Listing owner's username"
|
2769 |
msgstr "Учётная запись автора записи"
|
2988 |
msgid "Plan"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:125
|
2992 |
#: templates/plan-selection-plan.tpl.php:41
|
2993 |
#, fuzzy
|
2994 |
msgid "Recurring"
|
2995 |
msgstr "(периодически)"
|
2996 |
|
2997 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:155
|
2998 |
#, fuzzy
|
2999 |
msgid "Renew listing"
|
3000 |
msgstr "Продлить запись"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
#: templates/admin/payments-details.tpl.php:52
|
3028 |
+
#: templates/admin/payments-details.tpl.php:94
|
3029 |
#, fuzzy
|
3030 |
msgid "Payment ID"
|
3031 |
msgstr "Оплата"
|
3051 |
msgid "(Not yet set)"
|
3052 |
msgstr "Ещё не зарегистрированы?"
|
3053 |
|
3054 |
+
#: templates/admin/payments-details.tpl.php:89
|
3055 |
+
msgid "- Test Mode"
|
3056 |
+
msgstr ""
|
3057 |
+
|
3058 |
+
#: templates/admin/payments-details.tpl.php:105
|
3059 |
#, fuzzy
|
3060 |
msgid "Delete Payment"
|
3061 |
msgstr "Отказать в платеже"
|
3062 |
|
3063 |
+
#: templates/admin/payments-details.tpl.php:107
|
3064 |
#, fuzzy
|
3065 |
msgid "Save Payment"
|
3066 |
msgstr "Оплата"
|
3067 |
|
3068 |
+
#: templates/admin/payments-details.tpl.php:118
|
3069 |
#, fuzzy
|
3070 |
msgid "Details"
|
3071 |
msgstr "Тарифы"
|
3072 |
|
3073 |
+
#: templates/admin/payments-details.tpl.php:122
|
3074 |
#, fuzzy
|
3075 |
msgid "Item Type"
|
3076 |
msgstr "Тип"
|
3077 |
|
3078 |
+
#: templates/admin/payments-details.tpl.php:135
|
3079 |
#: templates/payment/payment_items.tpl.php:23
|
3080 |
#, fuzzy
|
3081 |
msgid "Total"
|
3082 |
msgstr "Всего"
|
3083 |
|
3084 |
+
#: templates/admin/payments-details.tpl.php:146
|
3085 |
#, fuzzy
|
3086 |
msgid "Customer Details"
|
3087 |
msgstr "Детали текущего платежа"
|
3088 |
|
3089 |
+
#: templates/admin/payments-details.tpl.php:156
|
3090 |
#: templates/checkout-billing-form.tpl.php:17
|
3091 |
#, fuzzy
|
3092 |
msgid "First Name"
|
3093 |
msgstr "Имя:"
|
3094 |
|
3095 |
+
#: templates/admin/payments-details.tpl.php:161
|
3096 |
#: templates/checkout-billing-form.tpl.php:22
|
3097 |
#, fuzzy
|
3098 |
msgid "Last Name"
|
3099 |
msgstr "Фамилия:"
|
3100 |
|
3101 |
+
#: templates/admin/payments-details.tpl.php:183
|
3102 |
#, fuzzy
|
3103 |
msgid "Address Line 1"
|
3104 |
msgstr "Адрес:"
|
3105 |
|
3106 |
+
#: templates/admin/payments-details.tpl.php:187
|
3107 |
#: templates/checkout-billing-form.tpl.php:81
|
3108 |
#, fuzzy
|
3109 |
msgid "Address Line 2"
|
3110 |
msgstr "Адрес (дополнительно)"
|
3111 |
|
3112 |
+
#: templates/admin/payments-details.tpl.php:196
|
3113 |
msgid "Notes & Log"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: templates/admin/payments-details.tpl.php:201
|
3117 |
msgid "No notes."
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: templates/admin/payments-details.tpl.php:221
|
3121 |
#, fuzzy
|
3122 |
msgid "Add Note"
|
3123 |
msgstr "Добавить тариф"
|
3281 |
msgid "Upload"
|
3282 |
msgstr "Загрузка файлов"
|
3283 |
|
3284 |
+
#: templates/admin/themes-item.tpl.php:6
|
3285 |
+
#, fuzzy
|
3286 |
+
msgid "Missing License"
|
3287 |
+
msgstr "Название записи:"
|
3288 |
+
|
3289 |
+
#: templates/admin/themes-item.tpl.php:8
|
3290 |
#, fuzzy
|
3291 |
msgid "Inactive"
|
3292 |
msgstr "Активно:"
|
3293 |
|
3294 |
+
#: templates/admin/themes-item.tpl.php:18
|
3295 |
#, fuzzy
|
3296 |
msgid "Updating theme..."
|
3297 |
msgstr "Тема обновляется..."
|
3298 |
|
3299 |
+
#: templates/admin/themes-item.tpl.php:18
|
3300 |
#, fuzzy
|
3301 |
msgid "Theme updated."
|
3302 |
msgstr "Тема обновлена."
|
3303 |
|
3304 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3305 |
+
#: templates/admin/themes-item.tpl.php:23
|
3306 |
#, fuzzy
|
3307 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3308 |
msgstr "Доступна новая версия - <b>%s</b>. <a>Обновите сейчас</a>."
|
4707 |
msgid "All"
|
4708 |
msgstr "Экспортировать всё"
|
4709 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4710 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4711 |
msgctxt "form-fields admin"
|
4712 |
msgid "Form fields updated."
|
4803 |
msgid "In Listing"
|
4804 |
msgstr "В полном виде"
|
4805 |
|
4806 |
+
#: includes/fields/class-fieldtypes-checkbox.php:98
|
4807 |
#, fuzzy
|
4808 |
msgctxt "form-fields admin"
|
4809 |
msgid "Select All"
|
4810 |
msgstr "Список выбора"
|
4811 |
|
4812 |
+
#: includes/fields/class-fieldtypes-checkbox.php:116
|
4813 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:91
|
4814 |
msgctxt "form-fields admin"
|
4815 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4816 |
msgstr "Параметры поля (для выбранных списков и кнопок)."
|
4817 |
|
4818 |
+
#: includes/fields/class-fieldtypes-checkbox.php:128
|
4819 |
msgctxt "form-fields admin"
|
4820 |
msgid "Include \"Select all\"?"
|
4821 |
msgstr ""
|
4822 |
|
4823 |
+
#: includes/fields/class-fieldtypes-checkbox.php:132
|
4824 |
msgctxt "form-fields admin"
|
4825 |
msgid "Display \"Select all\" option among options above."
|
4826 |
msgstr ""
|
4827 |
|
4828 |
+
#: includes/fields/class-fieldtypes-checkbox.php:148
|
4829 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:118
|
4830 |
msgctxt "form-fields admin"
|
4831 |
msgid "Field list of options is required."
|
4832 |
msgstr "Список вариантов поля обязателен."
|
6781 |
msgid "← Return to CSV Export"
|
6782 |
msgstr "← Вернуться к экспорту CSV"
|
6783 |
|
6784 |
+
#: includes/admin/csv-import.php:178
|
6785 |
msgctxt "admin csv-import"
|
6786 |
msgid "Whatever"
|
6787 |
msgstr "Ну ладно"
|
6788 |
|
6789 |
+
#: includes/admin/csv-import.php:372
|
6790 |
msgctxt "admin csv-import"
|
6791 |
msgid "Please upload or select a CSV file."
|
6792 |
msgstr "Пожалуйста загрузите или выберите файл CSV."
|
6793 |
|
6794 |
+
#: includes/admin/csv-import.php:397
|
6795 |
msgctxt "admin csv-import"
|
6796 |
msgid ""
|
6797 |
"An error was detected while validating the CSV file for import. Please fix "
|
6800 |
"Произошла ошибка при проверке импортного файла CSV. Пожалуйста исправьте "
|
6801 |
"ошибки перед тем, как попытаться импортировать файл ещё раз."
|
6802 |
|
6803 |
+
#: includes/admin/csv-import.php:406
|
6804 |
msgctxt "admin csv-import"
|
6805 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6806 |
msgstr ""
|
7014 |
msgid "Import Listings"
|
7015 |
msgstr "Импортировать записи"
|
7016 |
|
7017 |
+
#: templates/admin/csv-import.tpl.php:341
|
7018 |
#, fuzzy
|
7019 |
msgctxt "admin csv-import"
|
7020 |
msgid ""
|
7024 |
"Дата окончания срока действия отформатирована как ГГГГ-ММ-ДД. Используйте "
|
7025 |
"эту колонку при добавлении или изменении записей."
|
7026 |
|
7027 |
+
#: templates/admin/csv-import.tpl.php:362
|
7028 |
msgctxt "admin csv-import"
|
7029 |
msgid ""
|
7030 |
"Internal Sequence ID used to allow listing updates from external sources."
|
7032 |
"Был использован внутренний последовательный номер, чтобы позволить загрузку "
|
7033 |
"данных из справочника с другого сайта."
|
7034 |
|
7035 |
+
#: templates/admin/csv-import.tpl.php:369
|
7036 |
msgctxt "admin csv-import"
|
7037 |
msgid ""
|
7038 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
7041 |
"Дата окончания срока действия отформатирована как ГГГГ-ММ-ДД. Используйте "
|
7042 |
"эту колонку при добавлении или изменении записей."
|
7043 |
|
7044 |
+
#: includes/admin/csv-import.php:328
|
7045 |
#, fuzzy
|
7046 |
msgctxt "csv import"
|
7047 |
msgid ""
|
7086 |
msgid "Plan Details"
|
7087 |
msgstr "Детали плана"
|
7088 |
|
7089 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:51
|
7090 |
msgctxt "listing metabox"
|
7091 |
msgid "Change plan"
|
7092 |
msgstr ""
|
7093 |
|
7094 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:105
|
7095 |
#, fuzzy
|
7096 |
msgctxt "listing metabox"
|
7097 |
msgid "# of images"
|
7833 |
msgid "Send Message to listing owner"
|
7834 |
msgstr "Послать сообщение автору записи"
|
7835 |
|
7836 |
+
#: includes/controllers/pages/class-main.php:14
|
7837 |
msgctxt "templates"
|
7838 |
msgid ""
|
7839 |
"There are no categories assigned to the business directory yet. You need to "
|
7848 |
"нет ни одной записи. Записи не могут быть добавлены пока не будут созданы "
|
7849 |
"рубрики."
|
7850 |
|
7851 |
+
#: includes/controllers/pages/class-main.php:16
|
7852 |
msgctxt "templates"
|
7853 |
msgid "There are currently no listings in the directory."
|
7854 |
msgstr "В справочнике нет ни одного изображения."
|
7855 |
|
7856 |
+
#: includes/controllers/pages/class-main.php:28
|
7857 |
msgctxt "templates"
|
7858 |
msgid ""
|
7859 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
8322 |
msgid "The e-mail address you chose for your account is already in use."
|
8323 |
msgstr ""
|
8324 |
|
8325 |
+
#: includes/models/class-payment.php:286
|
8326 |
msgctxt "submit listing"
|
8327 |
msgid "Listing submitted by admin. Payment skipped."
|
8328 |
msgstr ""
|
8423 |
msgstr ""
|
8424 |
"Это поле формы нельзя удалить, так как оно требуется для работы плагина."
|
8425 |
|
8426 |
+
#: includes/fields/class-fieldtypes-checkbox.php:52
|
8427 |
#, fuzzy
|
8428 |
msgctxt "checkbox form field"
|
8429 |
msgid "Select all"
|
8698 |
msgid "The server returned a 403 Forbidden error."
|
8699 |
msgstr ""
|
8700 |
|
8701 |
+
#: includes/licensing.php:846
|
8702 |
msgctxt "licensing"
|
8703 |
msgid "Could not activate license: %s."
|
8704 |
msgstr "Не удалось активировать лицензию: %s."
|
8705 |
|
8706 |
+
#: includes/licensing.php:851
|
8707 |
msgctxt "licensing"
|
8708 |
msgid "License activated"
|
8709 |
msgstr "Лицензия активирована"
|
8710 |
|
8711 |
+
#: includes/licensing.php:883
|
8712 |
msgctxt "licensing"
|
8713 |
msgid "Could not deactivate license: %s."
|
8714 |
msgstr "Не удалось деактивировать лицензию: %s."
|
8715 |
|
8716 |
+
#: includes/licensing.php:885
|
8717 |
msgctxt "licensing"
|
8718 |
msgid "License deactivated"
|
8719 |
msgstr "Лицензия была деактивирована."
|
8720 |
|
8721 |
#. translators: "<module-name>" version <version-number> is not...
|
8722 |
+
#: includes/licensing.php:1125
|
8723 |
msgctxt "deprecation"
|
8724 |
msgid ""
|
8725 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
8741 |
msgstr[1] "Разрешено изображений"
|
8742 |
msgstr[2] "Разрешено изображений"
|
8743 |
|
8744 |
+
#: includes/models/class-fee-plan.php:410
|
8745 |
#, fuzzy
|
8746 |
msgctxt "fees-api"
|
8747 |
msgid "Plan label is required."
|
8748 |
msgstr "Метка поля обязательна."
|
8749 |
|
8750 |
+
#: includes/models/class-fee-plan.php:416
|
8751 |
msgctxt "fees-api"
|
8752 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8753 |
msgstr "Срок действия тарифа должен быть меньше 10 лет (3650 дней)."
|
8754 |
|
8755 |
+
#: includes/models/class-fee-plan.php:421
|
8756 |
msgctxt "fees-api"
|
8757 |
msgid ""
|
8758 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
8760 |
"<a>plan</a> appropriately."
|
8761 |
msgstr ""
|
8762 |
|
8763 |
+
#: includes/models/class-fee-plan.php:424
|
8764 |
msgctxt "fees-api"
|
8765 |
msgid ""
|
8766 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8767 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
8768 |
msgstr ""
|
8769 |
|
8770 |
+
#: includes/models/class-payment.php:109
|
8771 |
msgctxt "payment"
|
8772 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8773 |
msgstr ""
|
8774 |
|
8775 |
+
#: includes/models/class-payment.php:157
|
8776 |
#, fuzzy
|
8777 |
msgctxt "payment"
|
8778 |
msgid "Initial payment (\"%s\")"
|
8779 |
msgstr "Начальный платёж"
|
8780 |
|
8781 |
+
#: includes/models/class-payment.php:160
|
8782 |
#, fuzzy
|
8783 |
msgctxt "payment"
|
8784 |
msgid "Renewal payment (\"%s\")"
|
8785 |
msgstr "Отказать в платеже"
|
8786 |
|
8787 |
+
#: includes/models/class-payment.php:403
|
8788 |
#, fuzzy
|
8789 |
msgctxt "payment"
|
8790 |
msgid "Pending"
|
8791 |
msgstr "Ожидается"
|
8792 |
|
8793 |
+
#: includes/models/class-payment.php:404
|
8794 |
msgctxt "payment"
|
8795 |
msgid "Failed"
|
8796 |
msgstr ""
|
8797 |
|
8798 |
+
#: includes/models/class-payment.php:405
|
8799 |
#, fuzzy
|
8800 |
msgctxt "payment"
|
8801 |
msgid "Completed"
|
8802 |
msgstr "Завершено"
|
8803 |
|
8804 |
+
#: includes/models/class-payment.php:406
|
8805 |
#, fuzzy
|
8806 |
msgctxt "payment"
|
8807 |
msgid "Canceled"
|
8808 |
msgstr "Отменено"
|
8809 |
|
8810 |
+
#: includes/models/class-payment.php:407
|
8811 |
msgctxt "payment"
|
8812 |
msgid "On Hold"
|
8813 |
msgstr ""
|
8814 |
|
8815 |
+
#: includes/models/class-payment.php:408
|
8816 |
msgctxt "payment"
|
8817 |
msgid "Refunded"
|
8818 |
msgstr ""
|
8819 |
|
8820 |
+
#: includes/models/class-payment.php:172
|
8821 |
msgctxt "payment summary"
|
8822 |
msgid "%s. Admin Posted."
|
8823 |
msgstr ""
|
8824 |
|
8825 |
+
#: includes/models/class-payment.php:174
|
8826 |
#, fuzzy
|
8827 |
msgctxt "payment summary"
|
8828 |
msgid "%s. Imported Listing."
|
8849 |
msgid "File type \"%s\" is not allowed"
|
8850 |
msgstr "Файл типа \"%s\" не допускается к загрузке"
|
8851 |
|
8852 |
+
#: includes/utils.php:668
|
8853 |
msgctxt "utils"
|
8854 |
msgid ""
|
8855 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8981 |
"we'll answer it within 24 hours most days."
|
8982 |
msgstr ""
|
8983 |
|
8984 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
8985 |
#, fuzzy
|
8986 |
msgctxt "admin infometabox"
|
8987 |
msgid "Renewal url (copy & paste)"
|
8988 |
msgstr "Ссылка для продления (для копирования)"
|
8989 |
|
8990 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
8991 |
msgctxt "admin infometabox"
|
8992 |
msgid "Get renewal URL"
|
8993 |
msgstr ""
|
8994 |
|
8995 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:149
|
8996 |
#, fuzzy
|
8997 |
msgctxt "admin infometabox"
|
8998 |
msgid "Send renewal e-mail"
|
9208 |
msgid "Continue"
|
9209 |
msgstr "Далее"
|
9210 |
|
9211 |
+
#, fuzzy
|
9212 |
+
#~ msgid ""
|
9213 |
+
#~ "The following are the valid header names to be used in the CSV file. "
|
9214 |
+
#~ "Multivalued fields (such as category or tags) can appear multiple times "
|
9215 |
+
#~ "in the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> "
|
9216 |
+
#~ "to see how an import file should look like."
|
9217 |
+
#~ msgstr ""
|
9218 |
+
#~ "Далее приведены правильные имена заголовков, которые будут использованы в "
|
9219 |
+
#~ "файле CSV. поля со множественными значениями, такие как рубрики или "
|
9220 |
+
#~ "метки, могут оказаться в файле в нескольких местах. Посмотрите на \"<a "
|
9221 |
+
#~ "href=\"%s\">Образец файла CSV для импорта</a>\" чтобы узнать, как такой "
|
9222 |
+
#~ "файл должен выглядеть."
|
9223 |
+
|
9224 |
+
#, fuzzy
|
9225 |
+
#~ msgctxt "payments admin"
|
9226 |
+
#~ msgid "View Payment"
|
9227 |
+
#~ msgstr "История платежа"
|
9228 |
+
|
9229 |
#, fuzzy
|
9230 |
#~ msgctxt "uninstall"
|
9231 |
#~ msgid "Please choose an option."
|
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"
|
@@ -267,7 +267,6 @@ msgid "See Example"
|
|
267 |
msgstr ""
|
268 |
|
269 |
#: includes/admin/controllers/class-admin-csv.php:54
|
270 |
-
#: templates/admin/csv-import.tpl.php:291
|
271 |
#, fuzzy
|
272 |
msgid "Help"
|
273 |
msgstr "Hjälp"
|
@@ -275,8 +274,8 @@ msgstr "Hjälp"
|
|
275 |
#: includes/admin/controllers/class-admin-fees.php:46
|
276 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
277 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
278 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
279 |
-
#: templates/admin/payments-details.tpl.php:
|
280 |
#: templates/email/listing-payment-completed.tpl.php:21
|
281 |
#: templates/payment/payment_items.tpl.php:5
|
282 |
#, fuzzy
|
@@ -351,7 +350,7 @@ msgid "Listing Reports"
|
|
351 |
msgstr "Annonsen förfallit."
|
352 |
|
353 |
#: includes/admin/controllers/class-admin-listings.php:268
|
354 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
355 |
msgid "Expires on"
|
356 |
msgstr "Utgår den"
|
357 |
|
@@ -361,7 +360,7 @@ msgstr "Attribut"
|
|
361 |
|
362 |
#: includes/admin/controllers/class-admin-listings.php:339
|
363 |
#: includes/helpers/class-listing-display-helper.php:137
|
364 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
365 |
#, fuzzy
|
366 |
msgid "Featured"
|
367 |
msgstr "Utvald (fäst)"
|
@@ -379,7 +378,7 @@ msgid "Delete Listing"
|
|
379 |
msgstr "Ta bort annons"
|
380 |
|
381 |
#: includes/admin/controllers/class-admin-listings.php:733
|
382 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
383 |
#, fuzzy
|
384 |
msgid "Never"
|
385 |
msgstr "Aldrig"
|
@@ -387,8 +386,8 @@ msgstr "Aldrig"
|
|
387 |
#: includes/admin/controllers/class-admin-listings.php:744
|
388 |
#: includes/admin/controllers/class-admin-listings.php:745
|
389 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
390 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
391 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
392 |
#, fuzzy
|
393 |
msgid "Yes"
|
394 |
msgstr "Ja"
|
@@ -397,8 +396,8 @@ msgstr "Ja"
|
|
397 |
#: includes/admin/controllers/class-admin-listings.php:745
|
398 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
399 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
400 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
401 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
402 |
#, fuzzy
|
403 |
msgid "No"
|
404 |
msgstr "Nej"
|
@@ -476,27 +475,27 @@ msgid "Address 2"
|
|
476 |
msgstr "Adress"
|
477 |
|
478 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
479 |
-
#: templates/admin/payments-details.tpl.php:
|
480 |
#: templates/checkout-billing-form.tpl.php:87
|
481 |
#, fuzzy
|
482 |
msgid "City"
|
483 |
msgstr "Stad/ort"
|
484 |
|
485 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
486 |
-
#: templates/admin/payments-details.tpl.php:
|
487 |
#, fuzzy
|
488 |
msgid "State"
|
489 |
msgstr "Län"
|
490 |
|
491 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
492 |
-
#: templates/admin/payments-details.tpl.php:
|
493 |
#: templates/checkout-billing-form.tpl.php:102
|
494 |
#, fuzzy
|
495 |
msgid "Country"
|
496 |
msgstr "Land"
|
497 |
|
498 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
499 |
-
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:
|
500 |
msgid "ZIP Code"
|
501 |
msgstr "Postnummer"
|
502 |
|
@@ -567,7 +566,7 @@ msgstr "Redan installerad."
|
|
567 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
568 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
569 |
#: templates/admin/payments-note.tpl.php:14
|
570 |
-
#: templates/admin/themes-item.tpl.php:
|
571 |
#: templates/parts/listing-buttons.tpl.php:31
|
572 |
#, fuzzy
|
573 |
msgid "Delete"
|
@@ -584,31 +583,31 @@ msgid "Themes"
|
|
584 |
msgstr "Teman"
|
585 |
|
586 |
#. translators: %s: Sample business name
|
587 |
-
#: includes/admin/csv-import.php:
|
588 |
#, fuzzy
|
589 |
msgid "Business %s"
|
590 |
msgstr "Affärs%s"
|
591 |
|
592 |
-
#: includes/admin/csv-import.php:
|
|
|
|
|
|
|
|
|
593 |
#, fuzzy
|
594 |
msgid "Example CSV Import File"
|
595 |
msgstr "Exempel CSV-importfilen"
|
596 |
|
597 |
-
#: includes/admin/csv-import.php:
|
598 |
-
msgid "Go Back"
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: includes/admin/csv-import.php:333 includes/helpers/class-app.php:232
|
602 |
#: includes/helpers/class-app.php:244
|
603 |
msgid "You are not allowed to do that."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: includes/admin/csv-import.php:
|
607 |
#, fuzzy
|
608 |
msgid "There was an error uploading the file:"
|
609 |
msgstr "Det uppstod ett fel vid överföringen av CSV-filen."
|
610 |
|
611 |
-
#: includes/admin/csv-import.php:
|
612 |
#, fuzzy
|
613 |
msgid "Please upload the correct file type."
|
614 |
msgstr "Vänligen ladda upp eller välj en CSV-fil."
|
@@ -648,7 +647,7 @@ msgstr "Ej installerad"
|
|
648 |
|
649 |
#: includes/admin/helpers/class-modules-list.php:226
|
650 |
#: includes/controllers/class-smtp.php:317
|
651 |
-
#: templates/admin/themes-item.tpl.php:
|
652 |
#, fuzzy
|
653 |
msgid "Activate"
|
654 |
msgstr "Aktivera:"
|
@@ -736,14 +735,14 @@ msgstr "Standardavgift"
|
|
736 |
|
737 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
738 |
#: includes/fields/class-fieldtypes-social.php:135
|
739 |
-
#: templates/admin/csv-import.tpl.php:
|
740 |
#, fuzzy
|
741 |
msgid "Type"
|
742 |
msgstr "Typ"
|
743 |
|
744 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
745 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
746 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
747 |
#, fuzzy
|
748 |
msgid "Edit"
|
749 |
msgstr "Redigera"
|
@@ -753,6 +752,11 @@ msgstr "Redigera"
|
|
753 |
msgid "Are you sure you want to delete that field?"
|
754 |
msgstr "Är du säker på att du vill ta bort \"%s\" fält?"
|
755 |
|
|
|
|
|
|
|
|
|
|
|
756 |
#: includes/admin/page-debug.php:40
|
757 |
#, fuzzy
|
758 |
msgid "Plugin Settings"
|
@@ -768,9 +772,9 @@ msgid "Plugin Info"
|
|
768 |
msgstr ""
|
769 |
|
770 |
#: includes/admin/page-debug.php:159
|
771 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
772 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
773 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
774 |
#, fuzzy
|
775 |
msgid "OK"
|
776 |
msgstr "OK"
|
@@ -781,7 +785,7 @@ msgstr "Saknade tabeller:%s"
|
|
781 |
|
782 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
783 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
784 |
-
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:
|
785 |
#: templates/listing-contactform.tpl.php:33
|
786 |
#: templates/listing-flagging-form.tpl.php:39
|
787 |
#, fuzzy
|
@@ -1425,9 +1429,9 @@ msgid ""
|
|
1425 |
msgstr ""
|
1426 |
|
1427 |
#: includes/class-assets.php:195
|
1428 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1429 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1430 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1431 |
#: templates/admin/settings-email.tpl.php:103
|
1432 |
#: templates/admin/settings-reset.tpl.php:8
|
1433 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
@@ -1871,43 +1875,43 @@ msgstr "Flervalslista"
|
|
1871 |
msgid "Select List"
|
1872 |
msgstr "Flervalslista"
|
1873 |
|
1874 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1875 |
#, fuzzy
|
1876 |
msgid "-- Choose One --"
|
1877 |
msgstr "— Välj ett —"
|
1878 |
|
1879 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1880 |
#, fuzzy
|
1881 |
msgid "-- Choose Terms --"
|
1882 |
msgstr "- Välj Villkor -"
|
1883 |
|
1884 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1885 |
#, fuzzy
|
1886 |
msgid "— None —"
|
1887 |
msgstr "— Inget —"
|
1888 |
|
1889 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1890 |
#, fuzzy
|
1891 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1892 |
msgstr "Fältalternativ (för utvalda annonser, radioknappar och kryssrutor)"
|
1893 |
|
1894 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1895 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1896 |
#: templates/admin/fees-form.tpl.php:58
|
1897 |
#, fuzzy
|
1898 |
msgid "required"
|
1899 |
msgstr "obligatoriskt"
|
1900 |
|
1901 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1902 |
msgid "One option per line"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1906 |
#, fuzzy
|
1907 |
msgid "Allow empty selection on search?"
|
1908 |
msgstr "Tillåt tomt urval på sök?"
|
1909 |
|
1910 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1911 |
#, fuzzy
|
1912 |
msgid "Field list of options is required."
|
1913 |
msgstr "Lista på alternativ krävs."
|
@@ -2004,7 +2008,7 @@ msgstr "Annonsens titel"
|
|
2004 |
msgid "Short Description"
|
2005 |
msgstr "Kort Verksamhetsbeskrivning"
|
2006 |
|
2007 |
-
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:
|
2008 |
#, fuzzy
|
2009 |
msgid "Description"
|
2010 |
msgstr "Beskrivning"
|
@@ -2058,7 +2062,7 @@ msgstr "Heltal Validator"
|
|
2058 |
msgid "Telephone Number Validator"
|
2059 |
msgstr "Heltal Validator"
|
2060 |
|
2061 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
2062 |
#, fuzzy
|
2063 |
msgid "Field"
|
2064 |
msgstr "Fält"
|
@@ -2408,31 +2412,41 @@ msgstr ""
|
|
2408 |
"Business Directorys servers. Vänligen kontakta <support-link>Business "
|
2409 |
"Directory support</support-link> och be dem vitlista din IP-adress."
|
2410 |
|
2411 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
2412 |
#, fuzzy
|
2413 |
msgid "Business Directory license key is missing."
|
2414 |
msgstr "Business Directory - Licensnyckel har upphört"
|
2415 |
|
2416 |
-
#: includes/licensing.php:
|
2417 |
#, fuzzy
|
2418 |
msgid "Business Directory license key has expired"
|
2419 |
msgstr "Business Directory - Licensnyckel har upphört"
|
2420 |
|
2421 |
-
#: includes/licensing.php:
|
2422 |
#, fuzzy
|
2423 |
msgid "Could not verify Business Directory license."
|
2424 |
msgstr "Hjälp oss förbättra Business Directory"
|
2425 |
|
2426 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2427 |
#, fuzzy
|
2428 |
msgid "Review license keys"
|
2429 |
msgstr "Granska mina licensnycklar"
|
2430 |
|
2431 |
-
#: includes/licensing.php:
|
2432 |
msgid "Missing data. Please reload this page and try again."
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: includes/licensing.php:
|
2436 |
#, fuzzy
|
2437 |
msgid "Please enter a license key."
|
2438 |
msgstr "Skriv in licensnyckel"
|
@@ -2750,40 +2764,46 @@ msgstr ""
|
|
2750 |
msgid "Disable email notifications during import"
|
2751 |
msgstr "Inaktivera e-postmeddelanden vid import?"
|
2752 |
|
2753 |
-
#: templates/admin/csv-import.tpl.php:
|
2754 |
#, fuzzy
|
|
|
|
|
|
|
|
|
2755 |
msgid ""
|
2756 |
-
"The following are the
|
2757 |
-
"
|
2758 |
-
"the
|
2759 |
-
"
|
2760 |
msgstr ""
|
2761 |
-
"Följande är giltiga rubriknamn som ska användas i CSV-filen. Fält med flera "
|
2762 |
-
"värden (såsom kategori eller taggar) kan förekomma flera gånger i filen. "
|
2763 |
-
"Klicka <a href=\"%s\">\"Se ett exempel CSV-importfilen\"</a> för att se hur "
|
2764 |
-
"en importfil ska se ut."
|
2765 |
|
2766 |
-
#: templates/admin/csv-import.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2767 |
#, fuzzy
|
2768 |
msgid "Header name/label"
|
2769 |
msgstr "Rubriknamn / etikett"
|
2770 |
|
2771 |
-
#: templates/admin/csv-import.tpl.php:
|
2772 |
#, fuzzy
|
2773 |
msgid "Required?"
|
2774 |
msgstr "Obligatoriskt?"
|
2775 |
|
2776 |
-
#: templates/admin/csv-import.tpl.php:
|
2777 |
#, fuzzy
|
2778 |
msgid "Multivalued?"
|
2779 |
msgstr "Fler värden?"
|
2780 |
|
2781 |
-
#: templates/admin/csv-import.tpl.php:
|
2782 |
#, fuzzy
|
2783 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2784 |
msgstr "Semikolonseparerad lista med annonsbilder (från ZIP-filen)."
|
2785 |
|
2786 |
-
#: templates/admin/csv-import.tpl.php:
|
2787 |
#, fuzzy
|
2788 |
msgid "Listing owner's username"
|
2789 |
msgstr "Annonsens författares användarnamn"
|
@@ -3016,13 +3036,13 @@ msgstr "Senaste förnyelsedatum"
|
|
3016 |
msgid "Plan"
|
3017 |
msgstr "Avgiftsplan"
|
3018 |
|
3019 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
3020 |
#: templates/plan-selection-plan.tpl.php:41
|
3021 |
#, fuzzy
|
3022 |
msgid "Recurring"
|
3023 |
msgstr "Återkommande"
|
3024 |
|
3025 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
3026 |
#, fuzzy
|
3027 |
msgid "Renew listing"
|
3028 |
msgstr "Förnya annons"
|
@@ -3054,7 +3074,7 @@ msgid "Overview"
|
|
3054 |
msgstr "Översikt"
|
3055 |
|
3056 |
#: templates/admin/payments-details.tpl.php:52
|
3057 |
-
#: templates/admin/payments-details.tpl.php:
|
3058 |
#, fuzzy
|
3059 |
msgid "Payment ID"
|
3060 |
msgstr "Betalning-ID"
|
@@ -3080,71 +3100,75 @@ msgstr "Betalmodul"
|
|
3080 |
msgid "(Not yet set)"
|
3081 |
msgstr "(Ännu inte angiven)"
|
3082 |
|
3083 |
-
#: templates/admin/payments-details.tpl.php:
|
|
|
|
|
|
|
|
|
3084 |
#, fuzzy
|
3085 |
msgid "Delete Payment"
|
3086 |
msgstr "Ta bort betalning"
|
3087 |
|
3088 |
-
#: templates/admin/payments-details.tpl.php:
|
3089 |
#, fuzzy
|
3090 |
msgid "Save Payment"
|
3091 |
msgstr "Spara betalning"
|
3092 |
|
3093 |
-
#: templates/admin/payments-details.tpl.php:
|
3094 |
#, fuzzy
|
3095 |
msgid "Details"
|
3096 |
msgstr "Detaljer"
|
3097 |
|
3098 |
-
#: templates/admin/payments-details.tpl.php:
|
3099 |
#, fuzzy
|
3100 |
msgid "Item Type"
|
3101 |
msgstr "Objekttyp"
|
3102 |
|
3103 |
-
#: templates/admin/payments-details.tpl.php:
|
3104 |
#: templates/payment/payment_items.tpl.php:23
|
3105 |
#, fuzzy
|
3106 |
msgid "Total"
|
3107 |
msgstr "Total"
|
3108 |
|
3109 |
-
#: templates/admin/payments-details.tpl.php:
|
3110 |
#, fuzzy
|
3111 |
msgid "Customer Details"
|
3112 |
msgstr "Kunddetaljer"
|
3113 |
|
3114 |
-
#: templates/admin/payments-details.tpl.php:
|
3115 |
#: templates/checkout-billing-form.tpl.php:17
|
3116 |
#, fuzzy
|
3117 |
msgid "First Name"
|
3118 |
msgstr "Förnamn"
|
3119 |
|
3120 |
-
#: templates/admin/payments-details.tpl.php:
|
3121 |
#: templates/checkout-billing-form.tpl.php:22
|
3122 |
#, fuzzy
|
3123 |
msgid "Last Name"
|
3124 |
msgstr "Efternamn"
|
3125 |
|
3126 |
-
#: templates/admin/payments-details.tpl.php:
|
3127 |
#, fuzzy
|
3128 |
msgid "Address Line 1"
|
3129 |
msgstr "Adressrad 1:"
|
3130 |
|
3131 |
-
#: templates/admin/payments-details.tpl.php:
|
3132 |
#: templates/checkout-billing-form.tpl.php:81
|
3133 |
#, fuzzy
|
3134 |
msgid "Address Line 2"
|
3135 |
msgstr "Adressrad 2"
|
3136 |
|
3137 |
-
#: templates/admin/payments-details.tpl.php:
|
3138 |
#, fuzzy
|
3139 |
msgid "Notes & Log"
|
3140 |
msgstr "Anteckningar & Log"
|
3141 |
|
3142 |
-
#: templates/admin/payments-details.tpl.php:
|
3143 |
#, fuzzy
|
3144 |
msgid "No notes."
|
3145 |
msgstr "Inga anteckningar"
|
3146 |
|
3147 |
-
#: templates/admin/payments-details.tpl.php:
|
3148 |
#, fuzzy
|
3149 |
msgid "Add Note"
|
3150 |
msgstr "Lägg till anteckning"
|
@@ -3308,23 +3332,28 @@ msgstr "BD Temaarkiv (ZIP-fil)"
|
|
3308 |
msgid "Upload"
|
3309 |
msgstr "Modul för filuppladdning"
|
3310 |
|
3311 |
-
#: templates/admin/themes-item.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
3312 |
#, fuzzy
|
3313 |
msgid "Inactive"
|
3314 |
msgstr "Aktiv"
|
3315 |
|
3316 |
-
#: templates/admin/themes-item.tpl.php:
|
3317 |
#, fuzzy
|
3318 |
msgid "Updating theme..."
|
3319 |
msgstr "Uppdaterar ditt tema"
|
3320 |
|
3321 |
-
#: templates/admin/themes-item.tpl.php:
|
3322 |
#, fuzzy
|
3323 |
msgid "Theme updated."
|
3324 |
msgstr "Tema uppdateras."
|
3325 |
|
3326 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3327 |
-
#: templates/admin/themes-item.tpl.php:
|
3328 |
#, fuzzy
|
3329 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3330 |
msgstr "Ny version tillgänglig <b>(%s).</b> <a>Uppdatera nu.</a>"
|
@@ -4735,11 +4764,6 @@ msgctxt "payments admin"
|
|
4735 |
msgid "All"
|
4736 |
msgstr "Alla
"
|
4737 |
|
4738 |
-
#: includes/admin/helpers/tables/class-payments-table.php:134
|
4739 |
-
msgctxt "payments admin"
|
4740 |
-
msgid "View Payment History"
|
4741 |
-
msgstr "Visa betalningshistorik"
|
4742 |
-
|
4743 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4744 |
msgctxt "form-fields admin"
|
4745 |
msgid "Form fields updated."
|
@@ -4835,30 +4859,30 @@ msgctxt "form-fields admin"
|
|
4835 |
msgid "In Listing"
|
4836 |
msgstr "I annons"
|
4837 |
|
4838 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4839 |
#, fuzzy
|
4840 |
msgctxt "form-fields admin"
|
4841 |
msgid "Select All"
|
4842 |
msgstr "Flervalslista"
|
4843 |
|
4844 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4845 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4846 |
msgctxt "form-fields admin"
|
4847 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4848 |
msgstr "Fältalternativ (för utvalda annonser, radioknappar och kryssrutor)"
|
4849 |
|
4850 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4851 |
msgctxt "form-fields admin"
|
4852 |
msgid "Include \"Select all\"?"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4856 |
msgctxt "form-fields admin"
|
4857 |
msgid "Display \"Select all\" option among options above."
|
4858 |
msgstr ""
|
4859 |
|
4860 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4861 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4862 |
msgctxt "form-fields admin"
|
4863 |
msgid "Field list of options is required."
|
4864 |
msgstr "Lista på alternativ krävs."
|
@@ -6720,17 +6744,17 @@ msgctxt "admin csv-export"
|
|
6720 |
msgid "← Return to CSV Export"
|
6721 |
msgstr "← Tillbaka till CSV Export"
|
6722 |
|
6723 |
-
#: includes/admin/csv-import.php:
|
6724 |
msgctxt "admin csv-import"
|
6725 |
msgid "Whatever"
|
6726 |
msgstr "Oavsett"
|
6727 |
|
6728 |
-
#: includes/admin/csv-import.php:
|
6729 |
msgctxt "admin csv-import"
|
6730 |
msgid "Please upload or select a CSV file."
|
6731 |
msgstr "Vänligen ladda upp eller välj en CSV-fil."
|
6732 |
|
6733 |
-
#: includes/admin/csv-import.php:
|
6734 |
msgctxt "admin csv-import"
|
6735 |
msgid ""
|
6736 |
"An error was detected while validating the CSV file for import. Please fix "
|
@@ -6739,7 +6763,7 @@ msgstr ""
|
|
6739 |
"Ett fel upptäcktes vid valideringen av CSV-filen för import. Vänligen "
|
6740 |
"åtgärda detta innan du fortsätter."
|
6741 |
|
6742 |
-
#: includes/admin/csv-import.php:
|
6743 |
msgctxt "admin csv-import"
|
6744 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6745 |
msgstr "Import är i \"testläge\". Ingenting kommer att införas i databasen."
|
@@ -6952,7 +6976,7 @@ msgctxt "admin csv-import"
|
|
6952 |
msgid "Import Listings"
|
6953 |
msgstr "Importera annonser"
|
6954 |
|
6955 |
-
#: templates/admin/csv-import.tpl.php:
|
6956 |
#, fuzzy
|
6957 |
msgctxt "admin csv-import"
|
6958 |
msgid ""
|
@@ -6962,7 +6986,7 @@ msgstr ""
|
|
6962 |
"Annonsens utgångsdatum formateras som ÅÅÅÅ-MM-DD. Använd den här kolumnen "
|
6963 |
"när du lägger till eller uppdaterar listor från externa källor."
|
6964 |
|
6965 |
-
#: templates/admin/csv-import.tpl.php:
|
6966 |
msgctxt "admin csv-import"
|
6967 |
msgid ""
|
6968 |
"Internal Sequence ID used to allow listing updates from external sources."
|
@@ -6970,7 +6994,7 @@ msgstr ""
|
|
6970 |
"Intern sekvens ID som används för att tillåta notering uppdateringar från "
|
6971 |
"externa källor."
|
6972 |
|
6973 |
-
#: templates/admin/csv-import.tpl.php:
|
6974 |
msgctxt "admin csv-import"
|
6975 |
msgid ""
|
6976 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
@@ -6979,7 +7003,7 @@ msgstr ""
|
|
6979 |
"Annonsens utgångsdatum formateras som ÅÅÅÅ-MM-DD. Använd den här kolumnen "
|
6980 |
"när du lägger till eller uppdaterar listor från externa källor."
|
6981 |
|
6982 |
-
#: includes/admin/csv-import.php:
|
6983 |
#, fuzzy
|
6984 |
msgctxt "csv import"
|
6985 |
msgid ""
|
@@ -7018,12 +7042,12 @@ msgctxt "listing metabox"
|
|
7018 |
msgid "Plan Details"
|
7019 |
msgstr "Detaljer för plan"
|
7020 |
|
7021 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7022 |
msgctxt "listing metabox"
|
7023 |
msgid "Change plan"
|
7024 |
msgstr "Ändra plan"
|
7025 |
|
7026 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7027 |
msgctxt "listing metabox"
|
7028 |
msgid "# of images"
|
7029 |
msgstr "# Bilder"
|
@@ -7759,7 +7783,7 @@ msgctxt "templates"
|
|
7759 |
msgid "Send Message to listing owner"
|
7760 |
msgstr "Skicka ett meddelande till annonsören"
|
7761 |
|
7762 |
-
#: includes/controllers/pages/class-main.php:
|
7763 |
msgctxt "templates"
|
7764 |
msgid ""
|
7765 |
"There are no categories assigned to the business directory yet. You need to "
|
@@ -7774,12 +7798,12 @@ msgstr ""
|
|
7774 |
"några annonser i registret. Annonser kan inte läggas förrän du skapar "
|
7775 |
"kategorier i Business Directory."
|
7776 |
|
7777 |
-
#: includes/controllers/pages/class-main.php:
|
7778 |
msgctxt "templates"
|
7779 |
msgid "There are currently no listings in the directory."
|
7780 |
msgstr "Det finns inga annonser för närvarande i registret."
|
7781 |
|
7782 |
-
#: includes/controllers/pages/class-main.php:
|
7783 |
msgctxt "templates"
|
7784 |
msgid ""
|
7785 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
@@ -8238,7 +8262,7 @@ msgctxt "submit listing"
|
|
8238 |
msgid "The e-mail address you chose for your account is already in use."
|
8239 |
msgstr "E-postadressen du valt för ditt konto används redan."
|
8240 |
|
8241 |
-
#: includes/models/class-payment.php:
|
8242 |
msgctxt "submit listing"
|
8243 |
msgid "Listing submitted by admin. Payment skipped."
|
8244 |
msgstr "Notering skickas in av admin. Betalning hoppas över."
|
@@ -8339,7 +8363,7 @@ msgstr ""
|
|
8339 |
"Detta formulärfält kan inte tas bort för att det är obligatoriskt för att "
|
8340 |
"pluginet ska fungera."
|
8341 |
|
8342 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
8343 |
#, fuzzy
|
8344 |
msgctxt "checkbox form field"
|
8345 |
msgid "Select all"
|
@@ -8637,28 +8661,28 @@ msgctxt "licensing"
|
|
8637 |
msgid "The server returned a 403 Forbidden error."
|
8638 |
msgstr "Servern returnerade ett 403 Forbidden fel."
|
8639 |
|
8640 |
-
#: includes/licensing.php:
|
8641 |
msgctxt "licensing"
|
8642 |
msgid "Could not activate license: %s."
|
8643 |
msgstr "Det gick inte att aktivera licens:%s."
|
8644 |
|
8645 |
-
#: includes/licensing.php:
|
8646 |
msgctxt "licensing"
|
8647 |
msgid "License activated"
|
8648 |
msgstr "Licens aktiverad"
|
8649 |
|
8650 |
-
#: includes/licensing.php:
|
8651 |
msgctxt "licensing"
|
8652 |
msgid "Could not deactivate license: %s."
|
8653 |
msgstr "Det gick inte att inaktivera licens:%s."
|
8654 |
|
8655 |
-
#: includes/licensing.php:
|
8656 |
msgctxt "licensing"
|
8657 |
msgid "License deactivated"
|
8658 |
msgstr "Licensnyckel avaktiverad"
|
8659 |
|
8660 |
#. translators: "<module-name>" version <version-number> is not...
|
8661 |
-
#: includes/licensing.php:
|
8662 |
#, fuzzy
|
8663 |
msgctxt "deprecation"
|
8664 |
msgid ""
|
@@ -8680,18 +8704,18 @@ msgid_plural "%d images allowed."
|
|
8680 |
msgstr[0] "%d bild tillåten."
|
8681 |
msgstr[1] "%d bilder tillåtna."
|
8682 |
|
8683 |
-
#: includes/models/class-fee-plan.php:
|
8684 |
#, fuzzy
|
8685 |
msgctxt "fees-api"
|
8686 |
msgid "Plan label is required."
|
8687 |
msgstr "Fältetikett krävs"
|
8688 |
|
8689 |
-
#: includes/models/class-fee-plan.php:
|
8690 |
msgctxt "fees-api"
|
8691 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8692 |
msgstr "Avgiftens varaktighet måste vara ett tal mindre än 10 år (3650 dagar)."
|
8693 |
|
8694 |
-
#: includes/models/class-fee-plan.php:
|
8695 |
msgctxt "fees-api"
|
8696 |
msgid ""
|
8697 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
@@ -8699,65 +8723,65 @@ msgid ""
|
|
8699 |
"<a>plan</a> appropriately."
|
8700 |
msgstr ""
|
8701 |
|
8702 |
-
#: includes/models/class-fee-plan.php:
|
8703 |
msgctxt "fees-api"
|
8704 |
msgid ""
|
8705 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8706 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
8707 |
msgstr ""
|
8708 |
|
8709 |
-
#: includes/models/class-payment.php:
|
8710 |
#, fuzzy
|
8711 |
msgctxt "payment"
|
8712 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8713 |
msgstr "Betalningsstatusen ändrad från '%s' till '%s'."
|
8714 |
|
8715 |
-
#: includes/models/class-payment.php:
|
8716 |
msgctxt "payment"
|
8717 |
msgid "Initial payment (\"%s\")"
|
8718 |
msgstr "Första betalning (\"%s)"
|
8719 |
|
8720 |
-
#: includes/models/class-payment.php:
|
8721 |
msgctxt "payment"
|
8722 |
msgid "Renewal payment (\"%s\")"
|
8723 |
msgstr "Förnyelsebetalning (\"%s\")"
|
8724 |
|
8725 |
-
#: includes/models/class-payment.php:
|
8726 |
msgctxt "payment"
|
8727 |
msgid "Pending"
|
8728 |
msgstr "Avvaktande"
|
8729 |
|
8730 |
-
#: includes/models/class-payment.php:
|
8731 |
msgctxt "payment"
|
8732 |
msgid "Failed"
|
8733 |
msgstr "Misslyckades"
|
8734 |
|
8735 |
-
#: includes/models/class-payment.php:
|
8736 |
msgctxt "payment"
|
8737 |
msgid "Completed"
|
8738 |
msgstr "Genomförd"
|
8739 |
|
8740 |
-
#: includes/models/class-payment.php:
|
8741 |
msgctxt "payment"
|
8742 |
msgid "Canceled"
|
8743 |
msgstr "Avbruten"
|
8744 |
|
8745 |
-
#: includes/models/class-payment.php:
|
8746 |
msgctxt "payment"
|
8747 |
msgid "On Hold"
|
8748 |
msgstr "Väntande"
|
8749 |
|
8750 |
-
#: includes/models/class-payment.php:
|
8751 |
msgctxt "payment"
|
8752 |
msgid "Refunded"
|
8753 |
msgstr "Återbetalad"
|
8754 |
|
8755 |
-
#: includes/models/class-payment.php:
|
8756 |
msgctxt "payment summary"
|
8757 |
msgid "%s. Admin Posted."
|
8758 |
msgstr "%s. Admin postat."
|
8759 |
|
8760 |
-
#: includes/models/class-payment.php:
|
8761 |
#, fuzzy
|
8762 |
msgctxt "payment summary"
|
8763 |
msgid "%s. Imported Listing."
|
@@ -8783,7 +8807,7 @@ msgctxt "utils"
|
|
8783 |
msgid "File type \"%s\" is not allowed"
|
8784 |
msgstr "Filtyp \"%s\" är inte tillåten"
|
8785 |
|
8786 |
-
#: includes/utils.php:
|
8787 |
msgctxt "utils"
|
8788 |
msgid ""
|
8789 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8915,17 +8939,17 @@ msgid ""
|
|
8915 |
"we'll answer it within 24 hours most days."
|
8916 |
msgstr ""
|
8917 |
|
8918 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8919 |
msgctxt "admin infometabox"
|
8920 |
msgid "Renewal url (copy & paste)"
|
8921 |
msgstr "Förnyelse URL (kopiera och klistra in)"
|
8922 |
|
8923 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8924 |
msgctxt "admin infometabox"
|
8925 |
msgid "Get renewal URL"
|
8926 |
msgstr "Få förnyelse-URL"
|
8927 |
|
8928 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
8929 |
msgctxt "admin infometabox"
|
8930 |
msgid "Send renewal e-mail"
|
8931 |
msgstr "Skicka e-post om förnyelse"
|
@@ -9134,6 +9158,22 @@ msgctxt "send-access-keys"
|
|
9134 |
msgid "Continue"
|
9135 |
msgstr "Fortsätt "
|
9136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9137 |
#~ msgctxt "uninstall"
|
9138 |
#~ msgid "Please choose an option."
|
9139 |
#~ msgstr "Vänligen välj ett alternativ."
|
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-11-03 17:40:34+00:00\n"
|
9 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
267 |
msgstr ""
|
268 |
|
269 |
#: includes/admin/controllers/class-admin-csv.php:54
|
|
|
270 |
#, fuzzy
|
271 |
msgid "Help"
|
272 |
msgstr "Hjälp"
|
274 |
#: includes/admin/controllers/class-admin-fees.php:46
|
275 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
276 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
277 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:81
|
278 |
+
#: templates/admin/payments-details.tpl.php:124
|
279 |
#: templates/email/listing-payment-completed.tpl.php:21
|
280 |
#: templates/payment/payment_items.tpl.php:5
|
281 |
#, fuzzy
|
350 |
msgstr "Annonsen förfallit."
|
351 |
|
352 |
#: includes/admin/controllers/class-admin-listings.php:268
|
353 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:87
|
354 |
msgid "Expires on"
|
355 |
msgstr "Utgår den"
|
356 |
|
360 |
|
361 |
#: includes/admin/controllers/class-admin-listings.php:339
|
362 |
#: includes/helpers/class-listing-display-helper.php:137
|
363 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:118
|
364 |
#, fuzzy
|
365 |
msgid "Featured"
|
366 |
msgstr "Utvald (fäst)"
|
378 |
msgstr "Ta bort annons"
|
379 |
|
380 |
#: includes/admin/controllers/class-admin-listings.php:733
|
381 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:96
|
382 |
#, fuzzy
|
383 |
msgid "Never"
|
384 |
msgstr "Aldrig"
|
386 |
#: includes/admin/controllers/class-admin-listings.php:744
|
387 |
#: includes/admin/controllers/class-admin-listings.php:745
|
388 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
389 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
390 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
391 |
#, fuzzy
|
392 |
msgid "Yes"
|
393 |
msgstr "Ja"
|
396 |
#: includes/admin/controllers/class-admin-listings.php:745
|
397 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
398 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
399 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
400 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
401 |
#, fuzzy
|
402 |
msgid "No"
|
403 |
msgstr "Nej"
|
475 |
msgstr "Adress"
|
476 |
|
477 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
478 |
+
#: templates/admin/payments-details.tpl.php:175
|
479 |
#: templates/checkout-billing-form.tpl.php:87
|
480 |
#, fuzzy
|
481 |
msgid "City"
|
482 |
msgstr "Stad/ort"
|
483 |
|
484 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
485 |
+
#: templates/admin/payments-details.tpl.php:171
|
486 |
#, fuzzy
|
487 |
msgid "State"
|
488 |
msgstr "Län"
|
489 |
|
490 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
491 |
+
#: templates/admin/payments-details.tpl.php:167
|
492 |
#: templates/checkout-billing-form.tpl.php:102
|
493 |
#, fuzzy
|
494 |
msgid "Country"
|
495 |
msgstr "Land"
|
496 |
|
497 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
498 |
+
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:179
|
499 |
msgid "ZIP Code"
|
500 |
msgstr "Postnummer"
|
501 |
|
566 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
567 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
568 |
#: templates/admin/payments-note.tpl.php:14
|
569 |
+
#: templates/admin/themes-item.tpl.php:51
|
570 |
#: templates/parts/listing-buttons.tpl.php:31
|
571 |
#, fuzzy
|
572 |
msgid "Delete"
|
583 |
msgstr "Teman"
|
584 |
|
585 |
#. translators: %s: Sample business name
|
586 |
+
#: includes/admin/csv-import.php:136
|
587 |
#, fuzzy
|
588 |
msgid "Business %s"
|
589 |
msgstr "Affärs%s"
|
590 |
|
591 |
+
#: includes/admin/csv-import.php:183
|
592 |
+
msgid "Download Example"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: includes/admin/csv-import.php:185
|
596 |
#, fuzzy
|
597 |
msgid "Example CSV Import File"
|
598 |
msgstr "Exempel CSV-importfilen"
|
599 |
|
600 |
+
#: includes/admin/csv-import.php:358 includes/helpers/class-app.php:232
|
|
|
|
|
|
|
|
|
601 |
#: includes/helpers/class-app.php:244
|
602 |
msgid "You are not allowed to do that."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: includes/admin/csv-import.php:451
|
606 |
#, fuzzy
|
607 |
msgid "There was an error uploading the file:"
|
608 |
msgstr "Det uppstod ett fel vid överföringen av CSV-filen."
|
609 |
|
610 |
+
#: includes/admin/csv-import.php:456
|
611 |
#, fuzzy
|
612 |
msgid "Please upload the correct file type."
|
613 |
msgstr "Vänligen ladda upp eller välj en CSV-fil."
|
647 |
|
648 |
#: includes/admin/helpers/class-modules-list.php:226
|
649 |
#: includes/controllers/class-smtp.php:317
|
650 |
+
#: templates/admin/themes-item.tpl.php:59
|
651 |
#, fuzzy
|
652 |
msgid "Activate"
|
653 |
msgstr "Aktivera:"
|
735 |
|
736 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
737 |
#: includes/fields/class-fieldtypes-social.php:135
|
738 |
+
#: templates/admin/csv-import.tpl.php:314
|
739 |
#, fuzzy
|
740 |
msgid "Type"
|
741 |
msgstr "Typ"
|
742 |
|
743 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
744 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:93
|
745 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:110
|
746 |
#, fuzzy
|
747 |
msgid "Edit"
|
748 |
msgstr "Redigera"
|
752 |
msgid "Are you sure you want to delete that field?"
|
753 |
msgstr "Är du säker på att du vill ta bort \"%s\" fält?"
|
754 |
|
755 |
+
#: includes/admin/helpers/tables/class-payments-table.php:143
|
756 |
+
#, fuzzy
|
757 |
+
msgid "View Payment"
|
758 |
+
msgstr "Visa betalning"
|
759 |
+
|
760 |
#: includes/admin/page-debug.php:40
|
761 |
#, fuzzy
|
762 |
msgid "Plugin Settings"
|
772 |
msgstr ""
|
773 |
|
774 |
#: includes/admin/page-debug.php:159
|
775 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:76
|
776 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:99
|
777 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:114
|
778 |
#, fuzzy
|
779 |
msgid "OK"
|
780 |
msgstr "OK"
|
785 |
|
786 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
787 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
788 |
+
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:151
|
789 |
#: templates/listing-contactform.tpl.php:33
|
790 |
#: templates/listing-flagging-form.tpl.php:39
|
791 |
#, fuzzy
|
1429 |
msgstr ""
|
1430 |
|
1431 |
#: includes/class-assets.php:195
|
1432 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:77
|
1433 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:100
|
1434 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:115
|
1435 |
#: templates/admin/settings-email.tpl.php:103
|
1436 |
#: templates/admin/settings-reset.tpl.php:8
|
1437 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
1875 |
msgid "Select List"
|
1876 |
msgstr "Flervalslista"
|
1877 |
|
1878 |
+
#: includes/fields/class-fieldtypes-select.php:117
|
1879 |
#, fuzzy
|
1880 |
msgid "-- Choose One --"
|
1881 |
msgstr "— Välj ett —"
|
1882 |
|
1883 |
+
#: includes/fields/class-fieldtypes-select.php:144
|
1884 |
#, fuzzy
|
1885 |
msgid "-- Choose Terms --"
|
1886 |
msgstr "- Välj Villkor -"
|
1887 |
|
1888 |
+
#: includes/fields/class-fieldtypes-select.php:210
|
1889 |
#, fuzzy
|
1890 |
msgid "— None —"
|
1891 |
msgstr "— Inget —"
|
1892 |
|
1893 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1894 |
#, fuzzy
|
1895 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1896 |
msgstr "Fältalternativ (för utvalda annonser, radioknappar och kryssrutor)"
|
1897 |
|
1898 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1899 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1900 |
#: templates/admin/fees-form.tpl.php:58
|
1901 |
#, fuzzy
|
1902 |
msgid "required"
|
1903 |
msgstr "obligatoriskt"
|
1904 |
|
1905 |
+
#: includes/fields/class-fieldtypes-select.php:269
|
1906 |
msgid "One option per line"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: includes/fields/class-fieldtypes-select.php:279
|
1910 |
#, fuzzy
|
1911 |
msgid "Allow empty selection on search?"
|
1912 |
msgstr "Tillåt tomt urval på sök?"
|
1913 |
|
1914 |
+
#: includes/fields/class-fieldtypes-select.php:297
|
1915 |
#, fuzzy
|
1916 |
msgid "Field list of options is required."
|
1917 |
msgstr "Lista på alternativ krävs."
|
2008 |
msgid "Short Description"
|
2009 |
msgstr "Kort Verksamhetsbeskrivning"
|
2010 |
|
2011 |
+
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:123
|
2012 |
#, fuzzy
|
2013 |
msgid "Description"
|
2014 |
msgstr "Beskrivning"
|
2062 |
msgid "Telephone Number Validator"
|
2063 |
msgstr "Heltal Validator"
|
2064 |
|
2065 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:313
|
2066 |
#, fuzzy
|
2067 |
msgid "Field"
|
2068 |
msgstr "Fält"
|
2412 |
"Business Directorys servers. Vänligen kontakta <support-link>Business "
|
2413 |
"Directory support</support-link> och be dem vitlista din IP-adress."
|
2414 |
|
2415 |
+
#: includes/licensing.php:645
|
2416 |
+
msgid "Download Premium"
|
2417 |
+
msgstr ""
|
2418 |
+
|
2419 |
+
#: includes/licensing.php:695
|
2420 |
#, fuzzy
|
2421 |
msgid "Business Directory license key is missing."
|
2422 |
msgstr "Business Directory - Licensnyckel har upphört"
|
2423 |
|
2424 |
+
#: includes/licensing.php:696
|
2425 |
#, fuzzy
|
2426 |
msgid "Business Directory license key has expired"
|
2427 |
msgstr "Business Directory - Licensnyckel har upphört"
|
2428 |
|
2429 |
+
#: includes/licensing.php:697
|
2430 |
#, fuzzy
|
2431 |
msgid "Could not verify Business Directory license."
|
2432 |
msgstr "Hjälp oss förbättra Business Directory"
|
2433 |
|
2434 |
+
#: includes/licensing.php:698
|
2435 |
+
msgid ""
|
2436 |
+
"You have modules installed, but Business Directory Premium is missing. "
|
2437 |
+
"Install this plugin for extra features and easy license management."
|
2438 |
+
msgstr ""
|
2439 |
+
|
2440 |
+
#: includes/licensing.php:709
|
2441 |
#, fuzzy
|
2442 |
msgid "Review license keys"
|
2443 |
msgstr "Granska mina licensnycklar"
|
2444 |
|
2445 |
+
#: includes/licensing.php:824
|
2446 |
msgid "Missing data. Please reload this page and try again."
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: includes/licensing.php:829
|
2450 |
#, fuzzy
|
2451 |
msgid "Please enter a license key."
|
2452 |
msgstr "Skriv in licensnyckel"
|
2764 |
msgid "Disable email notifications during import"
|
2765 |
msgstr "Inaktivera e-postmeddelanden vid import?"
|
2766 |
|
2767 |
+
#: templates/admin/csv-import.tpl.php:291
|
2768 |
#, fuzzy
|
2769 |
+
msgid "CSV File Formatting"
|
2770 |
+
msgstr "Inställningar för CSV-fil"
|
2771 |
+
|
2772 |
+
#: templates/admin/csv-import.tpl.php:296
|
2773 |
msgid ""
|
2774 |
+
"The following are the header names to use in your CSV file for your current "
|
2775 |
+
"setup. The headers in your CSV file must EXACTLY match (case and "
|
2776 |
+
"punctuation) the names listed here. Fields such as categories or tags can "
|
2777 |
+
"appear multiple times in the file."
|
2778 |
msgstr ""
|
|
|
|
|
|
|
|
|
2779 |
|
2780 |
+
#: templates/admin/csv-import.tpl.php:303
|
2781 |
+
msgid ""
|
2782 |
+
"<a href=\"%s\">See an example CSV import file</a> to see how your file "
|
2783 |
+
"should be formatted."
|
2784 |
+
msgstr ""
|
2785 |
+
|
2786 |
+
#: templates/admin/csv-import.tpl.php:312
|
2787 |
#, fuzzy
|
2788 |
msgid "Header name/label"
|
2789 |
msgstr "Rubriknamn / etikett"
|
2790 |
|
2791 |
+
#: templates/admin/csv-import.tpl.php:315
|
2792 |
#, fuzzy
|
2793 |
msgid "Required?"
|
2794 |
msgstr "Obligatoriskt?"
|
2795 |
|
2796 |
+
#: templates/admin/csv-import.tpl.php:316
|
2797 |
#, fuzzy
|
2798 |
msgid "Multivalued?"
|
2799 |
msgstr "Fler värden?"
|
2800 |
|
2801 |
+
#: templates/admin/csv-import.tpl.php:348
|
2802 |
#, fuzzy
|
2803 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2804 |
msgstr "Semikolonseparerad lista med annonsbilder (från ZIP-filen)."
|
2805 |
|
2806 |
+
#: templates/admin/csv-import.tpl.php:355
|
2807 |
#, fuzzy
|
2808 |
msgid "Listing owner's username"
|
2809 |
msgstr "Annonsens författares användarnamn"
|
3036 |
msgid "Plan"
|
3037 |
msgstr "Avgiftsplan"
|
3038 |
|
3039 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:125
|
3040 |
#: templates/plan-selection-plan.tpl.php:41
|
3041 |
#, fuzzy
|
3042 |
msgid "Recurring"
|
3043 |
msgstr "Återkommande"
|
3044 |
|
3045 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:155
|
3046 |
#, fuzzy
|
3047 |
msgid "Renew listing"
|
3048 |
msgstr "Förnya annons"
|
3074 |
msgstr "Översikt"
|
3075 |
|
3076 |
#: templates/admin/payments-details.tpl.php:52
|
3077 |
+
#: templates/admin/payments-details.tpl.php:94
|
3078 |
#, fuzzy
|
3079 |
msgid "Payment ID"
|
3080 |
msgstr "Betalning-ID"
|
3100 |
msgid "(Not yet set)"
|
3101 |
msgstr "(Ännu inte angiven)"
|
3102 |
|
3103 |
+
#: templates/admin/payments-details.tpl.php:89
|
3104 |
+
msgid "- Test Mode"
|
3105 |
+
msgstr ""
|
3106 |
+
|
3107 |
+
#: templates/admin/payments-details.tpl.php:105
|
3108 |
#, fuzzy
|
3109 |
msgid "Delete Payment"
|
3110 |
msgstr "Ta bort betalning"
|
3111 |
|
3112 |
+
#: templates/admin/payments-details.tpl.php:107
|
3113 |
#, fuzzy
|
3114 |
msgid "Save Payment"
|
3115 |
msgstr "Spara betalning"
|
3116 |
|
3117 |
+
#: templates/admin/payments-details.tpl.php:118
|
3118 |
#, fuzzy
|
3119 |
msgid "Details"
|
3120 |
msgstr "Detaljer"
|
3121 |
|
3122 |
+
#: templates/admin/payments-details.tpl.php:122
|
3123 |
#, fuzzy
|
3124 |
msgid "Item Type"
|
3125 |
msgstr "Objekttyp"
|
3126 |
|
3127 |
+
#: templates/admin/payments-details.tpl.php:135
|
3128 |
#: templates/payment/payment_items.tpl.php:23
|
3129 |
#, fuzzy
|
3130 |
msgid "Total"
|
3131 |
msgstr "Total"
|
3132 |
|
3133 |
+
#: templates/admin/payments-details.tpl.php:146
|
3134 |
#, fuzzy
|
3135 |
msgid "Customer Details"
|
3136 |
msgstr "Kunddetaljer"
|
3137 |
|
3138 |
+
#: templates/admin/payments-details.tpl.php:156
|
3139 |
#: templates/checkout-billing-form.tpl.php:17
|
3140 |
#, fuzzy
|
3141 |
msgid "First Name"
|
3142 |
msgstr "Förnamn"
|
3143 |
|
3144 |
+
#: templates/admin/payments-details.tpl.php:161
|
3145 |
#: templates/checkout-billing-form.tpl.php:22
|
3146 |
#, fuzzy
|
3147 |
msgid "Last Name"
|
3148 |
msgstr "Efternamn"
|
3149 |
|
3150 |
+
#: templates/admin/payments-details.tpl.php:183
|
3151 |
#, fuzzy
|
3152 |
msgid "Address Line 1"
|
3153 |
msgstr "Adressrad 1:"
|
3154 |
|
3155 |
+
#: templates/admin/payments-details.tpl.php:187
|
3156 |
#: templates/checkout-billing-form.tpl.php:81
|
3157 |
#, fuzzy
|
3158 |
msgid "Address Line 2"
|
3159 |
msgstr "Adressrad 2"
|
3160 |
|
3161 |
+
#: templates/admin/payments-details.tpl.php:196
|
3162 |
#, fuzzy
|
3163 |
msgid "Notes & Log"
|
3164 |
msgstr "Anteckningar & Log"
|
3165 |
|
3166 |
+
#: templates/admin/payments-details.tpl.php:201
|
3167 |
#, fuzzy
|
3168 |
msgid "No notes."
|
3169 |
msgstr "Inga anteckningar"
|
3170 |
|
3171 |
+
#: templates/admin/payments-details.tpl.php:221
|
3172 |
#, fuzzy
|
3173 |
msgid "Add Note"
|
3174 |
msgstr "Lägg till anteckning"
|
3332 |
msgid "Upload"
|
3333 |
msgstr "Modul för filuppladdning"
|
3334 |
|
3335 |
+
#: templates/admin/themes-item.tpl.php:6
|
3336 |
+
#, fuzzy
|
3337 |
+
msgid "Missing License"
|
3338 |
+
msgstr "Annonsens tidslinje:"
|
3339 |
+
|
3340 |
+
#: templates/admin/themes-item.tpl.php:8
|
3341 |
#, fuzzy
|
3342 |
msgid "Inactive"
|
3343 |
msgstr "Aktiv"
|
3344 |
|
3345 |
+
#: templates/admin/themes-item.tpl.php:18
|
3346 |
#, fuzzy
|
3347 |
msgid "Updating theme..."
|
3348 |
msgstr "Uppdaterar ditt tema"
|
3349 |
|
3350 |
+
#: templates/admin/themes-item.tpl.php:18
|
3351 |
#, fuzzy
|
3352 |
msgid "Theme updated."
|
3353 |
msgstr "Tema uppdateras."
|
3354 |
|
3355 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
3356 |
+
#: templates/admin/themes-item.tpl.php:23
|
3357 |
#, fuzzy
|
3358 |
msgid "New version available. %1$sUpdate now.%2$s"
|
3359 |
msgstr "Ny version tillgänglig <b>(%s).</b> <a>Uppdatera nu.</a>"
|
4764 |
msgid "All"
|
4765 |
msgstr "Alla
"
|
4766 |
|
|
|
|
|
|
|
|
|
|
|
4767 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4768 |
msgctxt "form-fields admin"
|
4769 |
msgid "Form fields updated."
|
4859 |
msgid "In Listing"
|
4860 |
msgstr "I annons"
|
4861 |
|
4862 |
+
#: includes/fields/class-fieldtypes-checkbox.php:98
|
4863 |
#, fuzzy
|
4864 |
msgctxt "form-fields admin"
|
4865 |
msgid "Select All"
|
4866 |
msgstr "Flervalslista"
|
4867 |
|
4868 |
+
#: includes/fields/class-fieldtypes-checkbox.php:116
|
4869 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:91
|
4870 |
msgctxt "form-fields admin"
|
4871 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4872 |
msgstr "Fältalternativ (för utvalda annonser, radioknappar och kryssrutor)"
|
4873 |
|
4874 |
+
#: includes/fields/class-fieldtypes-checkbox.php:128
|
4875 |
msgctxt "form-fields admin"
|
4876 |
msgid "Include \"Select all\"?"
|
4877 |
msgstr ""
|
4878 |
|
4879 |
+
#: includes/fields/class-fieldtypes-checkbox.php:132
|
4880 |
msgctxt "form-fields admin"
|
4881 |
msgid "Display \"Select all\" option among options above."
|
4882 |
msgstr ""
|
4883 |
|
4884 |
+
#: includes/fields/class-fieldtypes-checkbox.php:148
|
4885 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:118
|
4886 |
msgctxt "form-fields admin"
|
4887 |
msgid "Field list of options is required."
|
4888 |
msgstr "Lista på alternativ krävs."
|
6744 |
msgid "← Return to CSV Export"
|
6745 |
msgstr "← Tillbaka till CSV Export"
|
6746 |
|
6747 |
+
#: includes/admin/csv-import.php:178
|
6748 |
msgctxt "admin csv-import"
|
6749 |
msgid "Whatever"
|
6750 |
msgstr "Oavsett"
|
6751 |
|
6752 |
+
#: includes/admin/csv-import.php:372
|
6753 |
msgctxt "admin csv-import"
|
6754 |
msgid "Please upload or select a CSV file."
|
6755 |
msgstr "Vänligen ladda upp eller välj en CSV-fil."
|
6756 |
|
6757 |
+
#: includes/admin/csv-import.php:397
|
6758 |
msgctxt "admin csv-import"
|
6759 |
msgid ""
|
6760 |
"An error was detected while validating the CSV file for import. Please fix "
|
6763 |
"Ett fel upptäcktes vid valideringen av CSV-filen för import. Vänligen "
|
6764 |
"åtgärda detta innan du fortsätter."
|
6765 |
|
6766 |
+
#: includes/admin/csv-import.php:406
|
6767 |
msgctxt "admin csv-import"
|
6768 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6769 |
msgstr "Import är i \"testläge\". Ingenting kommer att införas i databasen."
|
6976 |
msgid "Import Listings"
|
6977 |
msgstr "Importera annonser"
|
6978 |
|
6979 |
+
#: templates/admin/csv-import.tpl.php:341
|
6980 |
#, fuzzy
|
6981 |
msgctxt "admin csv-import"
|
6982 |
msgid ""
|
6986 |
"Annonsens utgångsdatum formateras som ÅÅÅÅ-MM-DD. Använd den här kolumnen "
|
6987 |
"när du lägger till eller uppdaterar listor från externa källor."
|
6988 |
|
6989 |
+
#: templates/admin/csv-import.tpl.php:362
|
6990 |
msgctxt "admin csv-import"
|
6991 |
msgid ""
|
6992 |
"Internal Sequence ID used to allow listing updates from external sources."
|
6994 |
"Intern sekvens ID som används för att tillåta notering uppdateringar från "
|
6995 |
"externa källor."
|
6996 |
|
6997 |
+
#: templates/admin/csv-import.tpl.php:369
|
6998 |
msgctxt "admin csv-import"
|
6999 |
msgid ""
|
7000 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
7003 |
"Annonsens utgångsdatum formateras som ÅÅÅÅ-MM-DD. Använd den här kolumnen "
|
7004 |
"när du lägger till eller uppdaterar listor från externa källor."
|
7005 |
|
7006 |
+
#: includes/admin/csv-import.php:328
|
7007 |
#, fuzzy
|
7008 |
msgctxt "csv import"
|
7009 |
msgid ""
|
7042 |
msgid "Plan Details"
|
7043 |
msgstr "Detaljer för plan"
|
7044 |
|
7045 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:51
|
7046 |
msgctxt "listing metabox"
|
7047 |
msgid "Change plan"
|
7048 |
msgstr "Ändra plan"
|
7049 |
|
7050 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:105
|
7051 |
msgctxt "listing metabox"
|
7052 |
msgid "# of images"
|
7053 |
msgstr "# Bilder"
|
7783 |
msgid "Send Message to listing owner"
|
7784 |
msgstr "Skicka ett meddelande till annonsören"
|
7785 |
|
7786 |
+
#: includes/controllers/pages/class-main.php:14
|
7787 |
msgctxt "templates"
|
7788 |
msgid ""
|
7789 |
"There are no categories assigned to the business directory yet. You need to "
|
7798 |
"några annonser i registret. Annonser kan inte läggas förrän du skapar "
|
7799 |
"kategorier i Business Directory."
|
7800 |
|
7801 |
+
#: includes/controllers/pages/class-main.php:16
|
7802 |
msgctxt "templates"
|
7803 |
msgid "There are currently no listings in the directory."
|
7804 |
msgstr "Det finns inga annonser för närvarande i registret."
|
7805 |
|
7806 |
+
#: includes/controllers/pages/class-main.php:28
|
7807 |
msgctxt "templates"
|
7808 |
msgid ""
|
7809 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
8262 |
msgid "The e-mail address you chose for your account is already in use."
|
8263 |
msgstr "E-postadressen du valt för ditt konto används redan."
|
8264 |
|
8265 |
+
#: includes/models/class-payment.php:286
|
8266 |
msgctxt "submit listing"
|
8267 |
msgid "Listing submitted by admin. Payment skipped."
|
8268 |
msgstr "Notering skickas in av admin. Betalning hoppas över."
|
8363 |
"Detta formulärfält kan inte tas bort för att det är obligatoriskt för att "
|
8364 |
"pluginet ska fungera."
|
8365 |
|
8366 |
+
#: includes/fields/class-fieldtypes-checkbox.php:52
|
8367 |
#, fuzzy
|
8368 |
msgctxt "checkbox form field"
|
8369 |
msgid "Select all"
|
8661 |
msgid "The server returned a 403 Forbidden error."
|
8662 |
msgstr "Servern returnerade ett 403 Forbidden fel."
|
8663 |
|
8664 |
+
#: includes/licensing.php:846
|
8665 |
msgctxt "licensing"
|
8666 |
msgid "Could not activate license: %s."
|
8667 |
msgstr "Det gick inte att aktivera licens:%s."
|
8668 |
|
8669 |
+
#: includes/licensing.php:851
|
8670 |
msgctxt "licensing"
|
8671 |
msgid "License activated"
|
8672 |
msgstr "Licens aktiverad"
|
8673 |
|
8674 |
+
#: includes/licensing.php:883
|
8675 |
msgctxt "licensing"
|
8676 |
msgid "Could not deactivate license: %s."
|
8677 |
msgstr "Det gick inte att inaktivera licens:%s."
|
8678 |
|
8679 |
+
#: includes/licensing.php:885
|
8680 |
msgctxt "licensing"
|
8681 |
msgid "License deactivated"
|
8682 |
msgstr "Licensnyckel avaktiverad"
|
8683 |
|
8684 |
#. translators: "<module-name>" version <version-number> is not...
|
8685 |
+
#: includes/licensing.php:1125
|
8686 |
#, fuzzy
|
8687 |
msgctxt "deprecation"
|
8688 |
msgid ""
|
8704 |
msgstr[0] "%d bild tillåten."
|
8705 |
msgstr[1] "%d bilder tillåtna."
|
8706 |
|
8707 |
+
#: includes/models/class-fee-plan.php:410
|
8708 |
#, fuzzy
|
8709 |
msgctxt "fees-api"
|
8710 |
msgid "Plan label is required."
|
8711 |
msgstr "Fältetikett krävs"
|
8712 |
|
8713 |
+
#: includes/models/class-fee-plan.php:416
|
8714 |
msgctxt "fees-api"
|
8715 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
8716 |
msgstr "Avgiftens varaktighet måste vara ett tal mindre än 10 år (3650 dagar)."
|
8717 |
|
8718 |
+
#: includes/models/class-fee-plan.php:421
|
8719 |
msgctxt "fees-api"
|
8720 |
msgid ""
|
8721 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
8723 |
"<a>plan</a> appropriately."
|
8724 |
msgstr ""
|
8725 |
|
8726 |
+
#: includes/models/class-fee-plan.php:424
|
8727 |
msgctxt "fees-api"
|
8728 |
msgid ""
|
8729 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
8730 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
8731 |
msgstr ""
|
8732 |
|
8733 |
+
#: includes/models/class-payment.php:109
|
8734 |
#, fuzzy
|
8735 |
msgctxt "payment"
|
8736 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
8737 |
msgstr "Betalningsstatusen ändrad från '%s' till '%s'."
|
8738 |
|
8739 |
+
#: includes/models/class-payment.php:157
|
8740 |
msgctxt "payment"
|
8741 |
msgid "Initial payment (\"%s\")"
|
8742 |
msgstr "Första betalning (\"%s)"
|
8743 |
|
8744 |
+
#: includes/models/class-payment.php:160
|
8745 |
msgctxt "payment"
|
8746 |
msgid "Renewal payment (\"%s\")"
|
8747 |
msgstr "Förnyelsebetalning (\"%s\")"
|
8748 |
|
8749 |
+
#: includes/models/class-payment.php:403
|
8750 |
msgctxt "payment"
|
8751 |
msgid "Pending"
|
8752 |
msgstr "Avvaktande"
|
8753 |
|
8754 |
+
#: includes/models/class-payment.php:404
|
8755 |
msgctxt "payment"
|
8756 |
msgid "Failed"
|
8757 |
msgstr "Misslyckades"
|
8758 |
|
8759 |
+
#: includes/models/class-payment.php:405
|
8760 |
msgctxt "payment"
|
8761 |
msgid "Completed"
|
8762 |
msgstr "Genomförd"
|
8763 |
|
8764 |
+
#: includes/models/class-payment.php:406
|
8765 |
msgctxt "payment"
|
8766 |
msgid "Canceled"
|
8767 |
msgstr "Avbruten"
|
8768 |
|
8769 |
+
#: includes/models/class-payment.php:407
|
8770 |
msgctxt "payment"
|
8771 |
msgid "On Hold"
|
8772 |
msgstr "Väntande"
|
8773 |
|
8774 |
+
#: includes/models/class-payment.php:408
|
8775 |
msgctxt "payment"
|
8776 |
msgid "Refunded"
|
8777 |
msgstr "Återbetalad"
|
8778 |
|
8779 |
+
#: includes/models/class-payment.php:172
|
8780 |
msgctxt "payment summary"
|
8781 |
msgid "%s. Admin Posted."
|
8782 |
msgstr "%s. Admin postat."
|
8783 |
|
8784 |
+
#: includes/models/class-payment.php:174
|
8785 |
#, fuzzy
|
8786 |
msgctxt "payment summary"
|
8787 |
msgid "%s. Imported Listing."
|
8807 |
msgid "File type \"%s\" is not allowed"
|
8808 |
msgstr "Filtyp \"%s\" är inte tillåten"
|
8809 |
|
8810 |
+
#: includes/utils.php:668
|
8811 |
msgctxt "utils"
|
8812 |
msgid ""
|
8813 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8939 |
"we'll answer it within 24 hours most days."
|
8940 |
msgstr ""
|
8941 |
|
8942 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
8943 |
msgctxt "admin infometabox"
|
8944 |
msgid "Renewal url (copy & paste)"
|
8945 |
msgstr "Förnyelse URL (kopiera och klistra in)"
|
8946 |
|
8947 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
8948 |
msgctxt "admin infometabox"
|
8949 |
msgid "Get renewal URL"
|
8950 |
msgstr "Få förnyelse-URL"
|
8951 |
|
8952 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:149
|
8953 |
msgctxt "admin infometabox"
|
8954 |
msgid "Send renewal e-mail"
|
8955 |
msgstr "Skicka e-post om förnyelse"
|
9158 |
msgid "Continue"
|
9159 |
msgstr "Fortsätt "
|
9160 |
|
9161 |
+
#, fuzzy
|
9162 |
+
#~ msgid ""
|
9163 |
+
#~ "The following are the valid header names to be used in the CSV file. "
|
9164 |
+
#~ "Multivalued fields (such as category or tags) can appear multiple times "
|
9165 |
+
#~ "in the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> "
|
9166 |
+
#~ "to see how an import file should look like."
|
9167 |
+
#~ msgstr ""
|
9168 |
+
#~ "Följande är giltiga rubriknamn som ska användas i CSV-filen. Fält med "
|
9169 |
+
#~ "flera värden (såsom kategori eller taggar) kan förekomma flera gånger i "
|
9170 |
+
#~ "filen. Klicka <a href=\"%s\">\"Se ett exempel CSV-importfilen\"</a> för "
|
9171 |
+
#~ "att se hur en importfil ska se ut."
|
9172 |
+
|
9173 |
+
#~ msgctxt "payments admin"
|
9174 |
+
#~ msgid "View Payment"
|
9175 |
+
#~ msgstr "Visa betalningshistorik"
|
9176 |
+
|
9177 |
#~ msgctxt "uninstall"
|
9178 |
#~ msgid "Please choose an option."
|
9179 |
#~ msgstr "Vänligen välj ett alternativ."
|
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 6.
|
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"
|
@@ -220,15 +220,14 @@ msgid "See Example"
|
|
220 |
msgstr ""
|
221 |
|
222 |
#: includes/admin/controllers/class-admin-csv.php:54
|
223 |
-
#: templates/admin/csv-import.tpl.php:291
|
224 |
msgid "Help"
|
225 |
msgstr ""
|
226 |
|
227 |
#: includes/admin/controllers/class-admin-fees.php:46
|
228 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
229 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
230 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
231 |
-
#: templates/admin/payments-details.tpl.php:
|
232 |
#: templates/email/listing-payment-completed.tpl.php:21
|
233 |
#: templates/payment/payment_items.tpl.php:5
|
234 |
msgid "Amount"
|
@@ -294,7 +293,7 @@ msgid "Listing Reports"
|
|
294 |
msgstr ""
|
295 |
|
296 |
#: includes/admin/controllers/class-admin-listings.php:268
|
297 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
298 |
msgid "Expires on"
|
299 |
msgstr ""
|
300 |
|
@@ -304,7 +303,7 @@ msgstr ""
|
|
304 |
|
305 |
#: includes/admin/controllers/class-admin-listings.php:339
|
306 |
#: includes/helpers/class-listing-display-helper.php:137
|
307 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
308 |
msgid "Featured"
|
309 |
msgstr ""
|
310 |
|
@@ -321,15 +320,15 @@ msgid "Delete Listing"
|
|
321 |
msgstr ""
|
322 |
|
323 |
#: includes/admin/controllers/class-admin-listings.php:733
|
324 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
325 |
msgid "Never"
|
326 |
msgstr ""
|
327 |
|
328 |
#: includes/admin/controllers/class-admin-listings.php:744
|
329 |
#: includes/admin/controllers/class-admin-listings.php:745
|
330 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
331 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
332 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
333 |
msgid "Yes"
|
334 |
msgstr ""
|
335 |
|
@@ -337,8 +336,8 @@ msgstr ""
|
|
337 |
#: includes/admin/controllers/class-admin-listings.php:745
|
338 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
339 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
340 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
341 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
342 |
msgid "No"
|
343 |
msgstr ""
|
344 |
|
@@ -402,24 +401,24 @@ msgid "Address 2"
|
|
402 |
msgstr ""
|
403 |
|
404 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
405 |
-
#: templates/admin/payments-details.tpl.php:
|
406 |
#: templates/checkout-billing-form.tpl.php:87
|
407 |
msgid "City"
|
408 |
msgstr ""
|
409 |
|
410 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
411 |
-
#: templates/admin/payments-details.tpl.php:
|
412 |
msgid "State"
|
413 |
msgstr ""
|
414 |
|
415 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
416 |
-
#: templates/admin/payments-details.tpl.php:
|
417 |
#: templates/checkout-billing-form.tpl.php:102
|
418 |
msgid "Country"
|
419 |
msgstr ""
|
420 |
|
421 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
422 |
-
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:
|
423 |
msgid "ZIP Code"
|
424 |
msgstr ""
|
425 |
|
@@ -480,7 +479,7 @@ msgstr ""
|
|
480 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
481 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
482 |
#: templates/admin/payments-note.tpl.php:14
|
483 |
-
#: templates/admin/themes-item.tpl.php:
|
484 |
#: templates/parts/listing-buttons.tpl.php:31
|
485 |
msgid "Delete"
|
486 |
msgstr ""
|
@@ -493,29 +492,29 @@ msgstr ""
|
|
493 |
msgid "Themes"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: includes/admin/csv-import.php:
|
497 |
#. translators: %s: Sample business name
|
498 |
msgid "Business %s"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: includes/admin/csv-import.php:
|
502 |
-
msgid "Example
|
503 |
msgstr ""
|
504 |
|
505 |
#: includes/admin/csv-import.php:185
|
506 |
-
msgid "
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: includes/admin/csv-import.php:
|
510 |
#: includes/helpers/class-app.php:244
|
511 |
msgid "You are not allowed to do that."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: includes/admin/csv-import.php:
|
515 |
msgid "There was an error uploading the file:"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: includes/admin/csv-import.php:
|
519 |
msgid "Please upload the correct file type."
|
520 |
msgstr ""
|
521 |
|
@@ -549,7 +548,7 @@ msgstr ""
|
|
549 |
|
550 |
#: includes/admin/helpers/class-modules-list.php:226
|
551 |
#: includes/controllers/class-smtp.php:317
|
552 |
-
#: templates/admin/themes-item.tpl.php:
|
553 |
msgid "Activate"
|
554 |
msgstr ""
|
555 |
|
@@ -622,13 +621,13 @@ msgstr ""
|
|
622 |
|
623 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
624 |
#: includes/fields/class-fieldtypes-social.php:135
|
625 |
-
#: templates/admin/csv-import.tpl.php:
|
626 |
msgid "Type"
|
627 |
msgstr ""
|
628 |
|
629 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
630 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
631 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
632 |
msgid "Edit"
|
633 |
msgstr ""
|
634 |
|
@@ -636,6 +635,10 @@ msgstr ""
|
|
636 |
msgid "Are you sure you want to delete that field?"
|
637 |
msgstr ""
|
638 |
|
|
|
|
|
|
|
|
|
639 |
#: includes/admin/page-debug.php:40
|
640 |
msgid "Plugin Settings"
|
641 |
msgstr ""
|
@@ -649,9 +652,9 @@ msgid "Plugin Info"
|
|
649 |
msgstr ""
|
650 |
|
651 |
#: includes/admin/page-debug.php:159
|
652 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
653 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
654 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
655 |
msgid "OK"
|
656 |
msgstr ""
|
657 |
|
@@ -661,7 +664,7 @@ msgstr ""
|
|
661 |
|
662 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
663 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
664 |
-
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:
|
665 |
#: templates/listing-contactform.tpl.php:33
|
666 |
#: templates/listing-flagging-form.tpl.php:39
|
667 |
msgid "Email"
|
@@ -1193,9 +1196,9 @@ msgid ""
|
|
1193 |
msgstr ""
|
1194 |
|
1195 |
#: includes/class-assets.php:195
|
1196 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1197 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1198 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
1199 |
#: templates/admin/settings-email.tpl.php:103
|
1200 |
#: templates/admin/settings-reset.tpl.php:8
|
1201 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
@@ -1582,37 +1585,37 @@ msgstr ""
|
|
1582 |
msgid "Select List"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1586 |
msgid "-- Choose One --"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1590 |
msgid "-- Choose Terms --"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1594 |
msgid "— None —"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1598 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1602 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1603 |
#: templates/admin/fees-form.tpl.php:58
|
1604 |
msgid "required"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1608 |
msgid "One option per line"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1612 |
msgid "Allow empty selection on search?"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: includes/fields/class-fieldtypes-select.php:
|
1616 |
msgid "Field list of options is required."
|
1617 |
msgstr ""
|
1618 |
|
@@ -1690,7 +1693,7 @@ msgstr ""
|
|
1690 |
msgid "Short Description"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:
|
1694 |
msgid "Description"
|
1695 |
msgstr ""
|
1696 |
|
@@ -1734,7 +1737,7 @@ msgstr ""
|
|
1734 |
msgid "Telephone Number Validator"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
1738 |
msgid "Field"
|
1739 |
msgstr ""
|
1740 |
|
@@ -2023,27 +2026,37 @@ msgid ""
|
|
2023 |
"our IP address 52.0.78.177 to your allow list."
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
2027 |
msgid "Business Directory license key is missing."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: includes/licensing.php:
|
2031 |
msgid "Business Directory license key has expired"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: includes/licensing.php:
|
2035 |
msgid "Could not verify Business Directory license."
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: includes/licensing.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2039 |
msgid "Review license keys"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: includes/licensing.php:
|
2043 |
msgid "Missing data. Please reload this page and try again."
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: includes/licensing.php:
|
2047 |
msgid "Please enter a license key."
|
2048 |
msgstr ""
|
2049 |
|
@@ -2300,31 +2313,41 @@ msgstr ""
|
|
2300 |
msgid "Disable email notifications during import"
|
2301 |
msgstr ""
|
2302 |
|
|
|
|
|
|
|
|
|
2303 |
#: templates/admin/csv-import.tpl.php:296
|
2304 |
msgid ""
|
2305 |
-
"The following are the
|
2306 |
-
"
|
2307 |
-
"the
|
2308 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: templates/admin/csv-import.tpl.php:
|
2312 |
msgid "Header name/label"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: templates/admin/csv-import.tpl.php:
|
2316 |
msgid "Required?"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: templates/admin/csv-import.tpl.php:
|
2320 |
msgid "Multivalued?"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: templates/admin/csv-import.tpl.php:
|
2324 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: templates/admin/csv-import.tpl.php:
|
2328 |
msgid "Listing owner's username"
|
2329 |
msgstr ""
|
2330 |
|
@@ -2515,12 +2538,12 @@ msgstr ""
|
|
2515 |
msgid "Plan"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2519 |
#: templates/plan-selection-plan.tpl.php:41
|
2520 |
msgid "Recurring"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
2524 |
msgid "Renew listing"
|
2525 |
msgstr ""
|
2526 |
|
@@ -2546,7 +2569,7 @@ msgid "Overview"
|
|
2546 |
msgstr ""
|
2547 |
|
2548 |
#: templates/admin/payments-details.tpl.php:52
|
2549 |
-
#: templates/admin/payments-details.tpl.php:
|
2550 |
msgid "Payment ID"
|
2551 |
msgstr ""
|
2552 |
|
@@ -2567,59 +2590,63 @@ msgstr ""
|
|
2567 |
msgid "(Not yet set)"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: templates/admin/payments-details.tpl.php:
|
|
|
|
|
|
|
|
|
2571 |
msgid "Delete Payment"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: templates/admin/payments-details.tpl.php:
|
2575 |
msgid "Save Payment"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: templates/admin/payments-details.tpl.php:
|
2579 |
msgid "Details"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: templates/admin/payments-details.tpl.php:
|
2583 |
msgid "Item Type"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: templates/admin/payments-details.tpl.php:
|
2587 |
#: templates/payment/payment_items.tpl.php:23
|
2588 |
msgid "Total"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: templates/admin/payments-details.tpl.php:
|
2592 |
msgid "Customer Details"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: templates/admin/payments-details.tpl.php:
|
2596 |
#: templates/checkout-billing-form.tpl.php:17
|
2597 |
msgid "First Name"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: templates/admin/payments-details.tpl.php:
|
2601 |
#: templates/checkout-billing-form.tpl.php:22
|
2602 |
msgid "Last Name"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: templates/admin/payments-details.tpl.php:
|
2606 |
msgid "Address Line 1"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: templates/admin/payments-details.tpl.php:
|
2610 |
#: templates/checkout-billing-form.tpl.php:81
|
2611 |
msgid "Address Line 2"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: templates/admin/payments-details.tpl.php:
|
2615 |
msgid "Notes & Log"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: templates/admin/payments-details.tpl.php:
|
2619 |
msgid "No notes."
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: templates/admin/payments-details.tpl.php:
|
2623 |
msgid "Add Note"
|
2624 |
msgstr ""
|
2625 |
|
@@ -2759,19 +2786,23 @@ msgstr ""
|
|
2759 |
msgid "Upload"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: templates/admin/themes-item.tpl.php:
|
|
|
|
|
|
|
|
|
2763 |
msgid "Inactive"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: templates/admin/themes-item.tpl.php:
|
2767 |
msgid "Updating theme..."
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: templates/admin/themes-item.tpl.php:
|
2771 |
msgid "Theme updated."
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: templates/admin/themes-item.tpl.php:
|
2775 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
2776 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2777 |
msgstr ""
|
@@ -3997,11 +4028,6 @@ msgctxt "payments admin"
|
|
3997 |
msgid "All"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
-
#: includes/admin/helpers/tables/class-payments-table.php:134
|
4001 |
-
msgctxt "payments admin"
|
4002 |
-
msgid "View Payment History"
|
4003 |
-
msgstr ""
|
4004 |
-
|
4005 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4006 |
msgctxt "form-fields admin"
|
4007 |
msgid "Form fields updated."
|
@@ -4092,29 +4118,29 @@ msgctxt "form-fields admin"
|
|
4092 |
msgid "In Listing"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4096 |
msgctxt "form-fields admin"
|
4097 |
msgid "Select All"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4101 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4102 |
msgctxt "form-fields admin"
|
4103 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4107 |
msgctxt "form-fields admin"
|
4108 |
msgid "Include \"Select all\"?"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4112 |
msgctxt "form-fields admin"
|
4113 |
msgid "Display \"Select all\" option among options above."
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
4117 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:
|
4118 |
msgctxt "form-fields admin"
|
4119 |
msgid "Field list of options is required."
|
4120 |
msgstr ""
|
@@ -5833,24 +5859,24 @@ msgctxt "admin csv-export"
|
|
5833 |
msgid "← Return to CSV Export"
|
5834 |
msgstr ""
|
5835 |
|
5836 |
-
#: includes/admin/csv-import.php:
|
5837 |
msgctxt "admin csv-import"
|
5838 |
msgid "Whatever"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#: includes/admin/csv-import.php:
|
5842 |
msgctxt "admin csv-import"
|
5843 |
msgid "Please upload or select a CSV file."
|
5844 |
msgstr ""
|
5845 |
|
5846 |
-
#: includes/admin/csv-import.php:
|
5847 |
msgctxt "admin csv-import"
|
5848 |
msgid ""
|
5849 |
"An error was detected while validating the CSV file for import. Please fix "
|
5850 |
"this before proceeding."
|
5851 |
msgstr ""
|
5852 |
|
5853 |
-
#: includes/admin/csv-import.php:
|
5854 |
msgctxt "admin csv-import"
|
5855 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
5856 |
msgstr ""
|
@@ -6053,26 +6079,26 @@ msgctxt "admin csv-import"
|
|
6053 |
msgid "Import Listings"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: templates/admin/csv-import.tpl.php:
|
6057 |
msgctxt "admin csv-import"
|
6058 |
msgid ""
|
6059 |
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
6060 |
"updating listings from external sources."
|
6061 |
msgstr ""
|
6062 |
|
6063 |
-
#: templates/admin/csv-import.tpl.php:
|
6064 |
msgctxt "admin csv-import"
|
6065 |
msgid "Internal Sequence ID used to allow listing updates from external sources."
|
6066 |
msgstr ""
|
6067 |
|
6068 |
-
#: templates/admin/csv-import.tpl.php:
|
6069 |
msgctxt "admin csv-import"
|
6070 |
msgid ""
|
6071 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
6072 |
"adding or updating listings from external sources."
|
6073 |
msgstr ""
|
6074 |
|
6075 |
-
#: includes/admin/csv-import.php:
|
6076 |
msgctxt "csv import"
|
6077 |
msgid ""
|
6078 |
"A valid temporary directory with write permissions is required for CSV "
|
@@ -6105,12 +6131,12 @@ msgctxt "listing metabox"
|
|
6105 |
msgid "Plan Details"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
6109 |
msgctxt "listing metabox"
|
6110 |
msgid "Change plan"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
6114 |
msgctxt "listing metabox"
|
6115 |
msgid "# of images"
|
6116 |
msgstr ""
|
@@ -6777,7 +6803,7 @@ msgctxt "templates"
|
|
6777 |
msgid "Send Message to listing owner"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
-
#: includes/controllers/pages/class-main.php:
|
6781 |
msgctxt "templates"
|
6782 |
msgid ""
|
6783 |
"There are no categories assigned to the business directory yet. You need to "
|
@@ -6787,12 +6813,12 @@ msgid ""
|
|
6787 |
"categories to the business directory."
|
6788 |
msgstr ""
|
6789 |
|
6790 |
-
#: includes/controllers/pages/class-main.php:
|
6791 |
msgctxt "templates"
|
6792 |
msgid "There are currently no listings in the directory."
|
6793 |
msgstr ""
|
6794 |
|
6795 |
-
#: includes/controllers/pages/class-main.php:
|
6796 |
msgctxt "templates"
|
6797 |
msgid ""
|
6798 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
@@ -7209,7 +7235,7 @@ msgctxt "submit listing"
|
|
7209 |
msgid "The e-mail address you chose for your account is already in use."
|
7210 |
msgstr ""
|
7211 |
|
7212 |
-
#: includes/models/class-payment.php:
|
7213 |
msgctxt "submit listing"
|
7214 |
msgid "Listing submitted by admin. Payment skipped."
|
7215 |
msgstr ""
|
@@ -7308,7 +7334,7 @@ msgid ""
|
|
7308 |
"work."
|
7309 |
msgstr ""
|
7310 |
|
7311 |
-
#: includes/fields/class-fieldtypes-checkbox.php:
|
7312 |
msgctxt "checkbox form field"
|
7313 |
msgid "Select all"
|
7314 |
msgstr ""
|
@@ -7568,27 +7594,27 @@ msgctxt "licensing"
|
|
7568 |
msgid "The server returned a 403 Forbidden error."
|
7569 |
msgstr ""
|
7570 |
|
7571 |
-
#: includes/licensing.php:
|
7572 |
msgctxt "licensing"
|
7573 |
msgid "Could not activate license: %s."
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: includes/licensing.php:
|
7577 |
msgctxt "licensing"
|
7578 |
msgid "License activated"
|
7579 |
msgstr ""
|
7580 |
|
7581 |
-
#: includes/licensing.php:
|
7582 |
msgctxt "licensing"
|
7583 |
msgid "Could not deactivate license: %s."
|
7584 |
msgstr ""
|
7585 |
|
7586 |
-
#: includes/licensing.php:
|
7587 |
msgctxt "licensing"
|
7588 |
msgid "License deactivated"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
-
#: includes/licensing.php:
|
7592 |
#. translators: "<module-name>" version <version-number> is not...
|
7593 |
msgctxt "deprecation"
|
7594 |
msgid ""
|
@@ -7608,17 +7634,17 @@ msgid_plural "%d images allowed."
|
|
7608 |
msgstr[0] ""
|
7609 |
msgstr[1] ""
|
7610 |
|
7611 |
-
#: includes/models/class-fee-plan.php:
|
7612 |
msgctxt "fees-api"
|
7613 |
msgid "Plan label is required."
|
7614 |
msgstr ""
|
7615 |
|
7616 |
-
#: includes/models/class-fee-plan.php:
|
7617 |
msgctxt "fees-api"
|
7618 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
7619 |
msgstr ""
|
7620 |
|
7621 |
-
#: includes/models/class-fee-plan.php:
|
7622 |
msgctxt "fees-api"
|
7623 |
msgid ""
|
7624 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
@@ -7626,64 +7652,64 @@ msgid ""
|
|
7626 |
"<a>plan</a> appropriately."
|
7627 |
msgstr ""
|
7628 |
|
7629 |
-
#: includes/models/class-fee-plan.php:
|
7630 |
msgctxt "fees-api"
|
7631 |
msgid ""
|
7632 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
7633 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
7634 |
msgstr ""
|
7635 |
|
7636 |
-
#: includes/models/class-payment.php:
|
7637 |
msgctxt "payment"
|
7638 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
7639 |
msgstr ""
|
7640 |
|
7641 |
-
#: includes/models/class-payment.php:
|
7642 |
msgctxt "payment"
|
7643 |
msgid "Initial payment (\"%s\")"
|
7644 |
msgstr ""
|
7645 |
|
7646 |
-
#: includes/models/class-payment.php:
|
7647 |
msgctxt "payment"
|
7648 |
msgid "Renewal payment (\"%s\")"
|
7649 |
msgstr ""
|
7650 |
|
7651 |
-
#: includes/models/class-payment.php:
|
7652 |
msgctxt "payment"
|
7653 |
msgid "Pending"
|
7654 |
msgstr ""
|
7655 |
|
7656 |
-
#: includes/models/class-payment.php:
|
7657 |
msgctxt "payment"
|
7658 |
msgid "Failed"
|
7659 |
msgstr ""
|
7660 |
|
7661 |
-
#: includes/models/class-payment.php:
|
7662 |
msgctxt "payment"
|
7663 |
msgid "Completed"
|
7664 |
msgstr ""
|
7665 |
|
7666 |
-
#: includes/models/class-payment.php:
|
7667 |
msgctxt "payment"
|
7668 |
msgid "Canceled"
|
7669 |
msgstr ""
|
7670 |
|
7671 |
-
#: includes/models/class-payment.php:
|
7672 |
msgctxt "payment"
|
7673 |
msgid "On Hold"
|
7674 |
msgstr ""
|
7675 |
|
7676 |
-
#: includes/models/class-payment.php:
|
7677 |
msgctxt "payment"
|
7678 |
msgid "Refunded"
|
7679 |
msgstr ""
|
7680 |
|
7681 |
-
#: includes/models/class-payment.php:
|
7682 |
msgctxt "payment summary"
|
7683 |
msgid "%s. Admin Posted."
|
7684 |
msgstr ""
|
7685 |
|
7686 |
-
#: includes/models/class-payment.php:
|
7687 |
msgctxt "payment summary"
|
7688 |
msgid "%s. Imported Listing."
|
7689 |
msgstr ""
|
@@ -7708,7 +7734,7 @@ msgctxt "utils"
|
|
7708 |
msgid "File type \"%s\" is not allowed"
|
7709 |
msgstr ""
|
7710 |
|
7711 |
-
#: includes/utils.php:
|
7712 |
msgctxt "utils"
|
7713 |
msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
7714 |
msgstr ""
|
@@ -7836,17 +7862,17 @@ msgid ""
|
|
7836 |
"we'll answer it within 24 hours most days."
|
7837 |
msgstr ""
|
7838 |
|
7839 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7840 |
msgctxt "admin infometabox"
|
7841 |
msgid "Renewal url (copy & paste)"
|
7842 |
msgstr ""
|
7843 |
|
7844 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7845 |
msgctxt "admin infometabox"
|
7846 |
msgid "Get renewal URL"
|
7847 |
msgstr ""
|
7848 |
|
7849 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:
|
7850 |
msgctxt "admin infometabox"
|
7851 |
msgid "Send renewal e-mail"
|
7852 |
msgstr ""
|
2 |
# This file is distributed under the GPLv2 or any later version.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Business Directory Plugin 6.3\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/business-directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-11-03 17:41:56+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
220 |
msgstr ""
|
221 |
|
222 |
#: includes/admin/controllers/class-admin-csv.php:54
|
|
|
223 |
msgid "Help"
|
224 |
msgstr ""
|
225 |
|
226 |
#: includes/admin/controllers/class-admin-fees.php:46
|
227 |
#: includes/admin/helpers/tables/class-payments-table.php:67
|
228 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
229 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:81
|
230 |
+
#: templates/admin/payments-details.tpl.php:124
|
231 |
#: templates/email/listing-payment-completed.tpl.php:21
|
232 |
#: templates/payment/payment_items.tpl.php:5
|
233 |
msgid "Amount"
|
293 |
msgstr ""
|
294 |
|
295 |
#: includes/admin/controllers/class-admin-listings.php:268
|
296 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:87
|
297 |
msgid "Expires on"
|
298 |
msgstr ""
|
299 |
|
303 |
|
304 |
#: includes/admin/controllers/class-admin-listings.php:339
|
305 |
#: includes/helpers/class-listing-display-helper.php:137
|
306 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:118
|
307 |
msgid "Featured"
|
308 |
msgstr ""
|
309 |
|
320 |
msgstr ""
|
321 |
|
322 |
#: includes/admin/controllers/class-admin-listings.php:733
|
323 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:96
|
324 |
msgid "Never"
|
325 |
msgstr ""
|
326 |
|
327 |
#: includes/admin/controllers/class-admin-listings.php:744
|
328 |
#: includes/admin/controllers/class-admin-listings.php:745
|
329 |
#: includes/fields/class-fieldtypes-textarea.php:201
|
330 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
331 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
332 |
msgid "Yes"
|
333 |
msgstr ""
|
334 |
|
336 |
#: includes/admin/controllers/class-admin-listings.php:745
|
337 |
#: includes/admin/settings/class-settings-bootstrap.php:279
|
338 |
#: includes/fields/class-fieldtypes-textarea.php:200
|
339 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:121
|
340 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:128
|
341 |
msgid "No"
|
342 |
msgstr ""
|
343 |
|
401 |
msgstr ""
|
402 |
|
403 |
#: includes/admin/controllers/class-form-fields-admin.php:350
|
404 |
+
#: templates/admin/payments-details.tpl.php:175
|
405 |
#: templates/checkout-billing-form.tpl.php:87
|
406 |
msgid "City"
|
407 |
msgstr ""
|
408 |
|
409 |
#: includes/admin/controllers/class-form-fields-admin.php:351
|
410 |
+
#: templates/admin/payments-details.tpl.php:171
|
411 |
msgid "State"
|
412 |
msgstr ""
|
413 |
|
414 |
#: includes/admin/controllers/class-form-fields-admin.php:352
|
415 |
+
#: templates/admin/payments-details.tpl.php:167
|
416 |
#: templates/checkout-billing-form.tpl.php:102
|
417 |
msgid "Country"
|
418 |
msgstr ""
|
419 |
|
420 |
#: includes/admin/controllers/class-form-fields-admin.php:353
|
421 |
+
#: includes/form-fields.php:453 templates/admin/payments-details.tpl.php:179
|
422 |
msgid "ZIP Code"
|
423 |
msgstr ""
|
424 |
|
479 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
480 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
481 |
#: templates/admin/payments-note.tpl.php:14
|
482 |
+
#: templates/admin/themes-item.tpl.php:51
|
483 |
#: templates/parts/listing-buttons.tpl.php:31
|
484 |
msgid "Delete"
|
485 |
msgstr ""
|
492 |
msgid "Themes"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: includes/admin/csv-import.php:136
|
496 |
#. translators: %s: Sample business name
|
497 |
msgid "Business %s"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/admin/csv-import.php:183
|
501 |
+
msgid "Download Example"
|
502 |
msgstr ""
|
503 |
|
504 |
#: includes/admin/csv-import.php:185
|
505 |
+
msgid "Example CSV Import File"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: includes/admin/csv-import.php:358 includes/helpers/class-app.php:232
|
509 |
#: includes/helpers/class-app.php:244
|
510 |
msgid "You are not allowed to do that."
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: includes/admin/csv-import.php:451
|
514 |
msgid "There was an error uploading the file:"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/admin/csv-import.php:456
|
518 |
msgid "Please upload the correct file type."
|
519 |
msgstr ""
|
520 |
|
548 |
|
549 |
#: includes/admin/helpers/class-modules-list.php:226
|
550 |
#: includes/controllers/class-smtp.php:317
|
551 |
+
#: templates/admin/themes-item.tpl.php:59
|
552 |
msgid "Activate"
|
553 |
msgstr ""
|
554 |
|
621 |
|
622 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
623 |
#: includes/fields/class-fieldtypes-social.php:135
|
624 |
+
#: templates/admin/csv-import.tpl.php:314
|
625 |
msgid "Type"
|
626 |
msgstr ""
|
627 |
|
628 |
#: includes/admin/helpers/tables/class-form-fields-table.php:88
|
629 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:93
|
630 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:110
|
631 |
msgid "Edit"
|
632 |
msgstr ""
|
633 |
|
635 |
msgid "Are you sure you want to delete that field?"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: includes/admin/helpers/tables/class-payments-table.php:143
|
639 |
+
msgid "View Payment"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
#: includes/admin/page-debug.php:40
|
643 |
msgid "Plugin Settings"
|
644 |
msgstr ""
|
652 |
msgstr ""
|
653 |
|
654 |
#: includes/admin/page-debug.php:159
|
655 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:76
|
656 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:99
|
657 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:114
|
658 |
msgid "OK"
|
659 |
msgstr ""
|
660 |
|
664 |
|
665 |
#: includes/admin/settings/class-settings-bootstrap.php:13
|
666 |
#: includes/controllers/pages/class-submit-listing.php:1422
|
667 |
+
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:151
|
668 |
#: templates/listing-contactform.tpl.php:33
|
669 |
#: templates/listing-flagging-form.tpl.php:39
|
670 |
msgid "Email"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
#: includes/class-assets.php:195
|
1199 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:77
|
1200 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:100
|
1201 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:115
|
1202 |
#: templates/admin/settings-email.tpl.php:103
|
1203 |
#: templates/admin/settings-reset.tpl.php:8
|
1204 |
#: templates/admin/themes-delete-confirm.tpl.php:25
|
1585 |
msgid "Select List"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: includes/fields/class-fieldtypes-select.php:117
|
1589 |
msgid "-- Choose One --"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: includes/fields/class-fieldtypes-select.php:144
|
1593 |
msgid "-- Choose Terms --"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: includes/fields/class-fieldtypes-select.php:210
|
1597 |
msgid "— None —"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1601 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: includes/fields/class-fieldtypes-select.php:267
|
1605 |
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1606 |
#: templates/admin/fees-form.tpl.php:58
|
1607 |
msgid "required"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: includes/fields/class-fieldtypes-select.php:269
|
1611 |
msgid "One option per line"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: includes/fields/class-fieldtypes-select.php:279
|
1615 |
msgid "Allow empty selection on search?"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: includes/fields/class-fieldtypes-select.php:297
|
1619 |
msgid "Field list of options is required."
|
1620 |
msgstr ""
|
1621 |
|
1693 |
msgid "Short Description"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:123
|
1697 |
msgid "Description"
|
1698 |
msgstr ""
|
1699 |
|
1737 |
msgid "Telephone Number Validator"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:313
|
1741 |
msgid "Field"
|
1742 |
msgstr ""
|
1743 |
|
2026 |
"our IP address 52.0.78.177 to your allow list."
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: includes/licensing.php:645
|
2030 |
+
msgid "Download Premium"
|
2031 |
+
msgstr ""
|
2032 |
+
|
2033 |
+
#: includes/licensing.php:695
|
2034 |
msgid "Business Directory license key is missing."
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: includes/licensing.php:696
|
2038 |
msgid "Business Directory license key has expired"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: includes/licensing.php:697
|
2042 |
msgid "Could not verify Business Directory license."
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: includes/licensing.php:698
|
2046 |
+
msgid ""
|
2047 |
+
"You have modules installed, but Business Directory Premium is missing. "
|
2048 |
+
"Install this plugin for extra features and easy license management."
|
2049 |
+
msgstr ""
|
2050 |
+
|
2051 |
+
#: includes/licensing.php:709
|
2052 |
msgid "Review license keys"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: includes/licensing.php:824
|
2056 |
msgid "Missing data. Please reload this page and try again."
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: includes/licensing.php:829
|
2060 |
msgid "Please enter a license key."
|
2061 |
msgstr ""
|
2062 |
|
2313 |
msgid "Disable email notifications during import"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: templates/admin/csv-import.tpl.php:291
|
2317 |
+
msgid "CSV File Formatting"
|
2318 |
+
msgstr ""
|
2319 |
+
|
2320 |
#: templates/admin/csv-import.tpl.php:296
|
2321 |
msgid ""
|
2322 |
+
"The following are the header names to use in your CSV file for your current "
|
2323 |
+
"setup. The headers in your CSV file must EXACTLY match (case and "
|
2324 |
+
"punctuation) the names listed here. Fields such as categories or tags can "
|
2325 |
+
"appear multiple times in the file."
|
2326 |
+
msgstr ""
|
2327 |
+
|
2328 |
+
#: templates/admin/csv-import.tpl.php:303
|
2329 |
+
msgid ""
|
2330 |
+
"<a href=\"%s\">See an example CSV import file</a> to see how your file "
|
2331 |
+
"should be formatted."
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: templates/admin/csv-import.tpl.php:312
|
2335 |
msgid "Header name/label"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: templates/admin/csv-import.tpl.php:315
|
2339 |
msgid "Required?"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: templates/admin/csv-import.tpl.php:316
|
2343 |
msgid "Multivalued?"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: templates/admin/csv-import.tpl.php:348
|
2347 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: templates/admin/csv-import.tpl.php:355
|
2351 |
msgid "Listing owner's username"
|
2352 |
msgstr ""
|
2353 |
|
2538 |
msgid "Plan"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:125
|
2542 |
#: templates/plan-selection-plan.tpl.php:41
|
2543 |
msgid "Recurring"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:155
|
2547 |
msgid "Renew listing"
|
2548 |
msgstr ""
|
2549 |
|
2569 |
msgstr ""
|
2570 |
|
2571 |
#: templates/admin/payments-details.tpl.php:52
|
2572 |
+
#: templates/admin/payments-details.tpl.php:94
|
2573 |
msgid "Payment ID"
|
2574 |
msgstr ""
|
2575 |
|
2590 |
msgid "(Not yet set)"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: templates/admin/payments-details.tpl.php:89
|
2594 |
+
msgid "- Test Mode"
|
2595 |
+
msgstr ""
|
2596 |
+
|
2597 |
+
#: templates/admin/payments-details.tpl.php:105
|
2598 |
msgid "Delete Payment"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: templates/admin/payments-details.tpl.php:107
|
2602 |
msgid "Save Payment"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: templates/admin/payments-details.tpl.php:118
|
2606 |
msgid "Details"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: templates/admin/payments-details.tpl.php:122
|
2610 |
msgid "Item Type"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: templates/admin/payments-details.tpl.php:135
|
2614 |
#: templates/payment/payment_items.tpl.php:23
|
2615 |
msgid "Total"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: templates/admin/payments-details.tpl.php:146
|
2619 |
msgid "Customer Details"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: templates/admin/payments-details.tpl.php:156
|
2623 |
#: templates/checkout-billing-form.tpl.php:17
|
2624 |
msgid "First Name"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: templates/admin/payments-details.tpl.php:161
|
2628 |
#: templates/checkout-billing-form.tpl.php:22
|
2629 |
msgid "Last Name"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: templates/admin/payments-details.tpl.php:183
|
2633 |
msgid "Address Line 1"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: templates/admin/payments-details.tpl.php:187
|
2637 |
#: templates/checkout-billing-form.tpl.php:81
|
2638 |
msgid "Address Line 2"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: templates/admin/payments-details.tpl.php:196
|
2642 |
msgid "Notes & Log"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: templates/admin/payments-details.tpl.php:201
|
2646 |
msgid "No notes."
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: templates/admin/payments-details.tpl.php:221
|
2650 |
msgid "Add Note"
|
2651 |
msgstr ""
|
2652 |
|
2786 |
msgid "Upload"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: templates/admin/themes-item.tpl.php:6
|
2790 |
+
msgid "Missing License"
|
2791 |
+
msgstr ""
|
2792 |
+
|
2793 |
+
#: templates/admin/themes-item.tpl.php:8
|
2794 |
msgid "Inactive"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
+
#: templates/admin/themes-item.tpl.php:18
|
2798 |
msgid "Updating theme..."
|
2799 |
msgstr ""
|
2800 |
|
2801 |
+
#: templates/admin/themes-item.tpl.php:18
|
2802 |
msgid "Theme updated."
|
2803 |
msgstr ""
|
2804 |
|
2805 |
+
#: templates/admin/themes-item.tpl.php:23
|
2806 |
#. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
|
2807 |
msgid "New version available. %1$sUpdate now.%2$s"
|
2808 |
msgstr ""
|
4028 |
msgid "All"
|
4029 |
msgstr ""
|
4030 |
|
|
|
|
|
|
|
|
|
|
|
4031 |
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4032 |
msgctxt "form-fields admin"
|
4033 |
msgid "Form fields updated."
|
4118 |
msgid "In Listing"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
+
#: includes/fields/class-fieldtypes-checkbox.php:98
|
4122 |
msgctxt "form-fields admin"
|
4123 |
msgid "Select All"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: includes/fields/class-fieldtypes-checkbox.php:116
|
4127 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:91
|
4128 |
msgctxt "form-fields admin"
|
4129 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4130 |
msgstr ""
|
4131 |
|
4132 |
+
#: includes/fields/class-fieldtypes-checkbox.php:128
|
4133 |
msgctxt "form-fields admin"
|
4134 |
msgid "Include \"Select all\"?"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: includes/fields/class-fieldtypes-checkbox.php:132
|
4138 |
msgctxt "form-fields admin"
|
4139 |
msgid "Display \"Select all\" option among options above."
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: includes/fields/class-fieldtypes-checkbox.php:148
|
4143 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:118
|
4144 |
msgctxt "form-fields admin"
|
4145 |
msgid "Field list of options is required."
|
4146 |
msgstr ""
|
5859 |
msgid "← Return to CSV Export"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: includes/admin/csv-import.php:178
|
5863 |
msgctxt "admin csv-import"
|
5864 |
msgid "Whatever"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: includes/admin/csv-import.php:372
|
5868 |
msgctxt "admin csv-import"
|
5869 |
msgid "Please upload or select a CSV file."
|
5870 |
msgstr ""
|
5871 |
|
5872 |
+
#: includes/admin/csv-import.php:397
|
5873 |
msgctxt "admin csv-import"
|
5874 |
msgid ""
|
5875 |
"An error was detected while validating the CSV file for import. Please fix "
|
5876 |
"this before proceeding."
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: includes/admin/csv-import.php:406
|
5880 |
msgctxt "admin csv-import"
|
5881 |
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
5882 |
msgstr ""
|
6079 |
msgid "Import Listings"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
+
#: templates/admin/csv-import.tpl.php:341
|
6083 |
msgctxt "admin csv-import"
|
6084 |
msgid ""
|
6085 |
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
6086 |
"updating listings from external sources."
|
6087 |
msgstr ""
|
6088 |
|
6089 |
+
#: templates/admin/csv-import.tpl.php:362
|
6090 |
msgctxt "admin csv-import"
|
6091 |
msgid "Internal Sequence ID used to allow listing updates from external sources."
|
6092 |
msgstr ""
|
6093 |
|
6094 |
+
#: templates/admin/csv-import.tpl.php:369
|
6095 |
msgctxt "admin csv-import"
|
6096 |
msgid ""
|
6097 |
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
6098 |
"adding or updating listings from external sources."
|
6099 |
msgstr ""
|
6100 |
|
6101 |
+
#: includes/admin/csv-import.php:328
|
6102 |
msgctxt "csv import"
|
6103 |
msgid ""
|
6104 |
"A valid temporary directory with write permissions is required for CSV "
|
6131 |
msgid "Plan Details"
|
6132 |
msgstr ""
|
6133 |
|
6134 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:51
|
6135 |
msgctxt "listing metabox"
|
6136 |
msgid "Change plan"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:105
|
6140 |
msgctxt "listing metabox"
|
6141 |
msgid "# of images"
|
6142 |
msgstr ""
|
6803 |
msgid "Send Message to listing owner"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
+
#: includes/controllers/pages/class-main.php:14
|
6807 |
msgctxt "templates"
|
6808 |
msgid ""
|
6809 |
"There are no categories assigned to the business directory yet. You need to "
|
6813 |
"categories to the business directory."
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: includes/controllers/pages/class-main.php:16
|
6817 |
msgctxt "templates"
|
6818 |
msgid "There are currently no listings in the directory."
|
6819 |
msgstr ""
|
6820 |
|
6821 |
+
#: includes/controllers/pages/class-main.php:28
|
6822 |
msgctxt "templates"
|
6823 |
msgid ""
|
6824 |
"You have \"Hide Empty Categories\" on and some categories that don't have "
|
7235 |
msgid "The e-mail address you chose for your account is already in use."
|
7236 |
msgstr ""
|
7237 |
|
7238 |
+
#: includes/models/class-payment.php:286
|
7239 |
msgctxt "submit listing"
|
7240 |
msgid "Listing submitted by admin. Payment skipped."
|
7241 |
msgstr ""
|
7334 |
"work."
|
7335 |
msgstr ""
|
7336 |
|
7337 |
+
#: includes/fields/class-fieldtypes-checkbox.php:52
|
7338 |
msgctxt "checkbox form field"
|
7339 |
msgid "Select all"
|
7340 |
msgstr ""
|
7594 |
msgid "The server returned a 403 Forbidden error."
|
7595 |
msgstr ""
|
7596 |
|
7597 |
+
#: includes/licensing.php:846
|
7598 |
msgctxt "licensing"
|
7599 |
msgid "Could not activate license: %s."
|
7600 |
msgstr ""
|
7601 |
|
7602 |
+
#: includes/licensing.php:851
|
7603 |
msgctxt "licensing"
|
7604 |
msgid "License activated"
|
7605 |
msgstr ""
|
7606 |
|
7607 |
+
#: includes/licensing.php:883
|
7608 |
msgctxt "licensing"
|
7609 |
msgid "Could not deactivate license: %s."
|
7610 |
msgstr ""
|
7611 |
|
7612 |
+
#: includes/licensing.php:885
|
7613 |
msgctxt "licensing"
|
7614 |
msgid "License deactivated"
|
7615 |
msgstr ""
|
7616 |
|
7617 |
+
#: includes/licensing.php:1125
|
7618 |
#. translators: "<module-name>" version <version-number> is not...
|
7619 |
msgctxt "deprecation"
|
7620 |
msgid ""
|
7634 |
msgstr[0] ""
|
7635 |
msgstr[1] ""
|
7636 |
|
7637 |
+
#: includes/models/class-fee-plan.php:410
|
7638 |
msgctxt "fees-api"
|
7639 |
msgid "Plan label is required."
|
7640 |
msgstr ""
|
7641 |
|
7642 |
+
#: includes/models/class-fee-plan.php:416
|
7643 |
msgctxt "fees-api"
|
7644 |
msgid "Fee listing duration must be a number less than 10 years (3650 days)."
|
7645 |
msgstr ""
|
7646 |
|
7647 |
+
#: includes/models/class-fee-plan.php:421
|
7648 |
msgctxt "fees-api"
|
7649 |
msgid ""
|
7650 |
"To set this plan as \"Recurring\" you must have a time for the listing to "
|
7652 |
"<a>plan</a> appropriately."
|
7653 |
msgstr ""
|
7654 |
|
7655 |
+
#: includes/models/class-fee-plan.php:424
|
7656 |
msgctxt "fees-api"
|
7657 |
msgid ""
|
7658 |
"To set this plan as \"Recurring\" you must set a price for your plan. To "
|
7659 |
"avoid issues with the listing, please edit the <a>plan</a> appropriately."
|
7660 |
msgstr ""
|
7661 |
|
7662 |
+
#: includes/models/class-payment.php:109
|
7663 |
msgctxt "payment"
|
7664 |
msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
|
7665 |
msgstr ""
|
7666 |
|
7667 |
+
#: includes/models/class-payment.php:157
|
7668 |
msgctxt "payment"
|
7669 |
msgid "Initial payment (\"%s\")"
|
7670 |
msgstr ""
|
7671 |
|
7672 |
+
#: includes/models/class-payment.php:160
|
7673 |
msgctxt "payment"
|
7674 |
msgid "Renewal payment (\"%s\")"
|
7675 |
msgstr ""
|
7676 |
|
7677 |
+
#: includes/models/class-payment.php:403
|
7678 |
msgctxt "payment"
|
7679 |
msgid "Pending"
|
7680 |
msgstr ""
|
7681 |
|
7682 |
+
#: includes/models/class-payment.php:404
|
7683 |
msgctxt "payment"
|
7684 |
msgid "Failed"
|
7685 |
msgstr ""
|
7686 |
|
7687 |
+
#: includes/models/class-payment.php:405
|
7688 |
msgctxt "payment"
|
7689 |
msgid "Completed"
|
7690 |
msgstr ""
|
7691 |
|
7692 |
+
#: includes/models/class-payment.php:406
|
7693 |
msgctxt "payment"
|
7694 |
msgid "Canceled"
|
7695 |
msgstr ""
|
7696 |
|
7697 |
+
#: includes/models/class-payment.php:407
|
7698 |
msgctxt "payment"
|
7699 |
msgid "On Hold"
|
7700 |
msgstr ""
|
7701 |
|
7702 |
+
#: includes/models/class-payment.php:408
|
7703 |
msgctxt "payment"
|
7704 |
msgid "Refunded"
|
7705 |
msgstr ""
|
7706 |
|
7707 |
+
#: includes/models/class-payment.php:172
|
7708 |
msgctxt "payment summary"
|
7709 |
msgid "%s. Admin Posted."
|
7710 |
msgstr ""
|
7711 |
|
7712 |
+
#: includes/models/class-payment.php:174
|
7713 |
msgctxt "payment summary"
|
7714 |
msgid "%s. Imported Listing."
|
7715 |
msgstr ""
|
7734 |
msgid "File type \"%s\" is not allowed"
|
7735 |
msgstr ""
|
7736 |
|
7737 |
+
#: includes/utils.php:668
|
7738 |
msgctxt "utils"
|
7739 |
msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
7740 |
msgstr ""
|
7862 |
"we'll answer it within 24 hours most days."
|
7863 |
msgstr ""
|
7864 |
|
7865 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
7866 |
msgctxt "admin infometabox"
|
7867 |
msgid "Renewal url (copy & paste)"
|
7868 |
msgstr ""
|
7869 |
|
7870 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:135
|
7871 |
msgctxt "admin infometabox"
|
7872 |
msgid "Get renewal URL"
|
7873 |
msgstr ""
|
7874 |
|
7875 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:149
|
7876 |
msgctxt "admin infometabox"
|
7877 |
msgid "Send renewal e-mail"
|
7878 |
msgstr ""
|
templates/admin/csv-import.tpl.php
CHANGED
@@ -288,12 +288,19 @@ printf(
|
|
288 |
<hr />
|
289 |
|
290 |
<div class="wpbdp-settings-form-title">
|
291 |
-
<h3 id="help"><?php esc_html_e( '
|
292 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
<p>
|
294 |
<?php
|
295 |
printf(
|
296 |
-
__( '
|
297 |
esc_url( admin_url( 'admin.php?page=wpbdp_admin_csv&action=example-csv' ) )
|
298 |
);
|
299 |
?>
|
288 |
<hr />
|
289 |
|
290 |
<div class="wpbdp-settings-form-title">
|
291 |
+
<h3 id="help"><?php esc_html_e( 'CSV File Formatting', 'business-directory-plugin' ); ?></h3>
|
292 |
</div>
|
293 |
+
|
294 |
+
<p>
|
295 |
+
<?php
|
296 |
+
esc_html_e( 'The following are the header names to use in your CSV file for your current setup. The headers in your CSV file must EXACTLY match (case and punctuation) the names listed here. Fields such as categories or tags can appear multiple times in the file.', 'business-directory-plugin' );
|
297 |
+
?>
|
298 |
+
</p>
|
299 |
+
|
300 |
<p>
|
301 |
<?php
|
302 |
printf(
|
303 |
+
__( '<a href="%s">See an example CSV import file</a> to see how your file should be formatted.', 'business-directory-plugin' ),
|
304 |
esc_url( admin_url( 'admin.php?page=wpbdp_admin_csv&action=example-csv' ) )
|
305 |
);
|
306 |
?>
|
templates/admin/metaboxes-listing-information-plan.tpl.php
CHANGED
@@ -40,15 +40,17 @@ echo wp_nonce_field( 'update listing plan', 'wpbdp-admin-listing-plan-nonce', fa
|
|
40 |
<dl>
|
41 |
<dt><?php esc_html_e( 'Plan', 'business-directory-plugin' ); ?></dt>
|
42 |
<dd>
|
43 |
-
<span class="display-value" id="wpbdp-listing-plan-prop-label">
|
44 |
<?php if ( $current_plan ) : ?>
|
45 |
<a href="<?php echo esc_url( admin_url( 'admin.php?page=wpbdp-admin-fees&wpbdp-view=edit-fee&id=' . $current_plan->fee_id ) ); ?>"><?php echo esc_html( $current_plan->fee_label ); ?></a>
|
46 |
<?php else : ?>
|
47 |
-
|
48 |
<?php endif; ?>
|
49 |
</span>
|
50 |
-
<a href="#" class="edit-value-toggle
|
51 |
-
|
|
|
|
|
52 |
<input type="hidden" name="listing_plan[fee_id]" value="<?php echo esc_attr( $current_plan ? $current_plan->fee_id : '' ); ?>" />
|
53 |
<select name="" id="wpbdp-listing-plan-select">
|
54 |
<?php foreach ( $plans as $p ) : ?>
|
40 |
<dl>
|
41 |
<dt><?php esc_html_e( 'Plan', 'business-directory-plugin' ); ?></dt>
|
42 |
<dd>
|
43 |
+
<span class="display-value <?php echo $current_plan ? '' : 'wpbdp-hidden'; ?>" id="wpbdp-listing-plan-prop-label">
|
44 |
<?php if ( $current_plan ) : ?>
|
45 |
<a href="<?php echo esc_url( admin_url( 'admin.php?page=wpbdp-admin-fees&wpbdp-view=edit-fee&id=' . $current_plan->fee_id ) ); ?>"><?php echo esc_html( $current_plan->fee_label ); ?></a>
|
46 |
<?php else : ?>
|
47 |
-
|
48 |
<?php endif; ?>
|
49 |
</span>
|
50 |
+
<a href="#" class="edit-value-toggle <?php echo $current_plan ? '' : 'wpbdp-hidden'; ?>">
|
51 |
+
<?php _ex( 'Change plan', 'listing metabox', 'business-directory-plugin' ); ?>
|
52 |
+
</a>
|
53 |
+
<div class="value-editor" <?php echo $current_plan ? '' : 'style="display:block"'; ?>>
|
54 |
<input type="hidden" name="listing_plan[fee_id]" value="<?php echo esc_attr( $current_plan ? $current_plan->fee_id : '' ); ?>" />
|
55 |
<select name="" id="wpbdp-listing-plan-select">
|
56 |
<?php foreach ( $plans as $p ) : ?>
|
templates/admin/payments-details.tpl.php
CHANGED
@@ -85,6 +85,9 @@ $hide_text_field = $payment->gateway && $payment->listing->has_subscription() ?
|
|
85 |
<label><?php esc_html_e( 'Gateway', 'business-directory-plugin' ); ?></label>
|
86 |
<?php /* translators: Gateway: (Not yet set) */ ?>
|
87 |
<?php echo esc_html( $payment->gateway ? $payment->gateway : __( '(Not yet set)', 'business-directory-plugin' ) ); ?>
|
|
|
|
|
|
|
88 |
</div>
|
89 |
<?php if ( $payment->gateway_tx_id && $payment->get_gateway_link() ) { ?>
|
90 |
<div class="wpbdp-admin-box-row">
|
85 |
<label><?php esc_html_e( 'Gateway', 'business-directory-plugin' ); ?></label>
|
86 |
<?php /* translators: Gateway: (Not yet set) */ ?>
|
87 |
<?php echo esc_html( $payment->gateway ? $payment->gateway : __( '(Not yet set)', 'business-directory-plugin' ) ); ?>
|
88 |
+
<?php if ( $payment->is_test ) : ?>
|
89 |
+
<span class="wpbdp-payment-test-mode-label"><?php esc_html_e( '- Test Mode', 'business-directory-plugin' ) ?></span>
|
90 |
+
<?php endif; ?>
|
91 |
</div>
|
92 |
<?php if ( $payment->gateway_tx_id && $payment->get_gateway_link() ) { ?>
|
93 |
<div class="wpbdp-admin-box-row">
|
templates/admin/themes-item.tpl.php
CHANGED
@@ -3,6 +3,7 @@ if ( $theme->active ) {
|
|
3 |
$status = __( 'Active', 'business-directory-plugin' );
|
4 |
} elseif ( ! $theme->can_be_activated && ! empty( $theme->license_status ) ) {
|
5 |
$status = ucfirst( $theme->license_status );
|
|
|
6 |
} else {
|
7 |
$status = __( 'Inactive', 'business-directory-plugin' );
|
8 |
}
|
3 |
$status = __( 'Active', 'business-directory-plugin' );
|
4 |
} elseif ( ! $theme->can_be_activated && ! empty( $theme->license_status ) ) {
|
5 |
$status = ucfirst( $theme->license_status );
|
6 |
+
$status = $theme->license_status === 'invalid' ? __( 'Missing License', 'business-directory-plugin' ) : $status;
|
7 |
} else {
|
8 |
$status = __( 'Inactive', 'business-directory-plugin' );
|
9 |
}
|
themes/default/theme.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
{
|
2 |
"name": "Default Theme",
|
3 |
"description": "A clean, basic look. This theme is always installed and cannot be removed.",
|
4 |
-
"version": "6.
|
5 |
"author": "Business Directory Team",
|
6 |
"author_email": "support@businessdirectoryplugin.com",
|
7 |
"author_url": "https://businessdirectoryplugin.com",
|
1 |
{
|
2 |
"name": "Default Theme",
|
3 |
"description": "A clean, basic look. This theme is always installed and cannot be removed.",
|
4 |
+
"version": "6.3",
|
5 |
"author": "Business Directory Team",
|
6 |
"author_email": "support@businessdirectoryplugin.com",
|
7 |
"author_url": "https://businessdirectoryplugin.com",
|